Need to document the recommended way of using `SummaryWriter`: `with SummaryWriter` vs. `sw = SummaryWriter(...)`. Add an FAQ section in README. 1. How to initialize a `SummaryWriter` instance: `with SummaryWriter(...)` or `sw = SummaryWriter(..)`? 2. What is the meaning of `verbose`? 3. Should I call `flush()` on a `SummaryWriter` object? 4. How to improve the logging performance? 5. Can I use the same tag for adding different types, e.g. image and histogram? No. One of them is going to be overwritten by the other.
Need to document the recommended way of using
SummaryWriter:with SummaryWritervs.sw = SummaryWriter(...).Add an FAQ section in README.
SummaryWriterinstance:with SummaryWriter(...)orsw = SummaryWriter(..)?verbose?flush()on aSummaryWriterobject?