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
Generative AI Machine Learning

Why RAG Chatbots Struggle in Production

December 25, 2025 Geeky Codes No Comments

“Our RAG chatbot worked perfectly in the POC.But once we scaled to 50,000 documents… accuracy dropped to 60%.” If you’ve worked with enterprise RAG systems, you’ve probably heard this story.…

Machine Learning NLP

Measuring ROI for a GenAI Initiative in Healthcare

December 21, 2025 Geeky Codes No Comments

This blog explores how to measure ROI for Generative AI (GenAI) in healthcare. It outlines key performance indicators (KPIs) related to clinical outcomes, operational efficiency, finance, and patient experience. It…

Algorithms Data Structures and Algorithms Interview Interview Questions Python

Unique Strings with Odd and Even Swapping Allowed

July 4, 2025 No Comments

Introduction: In string manipulation, discovering unique strings amidst a sea of possibilities can be both challenging and rewarding. In this tutorial, we embark on a journey to unravel the secrets…

Interview Interview Questions Python

Applying SOLID Principles and Dependency Injection in Python

July 4, 2025 No Comments

Introduction:In modern software development, adhering to principles and practices that promote maintainability, scalability, and reusability is crucial. Two fundamental concepts in this regard are the SOLID principles and dependency injection.…

Deep Learning Machine Learning Neural Networks

Building a Regression MLP Using the Sequential API

July 3, 2025 No Comments

Let’s switch to the California housing problem and tackle it using a regression neural network. For simplicity, we will use Scikit-Learn’s fetch_california_housing() function to load the data. This dataset is…

Deep Learning Machine Learning Neural Networks

Logical Computations with Neurons | Deep learning

July 3, 2025 Geeky Codes No Comments

Warren McCulloch and Walter Pitts proposed a very simple model of the biological neuron, which later became known as an artificial neuron: it has one or more binary (on/off) inputs…

SQL

SQL Advanced | Wildcards

July 3, 2025 Geeky Codes No Comments

SQL Wildcard Examples We have the following “Persons” table: Using the % Wildcard Now we want to select the persons living in a city that starts with “sa” from the…

Data Structures and Algorithms Hacker Rank Solutions Python

Beautiful Days at the Movies | Hackerrank Solutions

July 2, 2025 No Comments

Lily likes to play games with integers. She has created a new game where she determines the difference between a number and its reverse. For instance, given the number 12,…

Data Science Deep Learning Machine Learning NLP

What is Stochastic Gradient Descent?

July 2, 2025 Geeky Codes No Comments

Stochastic Gradient Descent (SGD) is an optimization algorithm commonly used in machine learning for training models, particularly in large-scale and online learning settings. It is an iterative optimization algorithm that…

Image Processing Machine Learning

How to Extract Code from a Screenshot with 100% Accuracy?

July 2, 2025 Geeky Codes No Comments

Did you like an image containing code & take its screenshot? Now you want to copy the code from that screenshot, right? Panic not, because I’ve got you covered. In…

Data Science Machine Learning Pandas Python

Quintile Analysis: Bringing it all togetherand making decisions

July 2, 2025 No Comments

Introduction Quintile analysis is a statistical method used to divide a data set into five equal parts, each representing 20% of the total observations. This method is often used in…

SQL

SQL | The BETWEEN Operator

July 2, 2025 No Comments

BETWEEN Operator Example The “Persons” table: Now we want to select the persons with a last name alphabetically between “Hansen” and “Pettersen” from the table above. We use the following…

SQL

SQL | The IN Operator

July 2, 2025 Geeky Codes No Comments

The IN operator allows you to specify multiple values in a WHERE clause. SQL IN Syntax: IN Operator Example The “Persons” table: Now we want to select the persons with…

Data Science Machine Learning Pandas Python

Getting Started With Pandas | Part 1

July 2, 2025 No Comments

Installation or Setup Detailed instructions on getting pandas set up or installed can be found here in the official documentation. Installing pandas with Anaconda Installing pandas and the rest of…

Data Science Machine Learning

Selecting the Number of Clusters

July 2, 2025 Geeky Codes No Comments

With K-Means, you could use the inertia or the silhouette score to select the appropriate number of clusters, but with Gaussian mixtures, it is not possible to use these metrics…

SQL

SQL | The INSERT INTO AND UPDATE Statement

July 2, 2025 kpaguital No Comments

The second form specifies both the column names and the values to be inserted: SQL INSERT INTO Example We have the following “Persons” table: Now we want to insert a…

Data Science Machine Learning NLP

Tokenization in NLP

July 2, 2025 Geeky Codes No Comments

Word Level Tokenzation Splitting text into individual words “the quick brown fox” -> BUT Character Level Tokenization Splitting text into individual characters “the quick brown fox” -> But N-GRAM MODELS…

Data Science Machine Learning Pandas Python

Appending to DataFrame | Pandas

July 2, 2025 No Comments

Appending a new row to DataFrame import pandas as pd df = pd.DataFrame(columns = ) Appending a row by a single column value: df.loc = 1 df Appending a row,…

Data Science Machine Learning Python

What is Exploratory Data Analysis (EDA)?

July 2, 2025 Geeky Codes No Comments

Exploratory Data Analysis (EDA) is an essential step in any data science project. It involves investigating and analyzing datasets to understand their characteristics, identify patterns, detect outliers, and uncover relationships…

Data Science Machine Learning Unsupervised Learning

Anomaly Detection using Gaussian Mixtures

July 2, 2025 No Comments

Introduction Anomaly detection (also called outlier detection) is the task of detecting instances that deviate strongly from the norm. These instances are of course called anomalies or outliers, while the…

Posts pagination

1 2 … 7
Total Visitors
  • 47,824 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
  • SQL | The BETWEEN Operator
  • RAG using Llama 2, Langchain and ChromaDB
  • What is Stochastic Gradient Descent?
  • Binary Search
  • Hackerrank Problems | Diagonal Difference
  • Letter Combinations of a phone number
  • Web Development Project Guide for Freshers
  • C Programming Language
  • Check If The String Is A Palindrome
  • Character Frequency Counting in Strings
Read more: Anomaly Detection using Gaussian Mixtures

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...