作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在尝试使用 pycaret 创建一个模型,如下所示:
from pycaret.classification import *
clf1 = setup(data = dt, target = 'group')
lr = create_model('lr')
然后我得到:
AttributeError: 'Simple_Imputer' object has no attribute 'fill_value_categorical'
所以,关注
here ,我补充说:
clf1 = setup(data = dt, target = 'group', imputation_type='iterative' )
lr = create_model('lr')
然后我得到:
AttributeError: 'Make_Time_Features' object has no attribute 'list_of_features'
我的 sklearn 版本是 0.23.2,pycaret 是 2.3.2
最佳答案
你提到了我之前的问题 here .
我刚刚在 Colab 上遇到了和你一样的问题。这是图书馆 100% 的问题。
最初,我收到了 SMOTE
的错误:
pd
、 np
、 scikit
等)。 pip install
安装了 PyCaret .然后import pycaret
和 from pycaret.classification import *
scipy
, sklearn
, lightgbm
,请重新启动您的运行时。 import pycaret
和 from pycaret.classification import *
只有# Initialize the setup with SMOTE
clf_smote = setup(
data,
session_id = 123,
target = 'Target',
remove_multicollinearity = True,
multicollinearity_threshold = 0.95,
fix_imbalance = True
)
我没有用
imputation_type='iterative'
就像我上面的问题一样。
关于scikit-learn - Pycaret - 'Make_Time_Features' 对象没有属性 'list_of_features',我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/68504879/
我正在尝试使用 pycaret 创建一个模型,如下所示: from pycaret.classification import * clf1 = setup(data = dt, target = '
我是一名优秀的程序员,十分优秀!