[][src]Struct tensorflow_proto::tensorflow::tpu::MdlAdagradLightParameters

pub struct MdlAdagradLightParameters {
    pub l2: f32,
    pub lr_power: f32,
    pub min_servable_mdl_benefit: f32,
    pub mdl_mix_in_margin: f32,
    pub mdl_benefit_rampup_coeff: f32,
    pub mdl_min_weight: f32,
    pub benefit_revisit_scale: f32,
    pub max_event_benefit: f32,
    pub max_total_benefit: f32,
    pub mdl_hard_limit: f32,
    pub hard_limit_min_benefit: bool,
    pub mdl_regularize: bool,
    pub initial_accumulator: f32,
    pub initial_weight: f32,
    pub initial_benefit: f32,
}

Variant of algorithm in http://proceedings.mlr.press/v44/shamir15.pdf

Fields

l2: f32lr_power: f32min_servable_mdl_benefit: f32mdl_mix_in_margin: f32mdl_benefit_rampup_coeff: f32mdl_min_weight: f32benefit_revisit_scale: f32max_event_benefit: f32max_total_benefit: f32mdl_hard_limit: f32hard_limit_min_benefit: boolmdl_regularize: boolinitial_accumulator: f32initial_weight: f32initial_benefit: f32

Trait Implementations

impl Clone for MdlAdagradLightParameters[src]

impl Debug for MdlAdagradLightParameters[src]

impl Default for MdlAdagradLightParameters[src]

impl Message for MdlAdagradLightParameters[src]

impl PartialEq<MdlAdagradLightParameters> for MdlAdagradLightParameters[src]

impl StructuralPartialEq for MdlAdagradLightParameters[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.