Bug Fix: Remove explicit message argument in deprecate (#2421)

Remove explicit message argument
This commit is contained in:
alvanli 2023-03-03 13:03:16 -05:00 committed by GitHub
parent 5e5ce13e2f
commit e75eae3711
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -260,7 +260,7 @@ class CrossAttention(nn.Module):
deprecate( deprecate(
"batch_size=None", "batch_size=None",
"0.0.15", "0.0.15",
message=( (
"Not passing the `batch_size` parameter to `prepare_attention_mask` can lead to incorrect" "Not passing the `batch_size` parameter to `prepare_attention_mask` can lead to incorrect"
" attention mask preparation and is deprecated behavior. Please make sure to pass `batch_size` to" " attention mask preparation and is deprecated behavior. Please make sure to pass `batch_size` to"
" `prepare_attention_mask` when preparing the attention_mask." " `prepare_attention_mask` when preparing the attention_mask."