Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
chenpangpang
transformers
Commits
fe92755b
Commit
fe92755b
authored
Dec 12, 2019
by
LysandreJik
Browse files
Fix special tokens mask in encode
parent
fbf5455a
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
1 deletion
+1
-1
transformers/tokenization_utils.py
transformers/tokenization_utils.py
+1
-1
No files found.
transformers/tokenization_utils.py
View file @
fe92755b
...
...
@@ -973,7 +973,7 @@ class PreTrainedTokenizer(object):
token_type_ids
=
[
0
]
*
len
(
ids
)
+
([
1
]
*
len
(
pair_ids
)
if
pair
else
[])
if
return_special_tokens_mask
:
encoded_inputs
[
"special_tokens_mask"
]
=
special_tokens_mask
encoded_inputs
[
"special_tokens_mask"
]
=
self
.
get_
special_tokens_mask
(
ids
,
pair_ids
)
encoded_inputs
[
"input_ids"
]
=
sequence
if
return_token_type_ids
:
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment