Vinnnf commited on
Commit
07b3e81
·
verified ·
1 Parent(s): 0c3e61d

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +2 -3
README.md CHANGED
@@ -29,10 +29,9 @@ model = AutoModelForCausalLM.from_pretrained(
29
  tokenizer = AutoTokenizer.from_pretrained(model_name)
30
 
31
  instruction = "Please reason step by step, and put your final answer within \\boxed{}."
 
 
32
  # prompt = "How many r's are in the word \"strawberry\""
33
- # prompt = "The arithmetic mean of 7, 2, $x$ and 10 is 9. What is the value of $x$?"
34
- prompt = "Let $S$ be the set of points $(a,b)$ with $0 \le a,$ $b \le 1$ such that the equation \[x^4 + ax^3 - bx^2 + ax + 1 = 0\] has at least one real root. Determine the area of the graph of $S.$"
35
-
36
 
37
  messages = [
38
  {"role": "user", "content": f"{instruction}\n{prompt}"},
 
29
  tokenizer = AutoTokenizer.from_pretrained(model_name)
30
 
31
  instruction = "Please reason step by step, and put your final answer within \\boxed{}."
32
+ prompt = "The arithmetic mean of 7, 2, $x$ and 10 is 9. What is the value of $x$?"
33
+ # prompt = "Let $S$ be the set of points $(a,b)$ with $0 \le a,$ $b \le 1$ such that the equation \[x^4 + ax^3 - bx^2 + ax + 1 = 0\] has at least one real root. Determine the area of the graph of $S.$"
34
  # prompt = "How many r's are in the word \"strawberry\""
 
 
 
35
 
36
  messages = [
37
  {"role": "user", "content": f"{instruction}\n{prompt}"},