Posts from Machine Learning

Contrastive loss for supervised classification in Machine learing using Python

By Vedant Vachharajani

Considering you are already familiar with some elementary Loss Functions like binary cross entropy loss function, Let’s talk about contrastive loss function for supervised cl.... Read More

Ball Catcher Game in Python

By Vedant Vachharajani

It is not a difficult job to combine the concepts of game development with reinforcement learning and make a program play the game on its own. In this article, we are going to deve.... Read More

Train and evaluate TensorFlow models in Python

By Harini R

In this tutorial, we will focus on how to train and evaluate a TensorFlow model using Python. We need to train the model after performing all the preprocessing steps on the dataset.... Read More

Logistic Regression from scratch in Python

By Sakshi Gawande

Classification techniques are used to handle categorical variables. Logistic Regression is a linear classifier which returns probabilities(P(Y=1) or P(Y=0)) as a function of the de.... Read More

Overfit and underfit in TensorFlow

By Ujjwal Tyagi

Hey there my fellow machine learning enthusiasts, well today we are going to learn about “Overfit and Underfit in Tensorflow”. Well, these two are so much correlated th.... Read More

Bias VS. Variance in Machine Learning

By Ujjwal Tyagi

Hello, my fellow machine learning enthusiasts, well sometimes you might have felt that you have fallen into a rabbit hole and there is nothing you can do to make your model better..... Read More

The Sequential model in Keras in Python

By Harini R

In this tutorial, we will see the sequential model in Keras and how to use this to build a deep learning model in Python. An overview of this post: What is Keras? What is a Sequent.... Read More

Colorization of images using CNN in Python

By Akarsh Shekhar

In this tutorial program, we will learn about the colorization of images using deep learning techniques using the Python programming language. So here I am going to discuss what ar.... Read More

Related Posts