Dear all,
I have just started using H2O in R programming and I really love it. Currently, I'm doing some analysis using h2o.deeplearning function.
I want to make classification model with multiple output, like y1, y2, .... yn
Can I use h2o.deeplearning function?
Cause I have done a naive test as simple as:
test.dl <- h2o.deeplearning(x = 1:875, y = 876:877, training_frame = train.hex)
x for features and y for targets (y1 and y2). But then some error messages come up :
Error in .h2o.validateModelParameters(algo, param_values, h2oRestApiVersion) :
Response column 'c("X876", "X877")' not found in the training frame.
I'm sure that X876 and X877 still in training frame. So how can I use h2o.deeplearning for multiple output?
Thank you :)