Struct vlfeat_sys::VlSvmStatistics_ [] [src]

#[repr(C)]
pub struct VlSvmStatistics_ { pub status: VlSvmSolverStatus, pub iteration: vl_size, pub epoch: vl_size, pub objective: f64, pub regularizer: f64, pub loss: f64, pub dualObjective: f64, pub dualLoss: f64, pub dualityGap: f64, pub scoresVariation: f64, pub elapsedTime: f64, }

@brief SVM statistics ** This structure contains statistics characterising the state of ** the SVM solver, such as the current value of the objective function. ** ** Not all fields are used by all solvers.

Fields

< Solver status.

< Solver iteration.

< Solver epoch (iteration / num samples).

< Objective function value.

< Regularizer value.

< Loss value.

< Dual objective value.

< Dual loss value.

< Duality gap = objective - dualObjective.

< Variance of the score updates.

< Time elapsed from the start of training.

Trait Implementations

impl Debug for VlSvmStatistics_
[src]

Formats the value using the given formatter.

impl Copy for VlSvmStatistics_
[src]

impl Clone for VlSvmStatistics_
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more