SMSaurabh Mishrainblog.saurabhmishra.com.np·Aug 8, 2022 · 5 min readSupport Vector Machines(SVMs)Introduction The objective of the support vector machine algorithm is to find a hyperplane in an N-dimensional space (N — the number of features) that distinctly classifies the data points. Hyperplanes are decision boundaries that help classify the d...00
SMSaurabh Mishrainblog.saurabhmishra.com.np·Aug 8, 2022 · 5 min readDecision TreesIntroduction Classification is a two-step process, learning step and prediction step, in machine learning. In the learning step, the model is developed based on given training data. In the prediction step, the model is used to predict the response fo...00
SMSaurabh Mishrainblog.saurabhmishra.com.np·Aug 8, 2022 · 2 min readNaive Bayes' ClassifierIntroduction A Naive Bayes classifier is a supervised machine learning model that’s used for classification task. As a classifier, it is used in face recognition, weather prediction, medical diagnosis, news classification, spam filtering, etc. Naive ...00
SMSaurabh Mishrainblog.saurabhmishra.com.np·Aug 7, 2022 · 5 min readLogistic RegressionIntroduction Logistic Regression is a supervised machine learning algorithm used to classify a target variable based on one or more continuous or discrete predictor features. It is same as linear regression on the inside, only difference being, it us...00
SMSaurabh Mishrainblog.saurabhmishra.com.np·Aug 7, 2022 · 5 min readLinear RegressionIntroduction Linear Regression is a supervised machine learning algorithm which finds a best fit line between a dependent variable and one or more independent variables. This means that linear regression finds a linear relationship between dependent ...00