pub struct VtraceOutput {
pub vs: Vec<f32>,
pub advantages: Vec<f32>,
}Expand description
V-trace output.
Fields§
§vs: Vec<f32>V-trace value targets v_t.
advantages: Vec<f32>Policy gradient advantages A_t.
Trait Implementations§
Source§impl Clone for VtraceOutput
impl Clone for VtraceOutput
Source§fn clone(&self) -> VtraceOutput
fn clone(&self) -> VtraceOutput
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 VtraceOutput
impl RefUnwindSafe for VtraceOutput
impl Send for VtraceOutput
impl Sync for VtraceOutput
impl Unpin for VtraceOutput
impl UnsafeUnpin for VtraceOutput
impl UnwindSafe for VtraceOutput
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