2022-06-03

A complete guide on feature selection techniques with Python code

33 mins read Considering you are working on high-dimensional data that’s coming from IoT sensors or healthcare with hundreds to thousands of features, […]
2022-05-30

A tutorial on Scikit-Learn Pipeline, ColumnTransformer, and FeatureUnion

20 mins read These three powerful tools are must-know for anyone who wants to master using sklearn. It’s, therefore, crucial to learn how to […]
2022-05-28

How to interpret logistic regression coefficients?

15 mins read Logistic Regression is a fairly simple yet powerful Machine Learning model that can be applied to various use cases. It’s […]
2022-05-28

Understanding interaction effects in regression analysis

22 mins read In regression, an interaction effect exists when the effect of an independent variable on a dependent variable changes, depending on […]
2022-05-26

Understanding Ordinal and One-Hot Encodings for categorical features

21 mins read Machine learning models require all input and output variables to be numeric. This means that if your data contains categorical […]
2022-05-26

When should we drop the first one-hot encoded column?

10 mins read Many machine learning models demand that categorical features are converted to a format they can comprehend via a widely used […]
2022-05-26

Alternatives for One-Hot Encoding of Categorical Variables

6 mins read One-hot encoding, otherwise known as dummy variables, is a method of converting categorical variables into several binary columns, where a […]
2022-05-26

Common mistakes to avoid as a Machine Learning Engineer

5 mins read In machine learning, there are many ways to build a product or solution and each way assumes something different. Many […]
2022-05-25

What are skip connections in deep learning?

17 mins read Nowadays, there is an infinite number of applications that someone can do with Deep Learning. However, in order to understand […]
2022-05-24

A guide on Maximum likelihood and Bayesian inference for parameter estimation

28 mins read Introduction In this post, I’ll explain what the maximum likelihood and Bayesian inference methods for parameter estimation are and go […]
2022-05-19

Understanding the basics of Bayesian Inference with Python Code

10 mins read Why did someone have to invent the Bayesian Inference? In one sentence: to update the probability as we gather more data. The […]
2022-05-10

Understanding GloVe embedding with Tensorflow implementation

9 mins read In this article, you will learn about GloVe, a very powerful word vector learning technique. This article will focus on […]
2022-05-09

Understanding Word2vec embedding with Tensorflow implementation

15 mins read This article is going to be about Word2vec algorithms. Word2vec algorithms output word vectors. Word vectors, underpin many of the […]
2022-05-08

Encoding categorical features using the category_encoders package

11 mins read There are loads of different ways to convert categorical variables into numeric features so they can be used within machine […]
2022-05-04

Understand different feature scaling techniques with Python code

19 mins read In many machine learning algorithms, to bring all features in the same standing, we need to do scaling so that […]
2022-04-27

A tutorial on TensorFlow 2 and Keras: From basics to deep neural networks

49 mins read Predictive modeling with deep learning is a skill that modern developers need to know. TensorFlow is the premier open-source deep […]
2022-04-27

Understanding and interpreting Residuals Plot for linear regression

27 mins read Interpreting Residual Plots to Improve Your Regression When you run a regression, calculating and plotting residuals help you understand and improve your […]
2022-04-24

Implementing Transformers step-by-step in PyTorch from scratch

14 mins read Doing away with clunky for-loops, the transformer instead finds a way to allow whole sentences to simultaneously enter the network […]
2022-04-10

Understanding ROC and Precision-Recall curves

25 mins read It can be more flexible to predict probabilities of an observation belonging to each class in a classification problem rather […]
2022-04-09

Finding an optimized portfolio of machine learning models using Sklearn, LazyPredict, and Precise Packages

10 mins read In this post, I will provide an example of the use of the precise Python package (and PyPortfolioOpt) to create a diversified portfolio of […]