Spaces:
Running
on
Zero
Running
on
Zero
# Imports | |
import spaces | |
import torch | |
from PIL import Image | |
from transformers import AutoModel, AutoTokenizer | |
# Pre-Initialize | |
DEVICE = "auto" | |
if DEVICE == "auto": | |
DEVICE = "cuda" if torch.cuda.is_available() else "cpu" | |
print(f"[SYSTEM] | Using {DEVICE} type compute device.") | |
# Variables | |
repo = AutoModel.from_pretrained("openbmb/MiniCPM-V-2_6", torch_dtype=torch.bfloat16, trust_remote_code=True) | |
tokenizer = AutoTokenizer.from_pretrained("openbmb/MiniCPM-V-2_6", trust_remote_code=True) | |
# Functions | |
# Initialize |