FeedForward(int embedDim, int ffnDim) { fc1 = Linear(embedDim, ffnDim); fc2 = Linear(ffnDim, embedDim); }