(self)
| 306 | self.trainer.monitors.put_scalar('HostFreeMemory (GB)', ram_gb) |
| 307 | |
| 308 | def _free_ram_gb(self): |
| 309 | return psutil.virtual_memory().available / 1024**3 |
| 310 | |
| 311 | |
| 312 | class ThroughputTracker(Callback): |
no outgoing calls
no test coverage detected