Create learning without specifing experiment-id
Enable to create learning without specifing experiment_id. Currently, user must specify experiment_id and model_id when creating learning-job. However, meteso can find out experiment_id from model_id. Change-Id: I0ba179424bc794469824c934ee3cd6988db70991
This commit is contained in:
parent
f4d6c5e114
commit
8ed6c131dc
@ -28,13 +28,12 @@ class LearningManager(base.ResourceManager):
|
|||||||
NotUpdated = base.NotUpdated()
|
NotUpdated = base.NotUpdated()
|
||||||
|
|
||||||
def create(self, display_name=None, display_description=None,
|
def create(self, display_name=None, display_description=None,
|
||||||
experiment_id=None, model_id=None, method=None, args=None):
|
model_id=None, method=None, args=None):
|
||||||
"""Create a Learning."""
|
"""Create a Learning."""
|
||||||
|
|
||||||
data = {
|
data = {
|
||||||
'display_name': display_name,
|
'display_name': display_name,
|
||||||
'display_description': display_description,
|
'display_description': display_description,
|
||||||
'experiment_id': experiment_id,
|
|
||||||
'model_id': model_id,
|
'model_id': model_id,
|
||||||
'method': method,
|
'method': method,
|
||||||
'args': base64.b64encode(str(args)),
|
'args': base64.b64encode(str(args)),
|
||||||
|
@ -1,7 +1,6 @@
|
|||||||
{
|
{
|
||||||
"display_name": "example-learning-job",
|
"display_name": "example-learning-job",
|
||||||
"display_description": "This is a sample job",
|
"display_description": "This is a sample job",
|
||||||
"experiment_id": "<YOUR_EXPERIMENT_ID>",
|
|
||||||
"model_id": "<YOUR_MODEL_ID>",
|
"model_id": "<YOUR_MODEL_ID>",
|
||||||
"method": "predict",
|
"method": "predict",
|
||||||
"args": "<INPUT_DATA>"
|
"args": "<INPUT_DATA>"
|
||||||
|
Loading…
x
Reference in New Issue
Block a user