Abhi
Abhi

Reputation: 111

How to use SummarySaver (monitor) in TF contrib.learn.estimator?

I would like to know how to use SummarySaver monitor with contrib.learn.estimator

I understand and used ValidationMonitor but I am struggling on

  1. Understanding the use case for SummarySaver
  2. Using it in conjunction with contrib.learn.estimator

As an aside, what is the best practice to add summaries that are not metrics defined in ValidationMonitor ?

Upvotes: 1

Views: 309

Answers (1)

David Wong
David Wong

Reputation: 748

  • SummarySaver is for writing summary out every n steps
  • manual summary can be most easily done by using tf.scalar_summary

Upvotes: 1

Related Questions