Skip to content

Commit b10aa6f

Browse files
author
arnaudde
committed
Fix typos
1 parent 591d6aa commit b10aa6f

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

dataikuapi/dss/ml.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -774,8 +774,8 @@ def filter(self):
774774
return self._internal_dict["filter"]
775775

776776
@filter.setter
777-
def filter(self, filter):
778-
self._internal_dict["filter"] = filter
777+
def filter(self, a_filter):
778+
self._internal_dict["filter"] = a_filter
779779

780780
@property
781781
def condition(self):
@@ -902,7 +902,7 @@ def expected_min(self, expected_min):
902902
def expected_max(self):
903903
"""
904904
Returns the max (included) of the expected range or None if it is not defined.
905-
Assertion passes if the ratio of rows predicted between expected_min and expected_max (included) is attained.
905+
Assertion passes if the expected_valid_ratio of rows predicted between expected_min and expected_max (included) is attained.
906906
907907
:rtype: float
908908
"""
@@ -1021,7 +1021,7 @@ def nb_matching_rows(self):
10211021
@property
10221022
def nb_dropped_rows(self):
10231023
"""
1024-
Returns the number of rows dropped by the model's preprocessing
1024+
Returns the number of rows matching filter and dropped by the model's preprocessing
10251025
10261026
:rtype: int
10271027
"""

0 commit comments

Comments
 (0)