playing around with gradio
Browse files
app.py
CHANGED
@@ -19,13 +19,14 @@ demo = gr.Blocks()
|
|
19 |
with demo:
|
20 |
with gr.Tabs():
|
21 |
with gr.TabItem("Greedy Search"):
|
22 |
-
|
23 |
choices=["DistilGPT2", "GPT2", "OPT 1.3B", "GPTJ-6B", "T5 Small", "T5 Base", "T5 Large", "T5 3B"],
|
24 |
value="T5 Small",
|
25 |
label="Model",
|
26 |
interactive=True,
|
27 |
)
|
28 |
-
|
|
|
29 |
with gr.TabItem("Sample"):
|
30 |
gr.Button("New Tiger")
|
31 |
with gr.TabItem("Beam Search"):
|
|
|
19 |
with demo:
|
20 |
with gr.Tabs():
|
21 |
with gr.TabItem("Greedy Search"):
|
22 |
+
model_selector = gr.Dropdown(
|
23 |
choices=["DistilGPT2", "GPT2", "OPT 1.3B", "GPTJ-6B", "T5 Small", "T5 Base", "T5 Large", "T5 3B"],
|
24 |
value="T5 Small",
|
25 |
label="Model",
|
26 |
interactive=True,
|
27 |
)
|
28 |
+
plot = "plot"
|
29 |
+
model_selector.change(fn=get_plot, inputs=[model_selector], outputs=["plot"])
|
30 |
with gr.TabItem("Sample"):
|
31 |
gr.Button("New Tiger")
|
32 |
with gr.TabItem("Beam Search"):
|