Posts from Machine Learning

How to Improve Accuracy Of Machine Learning Model in Python

By Vanshika Namdev

Machine Learning model accuracy is the measurement to decide which model is best to do prediction. Machine Learning model accuracy is very essential as the cost of error can be hug.... Read More

Calculate Derivative Functions in Python

By Suyash pratap Singh

In this tutorial, we will learn about Derivative function, the rate of change of a quantity y with respect to another quantity x is called the derivative or differential coefficien.... Read More

K-nearest Neighbors (KNN) Classification Model in Python

By Shagun Bidawatka

K-nearest Neighbors (KNN) is a simple machine learning model. So here I will write a detailed description of the KNN model which will include its brief details, algorithm, code in .... Read More

Keras Conv2D with examples in Python

By Vedant Vachharajani

Keras is a Python library to implement neural networks. This article is going to provide you with information on the Conv2D class of Keras. It is a class to implement a 2-D convolu.... Read More

Building bot for playing google chrome dinosaur game in Python

By Vedant Vachharajani

As you might already know, Google Chrome has a dinosaur game when you are offline. In this article, we are going to look at building a bot to play this dinosaur game. We are going .... Read More

Identifying Tweets on Twitter in Python Using Machine Learning

By Sakshi Gawande

We deploy a model that identifies whether a tweet is positive or negative. This is a generalized model and thus can be used for any similar purposes in natural language processing..... Read More

get_weights() and set_weights() functions in Keras layers

By Suchita Sriramka

In this article, we will see the get_weights() and set_weights() functions in Keras layers. First, we will make a fully connected feed-forward neural network and perform simple lin.... Read More

Save and Load Keras Deep Learning Model in Python

By Amal Mathew

In this tutorial, we will learn how to save and load the Keras deep learning model in Python. Once we train a deep learning model, the work done during training will become worthle.... Read More