Struct bandit::softmax::AnnealingSoftmaxConfig [] [src]

pub struct AnnealingSoftmaxConfig {
    pub cooldown_factor: f64,
}

Fields

The higher the value the faster the algorithms tends toward selecting the arm with highest reward. Should be a number between [0, 1.0)

Trait Implementations

impl Debug for AnnealingSoftmaxConfig
[src]

[src]

Formats the value using the given formatter. Read more

impl PartialEq for AnnealingSoftmaxConfig
[src]

[src]

This method tests for self and other values to be equal, and is used by ==. Read more

[src]

This method tests for !=.

impl Copy for AnnealingSoftmaxConfig
[src]

impl Clone for AnnealingSoftmaxConfig
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

Auto Trait Implementations