aikit icon indicating copy to clipboard operation
aikit copied to clipboard

Optimization errors from LogisticRegression are not reported

Open gfournier opened this issue 4 years ago • 1 comments

Fit model ends with when an optimization error occurs during LogisticRegression fit:

in _check_optimize_result
).format(solver, result.status, result.message.decode("latin1"))
AttributeError: 'str' object has no attribute 'decode'

https://github.com/scikit-optimize/scikit-optimize/issues/981

gfournier avatar Feb 01 '21 22:02 gfournier

Downgrade scipy to 1.5.3 fixes temporary the issue:

pip install scipy==1.5.3

gfournier avatar Feb 01 '21 22:02 gfournier