
This course includes our updated coding exercises so you can practice your skills as you learn.
See a demo
Join our online classroom to stay accountable, introduce yourself, team up with accountability buddies, join chats and events, and finish the course with community support and mentors.
Learn how computers use programming and machine learning to solve tasks, from simple rules to complex apps. Explore applications like self-driving cars, vision, language processing, and recommendations.
Train a YouTube recommendation engine by using user likes and dislikes, along with video length and likes, to predict what to recommend.
Machine learning uses data-driven patterns discovered by models to predict future outcomes. It differs from traditional algorithms by learning, and ties data analysis and data science to building these models.
Explore how to define a machine learning problem and choose among supervised, unsupervised, and transfer learning, using classification, regression, clustering, and recommendations to solve real-world tasks.
Explore the types of data in machine learning by distinguishing structured and unstructured data, and static versus streaming data, with practical examples like CSV files and pandas workflows.
Explore evaluation metrics across machine learning tasks, from classification accuracy to precision, recall, mean absolute error, mean squared error, and precision at k, with a real-world 95% accuracy example.
Identify and apply feature engineering to features from structured or unstructured data, including numerical, categorical, and derived variables, to improve heart disease predictions and ensure feature coverage.
Tune machine learning models by adjusting hyperparameters on training or validation data to improve performance, e.g., random forest trees and neural network layers. Compare models on the test data.
Experimentation drives an iterative, tool-matching approach to machine learning projects, guiding you from problem definition through data, evaluation, features, and modeling to refined, hands-on projects.
Choose your path based on Python knowledge: continue with the course or learn Python from scratch, both leading to essential data science and machine learning skills.
Note: If you already have Anaconda installed, feel free to keep using it. The following videos will walk-through downloading Miniconda and setting up an environment using Conda.
Create and manage reproducible data science environments with Mini Conda and Conda, installing tools like pandas and matplotlib for heart disease classification, and share exact environments to avoid dependency issues.
Set up a Windows data science workflow using Mini Conda, create and activate a project environment, and install Jupyter to run notebooks for machine learning and data science projects.
Learn to set up and activate a conda environment, start a Jupyter Notebook, and work with notebooks to import data, run Python code, and create code and markdown cells.
Master keyboard-driven Jupyter notebooks by using shift+enter to run cells, escape and enter for command and edit modes, and pandas to read_csv into a dataframe for plotting.
Learn how to save, run, and share Jupyter notebooks on GitHub for data science and machine learning, activate environments, manage terminals, and collaborate on heart disease projects.
Explore how to describe and summarize data in pandas by inspecting data types, numeric columns, and statistics using describe, info, and column selection on a data frame.
Shuffle a data frame with sample to randomize order for training, validation, and test splits, then reassign, reset index, and apply lambda for converting kilometers to miles.
Learn how to download the pandas exercises notebook from zero to mastery ml GitHub repo using the raw button, save it, and run it in a local environment or Colab.
Explore why NumPy powers data science and machine learning with fast, C-backed operations on arrays, and why converting data to numbers (one or zero) enables machines to learn.
Explore NumPy, the backbone of data science and machine learning, turning data into numerical arrays with vectorization and broadcasting for fast, efficient computations.
Explore NumPy data types and attributes by creating arrays, inspecting shape, dimensions, and dtype, and learn how NumPy underpins pandas dataframe for numerical computing.
Learn to create numpy arrays from lists, generate ones, zeros, and ranges, and produce random arrays while inspecting shapes, data types, and docstrings for numpy concepts and pseudo random numbers.
Explore how to view and manipulate arrays and matrices with NumPy, practice indexing and slicing by shape, and extract unique elements to prepare data for analysis.
Master array manipulation and element-wise arithmetic in numpy, explore broadcasting rules across shapes, and read documentation to resolve shape errors while preparing for aggregation.
Explore aggregations on NumPy arrays by comparing Python and NumPy sums, and apply mean, max, min, variance, and standard deviation along axes to understand data dispersion.
Explore standard deviation and variance as measures of data spread using numpy arrays, comparing high and low variance data with practical array demonstrations, aggregation functions, and histogram visuals.
Explore how to use numpy comparison operators on arrays to produce boolean results for elementwise greater than, greater or equal, and equality checks.
Master sorting arrays with numpy by using np.sort and np.argsort to sort values and indices, and apply arg min and arg max along axes to locate minimum and maximum elements.
Turn images into numpy arrays using image read, explore shapes and color channels, and apply numpy operations to turn data into numbers for machine learning.
Treat imposter syndrome as a natural part of learning, signaling you’re not there yet and that practice builds comfort. Teach others on Discord to reinforce what you’ve learned.
Learn to set up a conda environment, run a Jupyter notebook, and import numpy, pandas, and Matplotlib. Master the object orientated API using plt.subplots to create figures and axes.
Explore the anatomy of a matplotlib figure, from the figure canvas to axes and subplots, including titles, axis labels, legends, and inline plotting in Jupyter.
Explore histograms and subplots to visualize distributions and compare multiple plots, including horizontal bar graphs and a four-subplot figure, in a hands-on code-driven session.
Learn how to create meaningful, accurate data visualizations that honestly convey findings, avoid misleading graphs, and validate insights with careful axis labeling and multiple methods.
Format the price column by removing dollar signs and separators, convert to integers, and compute a cumulative total, then plot total sales over time using pandas data frame plotting.
Practice plotting with pandas by exploring histograms, bin adjustments, and subplots on heart disease data, then compare the stateless pandas plot method with the more flexible object-oriented plotting API.
Explore how to customize plots with matplotlib styles, including seaborn and ggplot, and add titles, axis labels, and legends using the pandas plotting API.
Export your customized plots for presentations by saving as PNG or using the savefig method, enabling shareable visuals from your heart disease data analysis.
Explore the psychic learn machine learning library with hands-on practice and clear explanations. Prepare for milestone projects that reinforce workflows, while getting support through assignments and our Discord community.
Explore scikit-learn workflows from data preparation to fitting, evaluating, and hyperparameter tuning, then saving models for classification and regression using heart disease and Boston data sets.
Explore debugging warnings in Jupyter by using the warnings module, optionally filtering or ignoring alerts, and upgrading conda packages to resolve Python version conflicts.
Convert data to numbers by turning categorical features into one-hot encoded variables with a column transformer, enabling a random forest regression on the car sales dataset.
Master data preparation by imputing missing values with scikit-learn's simple imputer and column transformer, then one-hot encode categorical features and convert to numerical data for model readiness.
Choose the right estimator for regression and classification problems using the machine learning map. Practice building and evaluating models on California housing data with train/test splits and r-squared metrics.
Explore how a decision tree enables machine learning models to program themselves from data, using if-else blocks to predict outcomes without explicit instructions.
Compare linear SVC and random forest on the heart disease classification data to show how ensemble methods boost accuracy for structured data.
Learn to make predictions with regression models using the random forest regressor, including preparing features and labels, splitting data, fitting the model, and evaluating with mean absolute error.
Explore how cross validation goes beyond a single score by using cross_val_score with fivefold splits and a scoring parameter, comparing mean accuracy and coefficient of determination.
Evaluate classification models using accuracy, area under the roc curve, confusion matrix, and classification report. Use a random forest with fivefold cross-validation to estimate cross-validated accuracy on heart disease data.
Explore how a confusion matrix compares true labels to model predictions, visualize it with cross tab and seaborn heatmap, and interpret true positives, true negatives, false positives, and false negatives.
Leverage confusion matrices to evaluate classification models by comparing predictions to true labels. Visualize where the model confuses classes and identify true/false positives and negatives.
Learn how a classification report consolidates precision, recall, F1, accuracy, and macro and weighted averages with the confusion matrix to evaluate a classification model.
Explore regression model evaluation metrics, including the R2 score, mean absolute error, and mean squared error, and learn to score predictions on a train/test split using random forest regression.
Evaluate cyclone models using classification metrics such as accuracy score, precision score, recall score, and F1 score. Include regression metrics like R2 score, mean absolute error, and mean squared error.
Improve a machine learning model by adding data and richer features, and by tuning hyper parameters with methods like manual tuning, random search CV, or grid search CV.
Explore correlation analysis to identify which attributes correlate, with examples like land size and floor space, and learn to use forward and backward attribute selection to improve or simplify models.
Putting it all together demonstrates end-to-end machine learning workflow, from data cleaning and encoding to building and evaluating a pipeline with a random forests regressor to predict car sale price.
Become a complete A.I., Data Scientist and Machine Learning engineer! Join a live online community of 900,000+ engineers and a course taught by industry experts that have actually worked for large companies in places like Silicon Valley and Toronto. Graduates of Andrei’s courses are now working at Google, Tesla, Amazon, Apple, IBM, JP Morgan, Meta, + other top tech companies. You will go from zero to mastery!
Learn Data Science and Machine Learning from scratch, get hired, and have fun along the way with the most modern, up-to-date Data Science course on Udemy (we use the latest version of Python, Tensorflow 2.0 and other libraries). This course is focused on efficiency: never spend time on confusing, out of date, incomplete Machine Learning tutorials anymore. We are pretty confident that this is the most comprehensive and modern course you will find on the subject anywhere (bold statement, we know).
This comprehensive and project based course will introduce you to all of the modern skills of a Data Scientist and along the way, we will build many real world projects to add to your portfolio. You will get access to all the code, workbooks and templates (Jupyter Notebooks) on Github, so that you can put them on your portfolio right away! We believe this course solves the biggest challenge to entering the Data Science and Machine Learning field: having all the necessary resources in one place and learning the latest trends and on the job skills that employers want.
The curriculum is going to be very hands on as we walk you from start to finish of becoming a professional Machine Learning and Data Science engineer. The course covers 2 tracks. If you already know programming, you can dive right in and skip the section where we teach you Python from scratch. If you are completely new, we take you from the very beginning and actually teach you Python and how to use it in the real world for our projects. Don't worry, once we go through the basics like Machine Learning 101 and Python, we then get going into advanced topics like Neural Networks, Deep Learning and Transfer Learning so you can get real life practice and be ready for the real world (We show you fully fledged Data Science and Machine Learning projects and give you programming Resources and Cheatsheets)!
The topics covered in this course are:
- Data Exploration and Visualizations
- Neural Networks and Deep Learning
- Model Evaluation and Analysis
- Python 3
- Tensorflow 2.0
- Numpy
- Scikit-Learn
- Data Science and Machine Learning Projects and Workflows
- Data Visualization in Python with MatPlotLib and Seaborn
- Transfer Learning
- Image recognition and classification
- Train/Test and cross validation
- Supervised Learning: Classification, Regression and Time Series
- Decision Trees and Random Forests
- Ensemble Learning
- Hyperparameter Tuning
- Using Pandas Data Frames to solve complex tasks
- Use Pandas to handle CSV Files
- Deep Learning / Neural Networks with TensorFlow 2.0 and Keras
- Using Kaggle and entering Machine Learning competitions
- How to present your findings and impress your boss
- How to clean and prepare your data for analysis
- K Nearest Neighbours
- Support Vector Machines
- Regression analysis (Linear Regression/Polynomial Regression)
- How Hadoop, Apache Spark, Kafka, and Apache Flink are used
- Setting up your environment with Conda, MiniConda, and Jupyter Notebooks
- Using GPUs with Google Colab
By the end of this course, you will be a complete Data Scientist that can get hired at large companies. We are going to use everything we learn in the course to build professional real world projects like Heart Disease Detection, Bulldozer Price Predictor, Dog Breed Image Classifier, and many more. By the end, you will have a stack of projects you have built that you can show off to others.
Here’s the truth: Most courses teach you Data Science and do just that. They show you how to get started. But the thing is, you don’t know where to go from there or how to build your own projects. Or they show you a lot of code and complex math on the screen, but they don't really explain things well enough for you to go off on your own and solve real life machine learning problems.
Whether you are new to programming, or want to level up your Data Science skills, or are coming from a different industry, this course is for you. This course is not about making you just code along without understanding the principles so that when you are done with the course you don’t know what to do other than watch another tutorial. No! This course will push you and challenge you to go from an absolute beginner with no Data Science experience, to someone that can go off, forget about Daniel and Andrei, and build their own Data Science and Machine learning workflows.
Machine Learning has applications in Business Marketing and Finance, Healthcare, Cybersecurity, Retail, Transportation and Logistics, Agriculture, Internet of Things, Gaming and Entertainment, Patient Diagnosis, Fraud Detection, Anomaly Detection in Manufacturing, Government, Academia/Research, Recommendation Systems and so much more. The skills learned in this course are going to give you a lot of options for your career.
You hear statements like Artificial Neural Network, or Artificial Intelligence (AI), and by the end of this course, you will finally understand what these mean!
Click “Enroll Now” and join others in our community to get a leg up in the industry, and learn Data Scientist and Machine Learning. We guarantee this is better than any bootcamp or online course out there on the topic. See you inside the course!
Taught By:
Daniel Bourke:
A self-taught Machine Learning Engineer who lives on the internet with an uncurable desire to take long walks and fill up blank pages.
My experience in machine learning comes from working at one of Australia's fastest-growing artificial intelligence agencies, Max Kelsen.
I've worked on machine learning and data problems across a wide range of industries including healthcare, eCommerce, finance, retail and more.
Two of my favourite projects include building a machine learning model to extract information from doctors notes for one of Australia's leading medical research facilities, as well as building a natural language model to assess insurance claims for one of Australia's largest insurance groups.
Due to the performance of the natural language model (a model which reads insurance claims and decides which party is at fault), the insurance company were able to reduce their daily assessment load by up to 2,500 claims.
My long-term goal is to combine my knowledge of machine learning and my background in nutrition to work towards answering the question "what should I eat?".
Aside from building machine learning models on my own, I love writing about and making videos on the process. My articles and videos on machine learning on Medium, personal blog and YouTube have collectively received over 5-million views.
I love nothing more than a complicated topic explained in an entertaining and educative matter. I know what it's like to try and learn a new topic, online and on your own. So I pour my soul into making sure my creations are accessible as possible.
My modus operandi (a fancy term for my way of doing things) is learning to create and creating to learn. If you know the Japanese word for this concept, please let me know.
Questions are always welcome.
Andrei Neagoie:
Andrei is the instructor of the highest rated Development courses on Udemy as well as one of the fastest growing. His graduates have moved on to work for some of the biggest tech companies around the world like Apple, Google, Amazon, JP Morgan, IBM, UNIQLO etc... He has been working as a senior software developer in Silicon Valley and Toronto for many years, and is now taking all that he has learned, to teach programming skills and to help you discover the amazing career opportunities that being a developer allows in life.
Having been a self taught programmer, he understands that there is an overwhelming number of online courses, tutorials and books that are overly verbose and inadequate at teaching proper skills. Most people feel paralyzed and don't know where to start when learning a complex subject matter, or even worse, most people don't have $20,000 to spend on a coding bootcamp. Programming skills should be affordable and open to all. An education material should teach real life skills that are current and they should not waste a student's valuable time. Having learned important lessons from working for Fortune 500 companies, tech startups, to even founding his own business, he is now dedicating 100% of his time to teaching others valuable software development skills in order to take control of their life and work in an exciting industry with infinite possibilities.
Andrei promises you that there are no other courses out there as comprehensive and as well explained. He believes that in order to learn anything of value, you need to start with the foundation and develop the roots of the tree. Only from there will you be able to learn concepts and specific skills(leaves) that connect to the foundation. Learning becomes exponential when structured in this way.
Taking his experience in educational psychology and coding, Andrei's courses will take you on an understanding of complex subjects that you never thought would be possible.
See you inside the course!