Menouar commited on
Commit
3d309ce
1 Parent(s): debbb92

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +19 -3
README.md CHANGED
@@ -46,12 +46,28 @@ The model can solve any equation of the form ```Ay + ay + b + B = Dy + dy + c +
46
 
47
  ## Training and evaluation data
48
 
49
- I will complete the evaluation data later, but for now,
50
- let’s show an example of a linear equation where this model finds the correct solution, unlike other models such as ChatGPT3.5, Bard, Llama 70B, and Mixtral.
51
-
52
  ```
53
  Solve for y: 10 + 4y -9y +5 = 4 +8y - 2y + 8 .
54
  ```
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
55
 
56
  <strong>Mixtral 8x7b</strong><br>
57
  Let's first simplify the equation by combining like terms:<br>
 
46
 
47
  ## Training and evaluation data
48
 
49
+ I will compile the evaluation data at a later time. For the moment, I’d like to present an example of a linear equation. In this example, this model, Bard, and BingChat are able to find the correct solution. However, other models, including ChatGPT3.5, Llama 70B, Mixtral, and Falcon-7b-instruct, do not arrive at the correct solution.
 
 
50
  ```
51
  Solve for y: 10 + 4y -9y +5 = 4 +8y - 2y + 8 .
52
  ```
53
+ <strong>Falcon-7b-instruct</strong><br>
54
+ Solve for y: 10 + 4y -9y +5 = 4 +8y - 2y + 8 .<br>
55
+ First, we can solve for y.<br>
56
+ y = -2 + 8x<br>
57
+ We add 8 to x and subtract -2, giving:<br>
58
+ x = -2<br>
59
+ so 2 = +2<br>
60
+ y = 4<br>
61
+ we add 2 to y, so y = +6<br>
62
+ We can now plug these values into the original equation:<br>
63
+ 10 + 4x -9x + 5 = -2 + 4x<br>
64
+ 10 + 4(-2) = -6<br>
65
+ we end up with -1 = -1 + 4<br>
66
+ 4 = 1<br>
67
+ y = 1<br>
68
+ Therefore, the solution is <strong><span style="color:red">
69
+ y = 1
70
+ </span></strong>. The equation has been solved.
71
 
72
  <strong>Mixtral 8x7b</strong><br>
73
  Let's first simplify the equation by combining like terms:<br>