
This video will give students information about the outcomes of the course and the detail course structure which is composed of nine sections. They will get an idea about how to work on the course and what are the topics covered in this course
This video will tell learner how to link their .csv file which is stored in google drive with google colab IDE, a very useful video connecting data with IDE.
This Lecture is the first lecture of Section 1 of Basics of python module which give concepts of programming for students who are new to python programming. we have given basic introduction along with conditional statements in python using google colab in this lecture
This lecture is second in the series of basics of python, in this lecture concepts of loops are introduced to students along with examples.
This Lecture will give detail implementation of list in python
Important concepts of Dictionary is being introduced in this lecture along with tuples.
In this lecture students will get an idea about the functions in python along with practical exercise
Numpy is a very important package to understand carefully for building an efficient machine learning algorithm, so it is highly recommended to understand numpy in detail
Explore basic concepts of data frames with pandas, including column types (integer, object, float) and selecting columns with iloc and loc to print and inspect data for regression modeling.
The car_sample.csv file is provided to all of you have to build the model from scratch as being told in this lecture it consist of three parts, EDA, Data Cleaning , Model building and comparison with Random Forest Regressor
This lecture will describe how to build the first model using the concept of data exploration and data cleaning, after this we reduce the dimension of the data by using ffeature engineering and chosen best model to build one of the possible best model
Explore descriptive statistics as the foundation of machine learning, covering mean, variance, mode, and standard deviation, plus how normalization and z-scores situate data within the normal distribution.
Explore probability distributions, including Bernoulli, binomial, and Gaussian, and learn how PMF, PDF, and CDF describe discrete and continuous variables with mean mu and standard deviation sigma.
Explore the naive Bayes classifier, its conditional independence of features x1 to xM, and how log likelihood and posterior maximization drive classification.
Learn how regularization adds a penalty to the cost function to prevent overfitting by constraining weights. Explore ridge, lasso, and elastic net, and how lambda and cross validation set balance.
Explore principal component analysis to reduce high-dimensional data by projecting onto orthogonal components that maximize variance. Learn how covariance, eigenvalues, and eigenvectors guide component selection and dimensionality reduction.
Demonstrate linear discriminant analysis for dimensionality reduction, maximizing class separation via within-class and between-class scatter, and projecting data onto discriminative axes for two-class and multi-class cases.
Learn to build principal component analysis from scratch in Python by selecting eigenvectors with maximum variance, forming a covariance matrix, and projecting data for dimensionality reduction and classification.
Explore the k-nearest neighbors algorithm in Python, using Euclidean distance and majority voting to classify a test instance from nearby training samples.
Learn multiple linear regression with multiple features and data. Use least squares to estimate coefficients, assess model fit with R-squared and significance tests, and apply to a trucking time example.
Explore the significance test in multiple linear regression by using the F test for overall and individual significance, with p-values, alpha, and diagnostics like heatmaps and variance inflation factor.
Maximum Likelihood Estimation is use to determine the pdf value of a random value, which means the probability of random variable to belong a particular class or distribution
in this lecture we will implement a logistic regression classifier, which is used to check whether the customers using the coupon or not and their dependency on card and amount expenditure
In this test cases we have used Loan prediction data set for training the model, along with it i have also provided a test case which you can use to predict model values.
The CHI square is used to predict the significance of independent variable with target variable both are categorical.
To check the over all significance we have used Variance Inflation Factor for checking importance of variable
In this lecture we perform various important task on the training data like handling missing values dividing data and follow divide and conquer approach, then we applied feature engineering on continuous data
This lecture is in continuation with the above lecture here we will see how to choose important categorical features from a pool of features
Explore four decision tree approaches, including ID3, C4.5, CART, and GUIDE, and learn how entropy and information gain select root and splits while pruning and Gini impurity aid CART.
Explore the C4.5 decision tree algorithm, its improvements over ID3, and how entropy and information gain guide categorical data splits in supervised learning.
This algorithm will discuss the cart algorithm implemented on a small data set to identify fruits
CHAID is a very important decision tree which is based on the concept of finding chi square to check the significance of independent variable with respect to dependent variable. The selection of the feature or attribute depend upon the highest chi square value.
Explore the implementation of CHAID using Python to build decision trees, using entropy, information gain, and gain ratio, and compare with C4.5 while analyzing accuracy.
Explore what a recommendation system is, its real-life applications, and three major approaches: content-based, collaborative filtering, and hybrid filtering, with examples like Netflix and Amazon.
Explore content-based filtering for movie recommendations by merging genres and user comments, vectorizing text, and using SVD to build a compact similarity-based recommendation model.
In this lecture students will learn how to combine Content based rating and Item Based Collaborative rating.
Learn how support vector machines classify data with linear and nonlinear boundaries by maximizing the margin and using support vectors to define the separating plane.
Describe constrained optimization in support vector machines, maximizing margin with Lagrange multipliers, identifying support vectors via alpha, and applying kernels for non-linear classification.
The concept of soft margin classifier in SVM is explained in detail in this lecture along with the concept of dual form of Lagrange expression which has some condition which are very important in optimizing the solutions
After completing this lecture students will understand the concept of support vector machine more clearly, they also came to know how to maximize the margin separation between two classes
Explore the implementation of support vector regression, focusing on fitting a regression line with a margin and an error tube, using kernels like a second-degree polynomial.
Explains one-vs-one and one-vs-all multiclass SVM strategies, with nonlinear separation via mapping to higher dimensions and the creation of multiple hyperplanes for each class pair.
Implement a practical perceptron classifier by wiring input features, weights, and bias into a simple neuron, and classify samples into two classes using Python.
This lecture will give students information about gradient descent algorithm which is a very important mechanism for parameter tuning.
Divide data into small batches, compute mean squared error per batch, and update weights after each batch; mini-batch gradient descent sits between stochastic and full-batch methods in neural networks.
Explore convolutional neural networks by building a sequential network with 28x28 grayscale inputs, 3x3 filters, max pooling, flattening, and a dense layer, trained with Adam and categorical cross-entropy.
Explore OpenCV basics for computer vision in Google Colab, loading images, performing color conversions (bgr to rgb), and applying translation, rotation, resizing, cropping, flipping, and dilation or erosion.
Apply bottom-up hierarchical agglomerative clustering, building successively larger clusters from Euclidean distances and dissimilarity matrices, and compare linkage types such as single linkage to reveal evolving cluster structures.
Learn to implement hierarchical agglomerative clustering with PCA to reduce high-dimensional data to two components, explore threshold-based cluster counts, and assess cluster quality with compactness and the silhouette coefficient.
Explore the fuzzy c-means algorithm by initializing memberships, computing centroids, and updating cluster memberships using inverse distance weights, enabling probabilistic boundaries across two clusters.
Practical implementation of FCM algorithm using Python
Explore independent Gaussian mixtures for multivariate data, derive class-conditional probabilities with the multivariate Gaussian distribution, and apply Bayesian classifiers for classification and regression.
This lecture gives a practical aspect of how clusters are viewed as Gaussian Normal Distributions. In this lecture we try to separate overlapping clusters
The Concepts of Voting classifier both soft voting using predict_proba() method and hard voting classifier have been explained in this lecture using data. The bagging classifier is also being implemented to give students an idea about both types of classifiers
The random forest is an ensemble of lot of decision trees breast cancer data set has been used to implement this classifier
This lecture deals with building a Gradient Boosting Regression Tree, a very powerful model which work on the base estimator which is Decision Tree Regressor. Then we have introduced stage predict() method which work on the concept of early stopping
This course of "A Comprehensive Course on Machine Learning using python" is a very comprehensive and unique course in itself. Machine Learning is a revolution now days but we cannot master machine learning without getting the mathematical insight, and this course is designed for the same. Our course starts from very basic to advance concepts of machine learning. We have divided the course into different modules which start from the introduction of python its programming basic and important programming constructs which are extensively used in ML programming.
The mathematics involved in Machine learning is normally being not discussed and being left out in , but in our course we have put lot of emphasis in mathematical formulation of algorithms used in ML. We have also designed modules of pandas, sklearn, scipy, seaborn and matplotlib for gearing the students with all important tools which are needed in dealing with data and building the model. The machine learning module focuses on the mathematical derivation on white board through video lectures because we believe that white box view of every concept is very important for becoming an efficient ML expert.
In Machine Learning the cost estimation function also called loss functions are very important to understand and in our course we have explained Cross Categorical Entropy, Sparse Categorical Cross Entropy, and other important cost functions using TensorFlow.
Concepts like gradient descent algorithm, Restricted Boltzmann Algorithm, Perceptron, Multiple Layer Perceptron, Support Vector Machine, Radial Basis Function , Naïve Bayes Classifier, Ensemble Methods, recommendation system and many more are being implemented with examples using Google Colab.
Further I wish best of luck to learners for their sincere efforts in advance…
Use of various components of statistics in analyzing data
Graphical representation of data to get deep insight of the patterns
Mathematical analysis of algorithms to remove the black box view
Practical implementation of all important ML Algorithms
Building various models from scratch using advance algorithms
Understanding the use of ML in research
Quiz at the end of each section