Text-to-Image
Diffusers
vietnam
sd
File size: 540 Bytes
0a6f300
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
import os

# Kiểm tra xem file checkpoint có tồn tại hay không
checkpoint_path = "path/to/your/checkpoint/file.ckpt"
if not os.path.exists(checkpoint_path):
    print("File checkpoint không tồn tại.")
    exit()

# Tải model và tokenizer từ Hugging Face
from transformers import AutoModelForGenerativePreTraining, AutoTokenizer

model = AutoModelForGenerativePreTraining.from_pretrained(checkpoint_path)
tokenizer = AutoTokenizer.from_pretrained("visd-tdnm")

print("Model và tokenizer đã được tải thành công.")