Loan Default Prediction
-
Loan Default Prediction with Binary Classifier
November 15, 2025 15 minutes read
This post discusses on training a binary classifier with ML.NET using a dataset about defaulted loans from Kaggle. I intend to provide a hands-on introduction to ML.NET for programmers already familiar with the .NET ecosystem, like myself.
-
Synthetic Data Generation using Cumulative Distribution Functions
January 1, 2026 10 minutes read
Have you ever wondered how synthetic data is generated to extend empirically collected sample data? I discuss one statistically justifiable approach to solve this problem in this post - by using cumulative distribution functions (CDFs).
Eye State Detection
-
Eye State Detection in ML.NET - Part 1/2
June 22, 2025 10 minutes read
This two-part blog series explores usage of ONNX models in the ML.NET framework to build a pipeline for detecting eye states (open/closed) in images and video frames captured via webcams. Part one (this post) focuses on leveraging the YuNet Face Detection model to identify and crop the most prominent face.
-
Eye State Detection in ML.NET - Part 2/2
June 22, 2025 10 minutes read
This two-part blog series explores usage of ONNX models in the ML.NET framework to build a pipeline for detecting eye states (open/closed) in images and video frames captured via webcams. Part two (this blog) focuses on utilizing the MediaPipe Face Landmarks Detection model to identify landmarks of left and right eyes in the cropped image, and compute Eye Aspect Ratio (EAR) to detect eye state.