日安!我最初在R中的h2o库上构建了一个深度学习估计器,我正在考虑使用h2o 4gpu库来构建它,以加快这个过程。有谁知道h2o 4gpu中是否有一个与h2o中的h2o.DeepLearningEstimator函数等效的函数?如果没有,有没有一种方法可以让我的h2o函数结合使用GPU?谢谢你!
我在R中使用了以下函数:
model_one = h2o.deeplearning(x = independent_variables,
training_frame = results_h2o,
autoencoder = TRUE,
#reproducible = TRUE,
seed = -1,
hidden = c(2000,1000,500,250,125,50),
epochs = 30,
activation = "Tanh"#
)
1条答案
按热度按时间vfh0ocws1#
H2O深度学习不使用GPU。但是,您可以使用参数fast_mode来加速训练。