robert commited on
Commit
834b899
·
1 Parent(s): 3b1ba3c

Downgrading model to see if size is a problem

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -17,8 +17,8 @@ from transformers import (
17
  TextIteratorStreamer,
18
  )
19
 
20
- tokenizer = AutoTokenizer.from_pretrained("ContextualAI/archangel_sft-kto_llama30b")
21
- model = AutoModelForCausalLM.from_pretrained("ContextualAI/archangel_sft-kto_llama30b")
22
  model = model.to("cuda:0")
23
 
24
 
 
17
  TextIteratorStreamer,
18
  )
19
 
20
+ tokenizer = AutoTokenizer.from_pretrained("ContextualAI/archangel_sft-kto_llama13b")
21
+ model = AutoModelForCausalLM.from_pretrained("ContextualAI/archangel_sft-kto_llama13b")
22
  model = model.to("cuda:0")
23
 
24