Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion paddlenlp/transformers/llama/modeling.py
Original file line number Diff line number Diff line change
Expand Up @@ -1567,7 +1567,7 @@ def forward(
if is_casual and alibi is None:
attention_mask = None
else:
attention_mask = attention_mask.astype("bool")
attention_mask = None if attention_mask is None else attention_mask.astype("bool")
hidden_states = inputs_embeds
# decoder layers
all_hidden_states = () if output_hidden_states else None
Expand Down