Tonic commited on
Commit
b8790bd
Β·
unverified Β·
1 Parent(s): 9dbcbb8

switch to smaller model

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -100,7 +100,7 @@ examples = [
100
  [unimath4, additional_info_prompt, 2500]
101
  ]
102
 
103
- model_name = "AI-MO/Kimina-Prover-72B"
104
  tokenizer = AutoTokenizer.from_pretrained(model_name, trust_remote_code=True)
105
  model = AutoModelForCausalLM.from_pretrained(model_name, torch_dtype=torch.bfloat16, device_map="auto", trust_remote_code=True)
106
 
 
100
  [unimath4, additional_info_prompt, 2500]
101
  ]
102
 
103
+ model_name = "AI-MO/Kimina-Prover-Distill-8B"
104
  tokenizer = AutoTokenizer.from_pretrained(model_name, trust_remote_code=True)
105
  model = AutoModelForCausalLM.from_pretrained(model_name, torch_dtype=torch.bfloat16, device_map="auto", trust_remote_code=True)
106