pub struct ProbeResult {
pub layer: usize,
pub concept: String,
pub accuracy: f32,
pub is_separable: bool,
pub direction: Option<Vec<f32>>,
}Expand description
Probing classifier result
Fields§
§layer: usizeLayer probed
concept: StringConcept being probed for
accuracy: f32Classification accuracy
is_separable: boolWhether the concept is linearly separable at this layer
direction: Option<Vec<f32>>Direction vector (if separable)
Trait Implementations§
Source§impl Clone for ProbeResult
impl Clone for ProbeResult
Source§fn clone(&self) -> ProbeResult
fn clone(&self) -> ProbeResult
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 ProbeResult
impl RefUnwindSafe for ProbeResult
impl Send for ProbeResult
impl Sync for ProbeResult
impl Unpin for ProbeResult
impl UnwindSafe for ProbeResult
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