Skip to content

logs5:Consolidate logs

Higepon Taro Minowa edited this page Apr 18, 2018 · 1 revision

Consolidate logs

  filename_ =
      strings::Printf("%s.out.tfevents.%010lld.%s%s", file_prefix_.c_str(),
                      static_cast<int64>(time_in_seconds),
                      port::Hostname().c_str(), file_suffix_.c_str());
  • We should check how tensorflow name the file-> See above.
  • Turns out tflog and normal log have different event log and they work fine together with tensorboard if they are in a same directory. See the graphs below.
  • Observations.
    • msec data looks wrong. We should check.
      • Actually it makes sense. The peaks are when saving model files.
      • It's going up because average len goes up (more computation when doing beam search)
    • avg_len goes up which maybe good
    • reward didn't go up much.
      • Okay I think loss and reward graph look very similar and which is not good at all.
      • I'm taking a look at reward implementation.
        • If I remember we should normalize reward. Let's do it.
        • let's divide by max_len.
    • would be great if we could match steps, somehow
  • Log 4: results of runs (TensorBoard graphs, any other significant observations), separated by type of run (e.g. by environment the agent is being trained in)

Clone this wiki locally