Skip to content

Commit b4ad121

Browse files
committed
Added gradient descent
1 parent f74bed7 commit b4ad121

File tree

4 files changed

+30
-1
lines changed

4 files changed

+30
-1
lines changed

about.html

+4-1
Original file line numberDiff line numberDiff line change
@@ -87,6 +87,10 @@ <h2>Timeline</h2>
8787
<th>Topic</th>
8888
<th>Date</th>
8989
</tr>
90+
<tr>
91+
<td>Gradient Descent</td>
92+
<td>July 18th, 2022</td>
93+
</tr>
9094
<tr>
9195
<td>Firefly Synchronization</td>
9296
<td>June 30th, 2022</td>
@@ -277,7 +281,6 @@ <h2>Planned Topics</h2>
277281
<li>Orbits (basically, shooting balls out of a cannon at different altitudes and velocities)</li>
278282
<li>SIR Model of Pandemic spread</li>
279283
<li>Boltzmann Distribution in a randomized exchange lattice</li>
280-
<li>Working of Gradient Descent Algorithm</li>
281284
<li>Solve Travelling Salesman using Genetic ALgorithm, Simulated Annealing and Ant-Colony Optimization</li>
282285
<li>Raycasting</li>
283286
</ol>

images/gradient_descent.png

19.6 KB
Loading

images_webp/gradient_descent.webp

5.17 KB
Binary file not shown.

index.html

+26
Original file line numberDiff line numberDiff line change
@@ -211,6 +211,32 @@ <h2 style="margin:0">Game of Life</h2>
211211
<hr>
212212
<br>
213213

214+
<div class="row">
215+
<div class="col s12 l5">
216+
<img class="responsive-img" src="images_webp/gradient_descent.webp" alt="gradient descent">
217+
</div>
218+
<div class="col s12 l7">
219+
<h2 style="margin:0">Gradient Descent</h2>
220+
<center>
221+
<span>#computer-science #machine-learning</span>
222+
</center>
223+
<p class="flow-text">
224+
The Gradient Descent algorithm is the powerhouse of machine learning. Regression models as well
225+
as neural networks use this algorithm to optimize their working according to the training
226+
examples. Experience it first-hand!
227+
</p>
228+
<center>
229+
<a href="gradient_descent/simulation.html">
230+
<button class="btn purple darken-4">Visit</button>
231+
</a>
232+
</center>
233+
</div>
234+
</div>
235+
236+
<br>
237+
<hr>
238+
<br>
239+
214240
<div class="row">
215241
<div class="col s12 l5">
216242
<img class="responsive-img" src="images_webp/mandelbrot_fractal.webp" alt="mandelbrot fractal">

0 commit comments

Comments
 (0)