Skip to content

Geeky Codes

Code in a Better Way

  • Home
  • Python
  • Machine Learning
  • Data Science
  • Interview Questions
  • Data Structures and Algorithms
  • Interview
  • Machine Learning From Scratch
Top Tags
  • Python
  • Programming
  • Machine Learning
  • Algorithm
  • Tutorial
  • Efficiency
  • Problem Solving

Latest Post

Why RAG Chatbots Struggle in Production Measuring ROI for a GenAI Initiative in Healthcare Unique Strings with Odd and Even Swapping Allowed Applying SOLID Principles and Dependency Injection in Python Building a Regression MLP Using the Sequential API
Generative AI Machine Learning

Why RAG Chatbots Struggle in Production

December 25, 2025 Geeky Codes No Comments
Machine Learning NLP

Measuring ROI for a GenAI Initiative in Healthcare

December 21, 2025 Geeky Codes No Comments
Algorithms Data Structures and Algorithms Interview Interview Questions Python

Unique Strings with Odd and Even Swapping Allowed

July 4, 2025 No Comments
Interview Interview Questions Python

Applying SOLID Principles and Dependency Injection in Python

July 4, 2025 No Comments
Deep Learning Machine Learning Neural Networks

Building a Regression MLP Using the Sequential API

July 3, 2025 No Comments
  • Latest
  • Popular
  • Trending
Generative AI Machine Learning
Why RAG Chatbots Struggle in Production
Measuring ROI for a GenAI Initiative in Healthcare
Machine Learning NLP
Measuring ROI for a GenAI Initiative in Healthcare
Unique Strings with Odd and Even Swapping Allowed
Algorithms Data Structures and Algorithms Interview Interview Questions Python
Unique Strings with Odd and Even Swapping Allowed
Applying SOLID Principles and Dependency Injection in Python
Interview Interview Questions Python
Applying SOLID Principles and Dependency Injection in Python
Blog
Install and Secure MongoDB 6.0 on CentOS 7
Blog
Installing the mongo-cxx-driver step by step
BSON Library C C++
Installing the Mongodb-C Driver (libmongoc) and BSON library (libbson)
C C++
CRUD Operation in Mongo-cxx
Generative AI Machine Learning
Why RAG Chatbots Struggle in Production
Measuring ROI for a GenAI Initiative in Healthcare
Machine Learning NLP
Measuring ROI for a GenAI Initiative in Healthcare
Unique Strings with Odd and Even Swapping Allowed
Algorithms Data Structures and Algorithms Interview Interview Questions Python
Unique Strings with Odd and Even Swapping Allowed
Applying SOLID Principles and Dependency Injection in Python
Interview Interview Questions Python
Applying SOLID Principles and Dependency Injection in Python
Deep Learning Machine Learning Neural Networks

A Journey From Biological to Artificial Neurons

July 2, 2025 No Comments

Surprisingly, ANNs have been around for quite a while: they were first introduced back in 1943 by the neurophysiologist Warren McCulloch and the mathematician Walter Pitts. In their landmark paper,…

Data Science Machine Learning

Bayesian Gaussian Mixture Models

July 2, 2025 No Comments

Rather than manually searching for the optimal number of clusters, it is possible to use instead the BayesianGaussianMixture class which is capable of giving weights equal (or close) to zero…

SQL

SQL | Alias Operator

July 2, 2025 Geeky Codes No Comments

SQL Alias Syntax for Columns: Also read Alias Example Assume we have a table called “Persons” and another table called “Product_Orders”. We will give the table aliases of “p” and…

SQL

SQL | The LIKE Operator

July 2, 2025 Geeky Codes No Comments

SELECT column_name(s) FROM table_name WHERE column_name LIKE pattern LIKE Operator Example The “Persons” table: Now we want to select the persons living in a city that starts with “s” from…

Data Science Machine Learning Unsupervised Learning

Understanding DBSCAN Clustering Algorithm: Implementation in Python

July 2, 2025 No Comments

Before we move on to Gaussian mixture models, let’s take a look at DBSCAN, another popular clustering algorithm that illustrates a very different approach based on local density estimation. This…

Data Science Machine Learning Unsupervised Learning

Using Clustering for Semi-Supervised Learning

July 2, 2025 No Comments

Another use case for clustering is in semi-supervised learning, when we have plenty of unlabeled instances and very few labeled instances. Let’s train a logistic regression model on a sample…

Data Science Machine Learning Python Unsupervised Learning

Using clustering for image segmentation

July 2, 2025 Geeky Codes No Comments

Image segmentation is the task of partitioning an image into multiple segments. In semantic segmentation, all pixels that are part of the same object type get assigned to the same…

Data Science Machine Learning Support Vector Machine

Accelerated K-Means and Mini-batch K-Means

July 2, 2025 Geeky Codes No Comments

Introduction Another important improvement to the K-Means algorithm was proposed in a 2003 paper by Charles Elkan. It considerably accelerates the algorithm by avoiding many unnecessary distance calculations: this is…

Data Science Machine Learning Unsupervised Learning

Implementation of K-Means Clustering in Machine Learning

July 2, 2025 No Comments

Consider the unlabeled dataset represented in Figure below: you can clearly see 5 blobs of instances. The K-Means algorithm is a simple algorithm capable of clustering this kind of dataset…

Blog Data Science Machine Learning Unsupervised Learning

What is Clustering? A Simple Approach

July 2, 2025 Geeky Codes No Comments

As you enjoy a hike in the mountains, you stumble upon a plant you have never seen before. You look around and you notice a few more. They are not…

Data Science Decision Tree Machine Learning Random Forest

What is Stacking of Models in Machine Learning?

July 2, 2025 No Comments

The last Ensemble method we will discuss in this series is called stacking (short for stacked generalization). It is based on a simple idea: instead of using trivial functions (such…

Data Science Machine Learning

Locally linear Embedding For Dimensionality Reduction in Machine Learning

July 2, 2025 No Comments

Locally Linear Embedding (LLE) is another very powerful nonlinear dimensionality reduction (NLDR) technique. It is a Manifold Learning technique that does not rely on projections like the previous algorithms. In…

Machine Learning

Web Development Project Guide for Freshers

January 28, 2025 Geeky Codes No Comments

Web Development Project Guide for Freshers Starting your journey as a web developer can be both exciting and challenging. To make the process smoother, here’s a detailed guide to beginner-friendly…

Algorithms Data Structures and Algorithms Python

Letter Combinations of a phone number

August 27, 2024 Geeky Codes No Comments

Given a string containing digits from 2-9 inclusive, return all possible letter combinations that the number could represent. Return the answer in any order. A mapping of digits to letters…

Data Structures and Algorithms Python

3 Sum Closest | LeetCode

August 27, 2024 Geeky Codes No Comments

Given an integer array nums of length n and an integer target, find three integers in nums such that the sum is closest to target. Return the sum of the…

Data Science Machine Learning NLP

RAG using Llama 2, Langchain and ChromaDB

August 2, 2024 Geeky Codes No Comments

Introduction Objective Use Llama 2.0, Langchain and ChromaDB to create a Retrieval Augmented Generation (RAG) system. This will allow us to ask questions about our documents (that were not included…

Data Structures and Algorithms Interview Interview Questions Python

Finding the Top K Most Frequent Elements in an Array

June 18, 2024 Geeky Codes No Comments

Finding the top ( k ) most frequent elements in an array is a common question in coding interviews and a useful task in various applications like data analysis and…

Data Structures and Algorithms Interview Interview Questions Python

Finding the Top K Largest Elements in an Array

June 18, 2024 Geeky Codes No Comments

In many coding interviews and real-world applications, finding the top ( k ) largest elements in an array is a common problem. This tutorial will guide you through three popular…

Data Science Machine Learning

XGBoost: A Comprehensive Tutorial

April 18, 2024 Geeky Codes No Comments

Introduction: In the realm of machine learning algorithms, XGBoost stands tall as a powerhouse, renowned for its efficiency, effectiveness, and versatility. This tutorial aims to provide a thorough understanding of…

Algorithms Data Structures and Algorithms Interview Interview Questions Python

Counting Odd and Even Occurrences in an Array

April 18, 2024 Geeky Codes No Comments

Introduction: In programming, it’s common to encounter scenarios where you need to count the number of elements occurring an odd number of times and the number of elements occurring an…

Posts pagination

1 2 3 … 7
Total Visitors
  • 48,611 hits
  • Why RAG Chatbots Struggle in Production
  • Measuring ROI for a GenAI Initiative in Healthcare
  • Unique Strings with Odd and Even Swapping Allowed
  • Applying SOLID Principles and Dependency Injection in Python
  • Building a Regression MLP Using the Sequential API
Top Posts & Pages
  • What is Bagging and Pasting? Machine Learning from Scratch
  • Introduction to Unsupervised Learning Techniques
Read more: Counting Odd and Even Occurrences in an Array

You missed

Generative AI Machine Learning

Why RAG Chatbots Struggle in Production

December 25, 2025 Geeky Codes No Comments
Machine Learning NLP

Measuring ROI for a GenAI Initiative in Healthcare

December 21, 2025 Geeky Codes No Comments
Algorithms Data Structures and Algorithms Interview Interview Questions Python

Unique Strings with Odd and Even Swapping Allowed

July 4, 2025 No Comments
Interview Interview Questions Python

Applying SOLID Principles and Dependency Injection in Python

July 4, 2025 No Comments

Geeky Codes

Code in a Better Way

Geeky Codes
Proudly powered by WordPress Theme: Newsup.
 

Loading Comments...