N-grams in Python with nltk

By Abinash Reddy

In this article, we will learn about n-grams and the implementation of n-grams in Python. What is N-grams Text n-grams are widely used in text mining and natural language processin.... Read More

How To Minimize Electron App To System Tray

By Anjan Nair

Learn how to minimize electron application to the system tray. Electron.js has gained popularity because it helps to develop cross-platform desktop GUI applications using simple HT.... Read More

How To Plot Heatmap in Python

By Abinash Reddy

A Heatmap is a statistical representation that helps to represent the importance of the features in form of colors. In this article, we learn to plot a heatmap in Python. They are .... Read More

Extracting patches from large images using Python

By Abinash Reddy

When training any deep learning algorithm we preferred to use small images because using small images gives better performance. But what to do when we have large images. One way to.... Read More

Difference between equals() method and == in Java

By Abinash Reddy

Generally, the equals() method and == operator are used in Java to compare objects to check for equality. In this article, let’s learn a few important differences between the.... Read More

Creating Beautiful Tooltips With Tippy.js

By Anjan Nair

In this tutorial, we will learn how to create beautiful tooltips with Tippy.js and JavaScript. A tooltip is usually a message which appears when one hovers over a text, button, ima.... Read More

Convert Image into a Pencil Sketch in Python

By Abinash Reddy

In this tutorial, we will use computer vision to convert an image into a pencil sketch with the help of the Python OpenCV library. We will use the OpenCVPython library to convert t.... Read More

Find line number of a specific string or substring or word from a .txt file in Python

By Rohan Harish

In this tutorial, we are going to learn how to find location of one or many strings in terms of line numbers in a text file using Python. For instance let us assume we want to find.... Read More