Struct dfdx::nn::modules::Repeated

source ·
pub struct Repeated<T, const N: usize> {
    pub modules: Vec<T>,
}
Expand description

Repeats T N times. This requires that T’s input is the same as it’s output.

Generics

  • T the Module to repeat
  • N the number of times to repeat T.

Examples

type Model = Repeated<(Linear<10, 10>, ReLU), 5>;
let model = dev.build_module::<Model, f32>();
let out: Tensor<Rank1<10>, f32, _> = model.forward(dev.zeros());

Fields§

§modules: Vec<T>

Trait Implementations§

source§

impl<D: Device<E>, E: Dtype, T: BuildOnDevice<D, E>, const N: usize> BuildOnDevice<D, E> for Repeated<T, N>

§

type Built = Repeated<<T as BuildOnDevice<D, E>>::Built, N>

source§

fn build_on_device(device: &D) -> Self::Built

source§

fn try_build_on_device(device: &D) -> Result<Self::Built, D::Err>

source§

impl<T: Clone, const N: usize> Clone for Repeated<T, N>

source§

fn clone(&self) -> Repeated<T, N>

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl<T: Debug, const N: usize> Debug for Repeated<T, N>

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl<T, const N: usize> Index<usize> for Repeated<T, N>

§

type Output = T

The returned type after indexing.
source§

fn index(&self, index: usize) -> &Self::Output

Performs the indexing (container[index]) operation. Read more
source§

impl<Input, T: Module<Input, Output = Input>, const N: usize> Module<Input> for Repeated<T, N>

§

type Output = <T as Module<Input>>::Output

The type that this unit produces given Input.
§

type Error = <T as Module<Input>>::Error

source§

fn try_forward(&self, x: Input) -> Result<Self::Output, T::Error>

source§

fn forward(&self, input: Input) -> Self::Output

Forward Input through the module and produce Module::Output. Read more
source§

impl<Input, T: ModuleMut<Input, Output = Input>, const N: usize> ModuleMut<Input> for Repeated<T, N>

§

type Output = <T as ModuleMut<Input>>::Output

The type that this unit produces given Input.
§

type Error = <T as ModuleMut<Input>>::Error

source§

fn try_forward_mut(&mut self, x: Input) -> Result<Self::Output, T::Error>

source§

fn forward_mut(&mut self, input: Input) -> Self::Output

Forward Input through the module and produce ModuleMut::Output. Read more
source§

impl<E: Dtype, D: Device<E>, T: TensorCollection<E, D>, const N: usize> TensorCollection<E, D> for Repeated<T, N>

§

type To<E2: Dtype, D2: Device<E2>> = Repeated<<T as TensorCollection<E, D>>::To<E2, D2>, N>

Type alias that specifies the how a module’s type changes when using a different dtype and/or device.
source§

fn iter_tensors<V: ModuleVisitor<Self, E, D>>( visitor: &mut V ) -> Result<Option<Self::To<V::E2, V::D2>>, V::Err>

Specifies how to iterate through tensors or modules containted within this module, and how to contruct this module given values for its fields. Returns Err(_) to indicate an error, Ok(None) to indicate that there is no error and a module has not been built, and Ok(Some(_)) contains Self::Output<E2, D2>
source§

fn module<F1, F2, Field>( name: &str, get_ref: F1, get_mut: F2 ) -> ModuleField<'_, F1, F2, Self, Field>where F1: FnMut(&Self) -> &Field, F2: FnMut(&mut Self) -> &mut Field, Field: TensorCollection<E, D>,

Creates a ModuleFields that represents a field that may contain one or more tensors. Read more
source§

fn tensor<F1, F2, S>( name: &str, get_ref: F1, get_mut: F2, options: TensorOptions<S, E, D> ) -> TensorField<'_, F1, F2, Self, S, E, D>where F1: FnMut(&Self) -> &Tensor<S, E, D>, F2: FnMut(&mut Self) -> &mut Tensor<S, E, D>, S: Shape,

Creates a ModuleFields that represents a tensor field. Read more

Auto Trait Implementations§

§

impl<T, const N: usize> RefUnwindSafe for Repeated<T, N>where T: RefUnwindSafe,

§

impl<T, const N: usize> Send for Repeated<T, N>where T: Send,

§

impl<T, const N: usize> Sync for Repeated<T, N>where T: Sync,

§

impl<T, const N: usize> Unpin for Repeated<T, N>where T: Unpin,

§

impl<T, const N: usize> UnwindSafe for Repeated<T, N>where T: UnwindSafe,

Blanket Implementations§

source§

impl<T> Any for Twhere T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for Twhere T: ?Sized,

const: unstable · source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for Twhere T: ?Sized,

const: unstable · source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

const: unstable · source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for Twhere U: From<T>,

const: unstable · source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T> ToOwned for Twhere T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
source§

impl<T, U> TryFrom<U> for Twhere U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
const: unstable · source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for Twhere U: TryFrom<T>,

§

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

The type returned in the event of a conversion error.
const: unstable · source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
§

impl<V, T> VZip<V> for Twhere V: MultiLane<T>,

§

fn vzip(self) -> V