Machine Learning (ML) Understand Neural Networks intuitively Neural Networks act as a ‘black box’ that takes inputs and predicts an output and it learns complex non-linear mappings to produce far more accurate output classification results.
Software Engineering An introduction to libROSA for working with audio In this article, we will learn how to use Librosa and load an audio file into it, Get audio timeline, plot it for amplitude, find tempo and pitch, Compute mel-scaled spectrogram, time stretch and remix an audio
Software Engineering Introduction to Mongoose and how to work with MongoDb with Mongoose In this article, we will explore Mongoose and get an idea of using it with MongoDB through a demo. We will learn how to create, update, delete and read documents in MongoDB.
Software Engineering Extend Java's type system with Generic Classes Generics are a Java paradigm which extends the language's type system, allowing the development of less redundant code with an unnecessary amount of casting
Software Engineering Learn to use ID selector in CSS In this article we will be discussing CSS Id selector along with different aspects such as using same id with different elements, selecting multiple ids and many more
Software Engineering Java does not support Multiple and Multipath inheritance In this article, we will look at the limitation set by Java on inheritance and how it cannot support Multiple and Multipath inheritance.
Software Engineering Different types of Inheritance in Java In short, Java does not support inheriting multiple classes and hence, does not support multiple and multipath inheritance. Java supports single, hybrid, hierarchical and multilevel inheritance.
Software Engineering A general introduction to Turing Machine Turing Machines can be used to express any computable algorithm, been this model recognized as equivalent to our concept of a modern computer.
Machine Learning (ML) Logistic Regression using Scikit Learn In this article, we will explore how to implement Logistic Regression in Python using Scikit Learn and create a real demo.
Machine Learning (ML) Linear regression in Python using Scikit Learn In this article, we will implement linear regression in Python using scikit-learn and create a real demo and get insights from the results.
Software Engineering Learn about basics of Audio as a Data In this article, we will explore various aspects about audio like different formats, features and representation with code demonstrations.
Software Engineering Bitwise operators in Python Bitwise operators in python are: &,|,~,^,>. These operators work on bits instead of the whole integer, hence the name. They are used to manipulate bits
Machine Learning (ML) Hyper Parameter Tuning Hyperparameter tuning is one of the features that come to the fore to conquer the battle of maximizing the performance of the model or maximizing the model's predictive accuracy.
Algorithms Print Fibonacci Series in Reverse Order In this article, we will explore how to print fibonacci series in reverse order. A key point to note here is that as Fibonacci number depends on previous fibonacci numbers
Software Engineering Developing a Live Sketching app using OpenCV and Python We will develop an application which will show a live sketch of your webcam feed. In this project we'll be using NumPy and OpenCV
Algorithms Bisection Method for finding the root of any polynomial Bisection Method for root finding (also called the interval halving method, the binary search method, or the dichotomy method) is based on the Bolzano’s theorem for continuous functions
Machine Learning (ML) Various Techniques used for Face Recognition Did you know that everytime we upload an image to a site like Facebook they use facial recognition to recognize faces in it? Learn its various techniques
Software Engineering Type Casting in C++ Learn about type casting in C++ where data types can be converted automatically by compiler, explicitly converted by user and by using the cast operator.
Software Engineering Let us set up a basic Laravel App In this article, we go through the process of setting up a basic Laravel application and serve it at localhost
Software Engineering Introduction to MongoDb In this article, we will understand the basic concepts in MongoDB and go through an example of creating and updating a document as well.
Software Engineering Functions in Shell Scripting In this article, we will go through how to use functions in shell scripting and will cover passing parameters, returning values, nested function calls and more
Software Engineering Control Program flow in Shell Scripts using if else and switch case In this article, we will go through how to control the program flow in shell scripting using if else and switch case statements.
Software Engineering For and While loop in Shell Scripts In this article, we will understand how to use for and while loops in shell scripts which is widely used implementation technique.
Software Engineering Basics of Shell Scripting In this article, we will go through the basics of shell scripting, understand how to take input and produce output, working with variable, some basic arithmetic and other concepts.
Software Engineering Learn about sending Push notification using Push API The Push API gives web applications the ability to receive messages pushed to them from a server on a user agent