dsolowiej commited on
Commit
18cc6ba
·
verified ·
1 Parent(s): bae0ec5

Create app.py

Browse files
Files changed (1) hide show
  1. app.py +5 -0
app.py ADDED
@@ -0,0 +1,5 @@
 
 
 
 
 
 
1
+ # Load model directly
2
+ from transformers import AutoTokenizer, AutoModelForCausalLM
3
+
4
+ tokenizer = AutoTokenizer.from_pretrained("CYFRAGOVPL/PLLuM-12B-chat")
5
+ model = AutoModelForCausalLM.from_pretrained("CYFRAGOVPL/PLLuM-12B-chat")