Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
chenpangpang
transformers
Commits
f7354a3b
Unverified
Commit
f7354a3b
authored
Oct 23, 2023
by
Matt
Committed by
GitHub
Oct 23, 2023
Browse files
Remove token_type_ids from default TF GPT-2 signature (#26962)
Remove token_type_ids from default GPT-2 signature
parent
c0b5ad94
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
10 additions
and
0 deletions
+10
-0
src/transformers/models/gpt2/modeling_tf_gpt2.py
src/transformers/models/gpt2/modeling_tf_gpt2.py
+10
-0
No files found.
src/transformers/models/gpt2/modeling_tf_gpt2.py
View file @
f7354a3b
...
...
@@ -521,6 +521,16 @@ class TFGPT2PreTrainedModel(TFPreTrainedModel):
# names with a '.' represents the authorized unexpected/missing layers when a TF model is loaded from a PT model
_keys_to_ignore_on_load_unexpected
=
[
r
"h.\d+.attn.bias"
,
r
"h.\d+.crossattention.bias"
]
@
property
def
input_signature
(
self
):
# Although GPT-2 supports token_type_ids in theory, in practice they are rarely used, and the implementation
# means that passing token_type_ids=0 yields different outputs from token_type_ids=None.
# Therefore, we remove the token_type_ids argument by default, even though it would usually be included.
return
{
"input_ids"
:
tf
.
TensorSpec
((
None
,
None
),
tf
.
int32
,
name
=
"input_ids"
),
"attention_mask"
:
tf
.
TensorSpec
((
None
,
None
),
tf
.
int32
,
name
=
"attention_mask"
),
}
@
dataclass
class
TFGPT2DoubleHeadsModelOutput
(
ModelOutput
):
...
...
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