joaogante HF staff commited on
Commit
d63c8d0
·
1 Parent(s): 01593e1

playing around with gradio

Browse files
Files changed (1) hide show
  1. app.py +3 -2
app.py CHANGED
@@ -19,13 +19,14 @@ demo = gr.Blocks()
19
  with demo:
20
  with gr.Tabs():
21
  with gr.TabItem("Greedy Search"):
22
- model_name = 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
- get_plot(model_name)
 
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"):