Posts from Machine Learning

Machine Learning | Customer Churn Analysis Prediction

By Ashutosh Khandelwal

Hello folks! In this article, we are going to see how to build a machine learning model for Customer Churn analysis Prediction. Basically customer churning means that customers sto.... Read More

Normalize features in TensorFlow with Python

By Shagun Bidawatka

In Machine Learning, we perform normalization on our dataset to change the numeric columns values present in the dataset. The goal is to get a common scale and get the values in a .... Read More

Predicting video game sales using Machine Learning in Python

Predicting video game sales using Machine Learning in Python

By Prantik Sarkar | June 27, 2020

Video games have become immensely popular over the past decade. The global games market in 2019 was estimated at $148.8 billion. In this article, you’ll learn how to implement a Machine Learning model that can predict the global sales of a video game depending on certain features such as its genre, critic reviews, and user […] Read More

Suppression of deprecation warnings in Tensorflow Python

By Sahil Singh

Hey guys, this article will be focussing on the deprecation warnings in TensorFlow as well as the logging information. As with the new update of TensorFlow, from 1.x to 2.x, the de.... Read More

Image Augmentation Using skimage in Python

By Amal Mathew

In this tutorial, we will learn about image augmentation using skimage in Python. The size of the dataset used while training a deep learning /machine learning model significantly .... Read More

Tensorflow Estimator in Python machine learning

By Amal Mathew

In this tutorial, we will learn about TensorFlow estimators using Python programming language. Estimators are high-level API that simplifies the task of machine learning. After the.... Read More

How to choose number of epochs to train a neural network in Keras

By Prantik Sarkar

One of the difficulties we face while training a neural network is determining the optimal number of epochs. Too many epochs can cause the model to overfit i.e your model will perf.... Read More

Python | Create a Voting Classifier using sklearn

By Harini R

In this tutorial, we will focus on how to create a voting classifier using sklearn in Python. Instead of checking which model predicts better, we can use all the models and combine.... Read More

Related Posts