标签: python scikit-learn
例如,如果我执行python module.py vs import module,他们的行为会有所不同。该模块在运行或导入后立即运行一些代码。
python module.py
import module
具体来说,我尝试使用sklearn中的LogisticRegressionCV。如果我导入模块,LogisticRegressionCV的{{1}}方法会冻结,如果它使用的作业超过1个。如果我直接通过fit运行它,如果它使用多个作业,它就不会冻结。这是为什么?
LogisticRegressionCV
fit