我继续收到此错误。
skf = StratifiedKFold(n_splits=3)
for train, test in skf.split(df_new, df_new_target):
regr = linear_model.LinearRegression()
new = train[:5]
regr.fit(df_new.iloc[new], df_new_target.iloc[new]) #kernel dies at this line
我的ipython内核在regr.fit线上继续死亡。我认为这是一个内存问题,因为可能有太多的数据。因此,我只将5行传递给分类器。但它仍然杀死了我的内核,毫无例外。