Oreilly - Building Recommender Systems with Machine Learning and AI - 9781789803273
Oreilly - Building Recommender Systems with Machine Learning and AI
by Frank Kane | Released September 2018 | ISBN: 9781789803273


Help people discover new products and content with deep learning, neural networks, and machine learning recommendations.About This VideoUnderstand and learn your way through Implicit and Explicit RatingsAn Introduction to Apache Spark and step-by-step installationUnderstand and overcome the real-world challenges of Recommender SystemsIn DetailLearn how to build recommender systems from one of Amazon's pioneers in the field. Frank Kane spent over nine years at Amazon, where he managed and led the development of many of Amazon's personalized product recommendation technologies.This course has been updated for Tensorflow 2, Amazon Personalize.You've seen automated recommendations everywhere—on Netflix's home page, on YouTube, and on Amazon–as these machine learning algorithms learn about your unique interests, and show the best products or content for you as an individual. These technologies have become central to the largest, most prestigious tech employers out there, and by understanding how they work, you'll become very valuable to them.We cover tried-and-true recommendation algorithms based on neighborhood-based collaborative filtering and work our way up to more modern techniques including matrix factorization and even deep learning with artificial neural networks. Along the way, you'll learn from Kane's extensive industry experience and understand the real-world challenges you'll encounter when applying these algorithms at a large scale and with real-world data.The coding exercises in this course use the Python programming language. We include an intro to Python if you're new to it, but you'll need some prior programming experience in order to use this course successfully. We also include a short introduction to deep learning if you are new to the field of artificial intelligence, but you'll need to be able to understand new computer algorithms. Show and hide more Publisher Resources Download Example Code
  1. Chapter 1 : Getting Started
    • Install Anaconda, course materials, and create movie recommendations! 00:09:06
    • Course Roadmap 00:03:38
    • Types of Recommenders 00:03:22
    • Understanding You through Implicit and Explicit Ratings 00:04:26
    • Top-N Recommender Architecture 00:05:53
    • Review the basics of recommender systems. 00:04:46
  2. Chapter 2 : Introduction to Python
    • The Basics of Python 00:05:04
    • Data Structures in Python 00:05:17
    • Functions in Python 00:02:46
    • Booleans, loops, and a hands-on challenge 00:03:52
  3. Chapter 3 : Evaluating Recommender Systems
    • Train/Test and Cross Validation 00:03:49
    • Accuracy Metrics (RMSE, MAE) 00:04:06
    • Top-N Hit Rate - Many Ways 00:04:35
    • Coverage, Diversity, and Novelty 00:04:56
    • Churn, Responsiveness, and A/B Tests 00:05:07
    • Review ways to measure your recommender. 00:02:56
    • Walkthrough of RecommenderMetrics.py 00:06:53
    • Walkthrough of TestMetrics.py 00:05:09
    • Measure the Performance of SVD Recommendations 00:02:25
  4. Chapter 4 : A Recommender Engine Framework
    • Our Recommender Engine Architecture 00:07:28
    • Recommender Engine Walkthrough, Part 1 00:03:56
    • Recommender Engine Walkthrough, Part 2 00:03:51
    • Review the Results of our Algorithm Evaluation. 00:03:11
  5. Chapter 5 : Content-Based Filtering
    • Content-Based Recommendations, and the Cosine Similarity Metric 00:08:58
    • K-Nearest-Neighbors and Content Recs 00:04:00
    • Producing and Evaluating Content-Based Movie Recommendations 00:05:24
    • Bleeding Edge Alert! Mise en Scene Recommendations 00:04:32
    • Dive Deeper into Content-Based Recommendations 00:04:26
  6. Chapter 6 : Neighborhood-Based Collaborative Filtering
    • Measuring Similarity, and Sparsity 00:04:49
    • Similarity Metrics 00:08:32
    • User-based Collaborative Filtering 00:07:25
    • User-based Collaborative Filtering, Hands-On 00:04:59
    • Item-based Collaborative Filtering 00:04:15
    • Item-based Collaborative Filtering, Hands-On 00:02:24
    • Tuning Collaborative Filtering Algorithms 00:03:31
    • Evaluating Collaborative Filtering Systems Offline 00:01:29
    • Measure the Hit Rate of Item-Based Collaborative Filtering 00:02:17
    • KNN Recommenders 00:04:04
    • Running User and Item-Based KNN on MovieLens 00:02:26
    • Experiment with different KNN parameters. 00:04:26
    • Bleeding Edge Alert! Translation-Based Recommendations 00:02:30
  7. Chapter 7 : Matrix Factorization Methods
    • Principal Component Analysis (PCA) 00:06:32
    • Singular Value Decomposition 00:06:57
    • Running SVD and SVD++ on MovieLens 00:03:46
    • Improving on SVD 00:04:34
    • Tune the hyperparameters on SVD 00:01:59
    • Bleeding Edge Alert! Sparse Linear Methods (SLIM) 00:03:30
  8. Chapter 8 : Introduction to Deep Learning
    • Deep Learning Introduction 00:01:31
    • Deep Learning Pre-Requisites 00:08:13
    • History of Artificial Neural Networks 00:10:51
    • [Activity] Playing with Tensorflow 00:12:02
    • Training Neural Networks 00:05:47
    • Tuning Neural Networks 00:03:53
    • Introduction to Tensorflow 00:11:30
    • [Activity] Handwriting Recognition with Tensorflow, part 1 00:13:20
    • [Activity] Handwriting Recognition with Tensorflow, part 2 00:12:03
    • Introduction to Keras 00:02:48
    • [Activity] Handwriting Recognition with Keras 00:09:53
    • Classifier Patterns with Keras 00:03:58
    • [Exercise] Predict Political Parties of Politicians with Keras 00:09:55
    • Intro to Convolutional Neural Networks (CNN's) 00:08:59
    • CNN Architectures 00:02:54
    • [Activity] Handwriting Recognition with Convolutional Neural Networks (CNNs) 00:08:38
    • Intro to Recurrent Neural Networks (RNN's) 00:07:38
    • Training Recurrent Neural Networks 00:03:21
    • [Activity] Sentiment Analysis of Movie Reviews using RNN's and Keras 00:11:02
  9. Chapter 9 : Deep Learning for Recommender Systems
    • Intro to Deep Learning for Recommenders 00:02:19
    • Restricted Boltzmann Machines (RBM's) 00:08:03
    • [Activity] Recommendations with RBM's, part 1 00:12:46
    • [Activity] Recommendations with RBM's, part 2 00:07:11
    • [Activity] Evaluating the RBM Recommender 00:03:44
    • [Exercise] Tuning Restricted Boltzmann Machines 00:01:43
    • Exercise Results: Tuning a RBM Recommender 00:01:15
    • Auto-Encoders for Recommendations: Deep Learning for Recs 00:04:27
    • [Activity] Recommendations with Deep Neural Networks 00:07:23
    • Clickstream Recommendations with RNN's 00:07:23
    • [Exercise] Get GRU4Rec Working on your Desktop 00:02:43
    • Exercise Results: GRU4Rec in Action 00:07:52
    • Bleeding Edge Alert! Deep Factorization Machines 00:05:49
    • More Emerging Tech to Watch 00:05:15
  10. Chapter 10 : Scaling it up
    • [Activity] Introduction and Installation of Apache Spark 00:05:49
    • Apache Spark Architecture 00:05:13
    • [Activity] Movie Recommendations with Spark, Matrix Factorization, and ALS 00:06:03
    • [Activity] Recommendations from 20 million ratings with Spark 00:04:58
    • Amazon DSSTNE 00:04:41
    • DSSTNE in Action 00:09:25
    • Scaling Up DSSTNE 00:02:15
    • AWS SageMaker and Factorization Machines 00:04:24
    • SageMaker in Action: Factorization Machines on one million ratings, in the cloud 00:07:39
  11. Chapter 11 : Real-World Challenges of Recommender Systems
    • The Cold Start Problem (and solutions) 00:06:12
    • [Exercise] Implement Random Exploration 00:00:54
    • Exercise Solution: Random Exploration 00:02:18
    • Stoplists 00:04:48
    • [Exercise] Implement a Stoplist 00:00:33
    • Exercise Solution: Implement a Stoplist 00:02:23
    • Filter Bubbles, Trust, and Outliers 00:05:39
    • [Exercise] Identify and Eliminate Outlier Users 00:00:45
    • Exercise Solution: Outlier Removal 00:04:00
    • Fraud, the Perils of Clickstream, and International Concerns 00:04:34
    • Temporal Effects, and Value-Aware Recommendations 00:03:31
  12. Chapter 12 : Case Studies
    • Case Study: YouTube, Part 1 00:03:43
    • Case Study: YouTube, Part 2 00:07:04
    • Case Study: Netflix, Part 1 00:03:59
    • Case Study: Netflix, Part 2 00:03:56
  13. Chapter 13 : Hybrid Approaches
    • Hybrid Recommenders and Exercise 00:02:54
    • Exercise Solution: Hybrid Recommenders 00:04:18
  14. Chapter 14 : Wrapping Up
    • More to Explore 00:02:31
  15. Show and hide more

    Oreilly - Building Recommender Systems with Machine Learning and AI


 TO MAC USERS: If RAR password doesn't work, use this archive program: 

RAR Expander 0.8.5 Beta 4  and extract password protected files without error.


 TO WIN USERS: If RAR password doesn't work, use this archive program: 

Latest Winrar  and extract password protected files without error.


 Coktum   |  

Information
Members of Guests cannot leave comments.


SermonBox - Seasonal Collection

SermonBox - The Series Pack Collection

Top Rated News

  • Christmas Material
  • Laser Cut & Print Design Elements Bundle - ETSY
  • Daz3D - All Materials - SKU 37000-37999
  • Cgaxis - All Product - 2019 - All Retail! - UPDATED!!!
  • DigitalXModels Full Collections
  • Rampant Design Tools Full Collections Total: $4400
  • FilmLooks.Com Full Collection
  • All PixelSquid Product
  • The Pixel Lab Collection
  • Envato Elements Full Sources- 3200+ Files
  • Ui8.NET Full Sources
  • The History of The 20th Century
  • The Dover Collections
  • Snake Interiors Collections
  • Inspirational Collections
  • Veer Fancy Collections
  • All Ojo Images
  • All ZZVE Collections
  • All Sozaijiten Collections
  • All Image Broker Collections
  • Shuterstock Bundle Collections
  • Tattoo Collections
  • Blend Images Collections
  • Authors Tuorism Collections
  • Motion Mile - Big Bundle
  • PhotoBacks - All Product - 2018
  • Dekes Techniques - Photoshop & Illustrator Course - 1 to 673
Telegram GFXTRA Group
Udemy - Turkce Gorsel Ogrenme Setleri - Part 2
Videohive Wow Pack Series


rss