| 8 | |
| 9 | #[derive(Clone, Debug, Default)] |
| 10 | pub struct PairwiseEffect { |
| 11 | pub raw: BTreeMap<String, f64>, |
| 12 | pub norm: BTreeMap<String, f64>, |
| 13 | } |
| 14 | |
| 15 | pub trait RegressionPredictor { |
| 16 | fn predict(&self, x: &[Vec<f64>]) -> Vec<f64>; |
nothing calls this directly
no outgoing calls
no test coverage detected