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
263fac71
Unverified
Commit
263fac71
authored
Feb 09, 2021
by
sandip
Committed by
GitHub
Feb 08, 2021
Browse files
Integration test for electra model (#10073)
parent
781220ac
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
16 additions
and
0 deletions
+16
-0
tests/test_modeling_electra.py
tests/test_modeling_electra.py
+16
-0
No files found.
tests/test_modeling_electra.py
View file @
263fac71
...
@@ -344,3 +344,19 @@ class ElectraModelTest(ModelTesterMixin, unittest.TestCase):
...
@@ -344,3 +344,19 @@ class ElectraModelTest(ModelTesterMixin, unittest.TestCase):
for
model_name
in
ELECTRA_PRETRAINED_MODEL_ARCHIVE_LIST
[:
1
]:
for
model_name
in
ELECTRA_PRETRAINED_MODEL_ARCHIVE_LIST
[:
1
]:
model
=
ElectraModel
.
from_pretrained
(
model_name
)
model
=
ElectraModel
.
from_pretrained
(
model_name
)
self
.
assertIsNotNone
(
model
)
self
.
assertIsNotNone
(
model
)
@
require_torch
class
ElectraModelIntegrationTest
(
unittest
.
TestCase
):
@
slow
def
test_inference_no_head_absolute_embedding
(
self
):
model
=
ElectraForPreTraining
.
from_pretrained
(
"google/electra-small-discriminator"
)
input_ids
=
torch
.
tensor
([[
0
,
345
,
232
,
328
,
740
,
140
,
1695
,
69
,
6078
,
1588
,
2
]])
output
=
model
(
input_ids
)[
0
]
expected_shape
=
torch
.
Size
((
1
,
11
))
self
.
assertEqual
(
output
.
shape
,
expected_shape
)
expected_slice
=
torch
.
tensor
(
[[
-
8.9253
,
-
4.0305
,
-
3.9306
,
-
3.8774
,
-
4.1873
,
-
4.1280
,
0.9429
,
-
4.1672
,
0.9281
,
0.0410
,
-
3.4823
]]
)
self
.
assertTrue
(
torch
.
allclose
(
output
,
expected_slice
,
atol
=
1e-4
))
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