machine-learning-projects / machine-learning-recipes

Following along with: Machine Learning Recipes with Josh Gordon

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

machine-learning-recipes

Machine Learning Recipes with Josh Gordon

My code following the Machine Learning Recipes with Josh Gordon series by Google Developers.

Part 1 - Hello World

Six lines of Python is all it takes to write your first machine learning program! In this episode, we'll briefly introduce what machine learning is and why it's important. Then, we'll follow a recipe for supervised learning (a technique to create a classifier from examples) and code it up.

Part 2 - Visualizing a Decision Tree

Last episode, we treated our Decision Tree as a blackbox. In this episode, we'll build one on a real dataset, add code to visualize it, and practice reading it - so you can see how it works under the hood.

Part 3 - What Makes a Good Feature?

Good features are informative, independent, and simple. In this episode, we'll introduce these concepts by using a histogram to visualize a feature from a toy dataset.

Part 4 - Let’s Write a Pipeline

In this episode, we’ll write a basic pipeline for supervised learning with just 12 lines of code. Along the way, we'll talk about training and testing data. Then, we’ll work on our intuition for what it means to “learn” from data.

Part 5 - Writing Our First Classifier

Welcome back! It's time to write our first classifier. This is a milestone if you’re new to machine learning. We'll start with our code from episode #4 and comment out the classifier we imported. Then, we'll code up a simple replacement - using a scrappy version of k-Nearest Neighbors

Part 6 - Train an Image Classifier with TensorFlow for Poets

Monet or Picasso? In this episode, we’ll train our own image classifier, using TensorFlow for Poets. Along the way, I’ll introduce Deep Learning, and add context and background on why the classifier works so well. Here are links to learn more, thanks for watching, and have fun!

Part 7 - Classifying Handwritten Digits with TF.Learn

Write a basic classifier using TF.Learn.

About

Following along with: Machine Learning Recipes with Josh Gordon


Languages

Language:Python 100.0%