garvitsachdeva commited on
Commit
171b6d6
Β·
1 Parent(s): 177e110

Add startup diagnostics

Browse files
Files changed (1) hide show
  1. app.py +6 -1
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 os, sys, json, time
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 ─────────────────────────────────────────────