Spaces:
Paused
Paused
Commit Β·
171b6d6
1
Parent(s): 177e110
Add startup diagnostics
Browse files
app.py
CHANGED
|
@@ -14,9 +14,14 @@ Training starts automatically when the Space boots.
|
|
| 14 |
Refresh the page or click "Refresh" to see live progress.
|
| 15 |
"""
|
| 16 |
|
|
|
|
|
|
|
|
|
|
| 17 |
import gradio as gr
|
|
|
|
|
|
|
| 18 |
import threading
|
| 19 |
-
import
|
| 20 |
import numpy as np
|
| 21 |
|
| 22 |
# ββ Shared state βββββββββββββββββββββββββββββββββββββββββββββ
|
|
|
|
| 14 |
Refresh the page or click "Refresh" to see live progress.
|
| 15 |
"""
|
| 16 |
|
| 17 |
+
import sys, os
|
| 18 |
+
print("=== PYTHON STARTED ===", flush=True)
|
| 19 |
+
|
| 20 |
import gradio as gr
|
| 21 |
+
print("=== GRADIO IMPORTED ===", flush=True)
|
| 22 |
+
|
| 23 |
import threading
|
| 24 |
+
import json, time
|
| 25 |
import numpy as np
|
| 26 |
|
| 27 |
# ββ Shared state βββββββββββββββββββββββββββββββββββββββββββββ
|