We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 57710fc commit d155fb4Copy full SHA for d155fb4
1 file changed
dataikuapi/dss/ml.py
@@ -974,9 +974,9 @@ def strategy(self):
974
975
@strategy.setter
976
def strategy(self, _):
977
- raise AttributeError("The strategy must be set at the MLTask level.\n"
978
- "To update the search strategy, please use the setter of the HyperparameterSearchSettings "
979
- "object obtained with DSSPredictionMLTaskSettings.get_hyperparameter_search_settings method")
+ raise AttributeError("The strategy must be set at the MLTask settings level.\n"
+ "To update the search strategy, use <HyperparameterSearchSettings object>.strategy = ..., "
+ "obtained with <DSSPredictionMLTaskSettings object>.get_hyperparameter_search_settings()")
980
981
class RandomForestSettings(PredictionAlgorithmSettings):
982
0 commit comments