MichaelEz123 commited on
Commit
eabccbe
·
verified ·
1 Parent(s): 3c03098

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +23 -1
README.md CHANGED
@@ -19,4 +19,26 @@ SimpleMath.
19
  SimpleMath is an simple and small model to handle very simple math tasks of plus and minus to a range of numbers between 0 to 2000.
20
  The model know to make a simple reasoning steps to come up with the answer. and he also know to use a format that looks like this: 1 + 1 = {1 + 1} that can be calculated from the code.
21
 
22
- SimpleMath was trained mostly to answer very simple math problems of 2 numbers with minus and plus.
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
19
  SimpleMath is an simple and small model to handle very simple math tasks of plus and minus to a range of numbers between 0 to 2000.
20
  The model know to make a simple reasoning steps to come up with the answer. and he also know to use a format that looks like this: 1 + 1 = {1 + 1} that can be calculated from the code.
21
 
22
+ SimpleMath was trained mostly to answer very simple math problems of 2 numbers with minus and plus.
23
+ SimpleMath is very simple, desinged for simple prompts, don't expect from it too much.
24
+
25
+ ## Example Prompts
26
+ USER: what will be the result of 1 + 1?
27
+ BOT: 1 + 1 results in 2
28
+
29
+ USER: how much is 11 + 52?
30
+ BOT: 11 + 52 yields 63
31
+
32
+ USER: What is the value of 55 + 55
33
+ BOT: Let's think step by step:
34
+ - Decompose: 55 = 50 + 5, 55 = 50 + 5
35
+ - Add tens: 50 + 50 = 100
36
+ - Add ones: 5 + 5 = 10
37
+ - Total: 100 + 10 = 110
38
+
39
+ USER: What is the value of 90 + 84?
40
+ BOT: Let's think step by step:
41
+ - Decompose: 90 = 90 + 0, 84 = 80 + 4
42
+ - Add tens: 90 + 80 = 170
43
+ - Add ones: 0 + 4 = 4
44
+ - Total: 170 + 4 = 174