# mccaffrey (blogs) — RSS Amplifier

Recent posts from the 1 feeds in the RSS Amplifier directory that cover mccaffrey.

Page: <https://rssamplifier.com/topics/mccaffrey/blogs>  
Feed: <https://rssamplifier.com/topics/mccaffrey/blogs.md>

---

## [My Top Ten Favorite Giant Insect Movies of the 1950s](https://jamesmccaffreyblog.com/2026/08/21/my-top-ten-favorite-giant-insect-movies-of-the-1950s/)

_2026-08-21 · jamesdmccaffrey · James D. McCaffrey_

I am a big fan of early science fiction movies of the 1950s. Quite a few of these movies feature giant insects (where I relax my definition of insect to allow spiders and scorpions). Here are my top 10 favorites. … Continue reading → The post My Top Ten Favorite Giant Insect Movies of the 1950s appeared first on James D. McCaffrey .

## [&#8220;AI Hallucinations Why AI Confidently Lies and the Business Opportunities It Creates&#8221; on the Pure AI Web Site](https://jamesmccaffreyblog.com/2026/08/20/ai-hallucinations-why-ai-confidently-lies-and-the-business-opportunities-it-creates-on-the-pure-ai-web-site/)

_2026-08-20 · jamesdmccaffrey · James D. McCaffrey_

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 → The post…

## [NFL 2026 Football Predictions: A Recap of Zoltar&#8217;s 2025 Results](https://jamesmccaffreyblog.com/2026/08/19/nfl-2026-football-predictions-a-recap-of-zoltars-2025-results/)

_2026-08-19 · jamesdmccaffrey · James D. McCaffrey_

Zoltar is my NFL football prediction computer program. It uses a type of reinforcement learning and a neural network. The first game of the 2026 NFL season will be played on Wednesday, September 9, with the New England Patriots at … Continue reading → The post NFL 2026 Football Predictions: A Recap of Zoltar’s 2025 Results appeared first on James D. McCaffrey .

## [I Use AI to Improve My Random Forest Regression System Using C#](https://jamesmccaffreyblog.com/2026/08/18/i-use-ai-to-improve-my-random-forest-regression-system-using-c/)

_2026-08-18 · jamesdmccaffrey · James D. McCaffrey_

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 → The post I Use AI to Improve My Random Forest Regression System Using C# appeared first on James D. McCaffrey .

## [Quadratic Regression with Left Pseudo-Inverse Training Implemented Using C#](https://jamesmccaffreyblog.com/2026/08/17/quadratic-regression-with-left-pseudo-inverse-training-implemented-using-csharp/)

_2026-08-17 · jamesdmccaffrey · James D. McCaffrey_

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 → The post Quadratic Regression with Left Pseudo-Inverse Training Implemented Using C# appeared first on James D. McCaffrey .

## [Kernel Ridge Regression via Cholesky Decomposition with a Solve Function Using From Scratch C#](https://jamesmccaffreyblog.com/2026/08/14/kernel-ridge-regression-via-cholesky-decomposition-with-a-solve-function-using-from-scratch-csharp/)

_2026-08-14 · jamesdmccaffrey · James D. McCaffrey_

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 The post Kernel Ridge Regression via Cholesky Decomposition with a Solve Function Using From Scratch C# appeared…

## [&#8220;Computing Dataset Variance Inflation Factor (VIF) Using C#&#8221; in Visual Studio Magazine](https://jamesmccaffreyblog.com/2026/08/13/computing-dataset-variance-inflation-factor-vif-using-c-in-visual-studio-magazine/)

_2026-08-13 · jamesdmccaffrey · James D. McCaffrey_

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 The post Computing…

## [NFL 2026 Football Early Predictions – Zoltar Likes the Broncos and the Seahawks](https://jamesmccaffreyblog.com/2026/08/12/nfl-2026-football-early-predictions-zoltar-likes-the-broncos-and-the-seahawks/)

_2026-08-12 · jamesdmccaffrey · James D. McCaffrey_

Zoltar is my NFL football prediction computer program. It uses a neural network and a type of reinforcement learning. The first game of the 2026 NFL season will be played on Wednesday, September 9, with the New England Patriots at Continue reading The post NFL 2026 Football Early Predictions – Zoltar Likes the Broncos and the Seahawks appeared first on James D. McCaffrey .

## [I Use AI to Improve My Bagging Tree Regression System Using C#](https://jamesmccaffreyblog.com/2026/08/11/i-use-ai-to-improve-my-bagging-tree-regression-system-using-csharp/)

_2026-08-11 · jamesdmccaffrey · James D. McCaffrey_

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 The post I Use AI to Improve My Bagging Tree Regression System Using C# appeared first on James D. McCaffrey .

## [The Boston Area House Price Problem With From-Scratch Support Vector Regression Using Python](https://jamesmccaffreyblog.com/2026/08/10/the-boston-area-house-price-problem-with-from-scratch-support-vector-regression-using-python/)

_2026-08-10 · jamesdmccaffrey · James D. McCaffrey_

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 The post The Boston Area House Price Problem With From-Scratch Support Vector Regression Using Python appeared first on James D. McCaffrey…

## [Countdown to Getting Paid (Sponsored)](https://crawlproof.com/a/bek84cCyXwR1)

_2026-08-10 · **Sponsored**_

Create a shareable wallet timer — deposits buy back time and pay debt down

## [New Version of Matrix Pseudo-Inverse With QR Decomposition (Householder Algorithm) Using C#](https://jamesmccaffreyblog.com/2026/08/07/new-version-of-matrix-pseudo-inverse-with-qr-decomposition-householder-algorithm-using-csharp/)

_2026-08-07 · jamesdmccaffrey · James D. McCaffrey_

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 The post New Version of Matrix Pseudo-Inverse With QR Decomposition (Householder Algorithm) Using C# appeared first on James D.…

## [Deep Neural Network Regression From Scratch Using JavaScript](https://jamesmccaffreyblog.com/2026/08/06/deep-neural-network-regression-from-scratch-using-javascript/)

_2026-08-06 · jamesdmccaffrey · James D. McCaffrey_

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 The post Deep Neural Network Regression From Scratch Using JavaScript appeared first on James D. McCaffrey .

## [Yet Another Metric for Regression Model Evaluation: Mean Absolute Scaled Error (MASE) Implemented Using C#](https://jamesmccaffreyblog.com/2026/08/05/yet-another-metric-for-regression-model-evaluation-mean-absolute-scaled-error-mase-implemented-using-csharp/)

_2026-08-05 · jamesdmccaffrey · James D. McCaffrey_

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 The post Yet Another Metric for Regression Model Evaluation: Mean Absolute Scaled Error (MASE) Implemented Using C# appeared first on James D. McCaffrey .

## [New Version of Linear Regression Trained Using MP Pseudo-Inverse via QR-Householder Using C#](https://jamesmccaffreyblog.com/2026/08/04/new-version-of-linear-regression-trained-using-mp-pseudo-inverse-via-qr-householder-using-csharp/)

_2026-08-04 · jamesdmccaffrey · James D. McCaffrey_

There are three ways to train a basic linear regression model: 1.) using stochastic gradient descent, 2.) using left pseudo-inverse (normal equations) via Cholesky inverse, 3.) using relaxed Moore-Penrose pseudo-inverse via one of many possible inverses. Each of the three Continue reading The post New Version of Linear Regression Trained Using MP Pseudo-Inverse via QR-Householder Using C# appeared…

## [Checking Machine Learning Training Data for Multicollinearity Using VIF (Variance Inflation Factor) With From-Scratch JavaScript](https://jamesmccaffreyblog.com/2026/08/03/checking-machine-learning-training-data-for-multicollinearity-using-vif-variance-inflation-factor-with-from-scratch-javascript/)

_2026-08-03 · jamesdmccaffrey · James D. McCaffrey_

In machine learning, if training data is multicollinear, the interpretability of the resulting model will likely be poor (the details are tricky and out of the scope of this post). Multicollinear data has two or more rows that are highly Continue reading The post Checking Machine Learning Training Data for Multicollinearity Using VIF (Variance Inflation Factor) With From-Scratch JavaScript…

## [Machine Learning and Psychology: Sunk Cost Fallacy, Complexity Fallacy, and Obnoxious Researchers](https://jamesmccaffreyblog.com/2026/07/31/machine-learning-and-psychology-sunk-cost-fallacy-complexity-fallacy-and-obnoxious-researchers/)

_2026-07-31 · jamesdmccaffrey · James D. McCaffrey_

In a nutshell, engineers and researchers: a.) Have a tendency to continue investing time, money, and effort into a failing venture simply because they have already invested resources in it. b.) Have a tendency to believe that a complex solution Continue reading The post Machine Learning and Psychology: Sunk Cost Fallacy, Complexity Fallacy, and Obnoxious Researchers appeared first on James D.…

## [New Version of Matrix QR Decomposition With the Householder Algorithm Using C#](https://jamesmccaffreyblog.com/2026/07/30/new-version-of-matrix-qr-decomposition-with-the-householder-algorithm-using-csharp/)

_2026-07-30 · jamesdmccaffrey · James D. McCaffrey_

In the back of my mind, I wasn t entirely happy with my current version of matrix QR decomposition using the Householder algorithm. The current version worked fine, but the underlying code just didn t feel quite right in some way that Continue reading The post New Version of Matrix QR Decomposition With the Householder Algorithm Using C# appeared first on James D. McCaffrey .

## [Support Vector Regression With SGD Training Using JavaScript](https://jamesmccaffreyblog.com/2026/07/29/support-vector-regression-with-sgd-training-using-javascript/)

_2026-07-29 · jamesdmccaffrey · James D. McCaffrey_

The goal of a machine learning regression problem is to predict a single numeric value. For example, a bank might want to predict the maximum safe loan amount for a customer, based on age, account balance, annual income, and so Continue reading The post Support Vector Regression With SGD Training Using JavaScript appeared first on James D. McCaffrey .

## [I Use AI to Improve My Decision Tree Regression Using C#](https://jamesmccaffreyblog.com/2026/07/28/i-use-ai-to-improve-my-decision-tree-regression-using-csharp/)

_2026-07-28 · jamesdmccaffrey · James D. McCaffrey_

I fed my decision tree regression system, implemented using C#, to several AI systems and asked the AI to analyze it for correctness. I was quite impressed that the AI found a few rare edge cases where my code could Continue reading The post I Use AI to Improve My Decision Tree Regression Using C# appeared first on James D. McCaffrey .

## [Pruning Machine Learning Training Data Using an RBF Kernel with C#](https://jamesmccaffreyblog.com/2026/07/27/pruning-machine-learning-training-data-using-an-rbf-kernel-with-c/)

_2026-07-27 · jamesdmccaffrey · James D. McCaffrey_

I ran into an interesting problem recently. I had a set of training data and I needed to condense it to a smaller size (number of items). This is a rare scenario because in most cases you want as much Continue reading The post Pruning Machine Learning Training Data Using an RBF Kernel with C# appeared first on James D. McCaffrey .

## [AI Summaries & Audio Briefings (Sponsored)](https://crawlproof.com/a/CxcVcGnVMIxr)

_2026-07-27 · **Sponsored**_

Read AI summaries and listen to concise audio briefings for the latest stories.

## [Linear Regression with L1, L2, Weight Decay, and Input Noise Regularization from Scratch Using SGD Training with Python](https://jamesmccaffreyblog.com/2026/07/24/linear-regression-with-l1-l2-weight-decay-and-input-noise-regularization-from-scratch-using-sgd-training-with-python/)

_2026-07-24 · jamesdmccaffrey · James D. McCaffrey_

One Sunday morning, I figured I d put together a demo four different different regularization techniques for linear regression: L1, L2, weight decay, and input noise. I have implemented all these techniques before, but never in the same program. I decided Continue reading The post Linear Regression with L1, L2, Weight Decay, and Input Noise Regularization from Scratch Using SGD Training with…

## [Support Vector Regression with SMO Training from Scratch Using Python](https://jamesmccaffreyblog.com/2026/07/23/support-vector-regression-with-smo-training-from-scratch-using-python/)

_2026-07-23 · jamesdmccaffrey · James D. McCaffrey_

One morning before work, I figured I d implement kernel support vector regression (SVR), from scratch, using Python. It took me a bit longer than expected but I got a demo up and running. My implementation uses hard-wired RBF (radial basis Continue reading The post Support Vector Regression with SMO Training from Scratch Using Python appeared first on James D. McCaffrey .

## [Pruning Machine Learning Training Data Using an RBF Kernel with Python](https://jamesmccaffreyblog.com/2026/07/22/pruning-machine-learning-training-data-using-an-rbf-kernel-with-python/)

_2026-07-22 · jamesdmccaffrey · James D. McCaffrey_

I ran into an interesting problem recently. I had a set of training data and I needed to condense it to a smaller size (number of items). This is a rare scenario: in most cases you want as much training Continue reading The post Pruning Machine Learning Training Data Using an RBF Kernel with Python appeared first on James D. McCaffrey .

## [Extra Trees Regression From Scratch Using Python](https://jamesmccaffreyblog.com/2026/07/21/extra-trees-regression-from-scratch-using-python/)

_2026-07-21 · jamesdmccaffrey · James D. McCaffrey_

An Extra Trees Regressor ( Extremely Randomized Trees ) is an ensemble machine learning algorithm that builds multiple randomized decision trees to predict continuous numerical values. It differs from Random Forest regressions by introducing greater randomization during node splitting and utilizing the Continue reading The post Extra Trees Regression From Scratch Using Python appeared first on…

## [Checking Machine Learning Training Data for Multicollinearity Using VIF (Variance Inflation Factor) from Scratch C#](https://jamesmccaffreyblog.com/2026/07/20/checking-machine-learning-training-data-for-multicollinearity-using-vif-variance-inflation-factor-from-scratch-csharp/)

_2026-07-20 · jamesdmccaffrey · James D. McCaffrey_

In machine learning, if training data is multicollinear, the interpretability of the resulting model will likely be poor (the details are tricky and out of the scope of this post). Multicollinear data has two or more rows that are highly Continue reading The post Checking Machine Learning Training Data for Multicollinearity Using VIF (Variance Inflation Factor) from Scratch C# appeared first on…

