Skip to content

Latest commit

 

History

History
27 lines (16 loc) · 1.19 KB

README.md

File metadata and controls

27 lines (16 loc) · 1.19 KB

least-square-method

A simple simulation of Least Squares Method which I believe inspired modern day optimization methods in machine/deep learning.

Based on the book:
[1] Avedyan, Eduard. Learning Systems. London: Springer, 1995.

In this simulation, the program is trying to optimize 5 targeted weights with the values:
0.2, 0.3, 0.4, 0.5, 0.6
0.2 is later changed to 0.2sin(2*pi*f)for illustration purposes.

This simulation also explores the effect of forgetting factor. Forgetting factor, q is used because old information regarding estimation has less significance than new information when calculating the estimates of the system parameters. It gives the algorithm a tracking capability. 0 < q < 1

ScreenShot

ScreenShot

ScreenShot

ScreenShot