Ask HN: How to get started with machine learning?
11–20 of 131 posts
Re: Ask HN: How to get started with machine learning?
#12I strongly advice for:
- using Python in the interactive environment Jupyter Notebook,
- starting with classical machine learning (scikit-learn), NOT from deep learning; first learn logistic regression (a prerequisite for any neural network), kNN, PCA, Random Forest, t-SNE; concepts like log-loss and (cross-)validation,
- playing with real data,
- it is cool to add neural networks afterwards (here bare TensorFlow is a good choice, but I would suggest Keras).
Links:
- http://www.r2d3.us/visual-intro-to-machine-learning-part-1/
- http://hangtwenty.github.io/dive-into-machine-learning/
- https://github.com/leriomaggio/deep-learning-keras-euroscipy...
Re: Ask HN: How to get started with machine learning?
#13Really great content from Andrej and his coworkers. This guy is great.
You can easily find all classes videos on YouTube too.
Re: Ask HN: How to get started with machine learning?
#141. Machine Learning by Andrew Ng (https://www.coursera.org/learn/machine-learning) /// Class notes: (http://holehouse.org/mlclass/index.html)
2. Yaser Abu-Mostafa’s Machine Learning course which focuses much more on theory than the Coursera class but it is still relevant for beginners.(https://work.caltech.edu/telecourse.html)
3. Neural Networks and Deep Learning (Recommended by Google Brain Team) (http://neuralnetworksanddeeplearning.com/)
4. Probabilistic Graphical Models (https://www.coursera.org/learn/probabilistic-graphical-model...)
4. Computational Neuroscience (https://www.coursera.org/learn/computational-neuroscience)
5. Statistical Machine Learning (http://www.stat.cmu.edu/~larry/=sml/)
If you want to learn AI: https://medium.com/open-intelligence/recommended-resources-f...
Re: Ask HN: How to get started with machine learning?
#15Re: Ask HN: How to get started with machine learning?
#16If you want to jump right in with "hello world" type TensorFlow (a tool for machine learning), see https://news.ycombinator.com/item?id=12465935 (how to fit a straight line using TensorFlow) If you like to study/read: the famous Coursera Andrew Ng machine learning course: https://www.coursera.org/learn/machine-learning If you just want course materials from UC Berkeley, here's their 101 course: https://news.ycombinat…
http://academictorrents.com/browse.php?search=machine+learni...
Re: Ask HN: How to get started with machine learning?
#17Re: Ask HN: How to get started with machine learning?
#18Re: Ask HN: How to get started with machine learning?
#19So you could start with some really simple example code for demand forecasting but where you put in your data and your signals. In this way you can learn what you need to solve a particular problem, 'getting lucky' from only having to adapt examples. Sure it might be nice to learn all the fundamentals first but it is sometimes nice to scratch an itch, every company has plenty, choose one and see how far you get and learn along the way.