Oreilly - From 0 to 1: Machine Learning, NLP & Python-Cut to the Chase - 9781788624329
Oreilly - From 0 to 1: Machine Learning, NLP & Python-Cut to the Chase
by Loonycorn | Released September 2017 | ISBN: 9781788624329


A down-to-earth, shy but confident take on machine learning techniques that you can put to work todayAbout This VideoWhat's Covered:Machine Learning, Natural Language Processing with PythonSentiment Analysis, Mitigating Overfitting with Ensemble LearningRecommendations: Content based filtering, Collaborative filtering and Association Rules learningGet started with Deep learning: Apply Multi-layer perceptrons to the MNIST Digit recognition problemIn DetailThis course is a down-to-earth, shy but confident take on machine learning techniques that you can put to work today. Let's parse that. The course is down-to-earth: it makes everything as simple as possible - but not simpler. The course is shy but confident: It is authoritative, drawn from decades of practical experience -but shies away from needlessly complicating stuff. You can put ML to work today: If Machine Learning is a car, this car will have you driving today. It won't tell you what the carburetor is. The course is very visual: most of the techniques are explained with the help of animations to help you understand better. This course is practical as well: There are hundreds of lines of source code with comments that can be used directly to implement natural language processing and machine learning for text summarization, text classification in Python. The course is also quirky. The examples are irreverent. Lots of little touches: repetition, zooming out so we remember the big picture, active learning with plenty of quizzes. There's also a peppy soundtrack, and art - all shown by studies to improve cognition and recall. Show and hide more Publisher resources Download Example Code
  1. Chapter 1 : Introduction
    • You, This Course and Us 00:02:24
    • A sneak peek at what's coming up 00:04:12
  2. Chapter 2 : Jump right in: Machine learning for Spam detection
    • Solving problems with computers 00:02:12
    • Machine Learning: Why should you jump on the bandwagon? 00:07:28
    • Plunging In - Machine Learning Approaches to Spam Detection 00:11:48
    • Spam Detection with Machine Learning Continued 00:11:07
    • Get the Lay of the Land: Types of Machine Learning Problems 00:09:46
  3. Chapter 3 : Solving Classification Problems
    • Solving Classification Problems 00:00:59
    • Random Variables 00:11:27
    • Bayes Theorem 00:11:55
    • Naive Bayes Classifier 00:05:26
    • Naive Bayes Classifier: An example 00:09:19
    • K-Nearest Neighbours 00:13:09
    • K-Nearest Neighbours: A few wrinkles 00:14:47
    • Support Vector Machines Introduced 00:08:16
    • Support Vector Machines: Maximum Margin Hyperplane and Kernel Trick 00:16:23
    • Artificial Neural Networks: Perceptrons Introduced 00:11:18
  4. Chapter 4 : Clustering as a form of Unsupervised learning
    • Clustering: Introduction 00:19:08
    • Clustering: K-Means and DBSCAN 00:13:43
  5. Chapter 5 : Association Detection
    • Association Rules Learning 00:09:13
  6. Chapter 6 : Dimensionality Reduction
    • Dimensionality Reduction 00:10:17
    • Principal Component Analysis 00:18:54
  7. Chapter 7 : Regression as a form of supervised learning
    • Regression Introduced: Linear and Logistic Regression 00:13:54
    • Bias Variance Trade-off 00:10:14
  8. Chapter 8 : Natural Language Processing and Python
    • Applying ML to Natural Language Processing 00:00:57
    • Installing Python - Anaconda and Pip 00:09:00
    • Natural Language Processing with NLTK 00:07:26
    • Natural Language Processing with NLTK - See it in action 00:14:14
    • Web Scraping with BeautifulSoup 00:18:09
    • A Serious NLP Application: Text Auto Summarization using Python 00:11:34
    • Python Drill: Autosummarize News Articles I 00:18:34
    • Python Drill: Autosummarize News Articles II 00:11:28
    • Python Drill: Autosummarize News Articles III 00:10:24
    • Put it to work: News Article Classification using K-Nearest Neighbors 00:19:29
    • Put it to work : News Article Classification using Naive Bayes Classifier 00:19:25
    • Python Drill: Scraping News Websites 00:15:46
    • Python Drill: Feature Extraction with NLTK 00:18:51
    • Python Drill: Classification with KNN 00:04:15
    • Python Drill: Classification with Naive Bayes 00:08:08
    • Document Distance using TF-IDF 00:11:04
    • Put it to work: News Article Clustering with K-Means and TF-IDF 00:14:32
    • Python Drill: Clustering with K Means 00:08:32
  9. Chapter 9 : Sentiment Analysis
    • Solve Sentiment Analysis using Machine Learning 00:02:36
    • Sentiment Analysis - What's all the fuss about? 00:17:17
    • ML Solutions for Sentiment Analysis - the devil is in the details 00:19:57
    • Sentiment Lexicons (with an introduction to WordNet and SentiWordNet) 00:18:49
    • Regular Expressions 00:17:54
    • Regular Expressions in Python 00:05:41
    • Put it to work: Twitter Sentiment Analysis 00:17:48
    • Twitter Sentiment Analysis - Work the API 00:20:00
    • Twitter Sentiment Analysis - Regular Expressions for Preprocessing 00:12:24
    • Twitter Sentiment Analysis - Naive Bayes, SVM and Sentiwordnet 00:19:41
  10. Chapter 10 : Decision Trees
    • Using Tree Based Models for Classification 00:01:01
    • Planting the seed - What are Decision Trees? 00:17:02
    • Growing the Tree - Decision Tree Learning 00:18:04
    • Branching out - Information Gain 00:18:51
    • Decision Tree Algorithms 00:07:51
    • Titanic: Decision Trees predict Survival (Kaggle) – I 00:19:22
    • Titanic: Decision Trees predict Survival (Kaggle) - II 00:14:16
    • Titanic: Decision Trees predict Survival (Kaggle) – III 00:13:00
  11. Chapter 11 : A Few Useful Things to Know About Overfitting
    • Overfitting - the bane of Machine Learning 00:19:04
    • Overfitting Continued 00:11:20
    • Cross Validation 00:18:55
    • Simplicity is a virtue – Regularization 00:07:18
    • The Wisdom of Crowds - Ensemble Learning 00:16:39
    • Ensemble Learning continued - Bagging, Boosting and Stacking 00:18:03
  12. Chapter 12 : Random Forests
    • Random Forests - Much more than trees 00:12:28
    • Back on the Titanic - Cross Validation and Random Forests 00:20:03
  13. Chapter 13 : Recommendation Systems
    • Solving Recommendation Problems 00:00:57
    • What do Amazon and Netflix have in common? 00:16:44
    • Recommendation Engines - A look inside 00:10:45
    • What are you made of? - Content-Based Filtering 00:13:36
    • With a little help from friends - Collaborative Filtering 00:10:27
    • A Neighbourhood Model for Collaborative Filtering 00:17:51
    • Top Picks for You! - Recommendations with Neighbourhood Models 00:09:42
    • Discover the Underlying Truth - Latent Factor Collaborative Filtering 00:20:13
    • Latent Factor Collaborative Filtering contd. 00:12:09
    • Gray Sheep and Shillings - Challenges with Collaborative Filtering 00:08:12
    • The Apriori Algorithm for Association Rules 00:18:32
  14. Chapter 14 : Recommendation Systems in Python
    • Back to Basics: Numpy in Python 00:18:06
    • Back to Basics: Numpy and Scipy in Python 00:14:19
    • Movielens and Pandas 00:16:45
    • Code Along - What's my favourite movie? - Data Analysis with Pandas 00:06:19
    • Code Along - Movie Recommendation with Nearest Neighbour CF 00:18:10
    • Code Along - Top Movie Picks (Nearest Neighbour CF) 00:06:16
    • Code Along - Movie Recommendations with Matrix Factorization 00:17:56
    • Code Along - Association Rules with the Apriori Algorithm 00:09:51
  15. Chapter 15 : A Taste of Deep Learning and Computer Vision
    • Computer Vision - An Introduction 00:18:09
    • Perceptron Revisited 00:16:02
    • Deep Learning Networks Introduced 00:17:02
    • Code Along - Handwritten Digit Recognition -I 00:14:30
    • Code Along - Handwritten Digit Recognition - II 00:17:37
    • Code Along - Handwritten Digit Recognition – III 00:06:02
  16. Show and hide more

    Oreilly - From 0 to 1: Machine Learning, NLP & Python-Cut to the Chase

    9781788624329.from.0.to.OR.part1.rar

    9781788624329.from.0.to.OR.part2.rar

    9781788624329.from.0.to.OR.part3.rar

    9781788624329.from.0.to.OR.part4.rar

    9781788624329.from.0.to.OR.part5.rar

    9781788624329.from.0.to.OR.part6.rar


 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