| 13 | ) |
| 14 | |
| 15 | type Checkpoint struct { |
| 16 | OnEvent Event |
| 17 | OnMode Mode |
| 18 | Loss bool |
| 19 | MetricName string |
| 20 | Compare CheckpointCompare |
| 21 | SaveDir string |
| 22 | |
| 23 | bestValue float64 |
| 24 | } |
| 25 | |
| 26 | func (c *Checkpoint) GetSaveDir() string { |
| 27 | return c.SaveDir |
nothing calls this directly
no outgoing calls
no test coverage detected