EduardoPacheco commited on
Commit
bc61cbb
1 Parent(s): ca9b69c
Files changed (1) hide show
  1. app.py +1 -0
app.py CHANGED
@@ -95,6 +95,7 @@ with gr.Blocks(title=title) as demo:
95
  n_samples.change(fn=app_fn, inputs=[n_samples, n_estimators, max_depth], outputs=[plot])
96
  n_estimators.change(fn=app_fn, inputs=[n_samples, n_estimators, max_depth], outputs=[plot])
97
  max_depth.change(fn=app_fn, inputs=[n_samples, n_estimators, max_depth], outputs=[plot])
 
98
  demo.load(fn=app_fn, inputs=[n_samples, n_estimators, max_depth], outputs=[plot])
99
 
100
  demo.launch()
 
95
  n_samples.change(fn=app_fn, inputs=[n_samples, n_estimators, max_depth], outputs=[plot])
96
  n_estimators.change(fn=app_fn, inputs=[n_samples, n_estimators, max_depth], outputs=[plot])
97
  max_depth.change(fn=app_fn, inputs=[n_samples, n_estimators, max_depth], outputs=[plot])
98
+
99
  demo.load(fn=app_fn, inputs=[n_samples, n_estimators, max_depth], outputs=[plot])
100
 
101
  demo.launch()