Speeding up sklearn logistic regression

后端 未结 4 1040
眼角桃花
眼角桃花 2021-02-02 16:53

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

4条回答
  •  悲&欢浪女
    2021-02-02 17:18

    Try reducing data set size and changing tolerance parameter. For example you can try classifier = LogisticRegression(tol = 0.1)

提交回复
热议问题