编程问题录

 

 

  • 使用逻辑回归模型( sklearn.linear_model.LogisticRegression) 提示警告

  1. 警告信息如下:
    FutureWarning: Default solver will be changed to 'lbfgs' in 0.22. 
    Specify a solver to silence this warning.
    FutureWarning)

     

  2.  问题解决方案:即在代码中添加参数忽略警告信息,具体如下代码所示:
    # 传入solver='liblinear' 参数,消除无聊的警告信息
    log_model = LogisticRegression(solver='liblinear')

     

  3.  
  • 使用SVC模型( sklearn.svm.SCV) 提示警告

  1. 警告信息如下:
    FutureWarning: The default value of gamma will change from 'auto' to 'scale'
     in version 0.22 to account better for unscaled features. Set gamma explicitly 
     to 'auto' or 'scale' to avoid this warning.
     "avoid this warning.", FutureWarning)

     

  2. 问题解决方案:在代码中添加忽略警告信息的代码即可,如下所示:
    # 忽略警告
    import warnings
    warnings.filterwarnings("ignore")
     
  3.  

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

你可能感兴趣的:(问题录,编程语言,问题录)