I am running a subclassed model and update parameters using tf.GradientTape()
. While the model runs, I continue getting the following message every few seconds.
<tf.Variable 'UnreadVariable' shape=() dtype=int64, numpy=1>
The last number after numpy=
continues increasing. The model seems to run fine, after one epoch I get all the print
statements and can retrieve model’s loss but message continues being printed and continues increasing this last integer.
Is it something I should be concerned about or is it some kind of feature? I found this Stackoverflow post but the response there is not very clear to me.
Thank you for your help!