Reading Material
Book 📘
Some thoughts: Prefer to read books of general knowledge, instead of introducing a specific framework/library.
- List of free ML book, grouped by topics, domains
- Free ebook from https://machinelearningmastery.com/
- the blog that daily bnomial always quote
-
Python data science - https://www.oreilly.com/library/view/python-data-science/9781491912126/
-
Deep Learning theory explanation - https://deeplearningtheory.com/
- Free book on arxiv
- Mainly maths
More topic specific :
- Semi-supervised learning
- Pattern Recognition and Machine Learning (PRML), 2006
Event 🌃
- Meet up events, many things to share
- MLops sharing of real company
Video Blog 📹
- Google research youtube - https://www.youtube.com/c/GoogleResearch
- Google developer - https://www.youtube.com/googlecode
- Datacamp - https://www.youtube.com/c/Datacamp
- Full Stack Deep Learning Youtube channel - https://www.youtube.com/c/fullstackdeeplearning
- PyTorch youtube
Regular Updated Blog 📝
- bnomial blog
- Karpathy ML blog
- Neptune blog
- MLops blog
- AWS MLU (ML University)
- Open ai blog - https://openai.com/blog/
- Facebook ai blog - https://ai.facebook.com/
Newsletter
- https://read.deeplearning.ai/the-batch/
- https://dataelixir.com/
- https://www.deeplearningweekly.com/
- Reddit (r/MachineLearning)
- Twitter (following data scientists, engineers, project managers, etc)
Resource Lists :
- List of ML blogs
- List of resources
- Machine learning resource Awesome list
- https://github.com/ujjwalkarn/Machine-Learning-Tutorials#other
- machine learning and deep learning tutorials, articles and other resources
- Python DataScience list
- https://github.com/ujjwalkarn/DataSciencePython
- Generic algorithms
- common data analysis and machine learning tasks using python
- Machine learning resource Awesome list
Tutorial / Doc
-
The ML landscape
-
The Maths aspect in ML (image from reddit)
-
Recommended - By Jason Brownlee PhD - guide posts by various ML path
- https://machinelearningmastery.com/start-here/#getstarted
- PS: this platform
bnomial
always quote this blog
- Recommended - 100 ML lectures(notes) in University of British Columbia
- Author claims : It is meant to be followed in order
- Good roadmap! Recommended
- https://www.cs.ubc.ca/~schmidtm/Courses/LecturesOnML/
- Or download the all-included PDF in my drive (https://drive.google.com/file/d/1r-L2Bsazi13n_v8iMgtcaZ0b69ycg6Yo/view?usp=sharing) Note: private access
- Recommended - kaggle course
- https://www.kaggle.com/learn
- Text course, reading friendly
- E.g. ML, python
- Can get certificate
- Recommended - Dive into Deep learning - https://d2l.ai/index.html
- Super great interactive DL book with notebbok
-
ML simple learning via drafting illustration
-
ML From Scratch - https://mlfromscratch.com/
- It is abandoned, so remove it after reading all interested posts
- Activation function - https://mlfromscratch.com/activation-functions-explained/
- Scikit learn
- Its user guide is too complex. But is a very great outline of algorithm that you should learn. Just use it as a target list.
- Tensorflow - https://www.tensorflow.org/tutorials
- Tensorflow training sample by using fashion MNiST.
- Strategy to prevent overfit or underfit
- Optimize dataset for training
- https://www.tensorflow.org/tutorials/keras/text_classification#configure_the_dataset_for_performance
- .cache - avoid store all data in memory, also faster than loadjng millions of small files
- .prefetch - allow to do preprocess while training at the same time.
Video Lesson / Course
- Coursera
- Deep learning specialization (by deeplearning.ai) https://www.coursera.org/specializations/deep-learning
- GAN specialization (by deeplearning.ai) https://www.coursera.org/specializations/generative-adversarial-networks-gans
- Codecademy - provide many project-wise lesson path, can build up portfolio seamlessly
- Fastai
- Course, not the framework
- It's approach is from top level and learn practical first
- Deeplearning ai
- Opposite from fastai, start from low level like Maths, and then gradually deep dive to Tensorflow
Random Posts / Pages
- MLCC Text Classification Guide