HAPPY BOOKSGIVING
Use code BOOKSGIVING during checkout to save 40%-55% on books and eBooks. Shop now.
Video accessible from your Account page after purchase.
Register your product to gain access to bonus material or receive a coupon.
4+ Hours of Video Instruction
Code-along sessions move you from introductory machine learning concepts to concrete code.
Machine learning is moving from futuristic AI projects to data analysis on your desk. You need to go beyond nodding along in discussion to coding machine learning tasks. These videos show you how to turn introductory machine learning concepts into concrete code using Python, scikit-learn, and friends.
You learn how to load and explore simple datasets; build, train, and perform basic learning evaluation for a few models; compare the resource usage of different models in code snippets and scripts; and briefly explore some of the software and mathematics behind these techniques.
Skill Level
Learn How To
Who Should Take This Course
If you are becoming familiar with the basic concepts of machine learning and you want an experienced hand to help you turn those concepts into running code, this course is for you. If you have some coding knowledge but want to see how Python can drive basic machine learning models and practice, this course is for you.
Course Requirements
Lesson Descriptions
Lesson 1: Software Background
In Lesson 1, Mark discusses the environment used to run the code and several of the fundamental software packages used throughout the lessons. Mark discusses scikit-learn, seaborn, and pandas–high-level packages that have many powerful features. Mark also introduces numpy and matplotlib–more foundational packages.
Lesson 2: Mathematical Background
In Lesson 2, Mark continues the discussion of background and foundations. He covers several important mathematical ideas: probability, linear combinations, and geometry. He approaches these concepts from a practical and computational viewpoint. He introduces them but shies away from theory. He also spends a few minutes talking about technical issues that affect how you approach mathematics on the computer.
Lesson 3: Beginning Classification (Part I)
In Lesson 3, Mark gets your attention squarely focused on building, training, and evaluating simple classification models. He starts by introducing you to a practice dataset. Along the way, he covers train-test splits, accuracy, and two models: k-nearest neighbors and naive Bayes.
Lesson 4: Beginning Classification (Part II)
In Lesson 4, Mark continues the discussion of classification and focuses on two ways to evaluate classifiers. He shows you how to evaluate learning performance with accuracy and how to evaluate resource utilization for memory and time. Mark shows you how to do this both within Jupyter notebooks and also in standalone Python scripts.
Lesson 5: Beginning Regression (Part I)
In Lesson 5, Mark discusses and demonstrates building, training, and basic evaluation of simple regression models. He starts with a practice dataset. Along the way, he discusses different ways of measuring the center of numerical data, and then he discusses two models: k-nearest neighbors and linear regression.
Lesson 6: Beginning Regression (Part II)
Lesson 6 continues regression. Mark explains how we can pick good models from a basket of possible models. Then, he covers how to evaluate learning and resource consumption of regressors in notebook and standalone scenarios.
About Pearson Video Training
Pearson publishes expert-led video tutorials covering a wide selection of technology topics designed to teach you the skills you need to succeed. These professional and personal technology videos feature world-leading author instructors published by your trusted technology brands: Addison-Wesley, Cisco Press, Pearson IT Certification, Prentice Hall, Sams, and Que. Topics include: IT Certification, Network Security, Cisco Technology, Programming, Web Development, Mobile Development, and more. Learn more about Pearson Video training at http://www.informit.com/video.
Video Lessons are available for download for offline viewing within the streaming format. Look for the green arrow in each lesson.
Lesson 1: Software Background
Topics
1.1 Environment Installation
1.2 Three Things You Can do with NumPy and matplotlib
1.3 Three Things You Can do with Pandas
1.4 Three Things You Can do with scikit-learn and Friends
Lesson 2: Mathematical Background
Topics
2.1 Probability
2.2 Distributions
2.3 Linear Combinations
2.4 Geometry, Part 1
2.5 Geometry, Part 2
2.6 Geometry, Part 3
2.7 When Computers and Math Meet
Lesson 3: Beginning Classification (Part I)
Topics
3.1 Setup and the Iris Dataset
3.2 Accuracy
3.3 k-Nearest Neighbors
3.4 Train Test Splitting and Fitting k-NN
3.5 Naive Bayes
Lesson 4: Beginning Classification (Part II)
Topics
4.1 Learning Evaluation
4.2 Resource Evaluation: Time
4.3 Resource Evaluation: Memory
4.4 Scripts
Lesson 5: Beginning Regression (Part I)
Topics
5.1 Setup and the Diabetes Dataset
5.2 Measures of Center
5.3 k-Nearest Neighbors for Regression
5.4 Linear Regression, Part 1
5.5 Linear Regression, Part 2
Lesson 6: Beginning Regression (Part II)
Topics
6.1 Optimization, Part 1
6.2 Optimization, Part 2
6.2 Learning Performance
6.3 Resource Evaluation