Flushes the underlying summary writers.
(self)
| 62 | return self._summary_writers[relative_path] |
| 63 | |
| 64 | def flush(self): |
| 65 | """Flushes the underlying summary writers.""" |
| 66 | if self._enabled: |
| 67 | tf.nest.map_structure(tf.summary.flush, self._summary_writers) |
| 68 | |
| 69 | def write_summaries(self, summary_dict): |
| 70 | """Writes summaries for the given dictionary of values. |
no outgoing calls
no test coverage detected