I have a model I\'m trying to build using LogisticRegression in sklearn that has a couple thousand features and approximately 60,000 samples. I\'m try
LogisticRegression
sklearn
The default solver for LogisticRegressin in sklearn is liblinear which is a suitable solver for normal datasets. For large datasets try the stochastic gradient descent solvers such as sag:
LogisticRegressin
liblinear
sag
model = LogisticRegression(solver='sag')