- 2.55.0 (latest)
- 2.54.0
- 2.53.0
- 2.51.0
- 2.50.0
- 2.49.0
- 2.48.0
- 2.47.0
- 2.46.0
- 2.45.0
- 2.44.0
- 2.43.0
- 2.42.0
- 2.41.0
- 2.39.0
- 2.38.0
- 2.37.0
- 2.36.0
- 2.35.0
- 2.34.0
- 2.33.0
- 2.32.0
- 2.31.0
- 2.30.0
- 2.29.0
- 2.26.0
- 2.25.0
- 2.24.0
- 2.23.0
- 2.22.0
- 2.21.0
- 2.20.0
- 2.19.0
- 2.18.0
- 2.17.0
- 2.16.0
- 2.15.0
- 2.14.0
- 2.13.0
- 2.11.0
- 2.10.0
- 2.9.0
- 2.8.0
- 2.7.0
- 2.6.0
- 2.5.1
- 2.4.0
- 2.3.0
- 2.2.3
- 2.1.0
- 2.0.19
public static final class ModelServiceGrpc.ModelServiceBlockingStub extends AbstractBlockingStub<ModelServiceGrpc.ModelServiceBlockingStub>
A stub to allow clients to do synchronous rpc calls to service ModelService.
Service for performing CRUD operations on models.
Recommendation models contain all the metadata necessary to generate a set of
models for the Predict()
API. A model is queried
indirectly via a ServingConfig, which associates a model with a
given Placement (e.g. Frequently Bought Together on Home Page).
This service allows you to do the following:
- Initiate training of a model.
- Pause training of an existing model.
- List all the available models along with their metadata.
- Control their tuning schedule.
Inheritance
java.lang.Object > io.grpc.stub.AbstractStub > io.grpc.stub.AbstractBlockingStub > ModelServiceGrpc.ModelServiceBlockingStubMethods
build(Channel channel, CallOptions callOptions)
protected ModelServiceGrpc.ModelServiceBlockingStub build(Channel channel, CallOptions callOptions)
Parameters | |
---|---|
Name | Description |
channel |
io.grpc.Channel |
callOptions |
io.grpc.CallOptions |
Returns | |
---|---|
Type | Description |
ModelServiceGrpc.ModelServiceBlockingStub |
createModel(CreateModelRequest request)
public Operation createModel(CreateModelRequest request)
Creates a new model.
Parameter | |
---|---|
Name | Description |
request |
CreateModelRequest |
Returns | |
---|---|
Type | Description |
Operation |
deleteModel(DeleteModelRequest request)
public Empty deleteModel(DeleteModelRequest request)
Deletes an existing model.
Parameter | |
---|---|
Name | Description |
request |
DeleteModelRequest |
Returns | |
---|---|
Type | Description |
Empty |
getModel(GetModelRequest request)
public Model getModel(GetModelRequest request)
Gets a model.
Parameter | |
---|---|
Name | Description |
request |
GetModelRequest |
Returns | |
---|---|
Type | Description |
Model |
listModels(ListModelsRequest request)
public ListModelsResponse listModels(ListModelsRequest request)
Lists all the models linked to this event store.
Parameter | |
---|---|
Name | Description |
request |
ListModelsRequest |
Returns | |
---|---|
Type | Description |
ListModelsResponse |
pauseModel(PauseModelRequest request)
public Model pauseModel(PauseModelRequest request)
Pauses the training of an existing model.
Parameter | |
---|---|
Name | Description |
request |
PauseModelRequest |
Returns | |
---|---|
Type | Description |
Model |
resumeModel(ResumeModelRequest request)
public Model resumeModel(ResumeModelRequest request)
Resumes the training of an existing model.
Parameter | |
---|---|
Name | Description |
request |
ResumeModelRequest |
Returns | |
---|---|
Type | Description |
Model |
tuneModel(TuneModelRequest request)
public Operation tuneModel(TuneModelRequest request)
Tunes an existing model.
Parameter | |
---|---|
Name | Description |
request |
TuneModelRequest |
Returns | |
---|---|
Type | Description |
Operation |
updateModel(UpdateModelRequest request)
public Model updateModel(UpdateModelRequest request)
Update of model metadata. Only fields that
currently can be updated are: filtering_option
and
periodic_tuning_state
.
If other values are provided, this API method ignores them.
Parameter | |
---|---|
Name | Description |
request |
UpdateModelRequest |
Returns | |
---|---|
Type | Description |
Model |