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
Hacker Rank Solutions Interview Interview Questions JAVA

Charlie has a Magic Mirror Program in Java

February 24, 2024 No Comments

Charlie possesses an extraordinary tool in his possession: a magic mirror capable of displaying right-rotated versions of any given word. This mirror offers a unique perspective, revealing fascinating transformations of…

Hacker Rank Solutions Python

Angry Professor | Hackerrank Solution

February 24, 2024 No Comments

A Discrete Mathematics professor has a class of students. Frustrated with their lack of discipline, the professor decides to cancel class if fewer than some number of students are present…

Data Science Machine Learning Python

Sending Data in Unstructured File Form

February 23, 2024 No Comments

Unstructured data files consist of a series of bits. The file doesn’t separate the bits from each other in any way. You can’t simply look into the file and see…

Data Science Machine Learning Random Forest

Random Forests | Machine Learning from Scratch

February 23, 2024 No Comments

As we have discussed, a Random Forest is an ensemble of Decision Trees, generally trained via the bagging method (or sometimes pasting), typically with max_samples set to the size of…

Pandas Python

Accessing Data in Structured Flat-File Form

February 22, 2024 No Comments

In many cases, the data you need to work with won’t appear within a library, such as the toy datasets in the Scikit-learn library. Real-world data usually appears in a…

Data Science Machine Learning Python

Uploading, Streaming, and Sampling Data Using Python

February 22, 2024 Geeky Codes No Comments

Introduction Storing data in local computer memory represents the fastest and most reliable means to access it. The data could reside anywhere. However, you don’t actually interact with the data…

Data Structures and Algorithms Hacker Rank Solutions Python

Utopian Tree | Hackerrank Solution

February 22, 2024 Geeky Codes No Comments

The Utopian Tree goes through 2 cycles of growth every year. Each spring, it doubles in height. Each summer, its height increases by 1 meter. A Utopian Tree sapling with…

Algorithms Data Structures and Algorithms Hacker Rank Solutions Python

Designer PDF Viewer | Hackerrank

February 21, 2024 No Comments

When a contiguous block of text is selected in a PDF viewer, the selection is highlighted with a blue rectangle. In this PDF viewer, each word is highlighted independently. For…

Data Science Deep Learning Machine Learning

What is Artificial Neural Network (ANN)?

February 20, 2024 Geeky Codes No Comments

A. Introduction to neural networksB. ANN architectures C. Learning methods D. Learning rule on supervised learning E. Feedforward neural network with Gradient descent optimization Introduction to neural networks Definition: the…

Algorithms GFG Problem of the Day Python

Game with String | Problem of the day

February 19, 2024 No Comments

Given a string s of lowercase alphabets and a number k, the task is to print the minimum value of the string after removal of k characters. The value of…

Hacker Rank Solutions

The Hurdle Race | Hackerrank

February 19, 2024 No Comments

A video player plays a game in which the character competes in a hurdle race. Hurdles are of varying heights, and the characters have a maximum height they can jump.…

Data Science Decision Tree Machine Learning Random Forest

What is Bagging and Pasting? Machine Learning from Scratch

February 19, 2024 Geeky Codes No Comments

Introduction One way to get a diverse set of classifiers is to use very different training algorithms, as just discussed. Another approach is to use the same training algorithm for…

Data Science Decision Tree Machine Learning

What is Ensemble Learning? | Machine Learning from Scratch

February 15, 2024 Geeky Codes No Comments

Introduction: Welcome to our comprehensive tutorial on Ensemble Learning! In this guide, we’ll delve into the fascinating world of Ensemble methods, exploring how they harness the collective intelligence of multiple…

Data Science Decision Tree Machine Learning

Decision Tree Regression | Machine Learning from Scratch

February 14, 2024 Geeky Codes No Comments

Decision Trees are also capable of performing regression tasks. Let’s build a regression tree using Scikit-Learn’s DecisionTreeRegressor class, training it on a noisy quadratic dataset with max_depth=2: from sklearn.tree import…

Data Science Decision Tree Machine Learning

Gini Impurity or Entropy? How to decide the root node in decision tree?

February 12, 2024 No Comments

By default, the Gini impurity measure is used, but you can select the entropy impurity measure instead by setting the criterion hyperparameter to “entropy”. The concept of entropy originated in…

Data Science Machine Learning Pandas Python

Linear Regression from Scratch: A Step-by-Step Guide

February 10, 2024 No Comments

Introduction: Linear regression is one of the fundamental techniques in machine learning and statistics used for modeling the relationship between a dependent variable and one or more independent variables. In…

Data Science Decision Tree Machine Learning

Decision Trees | Machine Learning from Scratch

February 10, 2024 No Comments

Like SVMs, Decision Trees are versatile Machine Learning algorithms that can perform both classification and regression tasks, and even multioutput tasks. They are very powerful algorithms, capable of fitting complex…

Data Science Machine Learning Support Vector Machine

SVM Regression | Machine Learning from Scratch

February 9, 2024 No Comments

Introduction As we mentioned earlier, the SVM algorithm is quite versatile: not only does it support linear and nonlinear classification, but it also supports linear and nonlinear regression. The trick…

Data Science Machine Learning Support Vector Machine

Gaussian RBF Kernel | Machine Learning from Scratch

February 9, 2024 No Comments

Introduction In Previous blog we talked about Polynomial Kernel. In this blog we will talk about Gaussian RBF Kernel. Just like the polynomial features method, the similarity features method can…

Data Science Machine Learning Python Support Vector Machine

Polynomial Kernel | Machine Learning from Scratch

February 8, 2024 Geeky Codes No Comments

In Previous blog we talked about Non Linear SVM Classifications. In this blog we will talk about Polynomial Kernel. Introduction Adding polynomial features is simple to implement and can work…

Posts pagination

1 … 4 5 6 7
Total Visitors
  • 48,663 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
  • Beautiful Days at the Movies | Hackerrank Solutions
  • Introduction to Unsupervised Learning Techniques
  • Quintile Analysis: Bringing it all togetherand making decisions
  • Logical Computations with Neurons | Deep learning
  • What is early stopping? | Machine Learning from Scratch
Read more: Polynomial Kernel | 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...