PLLuM / app.py
dsolowiej's picture
Create app.py
18cc6ba verified
raw
history blame
228 Bytes
# Load model directly
from transformers import AutoTokenizer, AutoModelForCausalLM
tokenizer = AutoTokenizer.from_pretrained("CYFRAGOVPL/PLLuM-12B-chat")
model = AutoModelForCausalLM.from_pretrained("CYFRAGOVPL/PLLuM-12B-chat")