ToletiSri commited on
Commit
fbce4d4
·
verified ·
1 Parent(s): d54999f

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -2
app.py CHANGED
@@ -22,8 +22,7 @@ class _MLPVectorProjector(nn.Module):
22
 
23
  model_name = "microsoft/phi-2"
24
 
25
- phi2_text = AutoModelForCausalLM.from_pretrained(model_name, trust_remote_code=True,
26
- torch_dtype = torch.float16)
27
  tokenizer = AutoTokenizer.from_pretrained(model_name, trust_remote_code=True)
28
 
29
 
 
22
 
23
  model_name = "microsoft/phi-2"
24
 
25
+ phi2_text = AutoModelForCausalLM.from_pretrained(model_name, trust_remote_code=True)
 
26
  tokenizer = AutoTokenizer.from_pretrained(model_name, trust_remote_code=True)
27
 
28