pub struct BatchResult {
pub network: String,
pub outputs: Vec<Vec<f64>>,
}Expand description
Result of a batched neural evaluation.
Contains the outputs for all inputs processed in a single batch.
Fields§
§network: StringNetwork that produced these results
outputs: Vec<Vec<f64>>Output probability distributions, one per input
outputs[i] is the softmax output for the i-th input in the batch
Implementations§
Source§impl BatchResult
impl BatchResult
Trait Implementations§
Source§impl Clone for BatchResult
impl Clone for BatchResult
Source§fn clone(&self) -> BatchResult
fn clone(&self) -> BatchResult
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 BatchResult
impl RefUnwindSafe for BatchResult
impl Send for BatchResult
impl Sync for BatchResult
impl Unpin for BatchResult
impl UnsafeUnpin for BatchResult
impl UnwindSafe for BatchResult
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