BA Notes From Lecture
BA Notes From Lecture
Reinforcement learning:
1)Robotics
Performance Evaluation:
Supervised learning
Classification or regression model: in order to create
supervised learning model we need to split data in two
parts namely:
1)Training data set
2)Testing data set
It used to create model where as testing data set is to
used to validate the model for its accuracy
In supervised learning models can be created by
applying algorithms like decision tree, naiv
baiyes,support vector , random forest, logistic
regression , and linear regression to named a few.
Once a model is created by applying any of these
algorithms on training data set we need to measure the
performance. This is achieved by confusion matrix.
SPECFICITY = TN/(TN+FP)
1) PERCENTAGE of negatively labeled instance,
also predicted as negative.
ACCCURACY = (TP+TN)/(TP+TN+FP+FN)
1)Percentage of correct predictions
2)Classification accuracy is the total number of
correct prediction divided by the total number
of prediction made for a dataset.
Subject: Advance Business Analytics
By: Prof Panjal Mule sir
Date : 12/03/2023
1)Decision Tree: