If I have multiple Tensorboard files, how can they be combined into a single Tensorboard file?
Say in keras the following model.fit() was called multiple times for a single model, for example in a typical GAN implementation:
for i in range(num_epochs):
model.fit(epochs=1, callbacks=Tensorboard())
This will produce a new Tensorboard file each time, which is not useful. Not sure if there is way to have Tensorboard append, or not produce unique time-stamped files each callback call.