karan / Projects

:page_with_curl: A list of practical projects that anyone can solve in any programming language.
https://twitter.com/karangoel
MIT License
44.54k stars 10.52k forks source link

machine learning algorithms #49

Open bhaskar4n opened 9 years ago

bhaskar4n commented 9 years ago

please add machine learning algorithms project.

vdrey commented 9 years ago

I am relatively new to the programming world, but that seems like it is beyond the level of many of these problems.

Hopefully someone will correct me if I am wrong.

Cyrik commented 9 years ago

It kind of depends on how deep you want to go. A genetic algorithm to solve the traveling salesman problem is pretty easy to write, for example. Coming up with a good genetic encoding for a path is harder then the actual algorithm. Thats actually the case for most AI/machine learning stuff.

vdrey commented 9 years ago

Ok

On Wednesday, August 20, 2014, Lukas Domagala notifications@github.com wrote:

It kind of depends on how deep you want to go. A genetic algorithm to solve the traveling salesman problem is pretty easy to write, for example. Coming up with a good genetic encoding for a path is harder then the actual algorithm. Thats actually the case for most AI/machine learning stuff.

— Reply to this email directly or view it on GitHub https://github.com/karan/Projects/issues/49#issuecomment-52783528.

karan commented 9 years ago

Can you suggest some algorithms that you think will be suitable for the collection?

yashaslokesh commented 5 years ago

Maybe a genetic algorithm for constructing a phrase of words in the shortest amount of time. Idea was inspired by https://youtu.be/nrKjSeoc7fc

yashaslokesh commented 5 years ago

Or also, as kind of an introduction to computer vision and machine learning, creating a classification algorithm for the MNIST database.