Table of Contents
- History of Machine Learning
- Understanding the Prerequisites
- Machine Learning with Python
- Where to Practice
- (FREE) Online Courses
What is machine learning?
To better understand the differences between machine learning and deep learning, check out my previous article:
Deep Learning vs Machine Learning: What's the Difference?
Tina Huynh ・ Mar 27 '22
History of Machine Learning
The fact is, machine learning isn't new technology. In 1949, "The Organization of Behavior" was published by Donald Hebb introducing theories on the interaction between neurons. This was later crucial in developing machine learning. In 1950, Alan Turing invented the Turing Test - an imitation game. In 1952, Arthur Lee Samuel developed a computer game of checkers. In 1979, an algorithm was developed that later became the foundation for pattern recognition by Thomas Cover and Peter Hart. Read more about the timeline here.
The Prerequisites
Having a basic understanding of the following will help you immensely with machine learning. The following is a rough "roadmap" and can be followed in your own way.
1. Learn linear algebra and multivariate calculus
Both Linear Algebra and Multivariate Calculus are important in machine learning. How much you will need to understand and be able to apply will depend on your role as a data scientist. If you are more focused on application heavy ML, there are many libraries available. On the other hand, if you want to focus on R&D, then mastering both will be essential to be able to implement algorithms from scratch.
2. Learn statistics
Since over 80% of your time will be spent collecting and cleaning data, there is no surprise that you will need to learn it. Key concepts include statistical significance, probability distributions, hypothesis testing, regression, etc.
3. Learn Python
Python is currently the most popular language for ML. There are many Python libraries specifically useful for AI and ML such as Keras, TensorFlow, Scikit-learn, etc. If you have not started with Python, here are some articles that may interest you:
4. Learn ML Concepts
- Terminologies of ML
- Types of ML
- How to practice ML
5. Take part in competitions
Start combining your theoretical knowledge with practical implementation.
ML with Python
Though there are many languages that can be used for machine learning, Python is a very popular language for machine learning applications due to its benefits. The other languages are R, C++, JavaScript, TypeScript, Java, C#, Julia, Scala, and Shell.
One of the benefits of using Python is the pre-built libraries:
- Numpy, OpenCV, Scikit (images)
- NLKT, Numpy, Scikit (text)
- Librosa (audio)
- Matplotlib, Seaborn, Scikit (data representation)
- TensorFlow, PyTorch (Deep Learning)
- Scipy (Scientific Computing)
- Django (web applications)
- Pandas (high-level data structures and analysis)
Python is known for its readability lower complexity compared to other programming languages. Unlike R, Python is a complete language and platform you can use for both research, development, and developing production systems.
Where to Practice
There are websites such as CloudXLab, Google Colab, Kaggle, MachineHack, OpenML, and HackerEarth
Online Courses
YES! Absolutely. Here is a list of some below:
- Build 30 Real World Data Science & Machine Learning Projects ($19.99)
- How to get started with Machine Learning in about 10 minutes
- fast.ai Machine Learning Courses (FREE)
- Linear Algebra - Foundations to Frontiers (FREE)
- Machine Learning with Python
- Learn Keras: Build 4 Deep Learning Applications (FREE)
- Machine Learning (FREE)
- Introduction to Data Science using Python (FREE)
- Machine Learning A-Z™: Hands-On Python & R In Data Science
- Data Science, Machine Learning, Data Analysis, Python & R (FREE)
- Deep Learning Specialization
- MatPlotLib with Python (FREE)
- Deep Learning Prerequisites: The Numpy Stack in Python V2 (FREE)
- Data Science with Analogies, Algorithms and Solved Problems (FREE)
- Practical Machine Learning with Scikit-Learn (FREE)
- Python for Data Science (FREE)
Happy coding!
Top comments (0)