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
e1eb3efd
Unverified
Commit
e1eb3efd
authored
May 11, 2023
by
amyeroberts
Committed by
GitHub
May 11, 2023
Browse files
Temporarily increase tol for PT-FLAX whisper tests (#23288)
parent
b3bbe1bd
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
8 additions
and
0 deletions
+8
-0
tests/models/whisper/test_modeling_flax_whisper.py
tests/models/whisper/test_modeling_flax_whisper.py
+4
-0
tests/models/whisper/test_modeling_whisper.py
tests/models/whisper/test_modeling_whisper.py
+4
-0
No files found.
tests/models/whisper/test_modeling_flax_whisper.py
View file @
e1eb3efd
...
...
@@ -248,6 +248,10 @@ class FlaxWhisperModelTest(FlaxModelTesterMixin, unittest.TestCase):
for
jitted_output
,
output
in
zip
(
jitted_outputs
,
outputs
):
self
.
assertEqual
(
jitted_output
.
shape
,
output
.
shape
)
def
check_pt_flax_outputs
(
self
,
fx_outputs
,
pt_outputs
,
model_class
,
tol
=
5e-5
,
name
=
"outputs"
,
attributes
=
None
):
# We override with a slightly higher tol value, as test recently became flaky
super
().
check_pt_flax_outputs
(
fx_outputs
,
pt_outputs
,
model_class
,
tol
,
name
,
attributes
)
# overwrite because of `input_features`
@
is_pt_flax_cross_test
def
test_save_load_bf16_to_base_pt
(
self
):
...
...
tests/models/whisper/test_modeling_whisper.py
View file @
e1eb3efd
...
...
@@ -828,6 +828,10 @@ class WhisperModelTest(ModelTesterMixin, GenerationTesterMixin, PipelineTesterMi
# We override with a slightly higher tol value, as test recently became flaky
super
().
check_pt_tf_outputs
(
tf_outputs
,
pt_outputs
,
model_class
,
tol
,
name
,
attributes
)
def
check_pt_flax_outputs
(
self
,
fx_outputs
,
pt_outputs
,
model_class
,
tol
=
5e-5
,
name
=
"outputs"
,
attributes
=
None
):
# We override with a slightly higher tol value, as test recently became flaky
super
().
check_pt_flax_outputs
(
fx_outputs
,
pt_outputs
,
model_class
,
tol
,
name
,
attributes
)
@
is_pt_flax_cross_test
def
test_equivalence_pt_to_flax
(
self
):
config
,
inputs_dict
=
self
.
model_tester
.
prepare_config_and_inputs_for_common
()
...
...
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