gpt4 book ai didi

xgboost 类型错误 : can not initialize DMatrix from DataFrame

转载 作者:行者123 更新时间:2023-12-01 04:58:10 25 4
gpt4 key购买 nike

从python中的数据创建DMatrix时出现以下错误。

TypeError: can not initialize DMatrix from DataFrame
Exception AttributeError: "'DMatrix' object has no attribute 'handle'" in <bound method DMatrix.__del__ ofrix object at 0x584d210>> ignored

最佳答案

如果没有随附的代码,我最好的猜测是您直接传递了 Pandas 数据帧,而您需要传递数据帧的 numpy 表示
即,pandas.DataFrame.values 如下

X_train = pd.read_csv("train.csv")
y_train = X_train['label']
X_train.drop(['label'],axis=1,inplace=True)
final_GBM.fit(X_train.values,y_train.values)

关于xgboost 类型错误 : can not initialize DMatrix from DataFrame,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35402461/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com