Testing2 / appVerify2.py
DonImages's picture
Rename app.py to appVerify2.py
f64ba32 verified
raw
history blame contribute delete
275 Bytes
import torch
try:
lora_checkpoint = torch.load("lora_trained_model.pt", map_location="cpu")
print("Checkpoint loaded successfully!")
print(type(lora_checkpoint)) # Print type to verify structure
except Exception as e:
print(f"Error loading checkpoint: {e}")