DonImages commited on
Commit
2ec389c
·
verified ·
1 Parent(s): 3a223ec

Create app.py

Browse files
Files changed (1) hide show
  1. app.py +8 -0
app.py ADDED
@@ -0,0 +1,8 @@
 
 
 
 
 
 
 
 
 
1
+ import os
2
+
3
+ lora_path = "lora_trained_model.pt"
4
+
5
+ if os.path.exists(lora_path):
6
+ print(f"✅ {lora_path} exists, size: {os.path.getsize(lora_path)} bytes")
7
+ else:
8
+ print("⚠️ LoRA file not found!")