Skip to content

Commit

Permalink
fix: add missing property to logistic regression class
Browse files Browse the repository at this point in the history
  • Loading branch information
iamDecode committed Jul 9, 2021
1 parent ef98c12 commit 4b6e11c
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions sklearn_pmml_model/linear_model/implementations.py
Expand Up @@ -108,6 +108,7 @@ def __init__(self, pmml):
self.coef_ = np.array(self.coef_)
self.intercept_ = np.array(self.intercept_)
self.multi_class = 'auto'
self.solver = 'lbfgs'

def fit(self, x, y):
return PMMLLinearClassifier.fit(self, x, y)
Expand Down

0 comments on commit 4b6e11c

Please sign in to comment.