Reputation: 41
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
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