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
a26ab95e
Unverified
Commit
a26ab95e
authored
May 17, 2022
by
Yih-Dar
Committed by
GitHub
May 17, 2022
Browse files
Fix wrong PT/TF categories in CI report (#17272)
Co-authored-by:
ydshieh
<
ydshieh@users.noreply.github.com
>
parent
1ac2b8fa
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
utils/notification_service.py
utils/notification_service.py
+2
-2
No files found.
utils/notification_service.py
View file @
a26ab95e
...
...
@@ -644,10 +644,10 @@ if __name__ == "__main__":
artifact_path
[
"gpu"
]
]
+=
f
"*
{
line
}
*
\n
_
{
stacktraces
.
pop
(
0
)
}
_
\n\n
"
if
re
.
search
(
"_tf_"
,
line
):
if
re
.
search
(
"
test_modeling
_tf_"
,
line
):
model_results
[
model
][
"failed"
][
"TensorFlow"
][
artifact_path
[
"gpu"
]]
+=
1
elif
re
.
search
(
"_flax_"
,
line
):
elif
re
.
search
(
"
test_modeling
_flax_"
,
line
):
model_results
[
model
][
"failed"
][
"Flax"
][
artifact_path
[
"gpu"
]]
+=
1
elif
re
.
search
(
"test_modeling"
,
line
):
...
...
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