Please make use of the search function of the forum. This mistake is very common and there are a lot of posts how to fix it. For example, searching (64, 14, 256) and other keywords would give you many results. Some of them:
- example 1 (mixing up context with target)
- example 2 (embedding the context again in the decoder while you should be embedding the target.)
- example 3 (the use of
context
(14) andtarget
(15). - example 4 (the units parameter)
- example 5 (
Get the embedding of the input
) - example 6 (Paul shows the shapes at each internal step)
- example 7 (Anna points out global vs local variable usage)
- example 8
- plenty of other posts.
In short, you’re probably embedding the context not the target. But I would advise to make use of the forum’s search functionality prior to posting a new thread.
Cheers