Intro to Machine Learning Bootcamp

Get started with machine learning using Python with a hands-on, in-person course with expert instructor Ted Petrou.

 

Comprehensive hands-on course

Get a comprehensive introduction to machine learning using Python with engaging live coding, practical exercises, and an expert instructor. Learn to build a massive, robust, machine learning pipeline with Python that engineers features, transforms different groupings of columns and is cross-validated to find optimal hyperparameters.

Trusted Expert

Ted Petrou teaches all classes and has over 1,000 hours of live, in-person instruction experience. He is the author of numerous books including Master Machine Learning with Python and is the creator of multiple Python libraries. Ted constantly improves and upgrades the material to ensure it is of the highest quality.

Hands-on Exercises

Watching others code gives the false impression of learning. In reality, learning is demonstrated when you complete tasks yourself. During class, you will be given ample time to complete exercises and projects. Ted is very dedicated during this time to ensure students get the help they need.

Certificate of Completion

Mastering the fundamentals of machine learning is not possible in such a short course. However, upon completion, you will be given a direct path towards continuing your education. Completing this path will earn you a certificate of completion.

Interested in attending this hands-on Python machine learning bootcamp?

 

Get more information on this Python Machine Learning Bootcamp

Course Description

Before the course

  • Installation - You will be given detailed instructions on how to install Python onto your machine and set up an environment to run all the code during class.
  • Jupyter Notebooks - We will be using the excellent Jupyter Notebook to run most of the code during class. It provides an interactive coding environment to quickly execute code, get feedback, and make notes.
  • Assignment - You will be given an assignment on how to use Jupyter Notebooks and write Markdown that is expected to be completed before the start of the course.
  • Private Slack Channel - Upon registration, you be given access to Ted's private Slack channel where you can directly communicate with him and ask questions about the course.
  • All Access Pass ($399 value) - You will be granted the All Access Pass which provides you lifetime access to all current and future books and non-live courses. Currently, this includes thousands of pages of material, hundreds of exercises, and dozens of hours of video.

Day 1

  • The Machine Learning Model - Models are anything that help us represent the real world. You will learn how machine learning models are a subset of mathematical models that learn from data.
  • Estimators - We use the excellent scikit-learn library to handle all of our machine learning. scikit-learn uses a generic class of objects called 'Estimators' that do all of the machine learning as well as other tasks that learn from data. You will learn the three step process common to all estimators - import, instantiate, fit.
  • Linear regression - You will learn how to model data with linear regression, a simple and practical model that is a useful starting point before diving into more advanced models. You will learn how the parameters of the model are fit and understand what it means to minimize squared error.
  • K-Nearest Neighbors - You will learn the simple learning approach taken by K-Nearest Neighbors (KNN) and implement the KNN algorithm by-hand using Python.

Day 2

  • Decision Trees - Most people are familiar with decision trees outside of the world of machine leaning. You will learn the exact steps that are taken to build a decision tree and implement one yourself by-hand using Python.
  • Random Forests - Random forests are a collection of decision trees and one of the most successful classes of machine learning models. You'll learn the sources of randomness that are injected into the decision tree model to create a collection of distinct trees.
  • Model Evaluation - The goal of machine learning is to build a model that provides us intelligence on data that it has yet to encounter. You will learn how to determine how well a model is likely to perform on unseen data by properly evaluating it with techniques such as cross validation.
  • Model Selection - You will learn how to choose 'better' models by selecting combinations of hyperparameter values that yield good cross-validated results.

Day 3

  • Transformers - We take a step back to learn how to transform our data before machine learning so that we can build a better model. You will learn about different transformations such as filling in missing values, scaling features, and encoding categorical data. 
  • Machine Learning Pipelines - You will learn how to build machine learning pipelines that can both transform the data and then do machine learning. This step of this pipeline can then be searched to find the best combination of hyperparameters.
  • The ColumnTransformer - The ColumnTransformer provides a direct way to apply different transformations to different features within the data. You will learn how to use this single object to contain all the transformation and machine learning steps.
  • Feature engineering - Creating new features is one of the best ways to build a better model. You will learn strategies to engineer new features from existing ones to improve results.

Day 4

  • Residual Analysis - Analyzing the residuals (errors) from our models can provide great insight into what types of transformations might improve performance. You'll learn how to diagnose different issues with the residuals and what actions to take to handle them.
  • Transforming Target Variable - In order to alleviate some of the issues during residual analysis, it may become necessary to transform the target variable as well as the features. You will learn different strategies on how to transform the target variable to get better model performance.
  • Penalized Regression - You will learn to reduce over-fitting during training by applying a penalty term that is proportional to the size of linear regression coefficients.
  • Bias-Variance Tradeoff - Penalizing models can reduce their predictive power, but it can also produce more stable models. You will learn about this balance between predictability and model stability which is referred to as the bias-variance tradeoff.

Day 5

  • Custom Error Metrics - You will learn how to create custom scoring metrics that are not available in scikit-learn by default. You will use these metrics during model evaluation and selection.
  • Complete Machine Learning Pipeline - We will spend time putting together all of the components of the course up to this point to build a single complete machine learning pipeline.
  • Model persistence - Building a model is great fun, but we need a way to access it in the future. You will learn how to save a model as a file and retrieve it any time you need to make a new prediction.
  • Kaggle Competition - To further help you practice all of the material covered in the course, you will enter a machine learning competition offered on Kaggle. You will learn best practices on how to manage your models and results.

After the course

  • Certificate of completion - Upon conclusion of the course, you will be given a direct path towards mastering the fundamentals of machine learning using Python. If you go on to complete all the tasks on this path, you will receive a certificate of completion.
  • Lifetime access to material - You will always have access to the material after the course has completed. Ted upgrades and adds to his material on a regular basis. You will always have immediate access to the latest updates.
  • Lifetime Slack Access - You will always have access to Slack allowing you to interact with Ted and all previous students.

About the Instructor

This course is taught by Ted Petrou, an expert at Python, data exploration and machine learning. Ted is the author of the multiple highly rated texts including:

Ted has taught hundreds of students Python and data science during in-person classroom settings. He sees first hand exactly where students struggle and continually upgrades his material to minimize these struggles by providing a simple and direct path forward.

Ted is one of the foremost authorities on using the pandas library to do data analysis. His blog posts have totaled well over 1 million views. He is also a prolific contributor on Stack Overflow having answered over 400 questions. He is an enthusiastic instructor and dedicates his time to helping students at their desk during exercises to ensure understanding.

Ted demonstrates his deep fluency in Python by developing open source Python libraries and is the creator of dexplo, a suite of data science packages that include bar_chart_race, dexplot, jupyter_to_medium, and dataframe_image.

Ted holds a Master's degree in Statistics from Rice University.

Testimonials

Interactive Class

Class time is divided between live coding sessions delivered by Ted and hands-on practice exercises and projects that you complete. During the live coding, you are provided an outline of the topics that Ted will cover as a Jupyter Notebook allowing you to code right along with him, explore how the commands work, and ask questions.

During student exercises, you will be writing Python code to solve machine learning problems. Ted is always available to provide help directly at your seat and is constantly seeking out students who may be in need of extra support.

Target Student

The Intro to Machine Learning Bootcamp targets those who have little to no machine learning experience, but do understand the fundamentals of programming in Python. If you do not feel comfortable with the basics of Python, then this course is not for you. Consider taking Master the Fundamentals of Python first, which you will get immediate access to for free registering for this bootcamp.

All Access Pass Included! - $399 Value

Everyone who registers gets the All Access Pass which grants you lifetime access to all current and future books and non-live online courses. Currently, this includes the following courses containing thousands of pages of material, hundreds of exercises, and many hours of video content.

  • Master the Fundamentals of Python
  • Master Data Analysis with Python
  • Master Machine Learning with Python
  • Build an Interactive Data Analytics Dashboard with Python
  • Build a Data Analysis Library from Scratch with Python

It's Fun!

Part of the intrigue of an in-person class is the social interaction and camaraderie formed between yourself and the other students. This fellowship is mainly absent when taking an online class or watching a recorded video. Many friendships and potential career opportunities are formed between the students that attend Ted's classes. 

And if you are looking for proof, just take a look at the immense joy radiating from the faces of the students in the picture to the left.

Former Student Sayantan Mitra

Hear Sayantan's experience taking the bootcamp and then transitioning to a teaching assistant.

 
Close

50% Complete

Two Step

Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.