Skip to content

Commit c948318

Browse files
committed
Adjust parameter name of EvaluationRecipeCreator.with_output_evaluation_store [close ch74582]
1 parent 752881c commit c948318

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

dataikuapi/dss/recipe.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1371,9 +1371,9 @@ def with_output_metrics(self, name):
13711371
"""Sets the output dataset containing the metrics"""
13721372
return self._with_output(name, role="metrics")
13731373

1374-
def with_output_evaluation_store(self, name):
1374+
def with_output_evaluation_store(self, mes_id):
13751375
"""Sets the output model evaluation store"""
1376-
return self._with_output(name, role="evaluationStore")
1376+
return self._with_output(mes_id, role="evaluationStore")
13771377

13781378

13791379
class ClusteringScoringRecipeCreator(SingleOutputRecipeCreator):

0 commit comments

Comments
 (0)