如何在 kaggle 内核中使用 h2o4gpu?

How do I use h2o4gpu in kaggle kernel?

我正在尝试设置要在 Kaggle 竞赛中使用的 h2o4gpu 库,但我还没有找到任何对 install/setup 环境有用的资源。我如何逐步设置它?

我已尝试使用此来源的 R 包安装指南:https://github.com/h2oai/h2o4gpu

但我仍然无法让它工作。我正在使用下面的代码,它为 R 安装了 h2o4gpu 包,但我仍然收到错误。

if (!require(devtools)) install.packages("devtools")
devtools::install_github("h2oai/h2o4gpu", subdir = "src/interface_r")

我希望有一个简单的分步指南。谢谢。

R 的 h2o4gpu 包还需要安装 h2o4gpu python 包。来自 docs:

At this point, you should have installed the H2O4GPU Python package successfully.

您遇到的错误看起来与缺少 python 包的描述相符,在此处的 "Python issues" 下进行了描述:https://github.com/h2oai/h2o4gpu/tree/master/src/interface_r

如果你想在 Kaggle 内核中使用 h2o4gpu,我不确定这是否可行,因为 Kaggle 目前在使用 GPU 时禁用外部包。