xgboost中的dmatrix如何存储数据
我在 c++ 和 python 中都使用 xgboost 模型,第一次,它们给了我不同的预测。 在我修改python中的代码后,我使用pandas来加载数据,但是现在,我使用dmatrix来加载数据。然后,它们是相同的。
#data = pd.read_csv(data_path,names = features,header = None, dtype=dtypes)
#test_x = data[features].values
data = xgb.DMatrix(data_path)
xgboost中的dmatrix如何存储数据?
i use xgboost model both in c++ and python,at first time,they give me different predicts.
after i modify the code in python, i used pandas to load data,but now,i use dmatrix to load data.then,they are same.
#data = pd.read_csv(data_path,names = features,header = None, dtype=dtypes)
#test_x = data[features].values
data = xgb.DMatrix(data_path)
How does the dmatrix in xgboost store data?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论