Category Archives: PAW

Recap of the 2022 Machine Learning Week Conference

I presented a workshop titled “Deep Learning in Practice: A Hands-On Introduction” at the 2022 Machine Learning Week conference. The event ran June 19-24 and was in Las Vegas. Machine Learning Week is co-located with the Predictive Analytics World conference. … Continue reading

Posted in Conferences, PAW | Leave a comment

Installing Keras 2.8 on a MacBook Laptop

It had been several months since I used a MacOS machine for machine learning with Keras/TensorFlow so I decided to do some examples to make sure there were no significant breaking changes. I bought a refurbished MacBook Air from the … Continue reading

Posted in Keras, PAW | Leave a comment

IMDB Sentiment Classification Using Keras 2.8 on Windows 11

One of my standard neural network examples is sentiment classification on the IMDB Movie Review dataset. The goal is to predict the sentiment (0 = negative, 1 = positive) of a natural language movie review such as, “The movie was … Continue reading

Posted in Keras, PAW | Leave a comment

IMDB Sentiment Classification Using PyTorch 1.10 on Windows 11

One of my standard neural network examples is sentiment classification on the IMDB Movie Review dataset. The goal is to predict the sentiment (0 = negative, 1 = positive) of a natural language movie review such as, “The movie was … Continue reading

Posted in PAW, PyTorch | Leave a comment

Installing PyTorch 1.10.0 on a MacBook Laptop

I most often use Windows OS machines but I sometimes use Mac and Linux machines too. It had been several months since I had used the PyTorch neural network library on a Mac machine so one weekend I figured I’d … Continue reading

Posted in PAW, PyTorch | Leave a comment

MNIST Image Classification Using Keras 2.8 on Windows 11

One of my standard neural network examples is image classification on the MNIST dataset. The full MNIST (modified National Institure of Standards and Technology) dataset has 60,000 images for training and 10,000 images for testing. Each image is a 28 … Continue reading

Posted in Keras, PAW | Leave a comment

MNIST Image Classification Using PyTorch 1.10 on Windows 11

One of my standard neural network examples is image classification on the MNIST dataset. The full MNIST (modified National Institute of Standards and Technology) dataset has 60,000 images for training and 10,000 images for testing. Each image is a 28 … Continue reading

Posted in PAW, PyTorch | Leave a comment

Regression (Employee Income) Using Keras 2.8 on Windows 11

One of my standard neural network examples is to predict employee income from sex, age, city, and job-type. Predicting a single numeric value is usually called a regression problem. (Note: “logistic regression” predicts a single numeric probability value between 0.0 … Continue reading

Posted in Keras, PAW | Leave a comment

Regression (Employee Income) Using PyTorch 1.10 on Windows 11

One of my standard neural network examples is to predict employee income from sex, age, city, and job-type. Predicting a single numeric value is usually called a regression problem. (Note: “logistic regression” predicts a single numeric probability value between 0.0 … Continue reading

Posted in PAW, PyTorch | 1 Comment

Autoencoder Anomaly Detection Using Keras 2.8 on Windows 11

Every few months I revisit my standard neural network examples to make sure that changes in the underlying code libraries (PyTorch, Keras/TensorFlow) haven’t introduced a breaking change(s). One of my standard examples is autoencoder anomaly detection. The idea is to … Continue reading

Posted in Keras, PAW | Leave a comment