luisrui commited on
Commit ·
e7c748f
1
Parent(s): 52d0531
Shorten BYOK notice; rename Recommend button to Search
Browse files
app.py
CHANGED
|
@@ -122,10 +122,7 @@ with gr.Blocks(title="ModelLens · Finding the Best Model for Your Task", theme=
|
|
| 122 |
ablation_no_id MLPMetric checkpoint trained on `unified_augmented`.
|
| 123 |
|
| 124 |
> **BYO OpenAI key.** This Space embeds your dataset description with
|
| 125 |
-
> `text-embedding-3-small`.
|
| 126 |
-
> — it is sent directly to OpenAI for that single request and is never
|
| 127 |
-
> stored, logged, or reused by this app. A query costs roughly
|
| 128 |
-
> **$0.000001** on your account.
|
| 129 |
"""
|
| 130 |
)
|
| 131 |
with gr.Row():
|
|
@@ -164,18 +161,18 @@ with gr.Blocks(title="ModelLens · Finding the Best Model for Your Task", theme=
|
|
| 164 |
)
|
| 165 |
official_only = gr.Checkbox(
|
| 166 |
value=False,
|
| 167 |
-
label="Only
|
| 168 |
)
|
| 169 |
hf_only = gr.Checkbox(
|
| 170 |
value=True,
|
| 171 |
label="Only show models hosted on HuggingFace (drops paper baselines like 'inceptionv4')",
|
| 172 |
)
|
| 173 |
-
run_btn = gr.Button("
|
| 174 |
gr.Examples(
|
| 175 |
examples=[[d] for d in EXAMPLE_DESCRIPTIONS],
|
| 176 |
inputs=[desc],
|
| 177 |
outputs=[],
|
| 178 |
-
label="Example dataset descriptions (click to fill, then press
|
| 179 |
run_on_click=False,
|
| 180 |
)
|
| 181 |
with gr.Column(scale=3):
|
|
|
|
| 122 |
ablation_no_id MLPMetric checkpoint trained on `unified_augmented`.
|
| 123 |
|
| 124 |
> **BYO OpenAI key.** This Space embeds your dataset description with
|
| 125 |
+
> `text-embedding-3-small`.
|
|
|
|
|
|
|
|
|
|
| 126 |
"""
|
| 127 |
)
|
| 128 |
with gr.Row():
|
|
|
|
| 161 |
)
|
| 162 |
official_only = gr.Checkbox(
|
| 163 |
value=False,
|
| 164 |
+
label="Only show official pretrained models (DeepSeek, Qwen, Llama, gpt-oss, Mistral, Gemma, Phi, ...)",
|
| 165 |
)
|
| 166 |
hf_only = gr.Checkbox(
|
| 167 |
value=True,
|
| 168 |
label="Only show models hosted on HuggingFace (drops paper baselines like 'inceptionv4')",
|
| 169 |
)
|
| 170 |
+
run_btn = gr.Button("Search", variant="primary")
|
| 171 |
gr.Examples(
|
| 172 |
examples=[[d] for d in EXAMPLE_DESCRIPTIONS],
|
| 173 |
inputs=[desc],
|
| 174 |
outputs=[],
|
| 175 |
+
label="Example dataset descriptions (click to fill, then press Search)",
|
| 176 |
run_on_click=False,
|
| 177 |
)
|
| 178 |
with gr.Column(scale=3):
|