Spaces:
Paused
Paused
Update app.py
Browse files
app.py
CHANGED
@@ -44,6 +44,16 @@ with gr.Blocks(theme="sudeepshouche/minimalist") as demo:
|
|
44 |
inputs=textbox
|
45 |
)
|
46 |
submit_button = gr.Button("Submit")
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
47 |
with gr.Column():
|
48 |
output = gr.Textbox(label="Model Architecture", lines=20, placeholder="Model architecture will appear here...", show_copy_button=True)
|
49 |
error_output = gr.Textbox(label="Error", lines=10, placeholder="Exceptions will appear here...", show_copy_button=True)
|
|
|
44 |
inputs=textbox
|
45 |
)
|
46 |
submit_button = gr.Button("Submit")
|
47 |
+
|
48 |
+
gr.Markdown("""
|
49 |
+
Where to get started with Vision Language Models:
|
50 |
+
|
51 |
+
- [Hugging Face overview of Vision Language Models](https://huggingface.co/blog/vlms#overview-of-open-source-vision-language-models)
|
52 |
+
- [Blog Post on PaliGemma Model Capabilities and Use Cases](https://huggingface.co/blog/paligemma#model-capabilities)
|
53 |
+
|
54 |
+
Keep an eye on the evolution of the evolution of the [Model Explorer from Google](https://ai.google.dev/edge/model-explorer#two_ways_to_use_model_explorer). It didn't work initially for some of the VLM "fusion" model types I was looking at, but certainly a great tool for the right model.
|
55 |
+
""")
|
56 |
+
|
57 |
with gr.Column():
|
58 |
output = gr.Textbox(label="Model Architecture", lines=20, placeholder="Model architecture will appear here...", show_copy_button=True)
|
59 |
error_output = gr.Textbox(label="Error", lines=10, placeholder="Exceptions will appear here...", show_copy_button=True)
|