1
0
Fork 0

Merge branch 'master' of github.com:HLT-ISTI/QuaPy

This commit is contained in:
Alejandro Moreo Fernandez 2023-02-28 10:27:47 +01:00
commit de93cce391
1 changed files with 1 additions and 1 deletions

View File

@ -29,7 +29,7 @@ class LowRankLogisticRegression(BaseEstimator):
:return: a dictionary with parameter names mapped to their values
"""
params = {'n_components': self.n_components}
params.update(self.learner.get_params())
params.update(self.learner.get_params(deep))
return params
def set_params(self, **params):