-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathcheckpoint.go
92 lines (81 loc) · 1.91 KB
/
checkpoint.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
package callback
import (
"fmt"
"strings"
)
type CheckpointCompare string
var (
CheckpointCompareMin CheckpointCompare = "min"
CheckpointCompareMax CheckpointCompare = "max"
)
type Checkpoint struct {
OnEvent Event
OnMode Mode
Loss bool
MetricName string
Compare CheckpointCompare
SaveDir string
bestValue float64
}
func (c *Checkpoint) GetSaveDir() string {
return c.SaveDir
}
func (c *Checkpoint) Init() error {
if c.OnEvent == "" {
return fmt.Errorf("no OnEvent set for callback")
}
if c.OnMode == "" {
return fmt.Errorf("no OnMode set for callback")
}
if c.Compare == "" {
return fmt.Errorf("no comparison value provided")
}
if c.SaveDir == "" {
return fmt.Errorf("no save dir provided")
}
if !c.Loss && c.MetricName == "" {
return fmt.Errorf("unhandled checkpoint mode")
}
return nil
}
func (c *Checkpoint) Call(event Event, mode Mode, epoch int, batch int, logs []Log) ([]Action, error) {
if event != c.OnEvent || mode != c.OnMode {
return []Action{ActionNop}, nil
}
var metricValue float64
if c.Loss {
found := false
for _, log := range logs {
if strings.ToLower(log.Name) == "loss" {
metricValue = log.Value
found = true
}
}
if !found {
return []Action{ActionNop}, fmt.Errorf("loss not present in logs")
}
} else if c.MetricName != "" {
found := false
for _, log := range logs {
if strings.ToLower(log.Name) == strings.ToLower(c.MetricName) {
metricValue = log.Value
found = true
}
}
if !found {
return []Action{ActionNop}, fmt.Errorf("metric %s does not exist for the model", c.MetricName)
}
}
if c.Compare == CheckpointCompareMin {
if metricValue < c.bestValue {
c.bestValue = metricValue
return []Action{ActionSave}, nil
}
} else if c.Compare == CheckpointCompareMax {
if metricValue > c.bestValue {
c.bestValue = metricValue
return []Action{ActionSave}, nil
}
}
return []Action{ActionNop}, nil
}