Convert mask to float (#1762)
This commit is contained in:
parent
d95f5782d0
commit
8e5aeacbee
1 changed files with 4 additions and 1 deletions
|
|
@ -775,9 +775,12 @@ def LlamaModel_fast_forward(
|
|||
self.SWA_mask = True
|
||||
self.GA_mask = False
|
||||
elif attention_mask is not None:
|
||||
|
||||
# Fixes https://github.com/unslothai/unsloth/issues/853
|
||||
# Unsloth needs a 2D mask, not a [2, 1, n, n] mask!
|
||||
|
||||
# https://github.com/pytorch/pytorch/issues/103749
|
||||
# Need to convert to float and not using bool
|
||||
attention_mask = (1.0 - attention_mask.float()) * torch.finfo(inputs_embeds.dtype).min
|
||||
dynamic_SWA_mask = _prepare_4d_causal_attention_mask_for_sdpa(
|
||||
attention_mask,
|
||||
(batch_size, seq_length),
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue