Master Generative AI
One Article at a Time

Explore hands-on tutorials, deep dives, and expert insights in generative AI, machine learning, and creative coding β€” simplified for real-world impact.

Latest Articles

Placeholder
Naveen πŸ“… Last Updated: 12 Dec, 2024

Use of assert statement in Python

Syntax: Assert condition [Error Message] Example 1: assert statement without error message Example 2: assert statement with error message Example...

Read More β†’
Placeholder
Naveen πŸ“… Last Updated: 12 Dec, 2024

Difference between iterables and iterators in Python

Iterables Iterators Iterators can be iterable because both iterator and iterable can be iterated using for loop but iterable objects...

Read More β†’
Placeholder
Naveen πŸ“… Last Updated: 12 Dec, 2024

Decorators and Generators in Python

Python implementation Generators Python generators are functions that are similar to normal functions, but use yield statements instead of return...

Read More β†’
Placeholder
Naveen πŸ“… Last Updated: 12 Dec, 2024

Abstraction in Python

Abstract Class Why Abstraction is Important? In Python, a person usually abstracts data/classes to hide the irrelevant information. This helps...

Read More β†’
Placeholder
Naveen πŸ“… Last Updated: 21 Apr, 2025

OOPs in Python

Object-oriented programming (OOP) is a programming paradigm based on the concept of objects which contains data or attributes and code...

Read More β†’
Placeholder
Naveen πŸ“… Last Updated: 12 Dec, 2024

Computer Vision for Beginners – Part 5

What is Edge detection? Edge detection is a computer vision technique that uses the edges of an image to find...

Read More β†’
Placeholder
Naveen πŸ“… Last Updated: 12 Dec, 2024

Computer Vision for Beginners – Part 4

In this article, I will be discussing about various algorithms of image feature detection, description using OpenCV. Introduction What do...

Read More β†’
Placeholder
Naveen πŸ“… Last Updated: 12 Dec, 2024

Computer Vision for Beginners – Part 3

You may be already familiar with the word β€˜contour.’ I’ve used this term several times in previous posts. A contour line...

Read More β†’
Placeholder
Naveen πŸ“… Last Updated: 12 Dec, 2024

Computer Vision for Beginners – Part 2

Today we’re going to talk about how to manipulate images. These are preprocessing steps. When it comes to detecting edges...

Read More β†’
Placeholder
Naveen πŸ“… Last Updated: 12 Dec, 2024

Computer Vision for Beginners – Part 1

Image Processing is used to perform some operations on images in order to animate them, develop videos, or generate graphics....

Read More β†’
Placeholder
Naveen πŸ“… Last Updated: 12 Dec, 2024

What is doc2vec and word2vec in NLP?

Doc2vec is a technique that extracts semantic information from documents and then uses that information to classify the documents. By...

Read More β†’
Placeholder
Naveen πŸ“… Last Updated: 12 Dec, 2024

What is GD, Batch GD, SGD, Mini-Batch GD?

What is Gradient Descent, Batch Gradient Descent, Stochastic Gradient Descent, Mini-Batch Gradient Descent? Gradient Descent This algorithm is a general...

Read More β†’