File size: 1,792 Bytes
9044e73
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1c0c54b
9044e73
 
 
 
 
 
 
 
 
 
 
 
 
c330570
 
c2a5215
2320934
 
c2a5215
2320934
 
 
 
 
 
ad76908
2320934
 
ad76908
2320934
 
ad76908
c330570
f46dfa8
9044e73
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
52
53
54
# algebra_linear_1d
---
language: en
datasets:
- algebra_linear_1d
---

This is a [t5-small](https://ai.googleblog.com/2020/02/exploring-transfer-learning-with-t5.html) fine-tuned version on the [math_dataset/algebra_linear_1d](https://www.tensorflow.org/datasets/catalog/math_dataset#mathdatasetalgebra_linear_1d_default_config) for solving **algebra 1d equations** mission.

To load the model:
(necessary packages: !pip install transformers sentencepiece)
```python
from transformers import AutoTokenizer, AutoModelWithLMHead
tokenizer = AutoTokenizer.from_pretrained("dbernsohn/algebra_linear_1d")
model = AutoModelWithLMHead.from_pretrained("dbernsohn/algebra_linear_1d")
```

You can then use this model to solve algebra 1d equations into numbers.

```python
query = "Solve 0 = 1026*x - 2474 + 46592 for x"
input_text = f"{query} </s>"
features = tokenizer([input_text], return_tensors='pt')
model.to('cuda')
output = model.generate(input_ids=features['input_ids'].cuda(), 
                        attention_mask=features['attention_mask'].cuda())

tokenizer.decode(output[0])
# <pad> -41</s>
```

Another examples:

+ Solve 1112*r + 1418*r - 5220 = 587*r - 28536 for r. 
+ Answer:  -12 Pred:  -12
----
+ Solve -119*k + 6*k - 117 - 352 = 322 for k. 
+ Answer:  -7 Pred:  -7
----
+ Solve -547 = -62*t + 437 - 798 for t. 
+ Answer:  3 Pred:  3
----
+ Solve 3*j - 3*j + 0*j - 4802 = 98*j for j. 
+ Answer:  -49 Pred:  -49
----
+ Solve 3047*n - 6130*n - 1700 = -3049*n for n. 
+ Answer:  -50 Pred:  -50
----
+ Solve 121*i + 1690 = 76*i - 128*i + 133 for i. 
+ Answer:  -9 Pred:  -9

The whole training process and hyperparameters are in my [GitHub repo](https://github.com/DorBernsohn/CodeLM/tree/main/MathLM)
> Created by [Dor Bernsohn](https://www.linkedin.com/in/dor-bernsohn-70b2b1146/)