[][src]Struct tch::nn::Sequential

pub struct Sequential { /* fields omitted */ }

A sequential layer combining multiple other layers.

Implementations

impl Sequential[src]

pub fn len(&self) -> i64[src]

The number of sub-layers embedded in this layer.

pub fn is_empty(&self) -> bool[src]

Returns true if this layer does not have any sub-layer.

impl Sequential[src]

pub fn add<M: Module + 'static>(self, layer: M) -> Self[src]

Appends a layer after all the current layers.

pub fn add_fn<F>(self, f: F) -> Self where
    F: 'static + Fn(&Tensor) -> Tensor + Send
[src]

Appends a closure after all the current layers.

pub fn forward_all(&self, xs: &Tensor, n: Option<usize>) -> Vec<Tensor>[src]

Applies the forward pass and returns the output for each layer.

Trait Implementations

impl Debug for Sequential[src]

impl Module for Sequential[src]

Auto Trait Implementations

Blanket Implementations

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

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

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

impl<T> From<T> for T[src]

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

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

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> 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<V, T> VZip<V> for T where
    V: MultiLane<T>,