pub struct GateReport {
pub baseline: Vec<f64>,
pub evals: Vec<(usize, f64, Vec<f64>, bool)>,
pub chosen: Option<usize>,
}Expand description
What the generation gate saw and decided.
Fields§
§baseline: Vec<f64>Zero-shot (step-0) loop scores per prompt — the baseline.
evals: Vec<(usize, f64, Vec<f64>, bool)>Per eval checkpoint: (step, val ppl, loop scores, passed).
chosen: Option<usize>Step whose params were restored (None = identity: the polish was rejected, the artifact carries the zero-shot state).
Trait Implementations§
Source§impl Clone for GateReport
impl Clone for GateReport
Source§fn clone(&self) -> GateReport
fn clone(&self) -> GateReport
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 moreAuto Trait Implementations§
impl Freeze for GateReport
impl RefUnwindSafe for GateReport
impl Send for GateReport
impl Sync for GateReport
impl Unpin for GateReport
impl UnsafeUnpin for GateReport
impl UnwindSafe for GateReport
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