Git Product home page Git Product logo

machine-learning-engineering-roadmap's Introduction

End to End machine learning

Machine learning project lifecycle

Machine learning is not just about building a model using some publicly available clean data. There are multiple steps that are required to build an ML product. The above figure shows the end to end steps required to build a machine learning product that could potentially make an impact. I have a dedicated article series that goes into details of each step shown in above diagram.

I will divide the resources into different levels of learning and will also provide the best resources to learn each topic. The levels of learning are:

  1. Getting ready to learn data science πŸ“Š
  2. Core Data Science Fundamentals πŸ“ˆ
  3. Machine Learning Engineering πŸ€–

1. Getting ready to learn data science πŸ“Š

Applied Mathematics πŸ”’

Applied Mathematics is a combination of Linear Algebra, Statistics, Probability, and Calculus. There is a lot of buzz that you need to be really great at mathematics for getting into Data ScienceπŸ€”. Unless you want to be Machine Learning Researcher than fundamentals of the above topics is sufficient. Even better would be having good some grasp of high school Mathematics. You can always go to grad school to be a Machine Learning researcher or start learning complicated mathematics after you land a job.

Nonetheless, below i mention some great resources on coursera by Imperial college of London for Linear Algebra and Calculus. Their videos are publicly available on YouTube πŸŽ₯. For statistics & Probability, I have some great recommendations of courses by MIT OpenCourseWare πŸŽ“.

  • Linear Algebra: Mathematics for Machine Learning: Linear Algebra (Coursera), (YouTube)
  • Statistics: MIT 18.650 Statistics for Applications (YouTube)
  • Probability: MIT 6.041SC Probabilistic Systems Analysis and Applied Probability (YouTube)
  • Calculus: Mathematics for Machine Learning: Multivariate Calculus (Coursera), (YouTube)

Programming Language πŸ’»

Deciding a Language:

Programming languages are essential tools for machine learning (ML) engineers, data scientists, and researchers to develop and deploy ML models πŸš€. Machine learning requires programming languages that are capable of handling large datasets, performing complex computations, and integrating with powerful libraries and frameworks. The choice of programming language is critical for machine learning projects because it can affect development time, model performance, and scalability.

When it comes to choosing a programming language for machine learning, there are several criteria to consider:

  • Learning curve: Ease with which a language can be learned.
  • Community: A language with a large and active community means that there are more resources, tools, and support available online.
  • Libraries and Frameworks: Existing libraries for every step of the machine learning pipeline as show in cover image of this article.
  • Industry demand: You should consider the industry demand for different languages.
  • Performance: Performance is a critical factor to consider when working with large datasets.

Python and R are most popular languages for machine learning. Other programming languages are Julia, Java, and C++. Let's see their comparison based on the criteria we discussed above:

Comparison of languages based on different criteria:

Fig 2: Machine learning project lifecycle

If you want to be a software engineer with skills in machine learning, go with Pythonβ€Š-β€Šyou don't even need to think twice. On the other hand, if you want to be a data scientist, you could choose either Python or R. But remember python will give you flexibility in your career if you ever want to pivot. On a personal note, I recommend python 🐍.

Congrats, you completed the first step on your journey πŸŽ‰.

🐍 Python for Beginners:

Programiz creates great resources for python developers of all levels. Their basic courses are a combination of video and text resources which have been praised by many.

Object oriented programming is really important for machine learning especially when you start working on pytorch and transformer based architecture. But no worries this πŸŽ₯ (Object oriented programming (OOP))[https://www.youtube.com/playlist?list=PL-osiE80TeTsqhIuOqKhwlXsIBIdSeYtc] course on YouTube has got you covered.

πŸ”— Below are additional resources just in case above are not up to your taste:

Note: Interviewers love to ask questions on Data Structures and Algorithms (mainly for roles other than interns). I have not mentioned resources for them here. But you can revisit them once after you complete all the steps mentioned here. Don't stress it a lot at beginning.

2. Core Data Science Fundamentals πŸ“ˆ

Data Collection & Exploration πŸ”

Data collection and Data exploration are the core Data Science Fundamentals as show in ML Lifecycle figure. Python libraries Numpy, Pandas, and Matplotlib will be you aid for core data science.

πŸ“— Python for Data Analysis: Data Wrangling with pandas, NumPy, and Jupyter by Wes Mckiney will be more than sufficient. A Beginner shall start with this book as it covers basic Python, ipython, NumPy, Pandas, and Matplotlib followed by few documented data anlaysis projects with code implementation.

I have seen a lot of people skip learning the core data science fundamentals for flashy Deep learning, which creates a lot of problem later when we start working on End-to-end machine learning to solve a business problem. So better learn them.

Additional resources:

Tip: All the libraries mentioned above, have elegant documentation. Feel free to explore them as well.

SQL

Data Science is the all-around study of data. To work with data, we need to extract it from the database. This is where SQL comes into the picture. SQL is the most widely used programming language while working with databases and supported by various relational database systems, like MySQL, SQL Server, and Oracle. A Data Scientist can control, define, manipulate, create, and query the database using SQL commands.

Many modern industries have equipped their products data management with NoSQL technology but, SQL remains the ideal choice for many business intelligence tools and in-office operations.

Many of the Database platforms are modeled after SQL. This is why it has become a standard for many database systems. Modern big data systems like Hadoop, Spark also make use of SQL only for maintaining the relational database systems and processing structured data.

I have heard good things about πŸ”—SQL Tutorialβ€Š-β€ŠFull Database Course for Beginners course available on YouTube.

Additional resources:

Notes:

  1. Interviewers love to ask SQL questions for data science roles.
  2. People usually have question around learning Big data tools in initial phases of data science, I personally think, it's not necessary to learn big data tools in initial phases of data science, but if you're interested in learning it, you can learn it later on. There are different perspectives on this, i would like you to check out the answers from this quora answer.

3. Machine Learning Engineering πŸ€–

Data Preparation/Feature Engineering

Most of the times, the raw data can't be directly fed into a model. These raw data need to be prepared according to the model and task at hand. Data preparation is important regardless of the model being machine learning or deep learning. Feature engineering is needed for Machine learning while Deep learning is about learning those features through neurons.

Data preparation varies a lot based on project and data. So, having good knowledge of python helps a lot. You will have to learn different libraries based on your requirement (your data preparation skills improve as you work on more projects). My suggestions for learning Data preparation and feature engineering are provided below:

Machine Learning

For Machine Learning, I just have two suggestions for you.

Deep Learning

MIT 6.S191: Introduction to Deep Learning is an ongoing course you can find details on the website. This course has video lectures, code assignments, and great projects all of which will help you to have a good portfolio. None of my other suggestions are going to beat this if you sincerely complete the whole course.

Deep Learning has different domains like reinforcement learning (RL), Natural Language Processing (NLP), and Computer Vision(CV). The above MIT course has good resources for RL and CV but it misses to talk about NLP. Below are resources for it.

Note: A lot of university courses for Machine Learning Engineering are public. You just need to search them on youtube and go through their playlist.

MLOPs

MLOPs is a combination of Model Deployment, Model Serving, Model Monitoring, and Model Maintenance. I struggled a lot to learn about MLOPs because i couldn't find good resource for it. I recently came across a MLOPs course that has everything required. I learned about all those topics separately but this course has everything in same place.

I will also recommend πŸ“— Practical MLOPs by Alfredo Deza and Noah Gift. It’s a great supplement to the course and provides practical knowledge that you can implement in your projects right away. πŸš€

Upcoming Topics πŸ“š

This repository is a work in progress, we will be adding more topics in the future, you can check out the following topics which we will be adding in the future:-

  • Data science projects,Β 
  • Detailed Guide to Data Science Portfolio,Β 
  • Detailed Guide to Data Science Resume,Β 
  • Preparing for Job interviews, and many more.

Contributions 🀝

I am open to contributions. If you want to contribute to this repository, just submit a pull request. I will review and merge it. The only criteria is that it should help fellow learners.

machine-learning-engineering-roadmap's People

Contributors

amit-timalsina avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    πŸ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. πŸ“ŠπŸ“ˆπŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❀️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.