Books (By Me!)
Events (I Speak At!)
-
Recent Posts
Archives
Categories
Category Archives: Machine Learning
“AI Hallucinations Why AI Confidently Lies and the Business Opportunities It Creates” on the Pure AI Web Site
I contributed some technical content and opinions to an article titled “AI Hallucinations: Why AI Confidently Lies and the Business Opportunities It Creates” on the Pure AI web site. See https://pureai.com/articles/2026/08/03/ai-hallucinations-why-ai-confidently-lies-and-the-business-opportunities-it-creates.aspx. An AI hallucination occurs when a generative AI model … Continue reading
Posted in Machine Learning
Leave a comment
I Use AI to Improve My Random Forest Regression System Using C#
A simple decision tree for regression will almost always overfit the training data where the model accuracy on the training data is near 100% but accuracy on new, previously unseen data is very poor. The simple idea of random forest … Continue reading
Posted in Machine Learning
Leave a comment
Quadratic Regression with Left Pseudo-Inverse Training Implemented Using C#
The goal of a machine learning regression problem is to predict a single numeric value. Quadratic regression is an enhanced form of basic linear regression. One of several ways to train a quadratic regression model is to use left pseudo-inverse … Continue reading
Posted in Machine Learning
Leave a comment
Kernel Ridge Regression via Cholesky Decomposition with a Solve Function Using From Scratch C#
My standard from-scratch implementation of kernel ridge regression (KRR) trains uses the explicit Cholesky inverse of a RBF kernel matrix. It’s possible to train by computing a Cholesky decomposition and then using a solve method. The explicit inverse approach looks … Continue reading
Posted in Machine Learning
Leave a comment
“Computing Dataset Variance Inflation Factor (VIF) Using C#” in Visual Studio Magazine
I wrote an article titled “Computing Dataset Variance Inflation Factor (VIF) Using C#” in the August 2026 edition of Microsoft Visual Studio Magazine. See https://visualstudiomagazine.com/articles/2026/08/03/computing-dataset-variance-inflation-factor-vif-using-csharp.aspx. The variance inflation factor (VIF) of a dataset column is a value that measures the … Continue reading
Posted in Machine Learning
Leave a comment
I Use AI to Improve My Bagging Tree Regression System Using C#
A simple decision tree for regression will almost always overfit the training data where the model accuracy on the training data is near 100% but accuracy on new, previously unseen data is very poor. The simple idea of bagging tree … Continue reading
Posted in Machine Learning
Leave a comment
The Boston Area House Price Problem With From-Scratch Support Vector Regression Using Python
I recently refactored my basic kernel support vector regression system, implemented from scratch, using Python. I tested my refactored code using synthetic data, but I figured I should run the system on some real world data. One of the standard … Continue reading
Posted in Machine Learning
Leave a comment
New Version of Matrix Pseudo-Inverse With QR Decomposition (Householder Algorithm) Using C#
I recently (yesterday) made major revisions to my personal C# matrix QR decomposition using the Householder algorithm. In my work environment, I use matrix QR decomposition for matrix pseudo-inverse of a matrix of training data. So, my next step after … Continue reading
Posted in Machine Learning
Leave a comment
Deep Neural Network Regression From Scratch Using JavaScript
One morning before work, I realized that I hadn’t written any JavaScript code for several weeks. For mental exercise, I decided to implement a regression system (to predict a single numeric value), using a neural network with exactly two hidden … Continue reading
Posted in JavaScript, Machine Learning
Leave a comment
Yet Another Metric for Regression Model Evaluation: Mean Absolute Scaled Error (MASE) Implemented Using C#
The goal of a machine learning regression problem is to predict a single numeric value. For example, you might want to predict the price of a house in a particular area based on square footage, year built, number of bedrooms, … Continue reading
Posted in Machine Learning
Leave a comment
.NET Test Automation Recipes
Software Testing
SciPy Programming Succinctly
Keras Succinctly
R Programming
Visual Studio Live
Microsoft MLADS Conference
DevIntersection Conference
Machine Learning Week
Ai4 Conference
G2E Conference
iSC West Conference
You must be logged in to post a comment.