Listing models
This feature is in the beta tier. For more information on feature tiers, see API Tiers.
Information about models in the catalog can be retrieved using the gds.beta.model.list()
procedure.
1. Syntax
CALL gds.beta.model.list(modelName: String)
YIELD
modelInfo: Map,
trainConfig: Map,
graphSchema: Map,
loaded: Boolean,
stored: Boolean,
creationTime: DateTime,
shared: Boolean
Name | Type | Default | Optional | Description |
---|---|---|---|---|
modelName |
String |
|
yes |
The name of a model. If not specified, all models in the catalog are listed. |
Name | Type | Description |
---|---|---|
modelInfo |
Map |
Detailed information about the trained model. Always includes the |
trainConfig |
Map |
The configuration used for training the model. |
graphSchema |
Map |
The schema of the graph on which the model was trained. |
loaded |
Boolean |
True, if the model is loaded in the in-memory model catalog. |
stored |
Boolean |
True, if the model is stored on disk. |
creationTime |
Datetime |
Time when the model was created. |
shared |
Boolean |
True, if the model is shared between users. |
2. Examples
Once we have trained models in the catalog we can see information about either all of them or a single model using its name
Was this page helpful?