now That we cannot upload the logs to tensorboard dev I cannot transform the information from the logs to DataFrame as easily as before. So I wante to ask if anyone knows how to extract the data stored in the train and test logs programatically, that is, without using:
tensorboard --logdir=path_to_logs
in the console command.
I cannot do anything if first I cannot understand how I can unpack the data stores in the logs.
You can use
EventFileReaderin TensorFlow to read event files, created by TensorFlow for TensorBoard logs. Here is a script I used before, printing information about each event in the TensorBoard logs, including the step, wall time and value.