Fixed runtime error on app.py
Browse files
app.py
CHANGED
@@ -74,5 +74,5 @@ with gr.Blocks() as demo:
|
|
74 |
inp.change(getClusteringPlot, inputs=inp, outputs=[plot])
|
75 |
demo.load(getClusteringPlot, inputs=[inp], outputs=[plot])
|
76 |
|
77 |
-
if __name__
|
78 |
demo.launch()
|
|
|
74 |
inp.change(getClusteringPlot, inputs=inp, outputs=[plot])
|
75 |
demo.load(getClusteringPlot, inputs=[inp], outputs=[plot])
|
76 |
|
77 |
+
if __name__ == "main":
|
78 |
demo.launch()
|