georgiyozhegov commited on
Commit
0762494
1 Parent(s): bacf266

Update readme

Browse files
Files changed (1) hide show
  1. README.md +10 -9
README.md CHANGED
@@ -45,7 +45,7 @@ output = tokenizer.decode(outputs[0][:index])
45
  print(output)
46
  ```
47
 
48
- # Good Examples
49
 
50
  ```
51
  find 2 + 3
@@ -84,22 +84,23 @@ step 10 * 0.25 = 2.5
84
  answer 2.5
85
  ```
86
 
87
- # Bad Examples
88
 
89
  ```
90
  find 0.5 + 0.25
91
- step 0.5 + 0.25 = 0.98
92
- answer 0.98
93
  ```
94
 
95
  ```
96
- find 2000 - 100
97
- step 2000 - 100 = 2000
98
- answer 2000
 
99
  ```
100
 
101
  ```
102
  find 999 / 102
103
- step 999 / 102 = 9.36
104
- answer 9.36
105
  ```
 
45
  print(output)
46
  ```
47
 
48
+ # Correct Examples
49
 
50
  ```
51
  find 2 + 3
 
84
  answer 2.5
85
  ```
86
 
87
+ # Almost Correct Examples
88
 
89
  ```
90
  find 0.5 + 0.25
91
+ step 0.5 + 0.25 = 0.78
92
+ answer 0.78
93
  ```
94
 
95
  ```
96
+ find 100 / 12 + 1
97
+ step 100 / 12 = 8.5
98
+ step 8.5 + 1 = 9.5
99
+ answer 9.5
100
  ```
101
 
102
  ```
103
  find 999 / 102
104
+ step 999 / 102 = 9.8391
105
+ answer 9.8391
106
  ```