Generating multiple Decision Optimization scenarios

This tutorial shows you how to generate multiple scenarios from a notebook using randomized data. Generating multiple scenarios lets you test a model by exposing it to a wide range of data.

Before you begin

Requirements
To edit and run Decision Optimization models, you must have the following prerequisites:
Admin or Editor roles
You must have Admin or Editor roles in the project. Viewers of shared projects can only see experiments, but cannot modify or run them
Deployment space
You must have a deployment space that is associated with your Decision Optimization experiment. You can choose a deployment space when you create a Decision Optimization experiment.

About this task

The files used in this example are in the DO-samples project. The model concerned is StaffPlanning and the notebook is CopyAndSolveScenarios.

Procedure

To create and solve a scenario using a sample:

  1. Download and extract all the DO-samples on to your machine. You can also download just the StaffPlanning.zip file from the Model_Builder subfolder for your product and version, but in this case do not extract it.
  2. Open your project or create an empty project.
  3. Select the Assets tab.
  4. Select New asset > Solve optimization problems in the Work with models section.
  5. Click Local file in the Create a Decision Optimization experiment window that opens.
  6. Browse to choose the StaffPlanning.zip file in the Model_Builder folder. Select the relevant product and version subfolder. For watsonx on-premises, use samples from the Cloud Pak for Data v5.0.x subfolder.
  7. Click New deployment space, enter a name, and click Create (or select an existing space from the drop-down menu).
  8. Click Create.
    A Decision Optimization model is created with the same name as the sample.
  9. Working in Scenario 1 of the StaffPlanning model, you can see that the solution contains tables to identify which resources work which days to meet expected demand.
    If there is no solution displayed, or to rerun the model, click Build model in the sidebar, then click Run to solve the model.

Using a random generator to create new scenarios

Procedure

To create new scenarios by using randomized data with a sample:

  1. Select the Assets tab.
  2. Select New asset > Work with data and models in Python or R in the Work with models section.
  3. Select the Local file tab in the new window that opens.
  4. Click Drag and drop files here or upload, and browse to choose the CopyAndSolveScenarios notebook from the jupyter folder. Select the relevant product and version subfolder. For watsonx on-premises, use samples from the Cloud Pak for Data v5.0.x subfolder.
  5. Click Create Notebook.
    The notebook opens in your project.
  6. Locate the cell that contains decision = client.get_experiment(name="StaffPlanning").
    This cell instructs the notebook to copy Scenario 1 from the StaffPlanning model and use it to generate additional scenarios based on randomized data. If you used another name for your model, replace Staffplanning with the name you chose.
  7. Run the notebook using Cell>Run All.
    The notebook uses the Python random module to generate data for five additional scenarios in the model named StaffPlanning. The new scenarios are named Copy 01 ... Copy 05. The number of scenarios to generate is specified in cell 9, N_SCENARIOS = 5.
  8. Open the StaffPlanning model to compare the solutions of the different scenarios. Click the Scenarios icon to open the Scenario pane and quickly move between scenarios. You can also see all your scenarios at a glance in the Overview.
  9. Click Visualization in the navigation pane to compare the different scenarios on the Multi Scenario tab.
    The Demand chart plots the demand for the different periods in the randomly generated scenarios. The KPIs chart plots the total cost across the randomly generated scenarios. The My KPIs chart provides a heat map of costs for the different scenarios along with the mix of temporary and fixed resources for each.

Results

This example shows how easily you can test your model by generating additional scenarios that are based on randomized data. Such testing makes it possible to assess whether the model is robust enough to perform effectively in an environment with variable data.