pub struct InterpretabilityReport {
pub model_info: ModelInfo,
pub total_neurons_tracked: usize,
pub circuits_discovered: usize,
pub dead_neurons: usize,
pub most_active_neurons: Vec<((usize, usize), f32)>,
pub stats: InterpretabilityStats,
}Expand description
Interpretability report
Fields§
§model_info: ModelInfoModel information
total_neurons_tracked: usizeTotal neurons tracked
circuits_discovered: usizeCircuits discovered
dead_neurons: usizeDead neurons count
most_active_neurons: Vec<((usize, usize), f32)>Most active neurons
stats: InterpretabilityStatsStatistics
Trait Implementations§
Source§impl Clone for InterpretabilityReport
impl Clone for InterpretabilityReport
Source§fn clone(&self) -> InterpretabilityReport
fn clone(&self) -> InterpretabilityReport
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 InterpretabilityReport
impl RefUnwindSafe for InterpretabilityReport
impl Send for InterpretabilityReport
impl Sync for InterpretabilityReport
impl Unpin for InterpretabilityReport
impl UnwindSafe for InterpretabilityReport
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