pub struct PersonaPlexEvaluationOptions {
pub frames: Option<usize>,
pub text_prompt: String,
pub sampling_seed: u64,
}Expand description
Controls for one PersonaPlex comparison.
Fields§
§frames: Option<usize>Maximum input frames, or all complete frames when omitted.
text_prompt: StringUnwrapped system instruction.
sampling_seed: u64Root seed used independently by both model runs.
Trait Implementations§
Source§impl Clone for PersonaPlexEvaluationOptions
impl Clone for PersonaPlexEvaluationOptions
Source§fn clone(&self) -> PersonaPlexEvaluationOptions
fn clone(&self) -> PersonaPlexEvaluationOptions
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 moreSource§impl Debug for PersonaPlexEvaluationOptions
impl Debug for PersonaPlexEvaluationOptions
Auto Trait Implementations§
impl Freeze for PersonaPlexEvaluationOptions
impl RefUnwindSafe for PersonaPlexEvaluationOptions
impl Send for PersonaPlexEvaluationOptions
impl Sync for PersonaPlexEvaluationOptions
impl Unpin for PersonaPlexEvaluationOptions
impl UnsafeUnpin for PersonaPlexEvaluationOptions
impl UnwindSafe for PersonaPlexEvaluationOptions
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