From f73698859e1d1d519eb41b1238bd3bea73b78008 Mon Sep 17 00:00:00 2001 From: Daniel Han-Chen Date: Sun, 25 Feb 2024 02:28:01 +1100 Subject: [PATCH] Update gemma.py --- unsloth/models/gemma.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/unsloth/models/gemma.py b/unsloth/models/gemma.py index b105d8456e..5629221ec7 100644 --- a/unsloth/models/gemma.py +++ b/unsloth/models/gemma.py @@ -73,7 +73,7 @@ class FastGemmaRotaryEmbedding(torch.nn.Module): self.base ** (torch.arange(0, self.dim, 2, dtype=torch.int64, device="cpu").float() / self.dim) ) - t = torch.arange(self.max_position_embeddings, device="cpu", dtype=torch.int64).float() + t = torch.arange(position_ids.shape[1], device="cpu", dtype=torch.int64).float() freqs = torch.outer(t, self.inv_freq) emb = torch.cat((freqs, freqs), dim=-1).to("cuda")