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...
39efbe4
Testing2
/
appVerify.py
DonImages
Rename app.py to appVerify.py
c7dc3fe
verified
3 months ago
raw
Copy download link
history
blame
Safe
203 Bytes
import
os
lora_path =
"lora_trained_model.pt"
if
os.path.exists(lora_path):
print
(
f"✅
{lora_path}
exists, size:
{os.path.getsize(lora_path)}
bytes"
)
else
:
print
(
"⚠️ LoRA file not found!"
)