I would like to retrieve metrics of speed of the model on validation data, in order to compare different parameters and their impact on speed. For example, the time spent per batch on validation data. Or, since I use hyperopt, the time spent per iteration/trial, also on validation data.
Is there any way to do so with the outputs of fit() with validation_split>0, predict() or evaluate() or the attributes of Trials in hyperopt?
If not, I guess I'll have to put time landmarks in the code but it would not be ideal for me.
Thank you!