-
Hi, As I've some batches for initial training, I wanted to see the metrics once the batch has been loaded, trained with each one. The model gets changing each time I do a metric.update, so that works... Do I need to also save/store the CM object (cm = metrics.ConfusionMatrix() and metrics.ROCAUC() ) or those can be obtained from the model itself somehow? Thanks |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
Hey @iranzo, you'll have to persist your metric objects, the models only store the learnt parameters. Hope it helps :) |
Beta Was this translation helpful? Give feedback.
Hey @iranzo, you'll have to persist your metric objects, the models only store the learnt parameters. Hope it helps :)