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
1248f092
"docs/source/de/index.md" did not exist on "c9a0671477b06780840ab2f5ff39006e0952be3d"
Commit
1248f092
authored
Mar 20, 2024
by
Arthur Zucker
Browse files
v4.40.0.dev.0
parent
11ef35e8
Changes
62
Show whitespace changes
Inline
Side-by-side
Showing
20 changed files
with
20 additions
and
20 deletions
+20
-20
examples/pytorch/image-classification/run_image_classification_no_trainer.py
...age-classification/run_image_classification_no_trainer.py
+1
-1
examples/pytorch/image-pretraining/run_mae.py
examples/pytorch/image-pretraining/run_mae.py
+1
-1
examples/pytorch/image-pretraining/run_mim.py
examples/pytorch/image-pretraining/run_mim.py
+1
-1
examples/pytorch/image-pretraining/run_mim_no_trainer.py
examples/pytorch/image-pretraining/run_mim_no_trainer.py
+1
-1
examples/pytorch/language-modeling/run_clm.py
examples/pytorch/language-modeling/run_clm.py
+1
-1
examples/pytorch/language-modeling/run_clm_no_trainer.py
examples/pytorch/language-modeling/run_clm_no_trainer.py
+1
-1
examples/pytorch/language-modeling/run_fim.py
examples/pytorch/language-modeling/run_fim.py
+1
-1
examples/pytorch/language-modeling/run_fim_no_trainer.py
examples/pytorch/language-modeling/run_fim_no_trainer.py
+1
-1
examples/pytorch/language-modeling/run_mlm.py
examples/pytorch/language-modeling/run_mlm.py
+1
-1
examples/pytorch/language-modeling/run_mlm_no_trainer.py
examples/pytorch/language-modeling/run_mlm_no_trainer.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/multiple-choice/run_swag_no_trainer.py
examples/pytorch/multiple-choice/run_swag_no_trainer.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/semantic-segmentation/run_semantic_segmentation.py
...ytorch/semantic-segmentation/run_semantic_segmentation.py
+1
-1
examples/pytorch/semantic-segmentation/run_semantic_segmentation_no_trainer.py
...ntic-segmentation/run_semantic_segmentation_no_trainer.py
+1
-1
No files found.
examples/pytorch/image-classification/run_image_classification_no_trainer.py
View file @
1248f092
...
...
@@ -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.
39
.0.dev0"
)
check_min_version
(
"4.
40
.0.dev0"
)
logger
=
get_logger
(
__name__
)
...
...
examples/pytorch/image-pretraining/run_mae.py
View file @
1248f092
...
...
@@ -44,7 +44,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.
39
.0.dev0"
)
check_min_version
(
"4.
40
.0.dev0"
)
require_version
(
"datasets>=1.8.0"
,
"To fix: pip install -r examples/pytorch/image-pretraining/requirements.txt"
)
...
...
examples/pytorch/image-pretraining/run_mim.py
View file @
1248f092
...
...
@@ -49,7 +49,7 @@ Any model supported by the AutoModelForMaskedImageModeling API can be used.
logger
=
logging
.
getLogger
(
__name__
)
# Will error if the minimal version of Transformers is not installed. Remove at your own risks.
check_min_version
(
"4.
39
.0.dev0"
)
check_min_version
(
"4.
40
.0.dev0"
)
require_version
(
"datasets>=1.8.0"
,
"To fix: pip install -r examples/pytorch/image-pretraining/requirements.txt"
)
...
...
examples/pytorch/image-pretraining/run_mim_no_trainer.py
View file @
1248f092
...
...
@@ -54,7 +54,7 @@ Any model supported by the AutoModelForMaskedImageModeling API can be used.
logger
=
logging
.
getLogger
(
__name__
)
# Will error if the minimal version of Transformers is not installed. Remove at your own risks.
check_min_version
(
"4.
39
.0.dev0"
)
check_min_version
(
"4.
40
.0.dev0"
)
require_version
(
"datasets>=1.8.0"
,
"To fix: pip install -r examples/pytorch/image-pretraining/requirements.txt"
)
...
...
examples/pytorch/language-modeling/run_clm.py
View file @
1248f092
...
...
@@ -56,7 +56,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.
39
.0.dev0"
)
check_min_version
(
"4.
40
.0.dev0"
)
require_version
(
"datasets>=1.8.0"
,
"To fix: pip install -r examples/pytorch/language-modeling/requirements.txt"
)
...
...
examples/pytorch/language-modeling/run_clm_no_trainer.py
View file @
1248f092
...
...
@@ -57,7 +57,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.
39
.0.dev0"
)
check_min_version
(
"4.
40
.0.dev0"
)
logger
=
get_logger
(
__name__
)
...
...
examples/pytorch/language-modeling/run_fim.py
View file @
1248f092
...
...
@@ -58,7 +58,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.
36
.0.dev0"
)
check_min_version
(
"4.
40
.0.dev0"
)
require_version
(
"datasets>=1.8.0"
,
"To fix: pip install -r examples/pytorch/language-modeling/requirements.txt"
)
...
...
examples/pytorch/language-modeling/run_fim_no_trainer.py
View file @
1248f092
...
...
@@ -60,7 +60,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.
36
.0.dev0"
)
check_min_version
(
"4.
40
.0.dev0"
)
logger
=
get_logger
(
__name__
)
...
...
examples/pytorch/language-modeling/run_mlm.py
View file @
1248f092
...
...
@@ -54,7 +54,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.
39
.0.dev0"
)
check_min_version
(
"4.
40
.0.dev0"
)
require_version
(
"datasets>=1.8.0"
,
"To fix: pip install -r examples/pytorch/language-modeling/requirements.txt"
)
...
...
examples/pytorch/language-modeling/run_mlm_no_trainer.py
View file @
1248f092
...
...
@@ -57,7 +57,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.
39
.0.dev0"
)
check_min_version
(
"4.
40
.0.dev0"
)
logger
=
get_logger
(
__name__
)
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 @
1248f092
...
...
@@ -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.
39
.0.dev0"
)
check_min_version
(
"4.
40
.0.dev0"
)
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 @
1248f092
...
...
@@ -48,7 +48,7 @@ from transformers.utils import PaddingStrategy, check_min_version, send_example_
# Will error if the minimal version of Transformers is not installed. Remove at your own risks.
check_min_version
(
"4.
39
.0.dev0"
)
check_min_version
(
"4.
40
.0.dev0"
)
logger
=
logging
.
getLogger
(
__name__
)
...
...
examples/pytorch/multiple-choice/run_swag_no_trainer.py
View file @
1248f092
...
...
@@ -56,7 +56,7 @@ from transformers.utils import PaddingStrategy, check_min_version, send_example_
# Will error if the minimal version of Transformers is not installed. Remove at your own risks.
check_min_version
(
"4.
39
.0.dev0"
)
check_min_version
(
"4.
40
.0.dev0"
)
logger
=
get_logger
(
__name__
)
# You should update this to your particular problem to have better documentation of `model_type`
...
...
examples/pytorch/question-answering/run_qa.py
View file @
1248f092
...
...
@@ -50,7 +50,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.
39
.0.dev0"
)
check_min_version
(
"4.
40
.0.dev0"
)
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 @
1248f092
...
...
@@ -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.
39
.0.dev0"
)
check_min_version
(
"4.
40
.0.dev0"
)
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 @
1248f092
...
...
@@ -56,7 +56,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.
39
.0.dev0"
)
check_min_version
(
"4.
40
.0.dev0"
)
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 @
1248f092
...
...
@@ -57,7 +57,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.
39
.0.dev0"
)
check_min_version
(
"4.
40
.0.dev0"
)
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 @
1248f092
...
...
@@ -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.
39
.0.dev0"
)
check_min_version
(
"4.
40
.0.dev0"
)
require_version
(
"datasets>=1.8.0"
,
"To fix: pip install -r examples/pytorch/question-answering/requirements.txt"
)
...
...
examples/pytorch/semantic-segmentation/run_semantic_segmentation.py
View file @
1248f092
...
...
@@ -52,7 +52,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.
39
.0.dev0"
)
check_min_version
(
"4.
40
.0.dev0"
)
require_version
(
"datasets>=2.0.0"
,
"To fix: pip install -r examples/pytorch/semantic-segmentation/requirements.txt"
)
...
...
examples/pytorch/semantic-segmentation/run_semantic_segmentation_no_trainer.py
View file @
1248f092
...
...
@@ -50,7 +50,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.
39
.0.dev0"
)
check_min_version
(
"4.
40
.0.dev0"
)
logger
=
get_logger
(
__name__
)
...
...
Prev
1
2
3
4
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