
Explore supervised learning, including classification and regression, and see how inputs x1, x2, x3, x4 predict output y in binary and multi-class tasks like the Pima Indians diabetes dataset.
Explore unsupervised learning when Y is unknown, using clustering to group unlabeled data without labels; compare to supervised tasks such as binary classification and regression.
Identify machine learning problem types by examining examples of binary classification, regression, and supervised versus unsupervised learning, including cancer diagnosis and price prediction for real estate.
Create a bunch with your own data by importing data from files or databases, shaping the data, and preparing a dataset for machine learning experiments.
Explore practical hyperparameter tuning for k-nearest neighbors using Python, comparing parameter choices like number of neighbors and distance metrics, and employing grid search cross-validation to optimize accuracy.
select optimal parameters, train with the best number of neighbors, then save the trained model using pickle’s dump function, storing it in binary format for later loading and production.
Explore practical machine learning workflows in Python, including working with nearest neighbors, parametric and non-parametric methods, distance metrics like Manhattan and Euclidean, and cross-validation for model tuning.
Explore the mathematics of linear regression, deriving the y = mx + b model, understanding slope and intercept, and applying it to continuous outcomes while noting regression assumptions.
Apply linear regression to predict life span from fertility features, fit the model, interpret the intercept and coefficients, and predict on new data with visualization.
Explore the receiver operating characteristic curve to visualize classifier performance by plotting false positive rate versus true positive rate (sensitivity) and evaluating thresholds and the area under the curve.
Explore support vector machines for classification, emphasizing a clear margin of separation, high-dimensional processing, and memory-efficient use of support vectors.
Explore how to identify linear vs non-linear data, use a linear kernel for linear data, and switch to an rbf kernel to separate circular patterns with a clear margin.
Apply support vector classification to the iris toy dataset using two features, train a linear model, and achieve about 0.8 accuracy; use grid search to tune C and gamma.
Explore preprocessing categorical features in Python machine learning, converting string data to numeric, encoding categories, and selecting features such as reason and country to improve lifespan prediction with linear regression.
Learn to build a pipeline that unites pre-processing, imputation and feature engineering with SelectKBest and ANOVA, and a SVC estimator, including memory caching.
Construct a machine learning pipeline that applies a simple imputer for missing values with the most frequent strategy, then fits an svc estimator with a train-test split.
We will walk you step-by-step into the World of Machine Learning. With every tutorial you will develop new skills and improve your understanding of this challenging yet lucrative sub-field of Data Science.
What is Machine learning
Features of Machine Learning
Difference between regular program and machine learning program
Applications of Machine Learning
Types of Machine Learning
What is Supervised Learning
What is Reinforcement Learning
What is Neighbours algorithm
K Nearest Neighbours classification
K Nearest Neighbours Regression
Detailed Supervised Learning
Supervised Learning Algorithms
Linear Regression
Use Case(with Demo)
Model Fitting
Need for Logistic Regression
What is Logistic Regression?
Ridge and lasso regression
Support vector Machines
Pre process of Machine learning data
ML Pipeline
What is Unsupervised Learning
What is Clustering
Types of Clustering
Tree Based Modeles
What is Decision Tree
What is Random Forest
What is Adaboost
What is Gradient boosting
stochastic gradient boostinng
What is Naïve Bayes
Calculation using weather dataset
Entropy Calculation using weather dataset
Trees Entropy and Gini Maths Introduction
Pipeline with SimpleImputer and SVC
Pipeline with feature selection and SVC
Dropping Missing Data
Regression with categorical features using ridge algorithm
processing Categorical Features part2
processing Categorical Features
processing of machine learning data Delete Outliers
processing of machine learning data Outliers