Return the default monitors, which will be used in :class:`TrainConfig` and :meth:`Trainer.train_with_defaults`. They are: 1. TFEventWriter() 2. JSONWriter() 3. ScalarPrinter()
()
| 36 | |
| 37 | |
| 38 | def DEFAULT_MONITORS(): |
| 39 | """ |
| 40 | Return the default monitors, |
| 41 | which will be used in :class:`TrainConfig` and :meth:`Trainer.train_with_defaults`. |
| 42 | They are: |
| 43 | |
| 44 | 1. TFEventWriter() |
| 45 | 2. JSONWriter() |
| 46 | 3. ScalarPrinter() |
| 47 | """ |
| 48 | return [TFEventWriter(), JSONWriter(), ScalarPrinter()] |
| 49 | |
| 50 | |
| 51 | class TrainConfig(object): |
no test coverage detected