I'm trying to find a way to fit a linear regression model with positive coefficients.
The only way I found is sklearn's Lasso model, which has a positive=True
argument, but doesn't recommend using with alpha=0
(means no other constraints on the weights).
Do you know of another model/method/way to do it?