Reputation: 17
I am using code that requires tensorflow version 1.15.
However, I would like to record the amount of memory used after each training epoch of a BERT model. In tensorflow version 2, this can be achieved by tf.config.experimental.get_memory_usage
. How could I do the same with version 1.15? If it's not a feature of tensorflow, is there another way I could record memory use after each epoch?
Thanks in advance and apologies if simple question - a beginner
EDIT: I am interested in GPU usage
Upvotes: 1
Views: 273