MCPcopy Create free account
hub / github.com/Open-Quant/openquant / RegressionPredictor

Interface RegressionPredictor

crates/openquant/src/fingerprint.rs:15–17  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

13}
14
15pub trait RegressionPredictor {
16 fn predict(&self, x: &[Vec<f64>]) -> Vec<f64>;
17}
18
19pub trait ClassificationPredictor {
20 fn predict_proba(&self, x: &[Vec<f64>]) -> Vec<f64>;

Callers

nothing calls this directly

Implementers 1

fingerprint.rscrates/openquant/tests/fingerprint.rs

Calls

no outgoing calls

Tested by

no test coverage detected