sergiopaniego HF Staff commited on
Commit
a71f62f
Β·
verified Β·
1 Parent(s): c2f785a

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +4 -3
app.py CHANGED
@@ -100,11 +100,12 @@ def predict(model_version):
100
 
101
 
102
  theme = gr.themes.Soft(primary_hue="indigo", secondary_hue="emerald")
103
- with gr.Blocks(theme=theme, title="πŸ” SmolVLM VQA Demo (NuScenes multimodal QA dataset)") as demo:
104
- gr.Markdown("# SmolVLM VQA Demo (NuScenes multimodal QA dataset)")
105
- gr.Markdown("This is a demo for the **SmolVLM2 model family** on the **NuScenes multimodal QA dataset**.")
106
  gr.Markdown("You can select different model versions and predict answers to questions based on the camera feed.")
107
  gr.Markdown("[Check out the SmolVLM2 collection](https://huggingface.co/collections/HuggingFaceTB/smolvlm2-smallest-video-lm-ever-67ab6b5e84bf8aaa60cb17c7)")
 
108
  gr.Markdown("[Check out the NuScenes multimodal QA dataset](https://huggingface.co/datasets/KevinNotSmile/nuscenes-qa-mini)")
109
 
110
 
 
100
 
101
 
102
  theme = gr.themes.Soft(primary_hue="indigo", secondary_hue="emerald")
103
+ with gr.Blocks(theme=theme, title="πŸ” SmolVLM2 VQA Demo (NuScenes multimodal QA dataset)") as demo:
104
+ gr.Markdown("# SmolVLM2 VQA Demo (NuScenes multimodal QA dataset)")
105
+ gr.Markdown("This is a demo for the **SmolVLM-SmolVLM2 model family** on the **NuScenes multimodal QA dataset**.")
106
  gr.Markdown("You can select different model versions and predict answers to questions based on the camera feed.")
107
  gr.Markdown("[Check out the SmolVLM2 collection](https://huggingface.co/collections/HuggingFaceTB/smolvlm2-smallest-video-lm-ever-67ab6b5e84bf8aaa60cb17c7)")
108
+ gr.Markdown("[Check out the SmolVLM collection](https://huggingface.co/collections/HuggingFaceTB/smolvlm-6740bd584b2dcbf51ecb1f39)")
109
  gr.Markdown("[Check out the NuScenes multimodal QA dataset](https://huggingface.co/datasets/KevinNotSmile/nuscenes-qa-mini)")
110
 
111