TensorFlow - Importing data from a TensorBoard TFEvent file?

前端 未结 7 1753
刺人心
刺人心 2020-12-04 08:50

I\'ve run several training sessions with different graphs in TensorFlow. The summaries I set up show interesting results in the training and validation. Now, I\'d like to ta

7条回答
  •  甜味超标
    2020-12-04 09:37

    You can simply use:

    tensorboard --inspect --event_file=myevents.out
    

    or if you want to filter a specific subset of events of the graph:

    tensorboard --inspect --event_file=myevents.out --tag=loss
    

    If you want to create something more custom you can dig into the

    /tensorflow/python/summary/event_file_inspector.py 
    

    to understand how to parse the event files.

提交回复
热议问题