Closed
Description
I have a neural network that generates text during ~356.000 steps.
Every 50.000 steps I save a summary containing a table of text (100 rows, 5 columns).
When running tensorboard it only displays the results of the last step.
I create the output like this:
from tensorboard import summary as tb_summary
summary_protobuf = tb_summary.text_pb('label', [['c0', ''c1', 'c2', 'c3', 'c4']] * 100)
summary_writer.add_summary(summary_protobuf, global_step=step)
summary_writer.flush()
Sometimes tensorboard also throws this on the commandline:
Exception ignored in: <function _get_module_lock.<locals>.cb at 0x7f48cbe09378>
Traceback (most recent call last):
File "<frozen importlib._bootstrap>", line 174, in cb
KeyError: ('markdown.extensions.tables',)