lightning
lightning copied to clipboard
Large-scale linear classification, regression and ranking in Python
Is it planned to add support of intercept in ``SDCARegressor`` in future releases?
I can get the `FistaRegressor` to converge when data is trivial. The code for the simulated data is below. ```python from scipy import stats N, P = 300, 30 m_true...
Setting `shrinking=True` in `CDClassifier` with loss `log` and penalty `l1` seems to not converge toward the optimal solution. Increasing the number of iteration does not change this. It looks like...
Hi @mblondel @fabianp I think this will be short to answer, why is the solution sometimes equal to that of sklearn, and sometimes not ? This should be quick to...
Hey, i'm wondering if multi-label is natively supported or if this in WIP. Thanks.
do you have implementation for regression with confidence intervals ?
do you have support vector regression with soft margin and confidence interval ?
do you have Regression for spars categorical big data after one hot transformation then data is spars and only ones and zeros values many zeros and few ones?
do you have Quantile Regression for spars data after one hot transformation
training is a pd.DataFrame features is a list of column names model = AdaGradRegressor() model.fit(training[features], training['target']) throws ~\Anaconda3\envs\numerai\lib\site-packages\lightning\impl\adagrad.py in fit(self, X, y) 130 def fit(self, X, y): 131 self.outputs_2d_ =...