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

Enum HyperParamValue

crates/openquant/src/hyperparameter_tuning.rs:16–20  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

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

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected