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

pub struct FtrlParameters {
    pub l1: f32,
    pub l2: f32,
    pub lr_power: f32,
    pub initial_accum: f32,
    pub initial_linear: f32,
}

https://www.tensorflow.org/api_docs/python/tf/train/FtrlOptimizer https://github.com/tensorflow/tensorflow/blob/c19e29306ce1777456b2dbb3a14f511edf7883a8/tensorflow/core/kernels/training_ops.cc#L192

Fields

l1: f32l2: f32lr_power: f32initial_accum: f32initial_linear: f32

Trait Implementations

impl Clone for FtrlParameters[src]

impl Debug for FtrlParameters[src]

impl Default for FtrlParameters[src]

impl Message for FtrlParameters[src]

impl PartialEq<FtrlParameters> for FtrlParameters[src]

impl StructuralPartialEq for FtrlParameters[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.