gimseng / 99-ML-Learning-Projects

A list of 99 machine learning projects for anyone interested to learn from coding and building projects
MIT License
577 stars 174 forks source link

Python versions of programming assignments for Andrew Ng's ML Coursera course #35

Open malwaredllc opened 3 years ago

malwaredllc commented 3 years ago

I'm currently doing Andrew Ng's famous ML course on Coursera (https://www.coursera.org/learn/machine-learning/home/welcome) and found this neat Github repo which provides Juptyer Notebooks for students who prefer to use Python for the programming assignments rather than Octave/MATLAB (since Python is much more applicable these days, but the course is unparalleled in teaching the theory / fundamentals in my opinion). The Juptyer Notebooks also include excellent documentation and notes from the lectures.

https://github.com/dibgerge/ml-coursera-python-assignments

Since this is such a popular course, I was going to suggest including it as a submodule to this repo, and I can contribute my Python solutions to the programming assignments for other students to refer to. What do you guys think?

gimseng commented 3 years ago

@malwaredllc great idea ! I was thinking instead of just including a bulk bunch of them or just links, we could at various projects use their exercises and solutions (following their license permissions) and incorporate into our set of exercises.

For e.g. if they have a great SGD homework and solution, we could reuse it and give credits and maybe adapt to our format. We should definitely link them in our resource list, see #19.

Rajwrita commented 3 years ago

I have a repo with a collection of ML, DL projects from several courses by deeplearning.ai. The link :)

gimseng commented 3 years ago

@Rajwrita great idea ! If you have any particular favorite project there that you want to link to here / submit here, feel free to create an issue/PR. Thanks !

Rajwrita commented 3 years ago

Sure gimseng. will create a PR.

IPSITA2000 commented 3 years ago

I have just finished Andrew Ng's Neural Network course on CNN https://www.coursera.org/learn/convolutional-neural-networks/home/welcome . And, as a first time participant in Hacktoberfest , I found this repository , so I was wondering if i could contribute to this repository, my solutions of weekly assignments of that particular course for the fellow students who might seek help in that course ?

gimseng commented 3 years ago

Hi @IPSITA2000 thanks for contributing ! Definitely welcome any new project. @Rajwrita and @IPSITA2000, why don't you comment here on which exercise/note you want to work on so that we can have each person working on 1-2 exercises and not having too much overlap. And again thanks !

IPSITA2000 commented 3 years ago

Thank you Mr. @gimseng ! If its ok i would like to work on https://www.coursera.org/learn/convolutional-neural-networks/home/welcome . Week 1's both the programming assignments !

gimseng commented 3 years ago

@IPSITA2000 Thanks for the message. I am not too familiar with the CNN coursera curriculum. Perhaps its best if you could tell us more what model/techniques week 1's assignment entails and what data it uses, and what learning goals it aims to achieve. Thanks !

IPSITA2000 commented 3 years ago

In week 1's first assignment one needs to Implement the convolutional and pooling layers in Numpy, including two important mathematical concepts of forward and backward propagation. By doing this assignment one gets hands on experience in implementing the different building blocks involved in running neural networks learnt in that weeks video lectures .Also it will clear the concept of how neural networks make their predictions! In week 1's second assignment one needs to code the helper functions used in implementing a TensorFlow model and then finally build and train a functioning ConvNet using TensorFlow library . The data set used in training this model consists of 6 images of hand signs. Overall it will teach the student to apply ConvNet in detecting sign languages given as an input image. If you think it's ok , i am willing to contribute my working .ipynb file at the earliest !Thank you!

gimseng commented 3 years ago

@IPSITA2000 thanks for the detailed explanation. From what you wrote, it might make sense to split this into two parts, part 1 being first assignment and part 2 being second assignment. It seems that:

I'll let you figure out how to code up these. As I suggested, maybe create a PR for part 1, and then another one for part 2.

IPSITA2000 commented 3 years ago

Mr. @gimseng , I believe Part 1 has doesn't work on any particular set of data , and Part 2 is not exactly a full classification project , it has been trained on only the hand signs provided in the course's data set.

Rajwrita commented 3 years ago

https://github.com/Rajwrita/Tensorflow-in-Practice this is the repo I have with codes for the course: Tensorflow in Practice, let me know if I could contribute this to this project. Thanks

gimseng commented 3 years ago

@Rajwrita I think either NLP or time series types projects will be good additions to the repo. Feel free to suggest a particular favorite project here.