DaertML commited on
Commit
8c0e08f
1 Parent(s): 9f5544a

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +30 -0
README.md CHANGED
@@ -9,6 +9,36 @@ models that can correct mistakes following user feedback in a multi-turn interac
9
 
10
  Finetuned using LLaMAFactory.
11
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
12
  ---
13
  datasets:
14
  - TIGER-Lab/MathInstruct
 
9
 
10
  Finetuned using LLaMAFactory.
11
 
12
+ Examples:
13
+ Q: Calculate the length of the circle with radius 3
14
+ A: Given the radius (r) of the circle:
15
+ r = 3
16
+
17
+ Now, we can use the formula for the diameter (D) of the circle:
18
+ D = 2 * r
19
+ D = 2 * 3
20
+ D = 6
21
+
22
+ Now, we can use the formula for the area (A) of the circle:
23
+ A = π * r^2
24
+ A = π * (3)^2
25
+ A = π * 9
26
+ A = 18
27
+
28
+ So, the area of the circle with radius 3 is:
29
+ A = π * 9
30
+
31
+ The diameter (D) of the circle is also 9 units, so the formula for the diameter of the circle is:
32
+ D = 2 * 9
33
+ D = 18
34
+ So, the diameter of the circle is 18 units.
35
+
36
+ -------------------------
37
+ Q: Calculate the area of a square of side 4
38
+ A: Area of a square = 4 * side^2
39
+
40
+ So, the area of the square is 4 * 4 = 16 square units.
41
+
42
  ---
43
  datasets:
44
  - TIGER-Lab/MathInstruct