Skip to main content

What are the best Machine Learning Tutorials on Youtube?

What are the best Machine Learning Tutorials on Youtube?

These days youtube has become one of the best website for videos sharing, streaming and earning online. Youtube community has grown in such a way that you can find almost videos from every fields in it. In past years it mostly contained entertaining videos, but nowadays, along with entertainment, it has also become one of the most popular platform for education. It contained educational videos and lectures almost from fields.

Talking about Machine Learning,with increase in its popularity and wide range of application, people are heading towards learning it. And you can find thousands of videos and lectures on machine learning over youtube which are uploaded by universities, experts and students working on that field.

Some of the best Machine Learning tutorials that I have gone through and heard of, can be found can be found in following youtube channels


This Lecture series is given by Andrew Ng, who is one of the experienced Computer Scientist, Leader in AI, Inventor and Entrepreneur of Silicon valley. This series covers all the essential and important topics on machine learning with proper explanation. This series focuses on understanding of algorithms and techniques of machine learning rather than implementing  it in code. 
This is the lecture series given by Andrew Ng in one of the batches in Standford University. It also touches most of the algorithms and techniques in machine learning.
This channel not only includes tutorials on machine learning, but also contains videos that give you hints and tricks to learn machine learning easily. If you follow his instructions, then it will become easier a lot for you to go through any of the machine learning lectures or books. The channel also contains different videos on kaggle competitions. 
In this Lecture series the topics are divides into small episodes, due to which it has become easier to understand each topics easily. It also contains about applied Machine learning algorithm and techniques.
This is also a lecture series that contains 10 videos all total. The videos are highly informative however are quiet lengthy. If you go through all of the 10 videos, then you will have much understanding about machine learning and its algorithms
This lecture series also focuses on the development of algorithms and techniques of machine learning rather than coding. This Series contains all total 22 videos with separate topics covered. This series will help you a lot if you want to have core understanding of  the machine learning algorithms.
If you want to learn Machine Learning algorithms and implement them simultaneously in python, then this tutorial series might help you a lot. It contains basics of most of the algorithms in ML and their respective codes in Python.
This tutorial series strongly focuses on coding than the algorithms. However you can find some short and clear explanations of algorithms with examples. You can also find tutorials and trainings on other topics like programming python etc.
This is quiet similar to simplilearn. It also focuses on writing code in  python rather going deep into algorithms.You can get good practical understanding of machine learning after going through this tutorial series.



These are some of the best tutorial and lecture series on Machine learning that I have gone through and heard of. There might be some other  tutorials that are more informative than these. You can  also find separate videos on specific topics that contains better explanations than that of these series.

Comments

Popular posts from this blog

Understanding KNN(K-nearest neighbor) with example

Understanding KNN(K-nearest neighbor) with example.  It is probably, one of the simplest but strong supervised learning algorithms used for classification as well regression purposes. It is most commonly used to classify the data points that are separated into several classes, in order to make prediction for new sample data points. It is a non-parametric and lazy learning algorithm. It classifies the data points based on the similarity measure (e.g. distance measures, mostly Euclidean distance). Assumption of KNN : K- NN algorithm is based on the principle that, “the similar things exist closer to each other or Like things are near to each other.” In this algorithm ‘K’ refers to the number of neighbors to consider for classification. It should be odd value.  The value of ‘K’ must be selected carefully otherwise it may cause defects in our model. If the value of ‘K’ is small then it causes Low Bias, High variance i.e. over fitting of model. In the same way if ‘K’ is very large then it l

What are various Data Pre-Processing techniques? What is the importance of data pre-processing?

What is Data Pre-Processing? What is the importance of data pre-processing? The real-world data are susceptible to high noise, contains missing values and a lot of vague information, and is of large size. These factors cause degradation of quality of data. And if the data is of low quality, then the result obtained after the mining or modeling of data is also of low quality. So, before mining or modeling the data, it must be passed through the series of quality upgrading techniques called data pre-processing. Thus, data pre-processing can be defined as the process of applying various techniques over the raw data (or low quality data) in order to make it suitable for processing purposes (i.e. mining or modeling). What are the various Data Pre-Processing Techniques? Fig: Methods of Data Pre-Processing source: Fotolia Once we know what data pre-processing actually does, the question might arise how is data processing done? Or how it all happens? The answer is obvious; there are series o

Supervised Machine Learning

Supervised Machine Learning What Is Supervised Learning?  It is the machine learning algorithm that learns from labeled data. After the data is analyzed and learned, the algorithm determines which label should be given to new data supplied by the user based on pattern and associating the patterns to the unlabeled new data. Supervised Learning algorithm has two categories i.e Classification & Regression Classification predicts the class or category in which the data belongs to. e.g.: Spam filtering and detection, Churn Prediction, Sentiment Analysis, image classification. Regression predicts a numerical value based on previously observed data. e.g.: House Price Prediction, Stock Price Prediction. Classification Classification is one of the widely and mostly used techniques for determining class the dependent belongs to base on the one or more independent variables. For simple understanding, what classification algorithm does is it simply makes a decision boundary between data points