How to terminate a Java Program

By Ranjeet V

In this Java tutorial, we will talk about the ways to terminate a Java Program with example. Normally, we use the return statement in the main() method to exit the program. In this.... Read More

Human Activity Recognition using Smartphone Dataset- ML Python

By Tushar Goel

Hey ML Enthusiasts, In this article, we are going to create a Human Activity Recognition Model using Machine Learning in Python. Before Proceeding further in the article, you are a.... Read More

Python string startswith() Method

By Rishabh Thukral

In this tutorial, we will learn about the Python string startswith() method. startswith() method in Python The startswith() method in Python checks the string and return the TrueÂ.... Read More

For each loop in C++

By Harsha Sai

Hello Learners, today we are going to learn a very interesting topic that is foreach loop using C++ programming with implementation and working. Most of them will be familiar or he.... Read More

Chatbot Using Deep Learning in Python

Chatbot Using Deep Learning in Python

By Akarsh Shekhar | April 12, 2020

In this tutorial program, we will learn about building a Chatbot using deep learning, the language used is Python. So here I am going to discuss what are the basic steps of this deep learning problem and how to approach it. For this Chatbot, we are going to use Natural Language Processing(NLP). Natural Language Processing: […] Read More

Movie Recommendation System using Machine Learning in Python

By Akarsh Shekhar

In this tutorial program, we will learn about building movie recommendation systems using Machine Learning in Python.  So here I am going to discuss what are the basic steps of th.... Read More

nearbyint() function in C++ with examples

By Ranjeet V

In this tutorial, we are going to learn about the nearbyint() function in C++. This C++ function is defined in <cmath> header file. As the name suggests, the nearbyint() func.... Read More

Check if any element in a list satisfies a condition in Python

By Ranjeet V

Welcome everyone, in this post, we will see how to check if any element in a list satisfies a condition in Python. There can be many instances when we need to find out if whether s.... Read More

Related Posts