Skip to content

Commit 1bbab01

Browse files
committed
Revert "Set output type to SAVED_MODEL when running training recipe"
This reverts commit a9c7d74.
1 parent 55de913 commit 1bbab01

File tree

1 file changed

+0
-11
lines changed

1 file changed

+0
-11
lines changed

dataikuapi/dss/recipe.py

Lines changed: 0 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -143,10 +143,6 @@ def get_settings(self):
143143
return SplitRecipeSettings(self, data)
144144
elif type == "prepare" or type == "shaker":
145145
return PrepareRecipeSettings(self, data)
146-
elif type == "prediction_training":
147-
return TrainingRecipeSettings(self, data)
148-
elif type == "clustering_training":
149-
return TrainingRecipeSettings(self, data)
150146
#elif type == "prediction_scoring":
151147
#elif type == "clustering_scoring":
152148
elif type == "download":
@@ -1087,13 +1083,6 @@ def __init__(self, name, project):
10871083
SingleOutputRecipeCreator.__init__(self, 'download', name, project)
10881084

10891085

1090-
class TrainingRecipeSettings(DSSRecipeSettings):
1091-
"""
1092-
Settings of a prediction or clustering training recipe. Do not create this directly, use :meth:`DSSRecipe.get_settings`
1093-
"""
1094-
pass # TODO: Write helpers for training
1095-
1096-
10971086
#####################################################
10981087
# Per-recipe-type classes: Code recipes
10991088
#####################################################

0 commit comments

Comments
 (0)