Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -46,5 +46,5 @@ def findCorrelation(dataset, target):
|
|
46 |
|
47 |
examples = [["boston.csv", "MEDV"]]
|
48 |
|
49 |
-
demo = gr.Interface(fn=findCorrelation, inputs=[gr.File(), 'text'], outputs=[gr.Label(num_top_classes = 10), gr.Plot(), gr.Plot(), gr.Plot(), gr.Plot()], title="Find correlation")
|
50 |
demo.launch(debug=True)
|
|
|
46 |
|
47 |
examples = [["boston.csv", "MEDV"]]
|
48 |
|
49 |
+
demo = gr.Interface(fn=findCorrelation, inputs=[gr.File(), 'text'], outputs=[gr.Label(num_top_classes = 10), gr.Plot(), gr.Plot(), gr.Plot(), gr.Plot()], title="Find correlation", examples = examples)
|
50 |
demo.launch(debug=True)
|