[][src]Struct tch::nn::Path

pub struct Path<'a> { /* fields omitted */ }

Methods

impl<'a> Path<'a>[src]

pub fn sub(&'a self, s: &str) -> Path<'a>[src]

pub fn device(&self) -> Device[src]

pub fn zeros_no_train(&self, name: &str, dims: &[i64]) -> Tensor[src]

pub fn ones_no_train(&self, name: &str, dims: &[i64]) -> Tensor[src]

pub fn zeros(&self, name: &str, dims: &[i64]) -> Tensor[src]

pub fn ones(&self, name: &str, dims: &[i64]) -> Tensor[src]

pub fn randn_standard(&self, name: &str, dims: &[i64]) -> Tensor[src]

pub fn randn(&self, name: &str, dims: &[i64], mean: f64, stdev: f64) -> Tensor[src]

pub fn uniform(&self, name: &str, dims: &[i64], lo: f64, up: f64) -> Tensor[src]

pub fn kaiming_uniform(&self, name: &str, dims: &[i64]) -> Tensor[src]

Trait Implementations

impl<'a, '_> Div<&'_ str> for &'a mut Path<'a>[src]

type Output = Path<'a>

The resulting type after applying the / operator.

Auto Trait Implementations

impl<'a> !Send for Path<'a>

impl<'a> !Sync for Path<'a>

Blanket Implementations

impl<T, U> Into for T where
    U: From<T>, 
[src]

impl<T> From for T[src]

impl<T, U> TryFrom for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T> Borrow for T where
    T: ?Sized
[src]

impl<T> BorrowMut for T where
    T: ?Sized
[src]

impl<T, U> TryInto for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> Any for T where
    T: 'static + ?Sized
[src]