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
7f998b1b
Commit
7f998b1b
authored
Dec 05, 2019
by
Guillaume B
Browse files
special_tokens_mask value was unused and calculated twice
parent
fb0d2f1d
Changes
1
Show 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 @
7f998b1b
...
@@ -910,7 +910,7 @@ class PreTrainedTokenizer(object):
...
@@ -910,7 +910,7 @@ class PreTrainedTokenizer(object):
token_type_ids
=
[
0
]
*
len
(
ids
)
+
([
1
]
*
len
(
pair_ids
)
if
pair
else
[])
token_type_ids
=
[
0
]
*
len
(
ids
)
+
([
1
]
*
len
(
pair_ids
)
if
pair
else
[])
special_tokens_mask
=
[
0
]
*
(
len
(
ids
)
+
(
len
(
pair_ids
)
if
pair
else
0
))
special_tokens_mask
=
[
0
]
*
(
len
(
ids
)
+
(
len
(
pair_ids
)
if
pair
else
0
))
if
return_special_tokens_mask
:
if
return_special_tokens_mask
:
encoded_inputs
[
"special_tokens_mask"
]
=
self
.
get_
special_tokens_mask
(
ids
,
pair_ids
)
encoded_inputs
[
"special_tokens_mask"
]
=
special_tokens_mask
# Prepare inputs as tensors if asked
# Prepare inputs as tensors if asked
if
return_tensors
==
'tf'
and
is_tf_available
():
if
return_tensors
==
'tf'
and
is_tf_available
():
...
...
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