Skip to main content

Percentile

Struct Percentile 

Source
pub struct Percentile {
    pub p: f64,
    pub goal: Goal,
    pub warmup: usize,
    pub startup: usize,
}
Expand description

Prune what is doing worse at this step than p percent of the others.

The median pruner is p = 50, which is why there is no Median scheme — median is a constructor. What is compared is each trial’s best so far and not its latest: one bad epoch is noise.

Fields§

§p: f64

Between 0 and 100, and the share that is kept — a smaller one prunes more, the way round optuna reads it. At 50 the better half survives; at 0 everything but the best does not.

§goal: Goal

Which way is better.

§warmup: usize

No verdict before this many reports, however bad it looks. What buys a slow starter the epochs it needs.

§startup: usize

No verdict until this many other trials have reached this step. Without it the first trial to finish becomes the bar for everybody.

Implementations§

Source§

impl Percentile

Source

pub fn median(goal: Goal, warmup: usize, startup: usize) -> Self

The median: p = 50.

Source

pub fn verdict(&self, mine: &[f64], others: &[Vec<f64>]) -> Verdict

Continue, or the reason not to.

Trait Implementations§

Source§

impl Clone for Percentile

Source§

fn clone(&self) -> Percentile

Returns a duplicate of the value. Read more
1.0.0 · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl Debug for Percentile

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl Display for Percentile

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl From<Percentile> for Pruner

Source§

fn from(rule: Percentile) -> Self

Converts to this type from the input type.
Source§

impl PartialEq for Percentile

Source§

fn eq(&self, other: &Percentile) -> bool

Tests for self and other values to be equal, and is used by ==.
1.0.0 · Source§

fn ne(&self, other: &Rhs) -> bool

Tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
Source§

impl StructuralPartialEq for Percentile

Auto Trait Implementations§

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> ToOwned for T
where T: Clone,

Source§

type Owned = T

The resulting type after obtaining ownership.
Source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
Source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
Source§

impl<T> ToString for T
where T: Display + ?Sized,

Source§

fn to_string(&self) -> String

Converts the given value to a String. Read more
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

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

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.