MaziyarPanahi commited on
Commit
1e5a203
1 Parent(s): 89d9d44

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +122 -3
README.md CHANGED
@@ -1,8 +1,127 @@
1
  ---
 
 
 
2
  tags:
3
  - merge
4
- license: apache-2.0
 
5
  ---
6
- # MaziyarPanahi/WizardLM-Math-70B-TIES-v0.1
7
 
8
- TIES between WizardLM and WizardMath 70B models.
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  ---
2
+ license: agpl-3.0
3
+ library_name: transformers
4
+ pipeline_tag: text-generation
5
  tags:
6
  - merge
7
+ - wizardlm
8
+ - wizardmath
9
  ---
 
10
 
11
+
12
+
13
+ ## Examples
14
+
15
+
16
+
17
+ There are three killers in a room. Someone enters the room and kills one of them. Nobody leaves the room. How many killers are left in the room? Explain your reasoning step by step.
18
+
19
+ ```
20
+ Initially, there are three killers in the room. Let's call them Killer A, Killer B, and Killer C.
21
+
22
+ Step 1: Someone enters the room and kills one of the killers. We don't know who this person is or which killer they killed. However, we know that one killer is dead.
23
+
24
+ Step 2: Now, we have two killers left in the room. These two killers are the ones who were not killed by the person who entered the room.
25
+
26
+ Step 3: The person who entered the room is not a killer, as they are not included in the initial three killers. However, they have killed one of the killers, so they are not innocent either.
27
+
28
+ Step 4: Since the person who entered the room is not a killer, we can conclude that there are only two killers left in the room after the incident.
29
+
30
+ So, the final answer is: There are 2 killers left in the room.
31
+
32
+ The answer is: there are 2 killers left in the room.
33
+ ```
34
+ Answered wrong!
35
+
36
+ Mark is faster than Mary , Mary is faster than Joe. Is Joe faster than Mark? Let's think step by step
37
+
38
+ ```
39
+ irst, we know that Mark is faster than Mary. This means that if they were to race, Mark would finish before Mary. We can represent this relationship as:
40
+
41
+ Mark > Mary
42
+
43
+ Next, we know that Mary is faster than Joe. This means that if Mary and Joe were to race, Mary would finish before Joe. We can represent this relationship as:
44
+
45
+ Mary > Joe
46
+
47
+ Now, we want to find out if Joe is faster than Mark. To do this, we can use the transitive property, which states that if A > B and B > C, then A > C. In our case, A represents Mark, B represents Mary, and C represents Joe. So, we can apply the transitive property to our relationships:
48
+
49
+ Since Mark > Mary and Mary > Joe, we can conclude that Mark > Joe.
50
+
51
+ So, the final answer is: No, Joe is not faster than Mark.
52
+
53
+ The answer is: No, Joe is not faster than Mark.
54
+ ```
55
+
56
+ If I lay 2 wet shirts out in the sun flat on the ground to dry and it takes 5 hours until they are dry, how long would it take to dry 4 shirts of the same type that way simultanously?
57
+
58
+ ```
59
+ First, we need to understand the relationship between the number of shirts and the time it takes to dry them. Since the shirts are laid out flat on the ground, they have the same surface area exposed to the sun. This means that the drying time is directly proportional to the number of shirts.
60
+
61
+ Step 1: Identify the given information.
62
+ - Time to dry 2 shirts: 5 hours
63
+ - Number of shirts: 2
64
+
65
+ Step 2: Set up a proportion to represent the relationship between the number of shirts and the time it takes to dry them.
66
+ - Let x be the time it takes to dry 4 shirts.
67
+ - We can write the proportion as:
68
+
69
+ (2 shirts / 5 hours) = (4 shirts / x)
70
+
71
+ Step 3: Solve for x.
72
+ - To solve for x, we can cross-multiply:
73
+
74
+ 2 shirts * x = 5 hours * 4 shirts
75
+
76
+ - Simplify the equation:
77
+
78
+ 2x = 20 shirt-hours
79
+
80
+ - Now, divide both sides by 2 to isolate x:
81
+
82
+ x = 10 hours
83
+
84
+ So, it would take 10 hours to dry 4 shirts of the same type simultaneously.
85
+
86
+ The answer is: 10.
87
+ ```
88
+ Wrong, should be 5
89
+
90
+
91
+ explain step by step 25-4*2+3=?
92
+ ```
93
+ First, we need to follow the order of operations (PEMDAS/BODMAS), which stands for Parentheses/Brackets, Exponents/Orders, Multiplication and Division, and Addition and Subtraction. This means we should perform the operations inside the parentheses first, then the exponents, then the multiplication and division, and finally the addition and subtraction.
94
+
95
+ Here's the given expression: 25 - 4 * 2 + 3
96
+
97
+ Step 1: Perform the multiplication operation inside the parentheses.
98
+ 25 - (4 * 2) + 3
99
+
100
+ Step 2: Perform the multiplication operation.
101
+ 25 - (8) + 3
102
+
103
+ Step 3: Now, we have a subtraction operation and an addition operation. Since they have the same precedence, we can perform them from left to right.
104
+ 25 - 8 + 3
105
+
106
+ Step 4: Perform the subtraction operation.
107
+ 17 + 3
108
+
109
+ Step 5: Perform the addition operation.
110
+ 20
111
+
112
+ So, the final answer is 20.
113
+
114
+ The answer is: the final answer is 20.
115
+ ```
116
+
117
+ ## Prompt template
118
+
119
+ ```
120
+ "Below is an instruction that describes a task. Write a response that appropriately completes the request.\n\n### Instruction:\n{instruction}\n\n### Response:"
121
+ ```
122
+
123
+ or for CoT (❗For the simple math questions, we do NOT recommend to use the CoT prompt.)
124
+
125
+ ```
126
+ "Below is an instruction that describes a task. Write a response that appropriately completes the request.\n\n### Instruction:\n{instruction}\n\n### Response: Let's think step by step."
127
+ ```