rphrp1985 commited on
Commit
f881a06
1 Parent(s): 48cb5f9

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -22,7 +22,7 @@ model_id = "mistralai/Mixtral-8x7B-Instruct-v0.1"
22
 
23
  tokenizer = AutoTokenizer.from_pretrained(model_id, token= token)
24
 
25
- model = AutoModelForCausalLM.from_pretrained(model_id, token= token)
26
 
27
 
28
 
 
22
 
23
  tokenizer = AutoTokenizer.from_pretrained(model_id, token= token)
24
 
25
+ model = AutoModelForCausalLM.from_pretrained(model_id, token= token, torch_dtype=torch.bfloat16,)
26
 
27
 
28