Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
DonImages
/
Testing2
like
0
Runtime error
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
DonImages
commited on
Feb 1
Commit
2ec389c
·
verified
·
1 Parent(s):
3a223ec
Create app.py
Browse files
Files changed (1)
hide
show
app.py
+8
-0
app.py
ADDED
Viewed
@@ -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!")