August 2017
Beginner to intermediate
340 pages
8h 42m
English
H2O exposes slightly different way of building models; however, it is unified among all H2O models. There are three basic building blocks:
Prior to building our model, we need to construct parameters for the DeepLearning algorithm:
import _root_.hex.deeplearning._ import DeepLearningParameters.Activation val dlParams = new DeepLearningParameters() dlParams._train = trainingHF._key dlParams._valid = testHF._key dlParams._response_column = "label" dlParams._epochs ...
Read now
Unlock full access