From 64ca1482635dac4289d9c98ac4f52bf040f6be7d Mon Sep 17 00:00:00 2001 From: Crazy-Ryan <30890405+Crazy-Ryan@users.noreply.github.com> Date: Mon, 9 Jun 2025 15:08:53 +0800 Subject: [PATCH] fix notation mistake in Jupyter Notebook --- hw4_extra.ipynb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hw4_extra.ipynb b/hw4_extra.ipynb index 3942c7f..dea9360 100644 --- a/hw4_extra.ipynb +++ b/hw4_extra.ipynb @@ -209,7 +209,7 @@ "\n", "

$X' = X \\; W_o$

\n", "\n", - "Your goal in this part is to return $X$ in the `self.forward` call of `AttentionLayer`. For debugging, you may capture the `probs` variable returned by the inner `MultiHeadAttention` module and store it in an attribute such as `self.probs` of the attention layer.\n", + "Your goal in this part is to return $X'$ in the `self.forward` call of `AttentionLayer`. For debugging, you may capture the `probs` variable returned by the inner `MultiHeadAttention` module and store it in an attribute such as `self.probs` of the attention layer.\n", "\n", "Once finished, you may test your layer with the following test cases." ]