Skip to content

Commit 8b624ac

Browse files
Update README.md
1 parent 6491061 commit 8b624ac

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

README.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -30,13 +30,13 @@ Theory (it'll send you to appropriate page):
3030
<br/>
3131
Experimental results (figures and tables on this page):
3232

33-
* <a href="#Processing sentences and finding cosine distances">Processing sentences and finding cosine distances</a>
34-
* <a href="#Approximation of functions via linear equations">Approximation of functions via linear equations</a>
35-
* <a href="#Optimization of smooth and non-smooth functions">Optimization of smooth and non-smooth functions</a>
33+
* [Processing sentences and finding cosine distances](#processing-sentences-and-finding-cosine-distances)
34+
* [Approximation of functions via linear equations](#approximation-of-functions-via-linear-equations)
35+
* [Optimization of smooth and non-smooth functions](#optimization-of-smooth-and-non-smooth-functions)
3636

3737
<br/>
3838

39-
### <a name="Processing sentences and finding cosine distances">Processing sentences and finding cosine distances</a>
39+
### <a id="processing-sentences-and-finding-cosine-distances">Processing sentences and finding cosine distances</a>
4040
Implementing the task about processing sentences. Finding cosine distances between first sentence and all others. For implementation a two-dimensional matrix is created, where rows are sentences (objects) and columns are words (properties).
4141
<br/>Matrix is filled with numbers that corresponds to number of times every word (property) were met in every sentence. Then, after matrix was built, distances are calculated between first vector (row) and all others. Calculation is done with the help of **'scipy.spatial.distance.cosine'** function.
4242
<br/><br/>Part of the code is shown below with a lot of comments:
@@ -77,7 +77,7 @@ Full code is available here: [Processing_Sentences.py](https://github.com/sichka
7777

7878
<br/>
7979

80-
### <a name="Approximation of functions via linear equations">Approximation of functions via linear equations</a>
80+
### <a id="approximation-of-functions-via-linear-equations">Approximation of functions via linear equations</a>
8181
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.
8282

8383
Initial function is as following:
@@ -115,7 +115,7 @@ Results are plot in order to understand the quality of approximation in eache ca
115115

116116
<br/>
117117

118-
### <a name="Optimization of smooth and non-smooth functions">Optimization of smooth and non-smooth functions</a>
118+
### <a id="optimization-of-smooth-and-non-smooth-functions">Optimization of smooth and non-smooth functions</a>
119119
Implementing the task for finding minimum of given smooth and non-smooth functions. Using **scipy.optimaze** library and two methods - **BFGS** and **differential evolution**.
120120

121121
Initial **smooth** function is as following (the same as it is in approximation task above):

0 commit comments

Comments
 (0)