Update README.md
Browse files
README.md
CHANGED
@@ -75,6 +75,8 @@ model = AutoModelForCausalLM.from_pretrained(
|
|
75 |
)
|
76 |
tokenizer = AutoTokenizer.from_pretrained(model_name)
|
77 |
|
|
|
|
|
78 |
# CoT
|
79 |
messages = [
|
80 |
{"role": "system", "content": "Please reason step by step, and put your final answer within \\boxed{}."},
|
|
|
75 |
)
|
76 |
tokenizer = AutoTokenizer.from_pretrained(model_name)
|
77 |
|
78 |
+
prompt = "Find the value of $x$ that satisfies the equation $4x+5 = 6x+7$."
|
79 |
+
|
80 |
# CoT
|
81 |
messages = [
|
82 |
{"role": "system", "content": "Please reason step by step, and put your final answer within \\boxed{}."},
|