Computes the margin score for the given data point @param x the input vector @return the margin score
(Vec x)
| 384 | * @return the margin score |
| 385 | */ |
| 386 | private double getPreScore(Vec x) |
| 387 | { |
| 388 | return k.evalSum(vecs, accelCache, alpha.getBackingArray(), x, 0, alpha.size()); |
| 389 | } |
| 390 | |
| 391 | /** |
| 392 | * Returns the binary logistic regression score |
no test coverage detected