h2o-tutorials
h2o-tutorials copied to clipboard
Error in deeplearning.Rmd
The following line generates an error (Line 78):
plotC( "DL", h2o.deeplearning(1:2,3, spiral,epochs=1e3))
The error is:
Error in h2o.deeplearning(1:2, 3, spiral, epochs = 1000) : argument 'training_frame' is missing, with no default
I found the following edit removes the error:
plotC( "DL", h2o.deeplearning(1:2,3, training_frame = spiral,epochs=1e3))
Is this the right thing to do?
@navdeep-G Can you take a look at the deeplearning.Rmd file to see if this is still producing an error?