pub struct ParticleSwarm<B: Backend> { /* private fields */ }Expand description
Particle Swarm Optimization strategy.
§Example
use burn::backend::Flex;
use rlevo_evolution::algorithms::metaheuristic::pso::{ParticleSwarm, PsoConfig};
let strategy = ParticleSwarm::<Flex>::new();
let params = PsoConfig::default_for(32, 10);
let _ = (strategy, params);Implementations§
Trait Implementations§
Source§impl<B: Clone + Backend> Clone for ParticleSwarm<B>
impl<B: Clone + Backend> Clone for ParticleSwarm<B>
Source§fn clone(&self) -> ParticleSwarm<B>
fn clone(&self) -> ParticleSwarm<B>
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl<B: Copy + Backend> Copy for ParticleSwarm<B>
Source§impl<B: Default + Backend> Default for ParticleSwarm<B>
impl<B: Default + Backend> Default for ParticleSwarm<B>
Source§fn default() -> ParticleSwarm<B>
fn default() -> ParticleSwarm<B>
Returns the “default value” for a type. Read more
Source§impl<B: Backend> Strategy<B> for ParticleSwarm<B>
impl<B: Backend> Strategy<B> for ParticleSwarm<B>
Source§fn init(
&self,
params: &PsoConfig,
rng: &mut dyn Rng,
device: &<B as BackendTypes>::Device,
) -> PsoState<B>
fn init( &self, params: &PsoConfig, rng: &mut dyn Rng, device: &<B as BackendTypes>::Device, ) -> PsoState<B>
Build the initial state. Read more
Source§fn ask(
&self,
params: &PsoConfig,
state: &PsoState<B>,
rng: &mut dyn Rng,
device: &<B as BackendTypes>::Device,
) -> (Tensor<B, 2>, PsoState<B>)
fn ask( &self, params: &PsoConfig, state: &PsoState<B>, rng: &mut dyn Rng, device: &<B as BackendTypes>::Device, ) -> (Tensor<B, 2>, PsoState<B>)
Propose the next population. Read more
Auto Trait Implementations§
impl<B> Freeze for ParticleSwarm<B>
impl<B> RefUnwindSafe for ParticleSwarm<B>
impl<B> Send for ParticleSwarm<B>
impl<B> Sync for ParticleSwarm<B>
impl<B> Unpin for ParticleSwarm<B>
impl<B> UnsafeUnpin for ParticleSwarm<B>
impl<B> UnwindSafe for ParticleSwarm<B>
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
Source§impl<C> CloneExpand for Cwhere
C: Clone,
impl<C> CloneExpand for Cwhere
C: Clone,
fn __expand_clone_method(&self, _scope: &mut Scope) -> C
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more