TRACER-Net / run.py
WeiZhou-CSU's picture
Upload 22 files
bae4459 verified
Raw
History Blame Contribute Delete
422 Bytes
"""Minimal Hugging Face Space entrypoint."""
import traceback
print("[ENTRY 1/3] run.py started", flush=True)
try:
from app import launch
except BaseException:
print("[ENTRY ERROR] Failed while importing app.py", flush=True)
traceback.print_exc()
raise
print("[ENTRY 2/3] app.py imported", flush=True)
if __name__ == "__main__":
print("[ENTRY 3/3] Calling app.launch()", flush=True)
launch()