Struct dfdx::nn::modules::Transformer

source ·
pub struct Transformer<const MODEL_DIM: usize, const NUM_HEADS: usize, const NUM_ENCODER_LAYERS: usize, const NUM_DECODER_LAYERS: usize, const FF_DIM: usize, E: Dtype, D: DeviceStorage> {
    pub encoder: TransformerEncoder<MODEL_DIM, NUM_HEADS, FF_DIM, NUM_ENCODER_LAYERS, E, D>,
    pub decoder: TransformerDecoder<MODEL_DIM, NUM_HEADS, FF_DIM, NUM_DECODER_LAYERS, E, D>,
}
Expand description

Transformer architecture as described in Attention is all you need.

This is comprised of a TransformerEncoder and a TransformerDecoder.

Generics:

Pytorch equivalent:

torch.nn.Transformer(
    d_model=MODEL_DIM,
    nhead=NUM_HEADS,
    num_encoder_layers=NUM_ENCODER_LAYERS,
    num_decoder_layers=NUM_DECODER_LAYERS,
    dim_feedforward=FF_DIM,
    batch_first=True,
)

Fields§

§encoder: TransformerEncoder<MODEL_DIM, NUM_HEADS, FF_DIM, NUM_ENCODER_LAYERS, E, D>§decoder: TransformerDecoder<MODEL_DIM, NUM_HEADS, FF_DIM, NUM_DECODER_LAYERS, E, D>

Trait Implementations§

source§

impl<const MODEL_DIM: usize, const NUM_HEADS: usize, const NUM_ENCODER_LAYERS: usize, const NUM_DECODER_LAYERS: usize, const FF_DIM: usize, E: Clone + Dtype, D: Clone + DeviceStorage> Clone for Transformer<MODEL_DIM, NUM_HEADS, NUM_ENCODER_LAYERS, NUM_DECODER_LAYERS, FF_DIM, E, D>

source§

fn clone( &self ) -> Transformer<MODEL_DIM, NUM_HEADS, NUM_ENCODER_LAYERS, NUM_DECODER_LAYERS, FF_DIM, E, D>

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<const MODEL_DIM: usize, const NUM_HEADS: usize, const NUM_ENCODER_LAYERS: usize, const NUM_DECODER_LAYERS: usize, const FF_DIM: usize, E: Debug + Dtype, D: Debug + DeviceStorage> Debug for Transformer<MODEL_DIM, NUM_HEADS, NUM_ENCODER_LAYERS, NUM_DECODER_LAYERS, FF_DIM, E, D>

source§

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

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

impl<const M: usize, const H: usize, const EL: usize, const DL: usize, const F: usize, E: Dtype, D: Device<E>, Src: SplitTape, Tgt: PutTape<Src::Tape>> Module<(Src, Tgt)> for Transformer<M, H, EL, DL, F, E, D>where TransformerEncoder<M, H, F, EL, E, D>: Module<Src, Output = Src, Error = D::Err>, TransformerDecoder<M, H, F, DL, E, D>: Module<(<Tgt as PutTape<Src::Tape>>::Output, Src::NoTape), Output = <Tgt as PutTape<Src::Tape>>::Output, Error = D::Err>,

§

type Output = <Tgt as PutTape<<Src as SplitTape>::Tape>>::Output

The type that this unit produces given Input.
§

type Error = <D as HasErr>::Err

source§

fn try_forward(&self, (src, tgt): (Src, Tgt)) -> Result<Self::Output, D::Err>

source§

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

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

impl<const M: usize, const H: usize, const A: usize, const B: usize, const F: usize, E, D> TensorCollection<E, D> for Transformer<M, H, A, B, F, E, D>where E: Dtype + Float + SampleUniform, D: Device<E>,

§

type To<E2: Dtype, D2: Device<E2>> = Transformer<M, H, A, B, F, E2, D2>

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
source§

impl<const M: usize, const H: usize, const A: usize, const B: usize, const F: usize, E, D> NonMutableModule for Transformer<M, H, A, B, F, E, D>where E: Dtype, D: Device<E>,

Auto Trait Implementations§

§

impl<const MODEL_DIM: usize, const NUM_HEADS: usize, const NUM_ENCODER_LAYERS: usize, const NUM_DECODER_LAYERS: usize, const FF_DIM: usize, E, D> RefUnwindSafe for Transformer<MODEL_DIM, NUM_HEADS, NUM_ENCODER_LAYERS, NUM_DECODER_LAYERS, FF_DIM, E, D>where D: RefUnwindSafe, E: RefUnwindSafe, <D as DeviceStorage>::Vec<E>: RefUnwindSafe,

§

impl<const MODEL_DIM: usize, const NUM_HEADS: usize, const NUM_ENCODER_LAYERS: usize, const NUM_DECODER_LAYERS: usize, const FF_DIM: usize, E, D> Send for Transformer<MODEL_DIM, NUM_HEADS, NUM_ENCODER_LAYERS, NUM_DECODER_LAYERS, FF_DIM, E, D>where D: Send,

§

impl<const MODEL_DIM: usize, const NUM_HEADS: usize, const NUM_ENCODER_LAYERS: usize, const NUM_DECODER_LAYERS: usize, const FF_DIM: usize, E, D> Sync for Transformer<MODEL_DIM, NUM_HEADS, NUM_ENCODER_LAYERS, NUM_DECODER_LAYERS, FF_DIM, E, D>where D: Sync,

§

impl<const MODEL_DIM: usize, const NUM_HEADS: usize, const NUM_ENCODER_LAYERS: usize, const NUM_DECODER_LAYERS: usize, const FF_DIM: usize, E, D> Unpin for Transformer<MODEL_DIM, NUM_HEADS, NUM_ENCODER_LAYERS, NUM_DECODER_LAYERS, FF_DIM, E, D>where D: Unpin,

§

impl<const MODEL_DIM: usize, const NUM_HEADS: usize, const NUM_ENCODER_LAYERS: usize, const NUM_DECODER_LAYERS: usize, const FF_DIM: usize, E, D> UnwindSafe for Transformer<MODEL_DIM, NUM_HEADS, NUM_ENCODER_LAYERS, NUM_DECODER_LAYERS, FF_DIM, E, D>where D: UnwindSafe, E: UnwindSafe, <D as DeviceStorage>::Vec<E>: RefUnwindSafe,

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