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
0c92e7d9
Unverified
Commit
0c92e7d9
authored
Nov 02, 2020
by
Santiago Castro
Committed by
GitHub
Nov 02, 2020
Browse files
Fix ignore list behavior in doctests (#8213)
parent
84caa233
Changes
4
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
12 additions
and
11 deletions
+12
-11
src/transformers/modeling_auto.py
src/transformers/modeling_auto.py
+2
-2
src/transformers/modeling_tf_utils.py
src/transformers/modeling_tf_utils.py
+2
-2
src/transformers/modeling_utils.py
src/transformers/modeling_utils.py
+2
-2
tests/test_doc_samples.py
tests/test_doc_samples.py
+6
-5
No files found.
src/transformers/modeling_auto.py
View file @
0c92e7d9
...
...
@@ -494,8 +494,8 @@ AUTO_MODEL_PRETRAINED_DOCSTRING = r"""
- The model is a model provided by the library (loaded with the `shortcut name` string of a
pretrained model).
- The model was saved using :meth:`~transformers.PreTrainedModel.save_pretrained` and is reloaded
by suppling the save directory.
- The model is loaded by suppling a local directory as ``pretrained_model_name_or_path`` and a
by suppl
y
ing the save directory.
- The model is loaded by suppl
y
ing a local directory as ``pretrained_model_name_or_path`` and a
configuration JSON file named `config.json` is found in the directory.
state_dict (`Dict[str, torch.Tensor]`, `optional`):
A state dictionary to use instead of a state dictionary loaded from saved weights file.
...
...
src/transformers/modeling_tf_utils.py
View file @
0c92e7d9
...
...
@@ -550,8 +550,8 @@ class TFPreTrainedModel(tf.keras.Model, TFModelUtilsMixin, TFGenerationMixin):
- The model is a model provided by the library (loaded with the `shortcut name` string of a
pretrained model).
- The model was saved using :func:`~transformers.TFPreTrainedModel.save_pretrained` and is reloaded
by suppling the save directory.
- The model is loaded by suppling a local directory as ``pretrained_model_name_or_path`` and a
by suppl
y
ing the save directory.
- The model is loaded by suppl
y
ing a local directory as ``pretrained_model_name_or_path`` and a
configuration JSON file named `config.json` is found in the directory.
from_pt: (:obj:`bool`, `optional`, defaults to :obj:`False`):
Load the model weights from a PyTorch state_dict save file (see docstring of
...
...
src/transformers/modeling_utils.py
View file @
0c92e7d9
...
...
@@ -784,8 +784,8 @@ class PreTrainedModel(nn.Module, ModuleUtilsMixin, GenerationMixin):
- The model is a model provided by the library (loaded with the `shortcut name` string of a
pretrained model).
- The model was saved using :func:`~transformers.PreTrainedModel.save_pretrained` and is reloaded
by suppling the save directory.
- The model is loaded by suppling a local directory as ``pretrained_model_name_or_path`` and a
by suppl
y
ing the save directory.
- The model is loaded by suppl
y
ing a local directory as ``pretrained_model_name_or_path`` and a
configuration JSON file named `config.json` is found in the directory.
state_dict (:obj:`Dict[str, torch.Tensor]`, `optional`):
A state dictionary to use instead of a state dictionary loaded from saved weights file.
...
...
tests/test_doc_samples.py
View file @
0c92e7d9
...
...
@@ -36,8 +36,8 @@ class TestCodeExamples(unittest.TestCase):
self
,
directory
:
Path
,
identifier
:
Union
[
str
,
None
]
=
None
,
ignore_files
:
Union
[
List
[
str
],
None
]
=
[]
,
n_identifier
:
Union
[
str
,
None
]
=
None
,
ignore_files
:
Union
[
List
[
str
],
None
]
=
None
,
n_identifier
:
Union
[
str
,
List
[
str
],
None
]
=
None
,
only_modules
:
bool
=
True
,
):
"""
...
...
@@ -45,7 +45,7 @@ class TestCodeExamples(unittest.TestCase):
the doctests in those files
Args:
directory (:obj:`
str
`): Directory containing the files
directory (:obj:`
Path
`): Directory containing the files
identifier (:obj:`str`): Will parse files containing this
ignore_files (:obj:`List[str]`): List of files to skip
n_identifier (:obj:`str` or :obj:`List[str]`): Will not parse files containing this/these identifiers.
...
...
@@ -63,6 +63,7 @@ class TestCodeExamples(unittest.TestCase):
else
:
files
=
[
file
for
file
in
files
if
n_identifier
not
in
file
]
ignore_files
=
ignore_files
or
[]
ignore_files
.
append
(
"__init__.py"
)
files
=
[
file
for
file
in
files
if
file
not
in
ignore_files
]
...
...
@@ -71,8 +72,8 @@ class TestCodeExamples(unittest.TestCase):
print
(
"Testing"
,
file
)
if
only_modules
:
try
:
module_identifier
=
file
.
split
(
"."
)[
0
]
try
:
module_identifier
=
getattr
(
transformers
,
module_identifier
)
suite
=
doctest
.
DocTestSuite
(
module_identifier
)
result
=
unittest
.
TextTestRunner
().
run
(
suite
)
...
...
@@ -84,7 +85,7 @@ class TestCodeExamples(unittest.TestCase):
self
.
assertIs
(
result
.
failed
,
0
)
def
test_modeling_examples
(
self
):
transformers_directory
=
"src/transformers"
transformers_directory
=
Path
(
"src/transformers"
)
files
=
"modeling"
ignore_files
=
[
"modeling_ctrl.py"
,
...
...
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