mythicoat
mythicoat

Reputation: 41

L1 penalty in sklearn's MLPRegressor?

Is there a way to introduce L1 regularisation in sklearn's MLPRegressor? I can only find the L2 parameter in the documentation at the moment.

Upvotes: 1

Views: 706

Answers (1)

Z. An
Z. An

Reputation: 13

There is no L1 regularization for MLPRegressor as indicated in their documentation, but I think PyTorch or sknn will allow you to do this.

Upvotes: 1

Related Questions