wenhu commited on
Commit
3e42ca8
1 Parent(s): 3e24fc3

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +21 -1
README.md CHANGED
@@ -48,11 +48,31 @@ The models are evaluated using open-ended and multiple-choice math problems from
48
  | MAmmoTH | 70B | Llama-2 | 76.7 | 44.2 | 61.4 | 64.3 | 61.7 | 81.7 | 55.3 | 45.3 | 58.6 | 52.3 | 58.6 |
49
 
50
 
51
-
52
  ## Usage
53
  You can use the models through Huggingface's Transformers library. Use the pipeline function to create a text-generation pipeline with the model of your choice, then feed in a math problem to get the solution.
54
  Check our Github repo for more advanced use: [https://github.com/TIGER-AI-Lab/MAmmoTH](https://github.com/TIGER-AI-Lab/MAmmoTH)
55
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
56
  ## Intended Uses
57
  These models are trained for research purposes. They are designed to solve general math problems. They can be used in educational software, tutoring systems, or any application where a solution to a math problem is needed. The models can generate both a chain of thought (CoT) rationale and a program of thought (PoT) rationale, providing a comprehensive solution to a given math problem.
58
 
 
48
  | MAmmoTH | 70B | Llama-2 | 76.7 | 44.2 | 61.4 | 64.3 | 61.7 | 81.7 | 55.3 | 45.3 | 58.6 | 52.3 | 58.6 |
49
 
50
 
 
51
  ## Usage
52
  You can use the models through Huggingface's Transformers library. Use the pipeline function to create a text-generation pipeline with the model of your choice, then feed in a math problem to get the solution.
53
  Check our Github repo for more advanced use: [https://github.com/TIGER-AI-Lab/MAmmoTH](https://github.com/TIGER-AI-Lab/MAmmoTH)
54
 
55
+ ## Prompt Format
56
+ If you want to do CoT:
57
+ ```
58
+ Below is an instruction that describes a task. Write a response that appropriately completes the request.
59
+
60
+ ### Instruction:
61
+ {instruction}
62
+
63
+ ### Response:
64
+ ```
65
+
66
+ If you want to do PoT:
67
+ ```
68
+ Below is an instruction that describes a task. Write a response that appropriately completes the request.
69
+
70
+ ### Instruction:
71
+ {instruction} Let's write a program.
72
+
73
+ ### Response:
74
+ ```
75
+
76
  ## Intended Uses
77
  These models are trained for research purposes. They are designed to solve general math problems. They can be used in educational software, tutoring systems, or any application where a solution to a math problem is needed. The models can generate both a chain of thought (CoT) rationale and a program of thought (PoT) rationale, providing a comprehensive solution to a given math problem.
78