You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Jul 17, 2023. It is now read-only.
Model is built, stored, and deployed to the public but accessible just for the user who builds it (API wise). FYI: The model.predict() method works with a deployed model.
Problem
We should be able to share the model with other users as well - to list them, find by some property, and get endpoint_url to access it. AFAIK this is partially possible in MLOps. MLOps is able to share one-2-one but group share is missing.
Therefore, the current approach in Wave ML to share model is following:
fromh2o_wave_mlimportbuild_model
...
model=build_model(...)
url=model.endpoint_url# Store this value somewhere.
fromh2o_wave_mlimportget_model
...
model=get_model(endpoint_url=url) # Use this value to get model.prediction=model.predict(...)
One can specify project_id instead of endpoint_url to get to deployment.
Goal
The goal is to have the following workflow (or similar):
We should be able to group share the private model for other users so WaveML can list available models for groups the user belongs in and filter them by name and version.
I thought that, maybe, this is an expected feature to MLOps as groupId appears here.
The issue describes the current status of a model sharing in Wave ML and the desired approach we would like to follow.
Current state
This is the current workflow Wave ML is capable of:
Model is built, stored, and deployed to the public but accessible just for the user who builds it (API wise). FYI: The
model.predict()
method works with a deployed model.Problem
We should be able to share the model with other users as well - to list them, find by some property, and get
endpoint_url
to access it. AFAIK this is partially possible in MLOps. MLOps is able to share one-2-one but group share is missing.Therefore, the current approach in Wave ML to share model is following:
One can specify
project_id
instead ofendpoint_url
to get to deployment.Goal
The goal is to have the following workflow (or similar):
We should be able to group share the private model for other users so WaveML can list available models for groups the user belongs in and filter them by name and version.
I thought that, maybe, this is an expected feature to MLOps as
groupId
appears here.cc @zoido @mwysokin @tkmaker @vopani @mmalohlava
The text was updated successfully, but these errors were encountered: