Closed
Description
We are inconsistent with the penalty
parameter for the linear models.
For the SGD and Perceptron, we will accept penalty=None
while this is not the case in LogisticRegression
. In LogisticRegression
, we must provide the string 'none'
.
I assume we could make everything consistent by accepting both None
and 'none'
.
@jeremiedbb WDYT?