Understanding Inputs & Outputs

A Gradient Workflow is composed of a series of steps. These steps specify how to orchestrate computational tasks. Each step can communicate with other steps through what are known as inputs and outputs.

There are three types of inputs and outputs. Understanding how these function will help you craft concise and elegant Workflows.

  • Datasets

  • Volumes

  • Strings

Datasets

The dataset type leverages the Gradient platform native dataset primitive. Information stored within datasets is not limited to any single type of data. In fact, a generic dataset can include anything from pretrained models to generated images to configuration files. Inherent to datasets is the notion of versions. Workflows can consume and produce new dataset versions as well as tag new versions of existing datasets.

Note: datasets must be defined in advance of being referenced in a workflow. See Create Datasets for the Workflow for more information.

Scenario 1: Consuming a dataset that already exists within Gradient

Scenario 2: Generating a new dataset version from a Workflow step

my-dataset-id can be the actual ID of the dataset, a 15 character string that looks like def123ghi456jkl (or appended with a version ID too), or a name for the dataset.

Volumes

Unlike, e.g., GitHub Actions, it is likely that multiple Gradient Steps/Actions will execute on multiple compute nodes. To facilitate the passing of data between these nodes, Gradient Actions expose the notion of volumes and volume passing.

Volumes enable actions such as the @git-checkout action. Volumes can be defined as input volumes or output volumes or both. When a volume is an output it is mounted in /outputs and is writeable. When a volume is an input it is mounted in /inputs and is read only.

Here is how you would define an output volume:

In this example a volume is first created as an output and then used as an input in a subsequent job step:

Volumes cannot currently be used as an output after the job they were created with. This limitation is planned to be removed in the future.

Strings

In some cases, you may need to pass a single value between Workflow steps. The string type makes this possible.

Scenario 1: Passing a string as a Workflow-level input

Scenario 2: Passing a string between job steps

Scenario 3: Creating a model from a dataset and passing the model ID as a string to a Deployment step

NOTE: There is no native Gradient Actions for Model Deployments today. Instead, you can use the Gradient SDK to create and manage your inference endpoints.

To run this example you will need to a) create a dataset named test-model and upload valid TensorFlow model files to it; b) define a secret named MY_API_KEY with your gradient-cli api-key; c) substitute your clusterId in the deployment create step.

Last updated