Listing pipelines
This feature is in the beta tier. For more information on feature tiers, see API Tiers.
Information about pipelines in the catalog can be retrieved using the gds.beta.pipeline.list()
procedure.
1. Syntax
CALL gds.beta.pipeline.list(pipelineName: String)
YIELD
pipelineName: String,
pipelineType: String,
creationTime: DateTime,
pipelineInfo: Map
Name | Type | Default | Optional | Description |
---|---|---|---|---|
pipelineName |
String |
|
yes |
The name of a pipeline. If not specified, all pipelines in the catalog are listed. |
Name | Type | Description |
---|---|---|
pipelineName |
String |
The name of the pipeline. |
pipelineType |
String |
The type of the pipeline. |
creationTime |
Datetime |
Time when the pipeline was created. |
pipelineInfo |
Map |
Detailed information about this particular training pipeline, such as about intermediate steps in the pipeline. |
2. Examples
Once we have created training pipelines in the catalog we can see information about either all of them or a single model using its name.
To exemplify listing pipelines, we create a node classification pipeline and a link prediction pipeline so that we have something to list.
CALL gds.beta.pipeline.linkPrediction.create('lpPipe')
CALL gds.beta.pipeline.nodeClassification.create('ncPipe')
Was this page helpful?