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

Multi-Layer Perceptron and Backpropagation | Deep Learning

March 19, 2024 No Comments

An MLP is composed of one (passthrough) input layer, one or more layers of TLUs, called hidden layers, and one final layer of TLUs called the output layer (seeFigure below).…

C++ Hacker Rank Solutions JAVA Python

Save the Prisoner Program in Python | Hacker Rank Solution

March 17, 2024 Geeky Codes No Comments

A jail has a number of prisoners and a number of treats to pass out to them. Their jailer decides the fairest way to divide the treats is to seat…

Data Structures and Algorithms Python

Find Kth Number Program in Python

March 17, 2024 Geeky Codes No Comments

Introduction: The task at hand is to implement a Python function that finds the kth lexicographically smallest integer in the range from 1 to n. To achieve this, we will…

SQL

SQL ADVANCE | The TOP Clause

March 12, 2024 Geeky Codes No Comments

SELECT TOP number|percent column_name(s) FROM table_name SQL SELECT TOP Equivalent in MySQL and Oracle: MySQL Syntax: SELECT column_name(s) FROM table_name LIMIT number Example: SELECT * FROM Persons LIMIT 5 Oracle…

SQL

SQL | The DELETE Statement

March 12, 2024 Geeky Codes No Comments

DELETE FROM table_name WHERE some_column=some_value Note: Notice the WHERE clause in the DELETE syntax. The WHERE clause specifies which record or records that should be deleted. If you omit the…

SQL

SQL The ORDER BY Keyword

March 11, 2024 Geeky Codes No Comments

SELECT column_name(s) FROM table_name ORDER BY column_name(s) ASC|DESC ORDER BY Example The “Persons” table: Now we want to select all the persons from the table above, however, we want to…

SQL

SQL WHERE Clause

March 8, 2024 Geeky Codes No Comments

The “Persons” table: Now we want to select only the persons living in the city “Sandnes” from the table above. We use the following SELECT statement using Where clause: The…

SQL

SQL Introduction

March 8, 2024 Geeky Codes No Comments

SQL is a standard language for accessing databases. How to use SQL to access and manipulate data in: MySQL, SQL Server, Access, Oracle, Sybase, DB2, and other database systems. SQL…

Data Science Machine Learning Unsupervised Learning

Gaussian Mixtures Models in Machine Learning

March 4, 2024 No Comments

A Gaussian mixture model (GMM) is a probabilistic model that assumes that the instances were generated from a mixture of several Gaussian distributions whose parameters are unknown. All the instances…

Data Science Machine Learning Unsupervised Learning

Introduction to Unsupervised Learning Techniques

March 2, 2024 No Comments

Introduction Although most of the applications of Machine Learning today are based on supervised learning (and as a result, this is where most of the investments go to), the vast…

PySpark SQL

Pyspark Questions and Answers

March 2, 2024 No Comments

Q1: Write pyspark code to create dataframe and print with ‘color’ and ‘weight’ as separate columns. inventoryData = schema = Product

Data Science Machine Learning

Kernel PCA in Machine Learning

February 29, 2024 No Comments

The post discusses Kernel Principal Component Analysis (kPCA), highlighting its application in nonlinear dimensionality reduction and suggesting methods for selecting kernels and tuning hyperparameters through grid search and reconstruction pre-image…

Data Science Machine Learning Python

Hierarchical Clustering in Machine Learning

February 28, 2024 No Comments

The content discusses K-Means and Hierarchical Clustering algorithms. K-Means requires predefined clusters and is sensitive to initial centroids and outliers. Hierarchical Clustering offers an agglomerative and divisive approach without preset…

Interview Interview Questions SQL

Second or Third Highest Record in SQL

February 28, 2024 No Comments

When data is given to us and we want to find out Top 3 or Bottom 5 records on the basis of some attribute, this can be easily solved by…

Data Science Machine Learning Python

Choosing the Right Number of Dimensions in Dimensionality Reduction

February 28, 2024 No Comments

The content discusses dimensionality reduction using PCA, emphasizing the importance of preserving a significant portion of variance, typically 95%. It explains how to compute PCA, options for variance preservation, and…

Data Science Machine Learning Python

Main Approaches for Dimensionality Reduction

February 28, 2024 No Comments

This content discusses dimensionality reduction approaches, focusing on projection and Manifold Learning. It explains how projection simplifies high-dimensional data, exemplified by datasets like the Swiss roll. Principal Component Analysis (PCA)…

Python

Managing Data from Relational Databases using Python

February 28, 2024 No Comments

Databases vary widely, with relational databases being predominant due to their efficient data structuring and retrieval. SQL simplifies data manipulation across different DBMSs. Python's sqlalchemy facilitates database connections, allowing data…

Data Science Machine Learning Pandas

Introduction to Dimensionality Reduction

February 27, 2024 No Comments

The text discusses the curse of dimensionality in machine learning, highlighting challenges in high-dimensional spaces. It suggests reducing features to improve training efficiency and visualization, while addressing potential information loss…

Data Science Decision Tree Deep Learning Machine Learning Random Forest

Gradient Boosting in Machine Learning

February 25, 2024 No Comments

Another very popular Boosting algorithm is Gradient Boosting. Just like AdaBoost,Gradient Boosting works by sequentially adding predictors to an ensemble, each one correcting its predecessor. However, instead of tweaking the…

Data Science Decision Tree Machine Learning

Boosting( Ensemble) Trees | Machine Learning from Scratch

February 25, 2024 No Comments

Introduction Boosting (originally called hypothesis boosting) refers to any Ensemble method that can combine several weak learners into a strong learner. The general idea of most boosting methods is to…

Posts pagination

1 … 3 4 5 … 7
Total Visitors
  • 48,646 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
  • HackerRank Problem | Staircase detail
  • Angry Professor | Hackerrank Solution
Read more: Boosting( Ensemble) Trees | Machine Learning from Scratch

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