From f051a5fe6b9d3f864a858cef0d709d94163f071e Mon Sep 17 00:00:00 2001 From: Shamik <39588365+Shamik-07@users.noreply.github.com> Date: Mon, 23 Jun 2025 17:51:51 +0530 Subject: [PATCH] Update README.md (#702) Typo in kv cache readme --- ch04/03_kv-cache/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ch04/03_kv-cache/README.md b/ch04/03_kv-cache/README.md index 3474ab8..2284d14 100644 --- a/ch04/03_kv-cache/README.md +++ b/ch04/03_kv-cache/README.md @@ -104,7 +104,7 @@ def reset_cache(self): ### 4. Propagating `use_cache` in the full model -With the changes to the `MultiHeadAttention` class in plass, we now modify the `GPTModel` class. First, we add a position tracking for the token indices to the instructor: +With the changes to the `MultiHeadAttention` class in place, we now modify the `GPTModel` class. First, we add a position tracking for the token indices to the instructor: ```python self.current_pos = 0