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
Data Science Machine Learning Python

How can A linear model learn non-linear/discrete patterns?

February 8, 2024 No Comments

Introduction During model development, one of the techniques that many don’t experiment with is feature discretization. The core idea is to transform a continuous feature into discrete features, mostly one-hot…

SQL

Tips For Writing Efficient And Faster SQL Queries

February 7, 2024 No Comments

INTRODUCTION Query optimization is an important skill for SQL developers and database administrators (DBAs). In order to improve the performance of SQL queries, developers and DBAs need to understand the…

Blog Data Science Interview Interview Questions Machine Learning

Questions asked in Data Scientist Interviews Part 7

February 3, 2024 Geeky Codes No Comments

In this series we bring new Data Scientist Interview Questions. You can read other tutorials related to same topic on our website. What is Cross Validation? Cross-Validation in Machine Learning…

Data Science Machine Learning Support Vector Machine

Nonlinear SVM Classification | Machine Learning from Scratch

January 31, 2024 Geeky Codes No Comments

In previous blog, We read about Soft margin Classification. In this blog we will talk about Non Linear SVM Classification. Introduction Although linear SVM classifiers are efficient and work surprisingly…

Data Science Machine Learning

Soft Margin Classification | Machine Learning from Scratch

January 30, 2024 No Comments

In previous blog, We read about Linear SVM. In this blog we will talk about soft margin classification. If we strictly impose that all instances be off the street and…

Data Science Decision Tree Machine Learning Random Forest

ROC and AUC in Evaluating Classification Models

January 29, 2024 Geeky Codes No Comments

In the dynamic world of business, where data-driven decisions reign supreme, the accuracy and reliability of classification models play a pivotal role. Whether you’re involved in lead scoring or any…

Data Science Machine Learning Support Vector Machine

Support Vector Machines (SVM) Algorithms

January 28, 2024 No Comments

A Support Vector Machine (SVM) is a very powerful and versatile Machine Learning model, capable of performing linear or nonlinear classification, regression, and even outlier detection. It is one of…

Data Science Machine Learning Python

What is early stopping? | Machine Learning from Scratch

January 23, 2024 No Comments

Machine learning models, particularly those trained iteratively using algorithms like Gradient Descent, face the risk of overfitting the training data. One powerful and elegant solution to this challenge is known…

Data Science Decision Tree Machine Learning Random Forest

Information Gain in Machine Learning

January 21, 2024 No Comments

Information Gain (IG) is critical in machine learning and decision tree algorithms, particularly in data classification and 𝐟𝐞𝐚𝐭𝐮𝐫𝐞 𝐬𝐞𝐥𝐞𝐜𝐭𝐢𝐨𝐧. Information Gain Information Gain is a concept used in the field…

AWS Tutorials Data Engineering Python

Pyspark Tutorial for beginners

January 20, 2024 No Comments

PySpark, it is a Python library for Apache Spark, an open-source distributed computing system. PySpark allows you to write Spark applications using Python programming language, providing a Python API for…

AWS Tutorials Data Engineering Data Science Machine Learning Pandas Python

Extracting Financial Year from Date in Pandas and PySpark DataFrames

January 19, 2024 No Comments

Introduction Working with date data often involves extracting relevant information, such as the financial year. In this blog post, we’ll explore how to extract the financial year from a date…

Data Science Machine Learning Python

What is Lasso Regression? | Machine Learning from Scratch

January 19, 2024 No Comments

Least Absolute Shrinkage and Selection Operator Regression (simply called Lasso Regression) is another regularized version of Linear Regression: just like Ridge Regression, it adds a regularization term to the cost…

Data Science Machine Learning

Regularized Linear Models(Ridge Regression) | Machine Learning from Scratch

January 18, 2024 No Comments

As we saw in previous posts, a good way to reduce overfitting is to regularize the model (i.e., to constrain it): the fewer degrees of freedom it has, the harder…

Algorithms Data Structures and Algorithms Hacker Rank Solutions Python

Hackerrank | Longest Subarray with Absolute Difference Constraint

January 18, 2024 No Comments

Problem Overview Given an array of integers, our task is to find the longest subarray such that the absolute difference between any two elements is less than or equal to…

C Data Structures and Algorithms Hacker Rank Solutions Python

Hackerrank | Magic Square

January 16, 2024 No Comments

We define a magic square to be an n*n matrix of distinct positive integers from 1 to n^2 where the sum of any row, column, or diagonal of length n…

Cyber Security Python

A Python Script to Check IP Address Reachability

January 15, 2024 No Comments

Introduction In the world of networking, ensuring that devices are reachable is a fundamental aspect of troubleshooting and monitoring. One common method to test this reachability is by using the…

C Data Structures and Algorithms Hacker Rank Solutions Python

Hackerrank | Cats and a Mouse

January 15, 2024 No Comments

Two cats and a mouse are at various positions on a line. You will be given their starting positions. Your task is to determine which cat will reach the mouse…

Algorithms Data Structures and Algorithms Hacker Rank Solutions Interview Interview Questions Python

Hackerrank | Birthday Candles Problem

December 30, 2023 Geeky Codes No Comments

You are in charge of the cake for a child’s birthday. You have decided the cake will have one candle for each year of their total age. They will only…

Data Structures and Algorithms Hacker Rank Solutions Interview Interview Questions Python

Hackerrank | Min Max Sum of N-1 Elements

December 29, 2023 Geeky Codes No Comments

Given five positive integers, find the minimum and maximum values that can be calculated by summing exactly four of the five integers. Then print the respective minimum and maximum values…

Algorithms Data Structures and Algorithms Interview Interview Questions Python

HackerRank Problem | Staircase detail

December 29, 2023 Geeky Codes No Comments

Staircase detail This is a staircase of size n=4: Its base and height are both equal to 4 . It is drawn using # symbols and spaces. The last line…

Posts pagination

1 … 5 6 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: HackerRank Problem | Staircase detail

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