Commit
·
4a21863
1
Parent(s):
52d1806
feat: Add "fiftyone" as a choice in the framework dropdown
Browse files
app.py
CHANGED
@@ -90,7 +90,7 @@ def update_dashboard(framework):
|
|
90 |
|
91 |
with gr.Blocks() as demo:
|
92 |
framework = gr.Dropdown(
|
93 |
-
choices=["distilabel", "sentence-transformers", "synthetic"],
|
94 |
allow_custom_value=True,
|
95 |
)
|
96 |
plot = gr.Plot()
|
|
|
90 |
|
91 |
with gr.Blocks() as demo:
|
92 |
framework = gr.Dropdown(
|
93 |
+
choices=["distilabel", "sentence-transformers", "synthetic", "fiftyone"],
|
94 |
allow_custom_value=True,
|
95 |
)
|
96 |
plot = gr.Plot()
|