Spaces:
Running
Running
File size: 315 Bytes
95cbc5b | 1 2 3 4 5 6 7 8 9 10 11 | import torch
print(f"Torch version: {torch.__version__}")
print(f"CUDA available: {torch.cuda.is_available()}")
try:
from unsloth import FastLanguageModel
print("Unsloth imported successfully")
except Exception as e:
print(f"Error importing Unsloth: {e}")
import traceback
traceback.print_exc()
|