Exploring informational parameters
Pipeline informational parameters define basic information about the pipeline. Out of all of them, only the name
parameter is required in any pipeline specification. All other parameters are optional and can be omitted. Let's look at these parameters in more detail.
name
The name
parameter is the descriptive name of your pipeline. Typically, you want to name a pipeline after the type of transformation it performs. For example, if your pipeline performs image classification, you may want to call it image-classification
. A pipeline name must consist of alphanumeric characters, dashes, and underscores, and cannot exceed 63 symbols.
The following is an example of the name
parameter in YAML format:
--- pipeline: name: image-classification
The following is an example of the name
parameter in JSON format:
{ "pipeline": { "name": "image-classification" &...