Skip to main contentIBM ST4SD

Building experiment using your browser

This page gives an overview of the functionality to build or modify experiments in a browser using the Build Canvas and Graph Library features of the ST4SD Virtual Experiments Registry UI.

Create experiments via the Build Canvas

The Build Canvas enables users to create new experiments and modify existing ones. With this feature, users can create Workflows and Components from scratch or reuse those that have already been saved in the Graph Library. When you first start using ST4SD, your Graph Library will be empty, but you can easily add to it as you create and save new experiments.

To access the Build Canvas, you have two options:

  • To create a new experiment, click the “Build an experiment” link at the top left corner of the ST4SD Registry UI webpage.
  • To modify an existing experiment, go to the main page of the experiment you want to modify and click the “Edit experiment” button.

The Build Canvas looks like this:

The Canvas interface for building and modifying experiments

The Build Canvas is divided into two main sections:

Workspace

The Template Workspace is the side panel on the right-hand side of the Build Canvas. It contains a library of Templates that users can drag and drop onto the Workspace area to speed up their experiment creation process. The Template Workspace acts as a temporary scratch space where users can have a list of Workflow and Component templates.

When users first open the Build Canvas, the Template Workspace on the left will be populated with items from the Graph Library. The entries in the side panel are organized as follows:

  • Workflows (graph templates) are indicated by a green background.
  • Components (individual task templates) have a white background.
  • Entries with a (*) suffix indicate that they have not been saved to the Graph Library yet.

Building the graph of an experiment

You can create the main Graph of your virtual experiment by nesting Components (individual tasks) and other Workflows (sub-graphs) inside a Workflow. Both Workflows and Components share a common interface, which consists of a signature with name and parameters and a set of implicit outputs.

The outputs of a Workflow are its nested steps, while the outputs of a Component are the paths that it generates when it executes. Since Workflows and Components have the same interface, we can use the term “Template” to refer to either of them.

A Template’s parameters must receive a value, which can come from one of three sources:

  1. The output of a different Component.
  2. The value of a parameter of the parent Workflow.
  3. If neither of the above, the default value of the template’s parameter.

To nest a template inside a Workflow, simply drag and drop a template from either the Template Workspace side panel or the main Workspace onto the Workflow. Next, enter the name of the step that will execute the child template in the form that appears. Ensure that the name is unique among the children of the parent Workflow you selected.

Next, provide the values of the parameters for the child template. You have a few options for setting the parameters:

  • Set parameters of the child template to literal values by editing the child template directly.
  • Set the child parameters to parameters of the parent by connecting the parent’s parameters to those of the child. To do this, drag the anchor at the bottom of the parent workflow inputs to the top anchor point of the child template. Then, assign values to the child parameters in the new form that appears.
  • Configure the child step to consume outputs of its siblings. To do this, drag the bottom anchor point of a sibling step to the top anchor point of this child step. Then, assign values to the child parameters in the new form that appears.

The Build Canvas creates experiments that adhere to version 2.0 of the ST4SD Workflow Specification (i.e. DSL 2.0). You can find more information on DSL 2.0 at the Workflow Specification 2.0 page.

Here are a few example videos that demonstrate how to use the Build Canvas:

Simple hello world example:


Play

The hello-world Workflow includes a parameter called greetings of type executionOptions that can be modified by users during the experiment launch. This parameter influences the message printed by the workflow’s single component, which utilizes the echo command. The value of greetings is propagated from the parent workflow to the child component, determining the message that is printed.

The Graph Library

The Graph Library is a collection of reusable Workflow recipes that the Build Canvas uses to populate the Template Workspace side-panel. New installations of ST4SD come with an empty library, and users can manage the library’s contents via the Build Canvas.

The Graph Library has several properties:

  • Each entry is a workflow, and if a user registers a Component template, the library automatically wraps it in a single-step Workflow container.
  • Entries are identified by the name of their top-level workflow.
  • Entries are immutable, meaning that to modify one, you must first delete it and then add a new graph with the same name.
  • Entries are syntactically valid, and if a user attempts to add a Workflow/Component with errors, they will receive error messages listing the problems. The user must fix the errors before adding the template to the Graph Library.

Users can manage the Graph Library via the Template Workspace side-panel UI element of the Build Canvas. To access the Build Canvas, click the Build experiment button in the top left corner of the ST4SD Registry UI WebPage or the Edit experiment button in the main page of one of your experiments.

The Build Canvas starts by loading the Graph Library’s contents and displaying them in the Template Workspace side-panel UI element. Users can move templates between the Workspace and the Template Workspace, as well as between the Template Workspace and the Graph Library. Entries that are in the Template Workspace but have not been stored in the Graph Library have a (*) suffix in their name.

The following videos demonstrate the core operations of the Graph Library:

Simply drag and drop an entry of the Template Workspace into the Workspace:


Play

You can see the full implementation details of the imported template after you drag it from the Template Workspace into the Workspace. The template will then behave as if you had just created it from scratch. For example you can modify as part of editing the graph of your experiment.

Learn more

Mastering stp

Learn how to master our command line tool, stp, for creating and managing virtual experiment packages.

Use the APIs

Learn how to use the ST4SD python client API to run, query, and interact with virtual experiments. The APIs also offer access to a trove of experiment metadata and files such as logs and outputs. You can find more examples in our Jupyter Notebooks example repository.