mkhalifa commited on
Commit
bd8cc67
·
verified ·
1 Parent(s): cac6fbd

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +2 -2
README.md CHANGED
@@ -60,9 +60,9 @@ llm = LLM(model=model_id, max_model_len=16384)
60
 
61
  # Example problem and solution
62
  problem = "Solve for x: 2x + 3 = 7"
63
- prefix = "Step 1: Subtract 3 from both sides: 2x = 4\nStep 2: Divide by 2: x = 2"
64
 
65
- # Format the prompt -- this is the prompt used for the results in the paper.
66
  prompt = f"""You are given a math problem and a proposed step-by-step solution:
67
 
68
  [Math Problem]
 
60
 
61
  # Example problem and solution
62
  problem = "Solve for x: 2x + 3 = 7"
63
+ prefix = "Step 1: Subtract 3 from both sides: 2x = 4\nStep 2: Divide by 2: x = 1"
64
 
65
+ # Format the prompt
66
  prompt = f"""You are given a math problem and a proposed step-by-step solution:
67
 
68
  [Math Problem]