Tutorial | Partitioned models#

Get started#

A partitioned dataset is made up of different subgroups of the data that share the same schema. A partitioned model is created from a partitioned dataset.

Partitioned models can sometimes lead to better predictions when relevant predictors for a target variable are different across subgroups (or partitions) of the dataset.

Let’s see how to build one to predict flight delays for two subgroups of data!

Objectives#

In this tutorial, you will:

  • Create a partitioned machine learning model to predict how much time a given flight will be delayed based on flight characteristics.

  • Compare the results of a partitioned and non-partitioned modeling session.

Prerequisites#

  • Access to an instance of Dataiku 12+.

  • Knowledge of the recommended courses in the Core Designer and ML Practitioner learning paths is encouraged.

Create the project#

  1. From the Dataiku Design homepage, click + New Project > DSS tutorials > ML Practitioner > Partitioned Models.

  2. From the project homepage, click Go to Flow.

Note

You can also download the starter project from this website and import it as a zip file.

Use case summary#

The Flow contains one dataset, flights_data_partitioned, which is sourced from a managed folder named flights_folder with two directories: florida and california.

The rows of this dataset have already been partitioned by the flight destination state, found in the column dest_state. Let’s explore this dataset.

  1. Open the flights_data_partitioned dataset.

  2. Navigate to the Settings tab.

  3. Go to the Partitioning subtab.

  4. Note that the partitions were created using the pattern /%{dest_state}/.*.

  5. Note that the partitioning dimension is dest_state.

Dataiku screenshot of the settings of a partitioned dataset.

Train a partitioned model#

Partitioning the model by the destination state could help improve model performance if the reasons for arrival delay are different for the two locations.

Because we created our model on a partitioned dataset, we have the option to train partitioned models.

Start with a non-partitioned model#

Although our goal is to train a partitioned model, let’s create a non-partitioned model on the entire dataset as a benchmark against which we can compare a partitioned model.

  1. From the Flow, select the flights_data_partitioned dataset.

  2. Navigate to the Lab tab of the right side panel.

  3. Select AutoML Prediction from the menu of Visual ML tasks.

  4. Select arr_delay as the feature on which to create the prediction model.

  5. In the AutoML section, select Quick Prototypes.

  6. Click Create.

    Dataiku screenshot of the dialog to create a deep learning task.
  7. Click Train without adjusting any of the Design settings.

Use partitions in a modeling task#

Now that we have this benchmark, let’s train models using the partitions found in the dataset.

  1. Navigate to the Design tab of the modeling task.

  2. In the Target panel, select the Partitioning checkbox.

  3. For Use partitions, confirm All partitions is selected.

  4. Click Train.

    Dataiku screenshot of the design for a partitioned model.
  5. Click Train again to confirm.

Important

If you select multiple algorithms to use for training, Dataiku trains a partitioned model for each algorithm. Each partitioned model consists of one sub-model (or model partition) per data partition. Your results may differ from the results shown.

Evaluate a partitioned model#

We now have two modeling sessions:

  • Session 1 was trained on the whole dataset even though flights_data_partitioned is a partitioned dataset.

  • Session 2 (which you initiated) was trained using the partitions.

Let’s observe how the results for a partitioned model differ compared to those for a non-partitioned model.

  1. Click on the Random Forest model from the second model training session to view the model report.

  2. From the Summary panel, expand the florida row to view details about this partition.

  3. Click Partitions, and then use the dropdown to view the model report for a specific partition.

Dataiku screenshot of the model report of a partitioned model.

Important

Metrics for the overall model are aggregated. When an exact computation is not possible, then Dataiku determines the value as a weighted average, where the weights are determined by the size of each partition (using sample weights, if applicable).

In this example, the partitioned model seems to have performed slightly better than the non-partitioned model. This is because subgroups of a data set can have dissimilar characteristics that draw different patterns over the features. You can further explore the summary for each partitioned model to investigate whether or not there are differences between the partitioned model results.

What’s next?#

You’ve now seen how to train a prediction model on partitions, or subgroups, of a dataset to test whether or not a partitioned model can outperform a non-partitioned model.

See also

Learn more in the reference documentation on Partitioned Models.