From ed5042aa07c16cb88fc3cfac47acce24cd2ef3e5 Mon Sep 17 00:00:00 2001 From: Daniel Han-Chen Date: Sun, 25 Feb 2024 02:04:11 +1100 Subject: [PATCH] Update llama.py --- unsloth/models/llama.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/unsloth/models/llama.py b/unsloth/models/llama.py index f222234bf5..eceab965bf 100644 --- a/unsloth/models/llama.py +++ b/unsloth/models/llama.py @@ -812,7 +812,7 @@ class LlamaRotaryEmbedding(torch.nn.Module): inv_freq = 1.0 / ( self.base ** (torch.arange(0, self.dim, 2, dtype=torch.int64, device="cpu").float() / self.dim) ) - position_ids = torch.arange(self.max_seq_len_cached, device="cpu", dtype=torch.int64)#.float() + position_ids = torch.arange(self.max_seq_len_cached, device="cpu", dtype=torch.int64).unsqueeze()#.float() inv_freq_expanded = inv_freq[None, :, None].float().expand(position_ids.shape[0], -1, 1) position_ids_expanded = position_ids[:, None, :].float() freqs = (inv_freq_expanded @ position_ids_expanded).transpose(1, 2)