I’m using TensorFlow.js in Node, calling model.fit() for each batch with an epoch size of 3, and saving events using TensorBoard as described in the TensorBoard/TensorFlow.js documentation. I see the event file growing after each fit
call.
TensorBoard only shows three epochs worth of data though, as if it’s only using data from a single fit
call.
Is something additional needed to get TensorBoard to display across multiple batches/fit
calls?