Arko98 / Gradient-Descent-Algorithms

A collection of various gradient descent algorithms implemented in Python from scratch
MIT License
31 stars 17 forks source link

Missing sgd_data.txt #1

Open tuhinmallick opened 2 years ago

tuhinmallick commented 2 years ago

Thanks for providing such a great implementations of various gradient descent algorithm. But for the example notebook, can you also provide the sgd_data.txt also ?

Arko98 commented 1 year ago

HU @tuhinmallick, Extremely sorry for the late reply. sgd_data.txt can be any (40,1) shaped numpy array converted into text file. Here we only need some sample data so that SGD can converge into it. You can typically create a random numpy (40,1) array and still manage to fairly converge it. Does that help?