Posts by Abinash Reddy
Author Biographical Info: Deeply interested in Machine Learning, Deep Learning, and Software Development
In this article, let’s discuss few points about the Stooge sort algorithm and its implementation in Python. Stooge sort is a recursive sorting algorithm. It is exceptional fo.... Read More
In this article, we will learn how to check whether a given number is a Hoax Number in Python. A number is said to Hoax Number only when the sum of digits of its distinct prime fac.... Read More
JSON stands for JavaScript Object Notation. It is an open, lightweight, text-based standard format developed for the exchange of human-readable data. In this article, we will explo.... Read More
This article, explains the difference between an interface and a class in Java. Class A class is a user-defined blueprint for creating objects. The “class” keyword is u.... Read More
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
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
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
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