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
c888663f
"src/git@developer.sourcefind.cn:gaoqiong/migraphx.git" did not exist on "3f0f2e220e6b6dd96769271f97d315076626a768"
Commit
c888663f
authored
Jun 24, 2019
by
thomwolf
Browse files
overwrite output directories if needed
parent
62d78aa3
Changes
4
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
4 additions
and
4 deletions
+4
-4
examples/run_bert_classifier.py
examples/run_bert_classifier.py
+1
-1
examples/run_bert_squad.py
examples/run_bert_squad.py
+1
-1
examples/run_xlnet_classifier.py
examples/run_xlnet_classifier.py
+1
-1
examples/run_xlnet_squad.py
examples/run_xlnet_squad.py
+1
-1
No files found.
examples/run_bert_classifier.py
View file @
c888663f
...
...
@@ -186,7 +186,7 @@ def main():
raise
ValueError
(
"At least one of `do_train` or `do_eval` must be True."
)
if
os
.
path
.
exists
(
args
.
output_dir
)
and
os
.
listdir
(
args
.
output_dir
)
and
args
.
do_train
and
not
args
.
overwrite_output_dir
:
raise
ValueError
(
"Output directory ({}) already exists and is not empty."
.
format
(
args
.
output_dir
))
raise
ValueError
(
"Output directory ({}) already exists and is not empty.
Use --overwrite_output_dir to overcome.
"
.
format
(
args
.
output_dir
))
if
not
os
.
path
.
exists
(
args
.
output_dir
)
and
args
.
local_rank
in
[
-
1
,
0
]:
os
.
makedirs
(
args
.
output_dir
)
...
...
examples/run_bert_squad.py
View file @
c888663f
...
...
@@ -179,7 +179,7 @@ def main():
"If `do_predict` is True, then `predict_file` must be specified."
)
if
os
.
path
.
exists
(
args
.
output_dir
)
and
os
.
listdir
(
args
.
output_dir
)
and
args
.
do_train
and
not
args
.
overwrite_output_dir
:
raise
ValueError
(
"Output directory
()
already exists and is not empty.
"
)
raise
ValueError
(
"Output directory
{}
already exists and is not empty.
Use --overwrite_output_dir to overcome."
.
format
(
args
.
output_dir
)
)
if
not
os
.
path
.
exists
(
args
.
output_dir
):
os
.
makedirs
(
args
.
output_dir
)
...
...
examples/run_xlnet_classifier.py
View file @
c888663f
...
...
@@ -151,7 +151,7 @@ def main():
raise
ValueError
(
"At least one of `do_train` or `do_eval` must be True."
)
if
os
.
path
.
exists
(
args
.
output_dir
)
and
os
.
listdir
(
args
.
output_dir
)
and
args
.
do_train
and
not
args
.
overwrite_output_dir
:
raise
ValueError
(
"Output directory ({}) already exists and is not empty."
.
format
(
args
.
output_dir
))
raise
ValueError
(
"Output directory ({}) already exists and is not empty.
Use --overwrite_output_dir to overcome.
"
.
format
(
args
.
output_dir
))
if
not
os
.
path
.
exists
(
args
.
output_dir
)
and
args
.
local_rank
in
[
-
1
,
0
]:
os
.
makedirs
(
args
.
output_dir
)
...
...
examples/run_xlnet_squad.py
View file @
c888663f
...
...
@@ -179,7 +179,7 @@ def main():
"If `do_predict` is True, then `predict_file` must be specified."
)
if
os
.
path
.
exists
(
args
.
output_dir
)
and
os
.
listdir
(
args
.
output_dir
)
and
args
.
do_train
and
not
args
.
overwrite_output_dir
:
raise
ValueError
(
"Output directory
()
already exists and is not empty.
"
)
raise
ValueError
(
"Output directory
{}
already exists and is not empty.
Use --overwrite_output_dir to overcome."
.
format
(
args
.
output_dir
)
)
if
not
os
.
path
.
exists
(
args
.
output_dir
):
os
.
makedirs
(
args
.
output_dir
)
...
...
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