We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2f1c978 commit ee82c3fCopy full SHA for ee82c3f
sklearn/base.py
@@ -39,7 +39,7 @@ def clone(estimator, safe=True):
39
The estimator or group of estimators to be cloned
40
41
safe : boolean, optional
42
- If safe is false, clone will fall back to a deepcopy on objects
+ If safe is false, clone will fall back to a deep copy on objects
43
that are not estimators.
44
45
"""
@@ -259,7 +259,7 @@ def set_params(self, **params):
259
self
260
261
if not params:
262
- # Simple optimisation to gain speed (inspect is slow)
+ # Simple optimization to gain speed (inspect is slow)
263
return self
264
valid_params = self.get_params(deep=True)
265
for key, value in six.iteritems(params):
0 commit comments