Scikit-Learn is one of the most-used open-source machine learning library for Python. Scikit-Learn provides various unsupervised and supervised learni
Analyze how the default practice datasets are organized using keys. KeysKeys are normally composed of data, target, target_name, feature_names & DESCR
On previous post, I had emphasized the importance of splitting data into train and test data-sets. On this post, let us see what happens to the estima
a process of resampling machine learning model in a limited data sampleFrom the previous post, we learned the importance of splitting data-set into tr
Until now, we have learned about various machine learning techniques to enhance the performance of the model. However, handling and managing the data
Data Preprocessing is not just about encoding the data and converting the data type within the dataset. It also requires arduous steps to adjust the w
Kaggle : Titanic DatasetAs a review, we will be using train.csv from Kaggle's Titanic dataset to predict the survivors from the disaster.Input OutputP
So far, we have studied various techniques (ex- train/test-split, GridSearchCV, Standardization, Normalization, Data Preprocessing) to enhance our mac
Confusion Matrix which is often used as an evaluation metrics in binary classification shows how much the model is confused while performing the predi
Precision and Recall are evaluation metrics which emphasize the performance in positive data-set. Precision = (TP) / (TP + FP) ratio of correctly pr
F1-score is the weighted average of precision and recall. Hence, since it takes both FP and FN into account, better the balance between precision and
Receiver Operation Curve (ROC) and Area Under Curve (AUC) are important evaluation metrics used in evaluating the performance of the binary classifica
Brief Summay A supervised learning is a machine learning task of learning a function that maps an input to an output based on example input-output p
Today, we will be using decision tree to perform classification prediction on UCI Machine Learning Repository's Human Activity Recognition dataset. Th
* Ensemble Learning * : process by which multiple models, such as classifiers or experts, are strategically generated and combined to solve a partic