Skip to content

Commit 1407d99

Browse files
samronsinmhham
andauthored
Be more specific in the __repr__ of NumericalHyperparameterSettings.Range
Co-authored-by: Mehdi Hamoumi <mhham@users.noreply.github.com>
1 parent 840e933 commit 1407d99

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

dataikuapi/dss/ml.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -818,7 +818,7 @@ def __init__(self, numerical_hyperparameter_settings):
818818
self._range_dict = self._numerical_hyperparameter_settings._algo_settings[numerical_hyperparameter_settings.name]["range"]
819819

820820
def __repr__(self):
821-
return "Range(min={}, max={}, nb_values={})".format(self.min, self.max, self.nb_values)
821+
return "NumericalHyperparameterSettings.Range(min={}, max={}, nb_values={})".format(self.min, self.max, self.nb_values)
822822

823823
@property
824824
def min(self):

0 commit comments

Comments
 (0)