Blog

AI-Powered Content Summarizer

This project contains a Flask-based web application that integrates various Natural Language Processing (NLP) models to generate text summaries. The app allows users to enter text and receive summaries in different formats such as paragraph or bullet points, utilizing...

Exploration and Exploitation

Exploration and Exploitation are two fundamental processes in reinforcement learning. In short, exploration is about learning something new, and exploitation is about making decisions based on known information. Balancing these two is crucial. Exploration Through this...

YOLOv5 & YOLOv8 Object Detection

This repository demonstrates object detection using two versions of the YOLO model: YOLOv5 and YOLOv8 from Ultralytics. The scripts provided allow you to detect objects in images and videos using pre-trained models, and display or save the annotated outputs using...

Avoiding Conflicts on GitHub: The Power of Locking

GitHub is a hub of collaboration where developers come together to work on projects, share ideas, and resolve issues. While this collaborative environment is one of GitHub's strengths, it can also give rise to commit conflicts. GitHub provides a powerful tool called...

Unreal Engine Basic Terminology

Unreal Engine is a powerful and versatile game development engine created by Epic Games. With its real-time rendering capabilities, visual scripting system (Blueprints), and robust physics engine, Unreal Engine empowers developers to bring their creative visions to...

Confusion Matrices with Heatmaps: Implementation in Python with seaborn and scikit-learn

Understanding and effectively utilizing a confusion matrix and heatmap is crucial for anyone dealing with classification problems in machine learning. In this blog post, we'll dive into the intricacies of these powerful tools, providing clear explanations and...

Create a Progressbar using tqdm and Python

tqdm is a must need python package for all data scientists and artificial intelligence researchers/developers. Sometimes, we need to visualize what is going on in the background. Some programs may require hours to several days to finish. In that case, a progress bar...

Basic Anaconda Commands

Anaconda is a fantastic tool for all deep learning, machine learning, and computer vision researcher. It reduces tons of extra work for setting up environments and tools. Personally, I love it so much. Anaconda Navigator is a great UI for setting up environments and...

Hand joint detection using OpenCV and MediaPipe

MediaPipe is a cross-platform framework for building multimodal applied machine learning pipelines. MediaPipe Python package is available on PyPI for Linux, macOS, and Windows. Today we will write a simple code for hand joint detection using OpenCV. At...

Linear Regression

Linear Regression is one of the simplest yet powerful algorithms in machine learning and statistics. It's widely used in predictive modeling, where the goal is to understand the relationship between one or more independent variables and a dependent variable. The power...

Supervised Learning Algorithms

Overview of Supervised Learning Supervised learning is a type of machine learning algorithm that is designed to map input data to labeled output data. In supervised learning, an algorithm is trained on a labeled dataset, which means that each example in the dataset is...

Matplotlib

Matplotlib is a widely used visualization library in Python that allows easy creation of various types of line charts, bar charts, histograms, etc. Since Matplotlib is a visualization library, each example can be quite extensive. Here, we will try to understand this...
“Hello World” in Python

“Hello World” in Python

Programmers usually start writing their first program with "Hello World". We will also start with "Hello World" here. However, to run your first...

Python Environment Setup

Python Environment Setup

Command Line Interface (CLI) To use the command line interface, we first need to install Python's core package. This varies for different operating...

Python Interpreter

Python Interpreter

You might already know that machines or computers always operate in machine language, meaning that regardless of the language we use, it must be...

Stack

Stack

A stack is a type of abstract data type. In a stack, data is stored in a sequential list format, and the primary operations, such as adding or...

Queue

Queue

A queue, like a stack, is a type of abstract data type. A queue is an ordered list where data is inserted at one end and deleted from the other end....

Structure and Union

Structure and Union

Structure and union are both user defined data types of C programming language. User defined data type is a data type that the user i.e. the...

Technical advantage of Python

Technical advantage of Python

In previous posts, we have seen some general discussion of Python. But a beginner, programmer or developer can naturally ask the question that is...