Update app.py
Browse files
app.py
CHANGED
@@ -53,4 +53,7 @@ iface = gr.Interface(
|
|
53 |
)
|
54 |
|
55 |
# Mount the Gradio app
|
56 |
-
app = gr.mount_gradio_app(app, iface, path="/")
|
|
|
|
|
|
|
|
53 |
)
|
54 |
|
55 |
# Mount the Gradio app
|
56 |
+
app = gr.mount_gradio_app(app, iface, path="/")
|
57 |
+
|
58 |
+
if __name__ == "__main__":
|
59 |
+
import train # This will start the training process
|