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!") |
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!") |