File size: 1,235 Bytes
b6a0f74
 
 
 
 
 
 
 
 
 
d14499e
 
3c03098
 
 
 
 
 
ef0e102
3c03098
 
eabccbe
 
 
 
 
45404b7
eabccbe
 
b77aba7
eabccbe
45404b7
eabccbe
 
b77aba7
eabccbe
45404b7
eabccbe
 
 
 
 
 
b77aba7
eabccbe
45404b7
eabccbe
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
---
license: apache-2.0
language:
- en
tags:
- math
- english
- simple
- ai
- lm
---

Version 1.0 | MichaelEz123
SimpleMath.

--------------

## Model Details
SimpleMath is a simple and small model to handle very simple math tasks of plus and minus to a range of numbers between 0 to 2000 (better with less than 100).
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.

SimpleMath was trained mostly to answer very simple math problems of 2 numbers with minus and plus.
SimpleMath is very simple, desinged for simple prompts, don't expect from it too much.

## Example Prompts
USER: what will be the result of 1 + 1?

BOT: 1 + 1 results in 2

----------------
USER: how much is 11 + 52?

BOT: 11 + 52 yields 63

----------------
USER: What is the value of 55 + 55

BOT: Let's think step by step:
- Decompose: 55 = 50 + 5, 55 = 50 + 5
- Add tens: 50 + 50 = 100
- Add ones: 5 + 5 = 10
- Total: 100 + 10 = 110

----------------
USER: What is the value of 90 + 84?

BOT: Let's think step by step:
- Decompose: 90 = 90 + 0, 84 = 80 + 4
- Add tens: 90 + 80 = 170
- Add ones: 0 + 4 = 4
- Total: 170 + 4 = 174