RoboticsClubIITJ / ML-DL-implementation

An implementation of ML and DL algorithms from scratch in python using nothing but NumPy and Matplotlib.
BSD 3-Clause "New" or "Revised" License
49 stars 69 forks source link

Add visualization through graphs to plot loss/epoch live while training. #10

Closed TarunTomar122 closed 3 years ago

TarunTomar122 commented 4 years ago

Right we don't have any way to see how our loss per epoch is working or how our parameters are affecting the loss of our algorithm. We need some visualisation through graphs which can be done using matplotlib and cv2. Make some functions that can do the same.

PawanSuryavanshi95 commented 4 years ago

I made another class to visualize data, modified fit function to return costs, made a PR.

TarunTomar122 commented 4 years ago

@rohansingh9001 have a look!