| 131 | } |
| 132 | |
| 133 | type BinaryAccuracy struct { |
| 134 | Name string |
| 135 | Confidence float64 |
| 136 | Average bool |
| 137 | Precision int |
| 138 | total float64 |
| 139 | count float64 |
| 140 | } |
| 141 | |
| 142 | func (m *BinaryAccuracy) Init() { |
| 143 | if m.Precision == 0 { |
nothing calls this directly
no outgoing calls
no test coverage detected