(1) 我的问题是?
→在使用pyradiomics做完特征提取后进行特征筛选时使用lasso出现警告,导致后面特征筛选失败
在运行一下内容时出现警告
alphas = np.logspace(-6,1,50)
modellassoCV = LassoCV(alphas = alphas, cv = 10, max_iter = 1000000).fit(x,y)
警告内容:D:\program_file\anaconda\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:525: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 5.513460337545666, tolerance: 0.10313313131313134
(2) 为解决此问题我查阅过哪些资料?
→
(3) 我做过哪些尝试解决该问题?
→尝试增加迭代次数,但是仍旧不行
(4) 目前我对该问题的反思和猜测是?
→