File size: 565 Bytes
781db92 797fccf 0ba5302 cc6265c 781db92 |
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 |
---
datasets:
- georgiyozhegov/g.arithmetic
library_name: transformers
license: mit
pipeline_tag: text-generation
tags:
- trl
- sft
---
Model-calculator.
Works well with single-digit numbers, but with numbers with more than 2 digits it starts to make mistakes.
# Examples
* 1 digit:
```
find 1 + 3 / 1
step 3 / 1 = 3
step 1 + 3 = 4
answer 4
```
* 2 digits:
```
find 10 + 34
step 10 + 34 = 42
answer 42
```
* 3 digits:
```
find 100 + 200
step 100 + 200 = 215
answer 215
```
* floating-point numbers:
```
find 1.1 + 0.2
step 1.1 + 0.2 = 1.3
answer 1.3
``` |