I was trying to train using h2o.automl()
. But the training exited due to timeout. I know max_runtime_secs
can be set to higher numbers. But it would be great if we can train for 1 hour, then save it somewhere. Again train it next day from where it was left in day 1.
How to do that ?
I have tried by setting project_name
- but nothing is saved on exit. So if we turn off pc and restart, it is of no use.
I have used the following code for this :
library( h2o )
h2o.init( nthreads = -1, max_mem_size = '10240m' )
train = h2o.importFile( 'train.csv' )
automl_model = h2o.automl( y = 'outcome', training_frame = train, nfolds = 3, max_runtime_secs = 1800,
project_name = 'automl_aus_tennis' )
Link to train.csv : http://www.mediafire.com/file/qj7yiju15ncgnax/train.csv