Spaces:
Running
Running
pratyushmaini
commited on
Commit
·
987cfd4
1
Parent(s):
638201f
bug fix
Browse files
app.py
CHANGED
@@ -86,7 +86,7 @@ with demo:
|
|
86 |
with gr.Row():
|
87 |
methods_checkbox = gr.CheckboxGroup(
|
88 |
label="Select Methods",
|
89 |
-
choices=load_data("llama")['Method'].unique(), # To be populated dynamically
|
90 |
)
|
91 |
|
92 |
plot_output = gr.Plot()
|
|
|
86 |
with gr.Row():
|
87 |
methods_checkbox = gr.CheckboxGroup(
|
88 |
label="Select Methods",
|
89 |
+
choices=list(load_data("llama")['Method'].unique()), # To be populated dynamically
|
90 |
)
|
91 |
|
92 |
plot_output = gr.Plot()
|