Tag Archives: classification

How to save and load model with joblib

How to save and load model with joblib Saving and loading a model with joblib in Python is a way to preserve the trained model for future use. It allows you to save the model’s parameters, so you can use it later without the need to train the model again. This can save a lot …

Applied Machine Learning with Ensembles: Gradient Boosting Ensembles

Applied Machine Learning with Ensembles: Gradient Boosting Ensembles Gradient Boosting Ensemble is a machine learning algorithm that combines multiple models to create a strong model. It is a type of ensemble method, which is a technique that combines the predictions of multiple models to improve the performance. The algorithm starts by training a simple model …

Applied Machine Learning with Ensembles: Bagging CART Ensembles

Applied Machine Learning with Ensembles: Bagging CART Ensembles Bagging CART Ensemble is a machine learning algorithm in Python that combines multiple decision tree models to create a strong model. It is a type of ensemble method, which is a technique that combines the predictions of multiple models to improve the performance. The Bagging CART algorithm …

Applied Machine Learning with Ensembles: AdaBoost Ensembles

Applied Machine Learning with Ensembles: AdaBoost Ensembles AdaBoost Ensemble is a machine learning algorithm in Python that combines multiple weak models to create a strong model. It is a type of ensemble method, which is a technique that combines the predictions of multiple models to improve the performance. The AdaBoost algorithm starts by training a …

Compare Machine Learning Algorithms with IRIS Dataset

Compare Machine Learning Algorithms with IRIS Dataset Comparing machine learning algorithms with the IRIS dataset in Python is a common task in machine learning, as it allows to evaluate the performance of different algorithms on a known dataset and choose the best one for a specific problem. The IRIS dataset is a popular dataset for …

Applied Data Science Coding with Python: SVM Algorithm

Applied Data Science Coding with Python: SVM Algorithm The Support Vector Machine (SVM) algorithm is a method for classification and regression in machine learning. It is used to find the best boundary (or hyperplane) that separates different classes in the dataset with the greatest possible margin. The SVM algorithm starts by mapping the input data …

Applied Data Science Coding with Python: Naive Bayes Algorithm

Applied Data Science Coding with Python: Naive Bayes Algorithm The Naive Bayes algorithm is a method for classification in machine learning. It is based on Bayes’ theorem which states that the probability of an event occurring is equal to the prior probability of the event multiplied by the likelihood of the event given certain evidence. …

Applied Data Science Coding with Python: LR Algorithm

Applied Data Science Coding with Python: LR Algorithm The Logistic Regression (LR) algorithm is a method for classification in machine learning. It is used to model the probability of a certain class or event occurring, given the values of certain features or inputs. The LR algorithm starts by finding the best set of coefficients that …

Applied Data Science Coding with Python: LDA Algorithm

Applied Data Science Coding with Python: LDA Algorithm The Linear Discriminant Analysis (LDA) algorithm is a method for classification in machine learning. It is used to find a linear combination of features that separates different classes in the dataset with the greatest possible margin. The LDA algorithm starts by finding the mean vectors of the …

Applied Data Science Coding with Python: KNN Algorithm

Applied Data Science Coding with Python: KNN Algorithm The K-Nearest Neighbors (KNN) algorithm is a method for classification and regression in machine learning. It is based on the idea that similar data points tend to have similar outcomes or labels. The KNN algorithm works by finding the K number of data points in the training …