dbernsohn commited on
Commit
9044e73
1 Parent(s): 5ced1ed

Create README.md

Browse files
Files changed (1) hide show
  1. README.md +51 -0
README.md ADDED
@@ -0,0 +1,51 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # algebra_linear_1d
2
+ ---
3
+ language: en
4
+ datasets:
5
+ - algebra_linear_1d
6
+ ---
7
+
8
+ 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.
9
+
10
+ To load the model:
11
+ (necessary packages: !pip install transformers sentencepiece)
12
+ ```python
13
+ from transformers import AutoTokenizer, AutoModelWithLMHead
14
+ tokenizer = AutoTokenizer.from_pretrained("dbernsohn/algebra_linear_1d")
15
+ model = AutoModelWithLMHead.from_pretrained("dbernsohn/algebra_linear_1d")
16
+ ```
17
+
18
+ You can then use this model to translate SQL queries into plain english.
19
+
20
+ ```python
21
+ query = "Solve 0 = 1026*x - 2474 + 46592 for x"
22
+ input_text = f"{query} </s>"
23
+ features = tokenizer([input_text], return_tensors='pt')
24
+ model.to('cuda')
25
+ output = model.generate(input_ids=features['input_ids'].cuda(),
26
+ attention_mask=features['attention_mask'].cuda())
27
+
28
+ tokenizer.decode(output[0])
29
+ # <pad> -41</s>
30
+
31
+ Solve 1112*r + 1418*r - 5220 = 587*r - 28536 for r.
32
+ Answer: -12 Pred: -12
33
+ ----
34
+ Solve -547 = -62*t + 437 - 798 for t.
35
+ Answer: 3 Pred: -1
36
+ ----
37
+ Solve -119*k + 6*k - 117 - 352 = 322 for k.
38
+ Answer: -7 Pred: -7
39
+ ----
40
+ Solve 3*j - 3*j + 0*j - 4802 = 98*j for j.
41
+ Answer: -49 Pred: -47
42
+ ----
43
+ Solve 3047*n - 6130*n - 1700 = -3049*n for n.
44
+ Answer: -50 Pred: -25
45
+ ----
46
+ Solve 121*i + 1690 = 76*i - 128*i + 133 for i.
47
+ Answer: -9 Pred: -7
48
+ ```
49
+
50
+
51
+ > Created by [Dor Bernsohn](https://www.linkedin.com/in/dor-bernsohn-70b2b1146/)