File "e:\anaconda3\experiment\未命名0.py", line 87, in <module> lin_reg = LinearRegression(normalize = True) TypeError: __init__() got an unexpected keyword argument 'normalize'
时间: 2023-04-09 15:04:13 浏览: 222
这个错误是因为 LinearRegression 类没有 normalize 参数。可能是因为你使用的是旧版本的 scikit-learn 库,或者你的代码有误。你可以尝试更新 scikit-learn 库或者检查你的代码是否正确。
阅读全文