Event files not detected by tensorboard
My event files are not automatically detected by tensorboard, I need to specifically set the file extension to something along the lines of events.out.tfevents for data to appear in tensorboard.
This is strange. According to Tensorboard code [1][2], any file containing tfevents in the file name will be treated as event file.
events.out.tfevents is a hardcoded prefix in the EventFileWriter, however this is not strictly required.
Sure, but this lib doesn't seem to automatically set the extension, or am I missing something?
Ah, I see the problem. No it does not, the file name is passed as a parameter to the constructor for flexibility. Maybe it is better to use an auto generated file name just like EventFileWriter does, and the user only need to specify the output directory.
Yeah, I think that would be the way to go.
I sent you three issues, I'll see if I'm able to work on them a bit in a week or so.