How do know how many deep learning epochs were done, from R?

情到浓时终转凉″ 提交于 2019-12-05 17:10:45

If your model is called m, then to get just the number of epochs trained: last(m@model$scoring_history$epochs)

To see what other information is available (which is literally everything you can see in the Flow interface) and how to access it, use str(m)

Also be aware of this command: summary(m) In addition to what is shown with print(m) it adds this section (for a deeplearning model):

Scoring History: 
            timestamp   duration training_speed    epochs iterations       samples training_MSE training_deviance training_r2
1 2016-04-14 11:35:46  0.000 sec                  0.00000          0      0.000000
2 2016-04-14 11:35:52  5.218 sec 15139 rows/sec  10.00000          1  77150.000000      0.00000           0.00000     0.07884
...
7 2016-04-14 11:36:18 31.346 sec 25056 rows/sec 100.00000         10 771500.000000      0.00000           0.00000     0.72245

I.e. You can see total number of epochs by looking at the last row.

BTW, this is different to h2o's summary() command when applied to a data frame; in that case it behaves like R's built-in summary function, and shows statistics on each column in the data frame.

Elrond

I'm quite confident in stating that the answer of Darren Cook is valid only when overwrite_with_best_model=FALSE. Anyway, this parameter is set to be TRUE by default, so the previous answer can be quite misleading for reasons that you can partially find here. You can check what I mean in the following output obtained tuning the network with h2o.grid and using m@model$scoring_history as Darren suggested.

epochs     validation_classification_error
0.00000    0.46562
1.43150    0.50000
100.31780  0.46562

As you can see, if overwrite_with_best_model=TRUE than the functions saves the best model in the last iteration, thus solution of Darren always corresponds in the maximum number of epochs. Assuming that you are tuning your model, I recommend the following solution:

epochsList = m@model$scoring_history$epochs
bestEpochIndex = which.min(m@model$scoring_history$validation_classification_error)
bestEpoch = epochsList[bestEpochIndex]
print(sprintf("The best epoch is: %d", bestEpoch))
标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!