Struct wyrm::HogwildParameter [] [src]

pub struct HogwildParameter {
    pub value: RefCell<Arr>,
    pub squared_gradients: RefCell<Arr>,
    pub moments: RefCell<Arr>,
    // some fields omitted
}

Struct used to hold parameters that need to be shared among multiple ParameterNodes for asynchronous, parallel optimization.

Fields

Methods

impl HogwildParameter
[src]

[src]

Create a new parameter object.

[src]

[src]

Trait Implementations

impl Sync for HogwildParameter
[src]

impl Clone for HogwildParameter
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

impl Debug for HogwildParameter
[src]

[src]

Formats the value using the given formatter. Read more

Auto Trait Implementations