Update app.py
Browse files
app.py
CHANGED
@@ -90,8 +90,8 @@ with gr.Blocks() as demo:
|
|
90 |
|
91 |
with gr.Row():
|
92 |
activation = gr.Dropdown(choices=activations, label="Activation Function", interactive=True)
|
93 |
-
seed = gr.Dropdown(choices=
|
94 |
-
neurons = gr.Dropdown(choices=
|
95 |
|
96 |
activation.change(update_seeds, inputs=[activation], outputs=[seed])
|
97 |
seed.change(update_neurons, inputs=[activation, seed], outputs=[neurons])
|
|
|
90 |
|
91 |
with gr.Row():
|
92 |
activation = gr.Dropdown(choices=activations, label="Activation Function", interactive=True)
|
93 |
+
seed = gr.Dropdown(choices=seeds, label="Seed", interactive=True)
|
94 |
+
neurons = gr.Dropdown(choices=neuron_list, label="Neurons", interactive=True)
|
95 |
|
96 |
activation.change(update_seeds, inputs=[activation], outputs=[seed])
|
97 |
seed.change(update_neurons, inputs=[activation, seed], outputs=[neurons])
|