update
Browse files
app.py
CHANGED
@@ -109,6 +109,19 @@ with gr.Blocks() as demo:
|
|
109 |
gr.Markdown("## VTBench")
|
110 |
gr.Markdown("---")
|
111 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
112 |
image_input = gr.Image(
|
113 |
type="pil",
|
114 |
label="Upload an image",
|
@@ -138,6 +151,7 @@ with gr.Blocks() as demo:
|
|
138 |
|
139 |
gr.Markdown("---")
|
140 |
gr.Markdown("⚠️ **The more models you select, the longer the processing time will be.**")
|
|
|
141 |
|
142 |
display_names = list(model_name_mapping.values())
|
143 |
default_selected = ["SD3.5L", "Chameleon", "Janus Pro 1B/7B"]
|
|
|
109 |
gr.Markdown("## VTBench")
|
110 |
gr.Markdown("---")
|
111 |
|
112 |
+
gr.Markdown("👋 **Welcome to VTBench!** Upload an image, select models, and click 'Start Processing' to compare results side by side.")
|
113 |
+
with gr.Accordion("📘 Full Instructions", open=False):
|
114 |
+
gr.Markdown("""
|
115 |
+
**VTBench User Guide**
|
116 |
+
|
117 |
+
- **Upload an image** or click one of the example images.
|
118 |
+
- **Select one or more models** from the list.
|
119 |
+
- Click **Start Processing** to run inference.
|
120 |
+
- Selected model outputs appear first, others show placeholders.
|
121 |
+
|
122 |
+
⚠️ *Each model is downloaded on first use. Please wait patiently the first time you run a model.*
|
123 |
+
""")
|
124 |
+
|
125 |
image_input = gr.Image(
|
126 |
type="pil",
|
127 |
label="Upload an image",
|
|
|
151 |
|
152 |
gr.Markdown("---")
|
153 |
gr.Markdown("⚠️ **The more models you select, the longer the processing time will be.**")
|
154 |
+
gr.Markdown("*Note: Each model is downloaded on first use. Subsequent uses will load from cache and run faster.*")
|
155 |
|
156 |
display_names = list(model_name_mapping.values())
|
157 |
default_selected = ["SD3.5L", "Chameleon", "Janus Pro 1B/7B"]
|