Skip to content

Geeky Codes

Programming, AI, Machine Learning & Software Development Tutorials

  • 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
  • DataScience
  • Problem Solving

Latest Post

The AI Engineer Interview Question That Wasn’t Really About Machine Learning Databricks Data Engineering Interview Questions — Part 2: Advanced Spark, Delta Lake & Production Scenarios AI Engineer Interview Questions and Answers — Part 1 The Pandas Warning That Looks Harmless but Can Break Your Data Pipeline Reading Only the Parquet Files You Need From AWS S3 Using Dask
Machine Learning

The AI Engineer Interview Question That Wasn’t Really About Machine Learning

July 31, 2026 Geeky Codes No Comments
Data Engineering Interview Questions

Databricks Data Engineering Interview Questions — Part 2: Advanced Spark, Delta Lake & Production Scenarios

July 31, 2026 Geeky Codes No Comments
Machine Learning

AI Engineer Interview Questions and Answers — Part 1

July 31, 2026 Geeky Codes No Comments
Python

The Pandas Warning That Looks Harmless but Can Break Your Data Pipeline

July 30, 2026 Geeky Codes No Comments
AWS Tutorials

Reading Only the Parquet Files You Need From AWS S3 Using Dask

July 30, 2026 Geeky Codes No Comments
  • Latest
  • Popular
  • Trending
The AI Engineer Interview Question That Wasn’t Really About Machine Learning
Machine Learning
The AI Engineer Interview Question That Wasn’t Really About Machine Learning
Data Engineering Interview Questions
Databricks Data Engineering Interview Questions — Part 2: Advanced Spark, Delta Lake & Production Scenarios
AI Engineer Interview Questions and Answers — Part 1
Machine Learning
AI Engineer Interview Questions and Answers — Part 1
The Pandas Warning That Looks Harmless but Can Break Your Data Pipeline
Python
The Pandas Warning That Looks Harmless but Can Break Your Data Pipeline
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
The AI Engineer Interview Question That Wasn’t Really About Machine Learning
Machine Learning
The AI Engineer Interview Question That Wasn’t Really About Machine Learning
Data Engineering Interview Questions
Databricks Data Engineering Interview Questions — Part 2: Advanced Spark, Delta Lake & Production Scenarios
AI Engineer Interview Questions and Answers — Part 1
Machine Learning
AI Engineer Interview Questions and Answers — Part 1
The Pandas Warning That Looks Harmless but Can Break Your Data Pipeline
Python
The Pandas Warning That Looks Harmless but Can Break Your Data Pipeline
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…

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…

Posts pagination

1 … 5 6 7 8
  • The AI Engineer Interview Question That Wasn’t Really About Machine Learning
  • Databricks Data Engineering Interview Questions — Part 2: Advanced Spark, Delta Lake & Production Scenarios
  • AI Engineer Interview Questions and Answers — Part 1
  • The Pandas Warning That Looks Harmless but Can Break Your Data Pipeline
  • Reading Only the Parquet Files You Need From AWS S3 Using Dask
  • 20 Data Engineering Interview Questions You Should Know for Databricks & PySpark Roles
  • Reading Only the Parquet Files You Need From AWS S3 Using Dask
  • The AI Engineer Interview Question That Wasn’t Really About Machine Learning
  • How to Extract Code from a Screenshot with 100% Accuracy?
  • The Pandas Warning That Looks Harmless but Can Break Your Data Pipeline
  • Square Root Integral in Python
  • AI Engineer Interview Questions and Answers — Part 1
  • Databricks Data Engineering Interview Questions — Part 2: Advanced Spark, Delta Lake & Production Scenarios
  • 🚀 Ace Your Databricks Data Engineer Exam: 10 Essential Practice Questions Explained
Read more: SVM Regression | Machine Learning from Scratch

You missed

Machine Learning

The AI Engineer Interview Question That Wasn’t Really About Machine Learning

July 31, 2026 Geeky Codes No Comments
Data Engineering Interview Questions

Databricks Data Engineering Interview Questions — Part 2: Advanced Spark, Delta Lake & Production Scenarios

July 31, 2026 Geeky Codes No Comments
Machine Learning

AI Engineer Interview Questions and Answers — Part 1

July 31, 2026 Geeky Codes No Comments
Python

The Pandas Warning That Looks Harmless but Can Break Your Data Pipeline

July 30, 2026 Geeky Codes No Comments

Geeky Codes

Programming, AI, Machine Learning & Software Development Tutorials

Geeky Codes
Proudly powered by WordPress Theme: Newsup.
Loading Comments...