ImportError: cannot import name inplace_column_scale

前端 未结 7 1046
孤城傲影
孤城傲影 2020-12-11 00:32

Using Python 2.7 with scikit-learn 0.14 package. It runs well on some examples from the user guild expect the Linear Models.

Traceback (most recent call last         


        
7条回答
  •  甜味超标
    2020-12-11 01:06

    Uninstalling scikit-learn and reinstalling it was the only option that worked for me:

     pip uninstall scikit-learn
     pip install scikit-learn
    

提交回复
热议问题