pub struct StreamingArgmaxResult {
pub best_token_id: u32,
pub max_logit: f32,
}Expand description
Streaming argmax result across chunked vocabulary projection.
Fields§
§best_token_id: u32§max_logit: f32Trait Implementations§
Source§impl Clone for StreamingArgmaxResult
impl Clone for StreamingArgmaxResult
Source§fn clone(&self) -> StreamingArgmaxResult
fn clone(&self) -> StreamingArgmaxResult
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 StreamingArgmaxResult
impl Debug for StreamingArgmaxResult
Source§impl PartialEq for StreamingArgmaxResult
impl PartialEq for StreamingArgmaxResult
Source§fn eq(&self, other: &StreamingArgmaxResult) -> bool
fn eq(&self, other: &StreamingArgmaxResult) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Copy for StreamingArgmaxResult
impl StructuralPartialEq for StreamingArgmaxResult
Auto Trait Implementations§
impl Freeze for StreamingArgmaxResult
impl RefUnwindSafe for StreamingArgmaxResult
impl Send for StreamingArgmaxResult
impl Sync for StreamingArgmaxResult
impl Unpin for StreamingArgmaxResult
impl UnsafeUnpin for StreamingArgmaxResult
impl UnwindSafe for StreamingArgmaxResult
Blanket Implementations§
§impl<S, A> Aggregate<Result<S, Error>> for Awhere
A: Aggregate<S>,
impl<S, A> Aggregate<Result<S, Error>> for Awhere
A: Aggregate<S>,
Aggregate shares in an MPC protocol.
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
§impl<T> Instrument for T
impl<T> Instrument for T
§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more