Skip to content

Commit 77be7cc

Browse files
Update README.md
1 parent 5c5c115 commit 77be7cc

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

README.md

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -57,6 +57,7 @@ Then, two closest sentences to the 0-numbered sentence were found as a result.
5757

5858
Full code is available here: [Processing_Sentences.py](https://github.com/sichkar-valentyn/Machine_Learning_in_Python/tree/master/Codes/Processing_Sentences.py)
5959

60+
6061
### <a name="Approximation of functions via linear equations">Approximation of functions via linear equations</a>
6162
Implementing the task for approximation of function with linear equations. Using first degree polynomial, second degree polynomial and third degree polynomial. Solving equations with matrix method via **'numpy.linalg.solve(a, b)'** function.
6263

@@ -87,11 +88,13 @@ w = np.linalg.solve(a, b) # [ 3.43914511 -0.18692825]
8788

8889
```
8990

90-
Results are plot in order to understand the quality of approximation in eche case. Figure is shown below
91+
Full code is available here: [Function_approximation.py](https://github.com/sichkar-valentyn/Machine_Learning_in_Python/tree/master/Codes/Function_approximation.py)
92+
93+
Results are plot in order to understand the quality of approximation in eache case. Figure is shown below:
9194

9295
![Approximation_of_function](images/Approximation_of_function.png)
9396

94-
Full code is available here: [Function_approximation.py](https://github.com/sichkar-valentyn/Machine_Learning_in_Python/tree/master/Codes/Function_approximation.py)
97+
9598

9699
<br/>
97100

0 commit comments

Comments
 (0)