pub struct NeuralProcessorStats {
pub total_operations: usize,
pub successful_adaptations: usize,
pub average_performance_improvement: f64,
pub most_effective_strategy: OptimizationStrategy,
pub neural_network_accuracy: f64,
pub rl_agent_reward: f64,
pub pattern_memory_hit_rate: f64,
pub transformer_attention_score: f64,
}
Expand description
Statistics for neural processor performance
Fields§
§total_operations: usize
§successful_adaptations: usize
§average_performance_improvement: f64
§most_effective_strategy: OptimizationStrategy
§neural_network_accuracy: f64
§rl_agent_reward: f64
§pattern_memory_hit_rate: f64
§transformer_attention_score: f64
Trait Implementations§
Source§impl Clone for NeuralProcessorStats
impl Clone for NeuralProcessorStats
Source§fn clone(&self) -> NeuralProcessorStats
fn clone(&self) -> NeuralProcessorStats
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreAuto Trait Implementations§
impl Freeze for NeuralProcessorStats
impl RefUnwindSafe for NeuralProcessorStats
impl Send for NeuralProcessorStats
impl Sync for NeuralProcessorStats
impl Unpin for NeuralProcessorStats
impl UnwindSafe for NeuralProcessorStats
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<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
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