akhaliq's picture
akhaliq HF staff
Update app.py
479d694 verified
raw
history blame contribute delete
208 Bytes
import gradio as gr
import spaces
import transformers_gradio
demo = gr.load(
name='HuggingFaceTB/SmolVLM-Instruct',
src=transformers_gradio.registry,
)
demo.fn = spaces.GPU()(demo.fn)
demo.launch()