pub enum Message {
NewRun {
name: String,
solver: String,
max_iter: u64,
target_cost: f64,
init_param: Option<Vec<f64>>,
settings: KV,
selected: HashSet<String>,
},
Samples {
name: String,
iter: u64,
time: Duration,
termination_status: TerminationStatus,
kv: KV,
},
FuncCounts {
name: String,
iter: u64,
kv: HashMap<String, u64>,
},
Param {
name: String,
iter: u64,
param: Vec<f64>,
},
BestParam {
name: String,
iter: u64,
param: Vec<f64>,
},
Termination {
name: String,
termination_status: TerminationStatus,
},
}
Expand description
Enum used to encode information sent to spectator.
Variants§
NewRun
Register a new run
Fields
Samples
A set of metrics samples sent after an iteration
Fields
§
time: Duration
Time needed for this iteration
§
termination_status: TerminationStatus
Current termination_status
FuncCounts
Function evaluation counts (Cost function, gradient, Hessian, …)
Fields
Param
Parameter vector
Fields
BestParam
Current best parameter vector
Fields
Termination
Termination
Implementations§
Trait Implementations§
Source§impl<'de> Deserialize<'de> for Message
impl<'de> Deserialize<'de> for Message
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
impl StructuralPartialEq for Message
Auto Trait Implementations§
impl Freeze for Message
impl RefUnwindSafe for Message
impl Send for Message
impl Sync for Message
impl Unpin for Message
impl UnwindSafe for Message
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
§impl<SS, SP> SupersetOf<SS> for SPwhere
SS: SubsetOf<SP>,
impl<SS, SP> SupersetOf<SS> for SPwhere
SS: SubsetOf<SP>,
§fn to_subset(&self) -> Option<SS>
fn to_subset(&self) -> Option<SS>
The inverse inclusion map: attempts to construct
self
from the equivalent element of its
superset. Read more§fn is_in_subset(&self) -> bool
fn is_in_subset(&self) -> bool
Checks if
self
is actually part of its subset T
(and can be converted to it).§fn to_subset_unchecked(&self) -> SS
fn to_subset_unchecked(&self) -> SS
Use with care! Same as
self.to_subset
but without any property checks. Always succeeds.§fn from_subset(element: &SS) -> SP
fn from_subset(element: &SS) -> SP
The inclusion map: converts
self
to the equivalent element of its superset.