Method
setTruePositive
////////////////////////////////////////////////// INPUT FUNCTIONS
Source from the content-addressed store, hash-verified
| 23 | // INPUT FUNCTIONS |
| 24 | // |
| 25 | void GST::setTruePositive(float v) |
| 26 | { |
| 27 | TP = v; |
| 28 | AP = TP + FN; |
| 29 | }; |
| 30 | |
| 31 | |
| 32 | void GST::setTrueNegative(float v) |