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

Serial sort vs Parallel sort in Java

By Caushik Subramaniam

A sort operation performed on an array can be either sequential or parallel. A sequential sort array can follow any sorting algorithm. There are many sequential sorting algorithms .... Read More

MQTT Protocol in Java

By Laksh Singhal

MQTT (Message Queuing Telemetry Transport) is a messaging transport protocol that works on Client-Server architecture with publish/subscribe messaging pattern. It is lightweight, .... 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

How to call function from another file in C++

By Siddhant Chouhan

In this tutorial, you will learn how to call a function from another file in C++. When we work on big projects the lines of code can become huge. What happens is that if we put all.... Read More

Addition of two numbers in base 14 in C++

By Karun Thannickal

In this tutorial, we will look at how to add two numbers represented in base 14 in C++. The number system that we see the most in our daily lives is the base 10 or ‘decimal&#.... Read More

Print a string N number of times in C++

By Karandeep Singh

Hey, guys today we are going to learn how to print a string N number of times in C++. We can print a string N number of times with the help of iteration statements also known as lo.... Read More

Related Posts