0% found this document useful (0 votes)
4 views

cl8_encdec

The document outlines a sequence of operations in a Decoder RNN model, detailing the relationship between input and output sequences. It describes how each output is generated based on the previous state and input data. The notation indicates the flow of information through the model's layers and the dependencies between outputs.

Uploaded by

5sumin0519
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
4 views

cl8_encdec

The document outlines a sequence of operations in a Decoder RNN model, detailing the relationship between input and output sequences. It describes how each output is generated based on the previous state and input data. The notation indicates the flow of information through the model's layers and the dependencies between outputs.

Uploaded by

5sumin0519
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 51

!

!
!
ŷ
y1̂

s1 = DecoderRNN(d(y0), s0)
s0

y0
y2̂

s2 = DecoderRNN(d(y1), s1)
s1

y1
y3̂

s3 = Deco d erR N N(d(y2 ), s2 )

s2

y2
e(x1), e(x2), e(x3), . . .
yt̂
y1̂ y2̂ y3̂

f(s12) f(s22) f(s32)

(s02, c02) (s12, c12) (s12, c12) (s22, c22) (s22, c22) (s32, c32)

(s01, c01) (s11, c11) (s11, c11) (s21, c21) (s21, c21) (s31, c31)

y0 y1̂ y2̂
y1̂
z
d(yt) st−1 z
z
d(yt) z
z

You might also like