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
fa39ff9f
Commit
fa39ff9f
authored
Dec 22, 2021
by
Patrick von Platen
Browse files
Docs for v4.16.0dev0
parent
05fa1a7a
Changes
26
Hide whitespace changes
Inline
Side-by-side
Showing
20 changed files
with
20 additions
and
20 deletions
+20
-20
examples/flax/question-answering/run_qa.py
examples/flax/question-answering/run_qa.py
+1
-1
examples/flax/token-classification/run_flax_ner.py
examples/flax/token-classification/run_flax_ner.py
+1
-1
examples/pytorch/audio-classification/run_audio_classification.py
.../pytorch/audio-classification/run_audio_classification.py
+1
-1
examples/pytorch/image-classification/run_image_classification.py
.../pytorch/image-classification/run_image_classification.py
+1
-1
examples/pytorch/language-modeling/run_clm.py
examples/pytorch/language-modeling/run_clm.py
+1
-1
examples/pytorch/language-modeling/run_mlm.py
examples/pytorch/language-modeling/run_mlm.py
+1
-1
examples/pytorch/language-modeling/run_plm.py
examples/pytorch/language-modeling/run_plm.py
+1
-1
examples/pytorch/multiple-choice/run_swag.py
examples/pytorch/multiple-choice/run_swag.py
+1
-1
examples/pytorch/question-answering/run_qa.py
examples/pytorch/question-answering/run_qa.py
+1
-1
examples/pytorch/question-answering/run_qa_beam_search.py
examples/pytorch/question-answering/run_qa_beam_search.py
+1
-1
examples/pytorch/question-answering/run_qa_beam_search_no_trainer.py
...torch/question-answering/run_qa_beam_search_no_trainer.py
+1
-1
examples/pytorch/question-answering/run_qa_no_trainer.py
examples/pytorch/question-answering/run_qa_no_trainer.py
+1
-1
examples/pytorch/question-answering/run_seq2seq_qa.py
examples/pytorch/question-answering/run_seq2seq_qa.py
+1
-1
examples/pytorch/speech-recognition/run_speech_recognition_ctc.py
.../pytorch/speech-recognition/run_speech_recognition_ctc.py
+1
-1
examples/pytorch/summarization/run_summarization.py
examples/pytorch/summarization/run_summarization.py
+1
-1
examples/pytorch/text-classification/run_glue.py
examples/pytorch/text-classification/run_glue.py
+1
-1
examples/pytorch/text-classification/run_xnli.py
examples/pytorch/text-classification/run_xnli.py
+1
-1
examples/pytorch/token-classification/run_ner.py
examples/pytorch/token-classification/run_ner.py
+1
-1
examples/pytorch/translation/run_translation.py
examples/pytorch/translation/run_translation.py
+1
-1
examples/tensorflow/multiple-choice/run_swag.py
examples/tensorflow/multiple-choice/run_swag.py
+1
-1
No files found.
examples/flax/question-answering/run_qa.py
View file @
fa39ff9f
...
...
@@ -61,7 +61,7 @@ from utils_qa import postprocess_qa_predictions
logger
=
logging
.
getLogger
(
__name__
)
# Will error if the minimal version of Transformers is not installed. Remove at your own risks.
check_min_version
(
"4.1
5.
0"
)
check_min_version
(
"4.1
6.0.dev
0"
)
Array
=
Any
Dataset
=
datasets
.
arrow_dataset
.
Dataset
...
...
examples/flax/token-classification/run_flax_ner.py
View file @
fa39ff9f
...
...
@@ -54,7 +54,7 @@ from transformers.utils.versions import require_version
logger
=
logging
.
getLogger
(
__name__
)
# Will error if the minimal version of Transformers is not installed. Remove at your own risks.
check_min_version
(
"4.1
5.
0"
)
check_min_version
(
"4.1
6.0.dev
0"
)
require_version
(
"datasets>=1.8.0"
,
"To fix: pip install -r examples/pytorch/token-classification/requirements.txt"
)
...
...
examples/pytorch/audio-classification/run_audio_classification.py
View file @
fa39ff9f
...
...
@@ -43,7 +43,7 @@ from transformers.utils.versions import require_version
logger
=
logging
.
getLogger
(
__name__
)
# Will error if the minimal version of Transformers is not installed. Remove at your own risks.
check_min_version
(
"4.1
5.
0"
)
check_min_version
(
"4.1
6.0.dev
0"
)
require_version
(
"datasets>=1.14.0"
,
"To fix: pip install -r examples/pytorch/audio-classification/requirements.txt"
)
...
...
examples/pytorch/image-classification/run_image_classification.py
View file @
fa39ff9f
...
...
@@ -54,7 +54,7 @@ from transformers.utils.versions import require_version
logger
=
logging
.
getLogger
(
__name__
)
# Will error if the minimal version of Transformers is not installed. Remove at your own risks.
check_min_version
(
"4.1
5.
0"
)
check_min_version
(
"4.1
6.0.dev
0"
)
require_version
(
"datasets>=1.8.0"
,
"To fix: pip install -r examples/pytorch/image-classification/requirements.txt"
)
...
...
examples/pytorch/language-modeling/run_clm.py
View file @
fa39ff9f
...
...
@@ -52,7 +52,7 @@ from transformers.utils.versions import require_version
# Will error if the minimal version of Transformers is not installed. Remove at your own risks.
check_min_version
(
"4.1
5.
0"
)
check_min_version
(
"4.1
6.0.dev
0"
)
require_version
(
"datasets>=1.8.0"
,
"To fix: pip install -r examples/pytorch/language-modeling/requirements.txt"
)
...
...
examples/pytorch/language-modeling/run_mlm.py
View file @
fa39ff9f
...
...
@@ -51,7 +51,7 @@ from transformers.utils.versions import require_version
# Will error if the minimal version of Transformers is not installed. Remove at your own risks.
check_min_version
(
"4.1
5.
0"
)
check_min_version
(
"4.1
6.0.dev
0"
)
require_version
(
"datasets>=1.8.0"
,
"To fix: pip install -r examples/pytorch/language-modeling/requirements.txt"
)
...
...
examples/pytorch/language-modeling/run_plm.py
View file @
fa39ff9f
...
...
@@ -47,7 +47,7 @@ from transformers.utils.versions import require_version
# Will error if the minimal version of Transformers is not installed. Remove at your own risks.
check_min_version
(
"4.1
5.
0"
)
check_min_version
(
"4.1
6.0.dev
0"
)
require_version
(
"datasets>=1.8.0"
,
"To fix: pip install -r examples/pytorch/language-modeling/requirements.txt"
)
...
...
examples/pytorch/multiple-choice/run_swag.py
View file @
fa39ff9f
...
...
@@ -48,7 +48,7 @@ from transformers.utils import check_min_version
# Will error if the minimal version of Transformers is not installed. Remove at your own risks.
check_min_version
(
"4.1
5.
0"
)
check_min_version
(
"4.1
6.0.dev
0"
)
logger
=
logging
.
getLogger
(
__name__
)
...
...
examples/pytorch/question-answering/run_qa.py
View file @
fa39ff9f
...
...
@@ -48,7 +48,7 @@ from utils_qa import postprocess_qa_predictions
# Will error if the minimal version of Transformers is not installed. Remove at your own risks.
check_min_version
(
"4.1
5.
0"
)
check_min_version
(
"4.1
6.0.dev
0"
)
require_version
(
"datasets>=1.8.0"
,
"To fix: pip install -r examples/pytorch/question-answering/requirements.txt"
)
...
...
examples/pytorch/question-answering/run_qa_beam_search.py
View file @
fa39ff9f
...
...
@@ -47,7 +47,7 @@ from utils_qa import postprocess_qa_predictions_with_beam_search
# Will error if the minimal version of Transformers is not installed. Remove at your own risks.
check_min_version
(
"4.1
5.
0"
)
check_min_version
(
"4.1
6.0.dev
0"
)
require_version
(
"datasets>=1.8.0"
,
"To fix: pip install -r examples/pytorch/question-answering/requirements.txt"
)
...
...
examples/pytorch/question-answering/run_qa_beam_search_no_trainer.py
View file @
fa39ff9f
...
...
@@ -54,7 +54,7 @@ from utils_qa import postprocess_qa_predictions_with_beam_search
# Will error if the minimal version of Transformers is not installed. Remove at your own risks.
check_min_version
(
"4.1
5.
0"
)
check_min_version
(
"4.1
6.0.dev
0"
)
require_version
(
"datasets>=1.8.0"
,
"To fix: pip install -r examples/pytorch/question-answering/requirements.txt"
)
...
...
examples/pytorch/question-answering/run_qa_no_trainer.py
View file @
fa39ff9f
...
...
@@ -56,7 +56,7 @@ from utils_qa import postprocess_qa_predictions
# Will error if the minimal version of Transformers is not installed. Remove at your own risks.
check_min_version
(
"4.1
5.
0"
)
check_min_version
(
"4.1
6.0.dev
0"
)
require_version
(
"datasets>=1.8.0"
,
"To fix: pip install -r examples/pytorch/question-answering/requirements.txt"
)
...
...
examples/pytorch/question-answering/run_seq2seq_qa.py
View file @
fa39ff9f
...
...
@@ -44,7 +44,7 @@ from transformers.utils.versions import require_version
# Will error if the minimal version of Transformers is not installed. Remove at your own risks.
check_min_version
(
"4.1
5.
0"
)
check_min_version
(
"4.1
6.0.dev
0"
)
require_version
(
"datasets>=1.8.0"
,
"To fix: pip install -r examples/pytorch/question-answering/requirements.txt"
)
...
...
examples/pytorch/speech-recognition/run_speech_recognition_ctc.py
View file @
fa39ff9f
...
...
@@ -49,7 +49,7 @@ from transformers.utils.versions import require_version
# Will error if the minimal version of Transformers is not installed. Remove at your own risks.
check_min_version
(
"4.1
5.
0"
)
check_min_version
(
"4.1
6.0.dev
0"
)
require_version
(
"datasets>=1.13.3"
,
"To fix: pip install -r examples/pytorch/text-classification/requirements.txt"
)
...
...
examples/pytorch/summarization/run_summarization.py
View file @
fa39ff9f
...
...
@@ -48,7 +48,7 @@ from transformers.utils.versions import require_version
# Will error if the minimal version of Transformers is not installed. Remove at your own risks.
check_min_version
(
"4.1
5.
0"
)
check_min_version
(
"4.1
6.0.dev
0"
)
require_version
(
"datasets>=1.8.0"
,
"To fix: pip install -r examples/pytorch/summarization/requirements.txt"
)
...
...
examples/pytorch/text-classification/run_glue.py
View file @
fa39ff9f
...
...
@@ -47,7 +47,7 @@ from transformers.utils.versions import require_version
# Will error if the minimal version of Transformers is not installed. Remove at your own risks.
check_min_version
(
"4.1
5.
0"
)
check_min_version
(
"4.1
6.0.dev
0"
)
require_version
(
"datasets>=1.8.0"
,
"To fix: pip install -r examples/pytorch/text-classification/requirements.txt"
)
...
...
examples/pytorch/text-classification/run_xnli.py
View file @
fa39ff9f
...
...
@@ -47,7 +47,7 @@ from transformers.utils.versions import require_version
# Will error if the minimal version of Transformers is not installed. Remove at your own risks.
check_min_version
(
"4.1
5.
0"
)
check_min_version
(
"4.1
6.0.dev
0"
)
require_version
(
"datasets>=1.8.0"
,
"To fix: pip install -r examples/pytorch/text-classification/requirements.txt"
)
...
...
examples/pytorch/token-classification/run_ner.py
View file @
fa39ff9f
...
...
@@ -47,7 +47,7 @@ from transformers.utils.versions import require_version
# Will error if the minimal version of Transformers is not installed. Remove at your own risks.
check_min_version
(
"4.1
5.
0"
)
check_min_version
(
"4.1
6.0.dev
0"
)
require_version
(
"datasets>=1.8.0"
,
"To fix: pip install -r examples/pytorch/token-classification/requirements.txt"
)
...
...
examples/pytorch/translation/run_translation.py
View file @
fa39ff9f
...
...
@@ -51,7 +51,7 @@ from transformers.utils.versions import require_version
# Will error if the minimal version of Transformers is not installed. Remove at your own risks.
check_min_version
(
"4.1
5.
0"
)
check_min_version
(
"4.1
6.0.dev
0"
)
require_version
(
"datasets>=1.8.0"
,
"To fix: pip install -r examples/pytorch/translation/requirements.txt"
)
...
...
examples/tensorflow/multiple-choice/run_swag.py
View file @
fa39ff9f
...
...
@@ -47,7 +47,7 @@ from transformers.utils import check_min_version
# Will error if the minimal version of Transformers is not installed. Remove at your own risks.
check_min_version
(
"4.1
5.
0"
)
check_min_version
(
"4.1
6.0.dev
0"
)
logger
=
logging
.
getLogger
(
__name__
)
...
...
Prev
1
2
Next
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