pub struct RvmConfig {
pub kernel: RvmKernel,
pub use_bias: bool,
pub max_iter: usize,
pub tol: f64,
}Expand description
Configuration for the kernel Rvm.
Fields§
§kernel: RvmKernelKernel (default Gaussian RBF with length-scale 1.0).
use_bias: boolWhether to append a constant bias basis function (default true).
max_iter: usizeMaximum evidence-maximisation iterations (default 300).
tol: f64Convergence tolerance on log α (default 1 × 10⁻⁴).
Trait Implementations§
Auto Trait Implementations§
impl Freeze for RvmConfig
impl RefUnwindSafe for RvmConfig
impl Send for RvmConfig
impl Sync for RvmConfig
impl Unpin for RvmConfig
impl UnsafeUnpin for RvmConfig
impl UnwindSafe for RvmConfig
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