| 29 | |
| 30 | #[derive(Clone, Debug, Default)] |
| 31 | pub struct ClassificationModelFingerprint { |
| 32 | linear_effect: Option<Effect>, |
| 33 | non_linear_effect: Option<Effect>, |
| 34 | pair_wise_effect: Option<PairwiseEffect>, |
| 35 | } |
| 36 | |
| 37 | impl RegressionModelFingerprint { |
| 38 | pub fn new() -> Self { |
nothing calls this directly
no outgoing calls
no test coverage detected