pub enum Probe {
Mattered,
Redundant,
Inconclusive,
}Expand description
What a counterfactual probe found about one intervention.
The verdict is counterfactual::ProbeVerdict’s, restated in this
module’s terms so the label’s semantics stay where the label is. Producing
one costs a model run per intervention; deciding what it means costs
nothing and belongs beside [label_of].
Variants§
Mattered
Replayed without the intervention, the run went somewhere else. The steer was load-bearing.
Redundant
Replayed without it, the run tracked the recording anyway. The steer changed nothing.
Inconclusive
The replay departed before the probe point, so the question was never posed. Not evidence in either direction.
Trait Implementations§
impl Copy for Probe
impl Eq for Probe
impl StructuralPartialEq for Probe
Auto Trait Implementations§
impl Freeze for Probe
impl RefUnwindSafe for Probe
impl Send for Probe
impl Sync for Probe
impl Unpin for Probe
impl UnsafeUnpin for Probe
impl UnwindSafe for Probe
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