florath commited on
Commit
4e5cfaf
1 Parent(s): 9c1e499

Added missing tokenizer line

Browse files
Files changed (1) hide show
  1. README.md +2 -0
README.md CHANGED
@@ -112,6 +112,8 @@ ft_model = PeftModel.from_pretrained(
112
 
113
  eval_prompt = "Lemma plus_n_O : forall n:nat, n = n + 0."
114
 
 
 
115
  ft_model.eval()
116
  with torch.no_grad():
117
 
 
112
 
113
  eval_prompt = "Lemma plus_n_O : forall n:nat, n = n + 0."
114
 
115
+ model_input = eval_tokenizer(eval_prompt, return_tensors="pt").to("cuda")
116
+
117
  ft_model.eval()
118
  with torch.no_grad():
119