Some prediction problems require predicting both numeric values and a matriculation label for the same input.

A simple tideway is to develop both regression and nomenclature predictive models on the same data and use the models sequentially.

An volitional and often increasingly constructive tideway is to develop a each neural network model that can predict both a numeric and matriculation label value from the same input. This is tabbed a multi-output model and can be relatively easy to develop and evaluate using modern deep learning libraries such as Keras and TensorFlow.

In this tutorial, you will discover how to develop a neural network for combined regression and nomenclature predictions.

After completing this tutorial, you will know:

  • Some prediction problems require predicting both numeric and matriculation label values for each input example.
  • How to develop separate regression and nomenclature models for problems that require multiple outputs.
  • How to develop and evaluate a neural network model capable of making simultaneous regression and nomenclature predictions.

Let’s get started.

Develop Neural Network for Combined Nomenclature and Regression

Develop Neural Network for Combined Nomenclature and Regression
Photo by Sang Trinh, some rights reserved.

Tutorial Overview

This tutorial is divided into three parts; they are:

  1. Single Model for Regression and Classification
  2. Separate Regression and Nomenclature Models
    1. Abalone Dataset
    2. Regression Model
    3. Classification Model
  3. Combined Regression and Nomenclature Models

Single Model for Regression and Classification

It is worldwide to develop a deep learning neural network model for a regression or nomenclature problem, but on some predictive modeling tasks, we may want to develop a each model that can make both regression and nomenclature predictions.

Regression refers to predictive modeling problems that involve predicting a numeric value given an input.

Classification refers to predictive modeling problems that involve predicting a matriculation label or probability of matriculation labels for a given input.

For increasingly on the difference between nomenclature and regression, see the tutorial:

There may be some problems where we want to predict both a numerical value and a nomenclature value.

One tideway to solving this problem is to develop a separate model for each prediction that is required.

The problem with this tideway is that the predictions made by the separate models may diverge.

An unorganized tideway that can be used when using neural network models is to develop a each model capable of making separate predictions for a numeric and matriculation output for the same input.

This is tabbed a multi-output neural network model.

The goody of this type of model is that we have a each model to develop and maintain instead of two models and that training and updating the model on both output types at the same time may offer increasingly consistency in the predictions between the two output types.

We will develop a multi-output neural network model capable of making regression and nomenclature predictions at the same time.

First, let’s select a dataset where this requirement makes sense and start by developing separate models for both regression and nomenclature predictions.

Separate Regression and Nomenclature Models

In this section, we will start by selecting a real dataset where we may want regression and nomenclature predictions at the same time, then develop separate models for each type of prediction.

Abalone Dataset

We will use the “abalone” dataset.

Determining the age of an abalone is a time-consuming task and it is desirable to determine the age from physical details alone.

This is a dataset that describes the physical details of abalone and requires predicting the number of rings of the abalone, which is a proxy for the age of the creature.

You can learn increasingly well-nigh the dataset from here:

The “age” can be predicted as both a numerical value (in years) or a matriculation label (ordinal year as a class).

No need to download the dataset as we will download it automatically as part of the worked examples.

The dataset provides an example of a dataset where we may want both a numerical and nomenclature of an input.

First, let’s develop an example to download and summarize the dataset.

Running the example first downloads and summarizes the shape of the dataset.

We can see that there are 4,177 examples (rows) that we can use to train and evaluate a model and 9 features (columns) including the target variable.

We can see that all input variables are numeric except the first, which is a string value.

To alimony data preparation simple, we will waif the first post from our models and focus on modeling the numeric input values.

We can use the data as the understructure for developing separate regression and nomenclature Multilayer Perceptron (MLP) neural network models.

Note: we are not trying to develop an optimal model for this dataset; instead we are demonstrating a explicit technique: developing a model that can make both regression and nomenclature predictions.

Regression Model

In this section, we will develop a regression MLP model for the abalone dataset.

First, we must separate the columns into input and output elements and waif the first post that contains string values.

We will moreover gravity all loaded columns to have a bladder type (expected by neural network models) and record the number of input features, which will need to be known by the model later.

Next, we can split the dataset into a train and test dataset.

We will use a 67% random sample to train the model and the remaining 33% to evaluate the model.

We can then pinpoint an MLP neural network model.

The model will have two subconscious layers, the first with 20 nodes and the second with 10 nodes, both using ReLU vivification and “he normal” weight initialization (a good practice). The number of layers and nodes were chosen arbitrarily.

The output layer will have a each node for predicting a numeric value and a linear vivification function.

The model will be trained to minimize the midpoint squared error (MSE) loss function using the constructive Adam version of stochastic gradient descent.

We will train the model for 150 epochs with a mini-batch size of 32 samples, then chosen arbitrarily.

Finally, without the model is trained, we will evaluate it on the holdout test dataset and report the midpoint wool error (MAE).

Tying this all together, the well-constructed example of an MLP neural network for the abalone dataset framed as a regression problem is listed below.

Running the example will prepare the dataset, fit the model, and report an estimate of model error.

Note: Your results may vary given the stochastic nature of the algorithm or evaluation procedure, or differences in numerical precision. Consider running the example a few times and compare the stereotype outcome.

In this case, we can see that the model achieved an error of well-nigh 1.5 (rings).

So far so good.

Next, let’s squint at developing a similar model for classification.

Classification Model

The abalone dataset can be framed as a nomenclature problem where each “ring” integer is taken as a separate matriculation label.

The example and model are much the same as the whilom example for regression, with a few important changes.

This requires first assigning a separate integer for each “ring” value, starting at 0 and ending at the total number of “classes” minus one.

This can be achieved using the LabelEncoder.

We can moreover record the total number of classes as the total number of unique encoded matriculation values, which will be needed by the model later.

After splitting the data into train and test sets as before, we can pinpoint the model and transpiration the number of outputs from the model to equal the number of classes and use the softmax vivification function, worldwide for multi-class classification.

Given we have encoded matriculation labels as integer values, we can fit the model by minimizing the sparse well-defined cross-entropy loss function, towardly for multi-class nomenclature tasks with integer encoded matriculation labels.

After the model is fit on the training dataset as before, we can evaluate the performance of the model by gingerly the nomenclature verism on the hold-out test set.

Tying this all together, the well-constructed example of an MLP neural network for the abalone dataset framed as a nomenclature problem is listed below.

Running the example will prepare the dataset, fit the model, and report an estimate of model error.

Note: Your results may vary given the stochastic nature of the algorithm or evaluation procedure, or differences in numerical precision. Consider running the example a few times and compare the stereotype outcome.

In this case, we can see that the model achieved an verism of well-nigh 27%.

So far so good.

Next, let’s squint at developing a combined model capable of both regression and nomenclature predictions.

Combined Regression and Nomenclature Models

In this section, we can develop a each MLP neural network model that can make both regression and nomenclature predictions for a each input.

This is tabbed a multi-output model and can be ripened using the functional Keras API.

For increasingly on this functional API, which can be tricky for beginners, see the tutorials:

First, the dataset must be prepared.

We can prepare the dataset as we did surpassing for classification, although we should save the encoded target variable with a separate name to differentiate it from the raw target variable values.

We can then split the input, raw output, and encoded output variables into train and test sets.

Next, we can pinpoint the model using the functional API.

The model takes the same number of inputs as surpassing with the standalone models and uses two subconscious layers configured in the same way.

We can then pinpoint two separate output layers that connect to the second subconscious layer of the model.

The first is a regression output layer that has a each node and a linear vivification function.

The second is a nomenclature output layer that has one node for each matriculation stuff predicted and uses a softmax vivification function.

We can then pinpoint the model with a each input layer and two output layers.

Given the two output layers, we can compile the model with two loss functions, midpoint squared error loss for the first (regression) output layer and sparse well-defined cross-entropy for the second (classification) output layer.

We can moreover create a plot of the model for reference.

This requires that pydot and pygraphviz are installed. If this is a problem, you can scuttlebutt out this line and the import statement for the plot_model() function.

Each time the model makes a prediction, it will predict two values.

Similarly, when training the model, it will need one target variable per sample for each output.

As such, we can train the model, thoughtfully providing both the regression target and nomenclature target data to each output of the model.

The fit model can then make a regression and nomenclature prediction for each example in the hold-out test set.

The first variety can be used to evaluate the regression predictions via midpoint wool error.

The second variety can be used to evaluate the nomenclature predictions via nomenclature accuracy.

And that’s it.

Tying this together, the well-constructed example of training and evaluating a multi-output model for combiner regression and nomenclature predictions on the abalone dataset is listed below.

Running the example will prepare the dataset, fit the model, and report an estimate of model error.

Note: Your results may vary given the stochastic nature of the algorithm or evaluation procedure, or differences in numerical precision. Consider running the example a few times and compare the stereotype outcome.

A plot of the multi-output model is created, unmistakably showing the regression (left) and nomenclature (right) output layers unfluctuating to the second subconscious layer of the model.

Plot of the Multi-Output Model for Combine Regression and Nomenclature Predictions

Plot of the Multi-Output Model for Combine Regression and Nomenclature Predictions

In this case, we can see that the model achieved both a reasonable error of well-nigh 1.495 (rings) and a similar verism as surpassing of well-nigh 25.6%.

Further Reading

This section provides increasingly resources on the topic if you are looking to go deeper.

Tutorials

Summary

In this tutorial, you discovered how to develop a neural network for combined regression and nomenclature predictions.

Specifically, you learned:

  • Some prediction problems require predicting both numeric and matriculation label values for each input example.
  • How to develop separate regression and nomenclature models for problems that require multiple outputs.
  • How to develop and evaluate a neural network model capable of making simultaneous regression and nomenclature predictions.

Do you have any questions?
Ask your questions in the comments unelevated and I will do my weightier to answer.

Develop Deep Learning Projects with Python!

Deep Learning with Python

 What If You Could Develop A Network in Minutes

...with just a few lines of Python

Discover how in my new Ebook:
Deep Learning With Python

It covers end-to-end projects on topics like:
Multilayer PerceptronsConvolutional Nets and Recurrent Neural Nets, and more...

Finally Bring Deep Learning To
Your Own Projects

Skip the Academics. Just Results.

See What's Inside