Managed Service for ClickHouse API, gRPC: MlModelService.Get
Written by
Updated at October 17, 2024
Returns the specified machine learning model.
To get the list of all available models, make a List request.
gRPC request
rpc Get (GetMlModelRequest) returns (MlModel)
GetMlModelRequest
{
"clusterId": "string",
"mlModelName": "string"
}
Field |
Description |
clusterId |
string Required field. ID of the cluster that the model belongs to. |
mlModelName |
string Required field. Name of the model to return. To get a model name make a MlModelService.List request. |
MlModel
{
"name": "string",
"clusterId": "string",
"type": "MlModelType",
"uri": "string"
}
Field |
Description |
name |
string Name of the the model. |
clusterId |
string ID of the ClickHouse cluster that the model belongs to. |
type |
enum MlModelType Type of the model.
|
uri |
string Model file URL. You can only use models stored in Object Storage. |