justinj92 commited on
Commit
a90c699
·
verified ·
1 Parent(s): d9d4336

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -5
app.py CHANGED
@@ -17,13 +17,10 @@ subprocess.run(
17
  shell=True,
18
  )
19
 
 
 
20
 
21
 
22
- model = AutoModelForCausalLM.from_pretrained(
23
- "justinj92/phi3-orpo",
24
- trust_remote_code=True
25
- )
26
- tok = AutoTokenizer.from_pretrained("justinj92/phi3-orpo")
27
  terminators = [
28
  tok.eos_token_id,
29
  ]
 
17
  shell=True,
18
  )
19
 
20
+ tok = AutoTokenizer.from_pretrained("justinj92/phi3-orpo", trust_remote_code=True)
21
+ model = AutoModelForCausalLM.from_pretrained("justinj92/phi3-orpo", trust_remote_code=True)
22
 
23
 
 
 
 
 
 
24
  terminators = [
25
  tok.eos_token_id,
26
  ]