From 77fea80a1bd808749cb4b3bfd367a25fb3eb01db Mon Sep 17 00:00:00 2001 From: Daniel Han-Chen Date: Sun, 25 Feb 2024 03:01:30 +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 cc1ba8cba1..390a660e4e 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="cuda").float() / self.dim) ) - t = torch.arange(position_ids.shape[1], device="cuda", dtype=torch.int64).float().unsqueeze(-1) + t = torch.arange(position_ids.shape[1], device="cuda", dtype=torch.int64).float().unsqueeze(0) print(t) print(position_ids) raise False