Posts from Python

Detect Polygons in an Image using OpenCV in Python

By Harshil Gupta

In this tutorial, we will be learning to identify different shapes present in an image on the basis of the number of edges detected in Python. We will be detecting shapes in an ima.... Read More

Python program to cyclically rotate an array by one

By Sri Vikas Prathanapu

In this tutorial, you will learn how to cyclically rotate an array by one in Python. Arrays are homogeneous collections of elements. Because of its vast importance and uses arrays .... Read More

Find a peak element in a given array in Python

By Ekta Sharma

Hello, in this tutorial we will learn how to find the peak element in a given array in python. Now, you must be wondering what is the peak element in an array? can there be more th.... Read More

Rearranging the letters of a string in alphabetical order in Python

By Ranjeet V

Hello learners, in this tutorial, we are going to learn some methods to rearrange the letters of a string in alphabetical order in Python. There are many ways to do that. Let’.... 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

Related Posts