| 14 | |
| 15 | #[derive(Debug, Clone, PartialEq)] |
| 16 | pub enum HyperParamValue { |
| 17 | Int(i64), |
| 18 | Float(f64), |
| 19 | Bool(bool), |
| 20 | } |
| 21 | |
| 22 | impl HyperParamValue { |
| 23 | pub fn as_i64(&self) -> Option<i64> { |
nothing calls this directly
no outgoing calls
no test coverage detected