repo_name
stringclasses
6 values
pr_number
int64
99
20.3k
pr_title
stringlengths
8
158
pr_description
stringlengths
0
6.54k
author
stringlengths
4
18
date_created
timestamp[ns, tz=UTC]
date_merged
timestamp[ns, tz=UTC]
previous_commit
stringlengths
40
40
pr_commit
stringlengths
40
40
query
stringlengths
37
6.57k
filepath
stringlengths
8
153
before_content
stringlengths
0
876M
after_content
stringlengths
0
876M
label
int64
-1
1
huggingface/transformers
20,253
Rephrasing the link.
# What does this PR do? Fixes https://github.com/huggingface/transformers/pull/20226#discussion_r1023296368 <!-- Congratulations! You've made it this far! You're not quite done yet though. Once merged, your PR is going to appear in the release notes with the title you set, so make sure it's a great title that fully ...
Narsil
2022-11-16T08:55:46Z
2022-11-16T16:09:45Z
e9d9982e7c99da93c7b5ed0058bdd49e749aee5b
a239bdd28ff0ea85e4405fdd02623d25268904f0
Rephrasing the link.. # What does this PR do? Fixes https://github.com/huggingface/transformers/pull/20226#discussion_r1023296368 <!-- Congratulations! You've made it this far! You're not quite done yet though. Once merged, your PR is going to appear in the release notes with the title you set, so make sure it's a g...
./src/transformers/pipelines/feature_extraction.py
from typing import Dict from .base import GenericTensor, Pipeline # Can't use @add_end_docstrings(PIPELINE_INIT_ARGS) here because this one does not accept `binary_output` class FeatureExtractionPipeline(Pipeline): """ Feature extraction pipeline using no model head. This pipeline extracts the hidden states ...
from typing import Dict from .base import GenericTensor, Pipeline # Can't use @add_end_docstrings(PIPELINE_INIT_ARGS) here because this one does not accept `binary_output` class FeatureExtractionPipeline(Pipeline): """ Feature extraction pipeline using no model head. This pipeline extracts the hidden states ...
1
huggingface/transformers
20,253
Rephrasing the link.
# What does this PR do? Fixes https://github.com/huggingface/transformers/pull/20226#discussion_r1023296368 <!-- Congratulations! You've made it this far! You're not quite done yet though. Once merged, your PR is going to appear in the release notes with the title you set, so make sure it's a great title that fully ...
Narsil
2022-11-16T08:55:46Z
2022-11-16T16:09:45Z
e9d9982e7c99da93c7b5ed0058bdd49e749aee5b
a239bdd28ff0ea85e4405fdd02623d25268904f0
Rephrasing the link.. # What does this PR do? Fixes https://github.com/huggingface/transformers/pull/20226#discussion_r1023296368 <!-- Congratulations! You've made it this far! You're not quite done yet though. Once merged, your PR is going to appear in the release notes with the title you set, so make sure it's a g...
./src/transformers/pipelines/fill_mask.py
from typing import Dict import numpy as np from ..utils import add_end_docstrings, is_tf_available, is_torch_available, logging from .base import PIPELINE_INIT_ARGS, GenericTensor, Pipeline, PipelineException if is_tf_available(): import tensorflow as tf from ..tf_utils import stable_softmax if is_torch_...
from typing import Dict import numpy as np from ..utils import add_end_docstrings, is_tf_available, is_torch_available, logging from .base import PIPELINE_INIT_ARGS, GenericTensor, Pipeline, PipelineException if is_tf_available(): import tensorflow as tf from ..tf_utils import stable_softmax if is_torch_...
1
huggingface/transformers
20,253
Rephrasing the link.
# What does this PR do? Fixes https://github.com/huggingface/transformers/pull/20226#discussion_r1023296368 <!-- Congratulations! You've made it this far! You're not quite done yet though. Once merged, your PR is going to appear in the release notes with the title you set, so make sure it's a great title that fully ...
Narsil
2022-11-16T08:55:46Z
2022-11-16T16:09:45Z
e9d9982e7c99da93c7b5ed0058bdd49e749aee5b
a239bdd28ff0ea85e4405fdd02623d25268904f0
Rephrasing the link.. # What does this PR do? Fixes https://github.com/huggingface/transformers/pull/20226#discussion_r1023296368 <!-- Congratulations! You've made it this far! You're not quite done yet though. Once merged, your PR is going to appear in the release notes with the title you set, so make sure it's a g...
./src/transformers/models/canine/modeling_canine.py
# coding=utf-8 # Copyright 2021 Google AI The HuggingFace Inc. team. All rights reserved. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # ...
# coding=utf-8 # Copyright 2021 Google AI The HuggingFace Inc. team. All rights reserved. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # ...
-1
huggingface/transformers
20,253
Rephrasing the link.
# What does this PR do? Fixes https://github.com/huggingface/transformers/pull/20226#discussion_r1023296368 <!-- Congratulations! You've made it this far! You're not quite done yet though. Once merged, your PR is going to appear in the release notes with the title you set, so make sure it's a great title that fully ...
Narsil
2022-11-16T08:55:46Z
2022-11-16T16:09:45Z
e9d9982e7c99da93c7b5ed0058bdd49e749aee5b
a239bdd28ff0ea85e4405fdd02623d25268904f0
Rephrasing the link.. # What does this PR do? Fixes https://github.com/huggingface/transformers/pull/20226#discussion_r1023296368 <!-- Congratulations! You've made it this far! You're not quite done yet though. Once merged, your PR is going to appear in the release notes with the title you set, so make sure it's a g...
./src/transformers/models/codegen/__init__.py
# flake8: noqa # There's no way to ignore "F401 '...' imported but unused" warnings in this # module, but to preserve other warnings. So, don't check this module at all. # Copyright 2022 Salesforce authors, The EleutherAI, and HuggingFace Teams. All rights reserved. # # Licensed under the Apache License, Version 2.0 (...
# flake8: noqa # There's no way to ignore "F401 '...' imported but unused" warnings in this # module, but to preserve other warnings. So, don't check this module at all. # Copyright 2022 Salesforce authors, The EleutherAI, and HuggingFace Teams. All rights reserved. # # Licensed under the Apache License, Version 2.0 (...
-1
huggingface/transformers
20,253
Rephrasing the link.
# What does this PR do? Fixes https://github.com/huggingface/transformers/pull/20226#discussion_r1023296368 <!-- Congratulations! You've made it this far! You're not quite done yet though. Once merged, your PR is going to appear in the release notes with the title you set, so make sure it's a great title that fully ...
Narsil
2022-11-16T08:55:46Z
2022-11-16T16:09:45Z
e9d9982e7c99da93c7b5ed0058bdd49e749aee5b
a239bdd28ff0ea85e4405fdd02623d25268904f0
Rephrasing the link.. # What does this PR do? Fixes https://github.com/huggingface/transformers/pull/20226#discussion_r1023296368 <!-- Congratulations! You've made it this far! You're not quite done yet though. Once merged, your PR is going to appear in the release notes with the title you set, so make sure it's a g...
./src/transformers/models/decision_transformer/__init__.py
# flake8: noqa # There's no way to ignore "F401 '...' imported but unused" warnings in this # module, but to preserve other warnings. So, don't check this module at all. # Copyright 2020 The HuggingFace Team. All rights reserved. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use thi...
# flake8: noqa # There's no way to ignore "F401 '...' imported but unused" warnings in this # module, but to preserve other warnings. So, don't check this module at all. # Copyright 2020 The HuggingFace Team. All rights reserved. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use thi...
-1
huggingface/transformers
20,253
Rephrasing the link.
# What does this PR do? Fixes https://github.com/huggingface/transformers/pull/20226#discussion_r1023296368 <!-- Congratulations! You've made it this far! You're not quite done yet though. Once merged, your PR is going to appear in the release notes with the title you set, so make sure it's a great title that fully ...
Narsil
2022-11-16T08:55:46Z
2022-11-16T16:09:45Z
e9d9982e7c99da93c7b5ed0058bdd49e749aee5b
a239bdd28ff0ea85e4405fdd02623d25268904f0
Rephrasing the link.. # What does this PR do? Fixes https://github.com/huggingface/transformers/pull/20226#discussion_r1023296368 <!-- Congratulations! You've made it this far! You're not quite done yet though. Once merged, your PR is going to appear in the release notes with the title you set, so make sure it's a g...
./src/transformers/models/megatron_gpt2/checkpoint_reshaping_and_interoperability.py
# Copyright 2022 The HuggingFace Team. All rights reserved. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicabl...
# Copyright 2022 The HuggingFace Team. All rights reserved. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicabl...
-1
huggingface/transformers
20,253
Rephrasing the link.
# What does this PR do? Fixes https://github.com/huggingface/transformers/pull/20226#discussion_r1023296368 <!-- Congratulations! You've made it this far! You're not quite done yet though. Once merged, your PR is going to appear in the release notes with the title you set, so make sure it's a great title that fully ...
Narsil
2022-11-16T08:55:46Z
2022-11-16T16:09:45Z
e9d9982e7c99da93c7b5ed0058bdd49e749aee5b
a239bdd28ff0ea85e4405fdd02623d25268904f0
Rephrasing the link.. # What does this PR do? Fixes https://github.com/huggingface/transformers/pull/20226#discussion_r1023296368 <!-- Congratulations! You've made it this far! You're not quite done yet though. Once merged, your PR is going to appear in the release notes with the title you set, so make sure it's a g...
./tests/models/mpnet/__init__.py
-1
huggingface/transformers
20,253
Rephrasing the link.
# What does this PR do? Fixes https://github.com/huggingface/transformers/pull/20226#discussion_r1023296368 <!-- Congratulations! You've made it this far! You're not quite done yet though. Once merged, your PR is going to appear in the release notes with the title you set, so make sure it's a great title that fully ...
Narsil
2022-11-16T08:55:46Z
2022-11-16T16:09:45Z
e9d9982e7c99da93c7b5ed0058bdd49e749aee5b
a239bdd28ff0ea85e4405fdd02623d25268904f0
Rephrasing the link.. # What does this PR do? Fixes https://github.com/huggingface/transformers/pull/20226#discussion_r1023296368 <!-- Congratulations! You've made it this far! You're not quite done yet though. Once merged, your PR is going to appear in the release notes with the title you set, so make sure it's a g...
./tests/models/x_clip/test_modeling_x_clip.py
# coding=utf-8 # Copyright 2022 The HuggingFace Inc. team. All rights reserved. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless r...
# coding=utf-8 # Copyright 2022 The HuggingFace Inc. team. All rights reserved. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless r...
-1
huggingface/transformers
20,253
Rephrasing the link.
# What does this PR do? Fixes https://github.com/huggingface/transformers/pull/20226#discussion_r1023296368 <!-- Congratulations! You've made it this far! You're not quite done yet though. Once merged, your PR is going to appear in the release notes with the title you set, so make sure it's a great title that fully ...
Narsil
2022-11-16T08:55:46Z
2022-11-16T16:09:45Z
e9d9982e7c99da93c7b5ed0058bdd49e749aee5b
a239bdd28ff0ea85e4405fdd02623d25268904f0
Rephrasing the link.. # What does this PR do? Fixes https://github.com/huggingface/transformers/pull/20226#discussion_r1023296368 <!-- Congratulations! You've made it this far! You're not quite done yet though. Once merged, your PR is going to appear in the release notes with the title you set, so make sure it's a g...
./tests/utils/test_model_output.py
# coding=utf-8 # Copyright 2020 The Hugging Face Team. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law...
# coding=utf-8 # Copyright 2020 The Hugging Face Team. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law...
-1
huggingface/transformers
20,253
Rephrasing the link.
# What does this PR do? Fixes https://github.com/huggingface/transformers/pull/20226#discussion_r1023296368 <!-- Congratulations! You've made it this far! You're not quite done yet though. Once merged, your PR is going to appear in the release notes with the title you set, so make sure it's a great title that fully ...
Narsil
2022-11-16T08:55:46Z
2022-11-16T16:09:45Z
e9d9982e7c99da93c7b5ed0058bdd49e749aee5b
a239bdd28ff0ea85e4405fdd02623d25268904f0
Rephrasing the link.. # What does this PR do? Fixes https://github.com/huggingface/transformers/pull/20226#discussion_r1023296368 <!-- Congratulations! You've made it this far! You're not quite done yet though. Once merged, your PR is going to appear in the release notes with the title you set, so make sure it's a g...
./tests/models/unispeech/__init__.py
-1
huggingface/transformers
20,253
Rephrasing the link.
# What does this PR do? Fixes https://github.com/huggingface/transformers/pull/20226#discussion_r1023296368 <!-- Congratulations! You've made it this far! You're not quite done yet though. Once merged, your PR is going to appear in the release notes with the title you set, so make sure it's a great title that fully ...
Narsil
2022-11-16T08:55:46Z
2022-11-16T16:09:45Z
e9d9982e7c99da93c7b5ed0058bdd49e749aee5b
a239bdd28ff0ea85e4405fdd02623d25268904f0
Rephrasing the link.. # What does this PR do? Fixes https://github.com/huggingface/transformers/pull/20226#discussion_r1023296368 <!-- Congratulations! You've made it this far! You're not quite done yet though. Once merged, your PR is going to appear in the release notes with the title you set, so make sure it's a g...
./src/transformers/models/big_bird/convert_bigbird_original_tf_checkpoint_to_pytorch.py
# coding=utf-8 # Copyright 2021 The HuggingFace Inc. team. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable...
# coding=utf-8 # Copyright 2021 The HuggingFace Inc. team. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable...
-1
huggingface/transformers
20,253
Rephrasing the link.
# What does this PR do? Fixes https://github.com/huggingface/transformers/pull/20226#discussion_r1023296368 <!-- Congratulations! You've made it this far! You're not quite done yet though. Once merged, your PR is going to appear in the release notes with the title you set, so make sure it's a great title that fully ...
Narsil
2022-11-16T08:55:46Z
2022-11-16T16:09:45Z
e9d9982e7c99da93c7b5ed0058bdd49e749aee5b
a239bdd28ff0ea85e4405fdd02623d25268904f0
Rephrasing the link.. # What does this PR do? Fixes https://github.com/huggingface/transformers/pull/20226#discussion_r1023296368 <!-- Congratulations! You've made it this far! You're not quite done yet though. Once merged, your PR is going to appear in the release notes with the title you set, so make sure it's a g...
./tests/optimization/test_optimization_tf.py
# Copyright 2020 The HuggingFace Team. All rights reserved. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicabl...
# Copyright 2020 The HuggingFace Team. All rights reserved. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicabl...
-1
huggingface/transformers
20,253
Rephrasing the link.
# What does this PR do? Fixes https://github.com/huggingface/transformers/pull/20226#discussion_r1023296368 <!-- Congratulations! You've made it this far! You're not quite done yet though. Once merged, your PR is going to appear in the release notes with the title you set, so make sure it's a great title that fully ...
Narsil
2022-11-16T08:55:46Z
2022-11-16T16:09:45Z
e9d9982e7c99da93c7b5ed0058bdd49e749aee5b
a239bdd28ff0ea85e4405fdd02623d25268904f0
Rephrasing the link.. # What does this PR do? Fixes https://github.com/huggingface/transformers/pull/20226#discussion_r1023296368 <!-- Congratulations! You've made it this far! You're not quite done yet though. Once merged, your PR is going to appear in the release notes with the title you set, so make sure it's a g...
./examples/research_projects/jax-projects/big_bird/evaluate.py
from datasets import load_from_disk import jax import jax.numpy as jnp from bigbird_flax import FlaxBigBirdForNaturalQuestions from transformers import BigBirdTokenizerFast CATEGORY_MAPPING = {0: "null", 1: "short", 2: "long", 3: "yes", 4: "no"} PUNCTUATION_SET_TO_EXCLUDE = set("".join(["‘", "’", "´", "`", ".", ",",...
from datasets import load_from_disk import jax import jax.numpy as jnp from bigbird_flax import FlaxBigBirdForNaturalQuestions from transformers import BigBirdTokenizerFast CATEGORY_MAPPING = {0: "null", 1: "short", 2: "long", 3: "yes", 4: "no"} PUNCTUATION_SET_TO_EXCLUDE = set("".join(["‘", "’", "´", "`", ".", ",",...
-1
huggingface/transformers
20,253
Rephrasing the link.
# What does this PR do? Fixes https://github.com/huggingface/transformers/pull/20226#discussion_r1023296368 <!-- Congratulations! You've made it this far! You're not quite done yet though. Once merged, your PR is going to appear in the release notes with the title you set, so make sure it's a great title that fully ...
Narsil
2022-11-16T08:55:46Z
2022-11-16T16:09:45Z
e9d9982e7c99da93c7b5ed0058bdd49e749aee5b
a239bdd28ff0ea85e4405fdd02623d25268904f0
Rephrasing the link.. # What does this PR do? Fixes https://github.com/huggingface/transformers/pull/20226#discussion_r1023296368 <!-- Congratulations! You've made it this far! You're not quite done yet though. Once merged, your PR is going to appear in the release notes with the title you set, so make sure it's a g...
./src/transformers/models/camembert/modeling_camembert.py
# coding=utf-8 # Copyright 2019 Inria, Facebook AI Research and the HuggingFace Inc. team. # Copyright (c) 2018, NVIDIA CORPORATION. All rights reserved. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the...
# coding=utf-8 # Copyright 2019 Inria, Facebook AI Research and the HuggingFace Inc. team. # Copyright (c) 2018, NVIDIA CORPORATION. All rights reserved. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the...
-1
huggingface/transformers
20,253
Rephrasing the link.
# What does this PR do? Fixes https://github.com/huggingface/transformers/pull/20226#discussion_r1023296368 <!-- Congratulations! You've made it this far! You're not quite done yet though. Once merged, your PR is going to appear in the release notes with the title you set, so make sure it's a great title that fully ...
Narsil
2022-11-16T08:55:46Z
2022-11-16T16:09:45Z
e9d9982e7c99da93c7b5ed0058bdd49e749aee5b
a239bdd28ff0ea85e4405fdd02623d25268904f0
Rephrasing the link.. # What does this PR do? Fixes https://github.com/huggingface/transformers/pull/20226#discussion_r1023296368 <!-- Congratulations! You've made it this far! You're not quite done yet though. Once merged, your PR is going to appear in the release notes with the title you set, so make sure it's a g...
./src/transformers/models/auto/__init__.py
# flake8: noqa # There's no way to ignore "F401 '...' imported but unused" warnings in this # module, but to preserve other warnings. So, don't check this module at all. # Copyright 2020 The HuggingFace Team. All rights reserved. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use thi...
# flake8: noqa # There's no way to ignore "F401 '...' imported but unused" warnings in this # module, but to preserve other warnings. So, don't check this module at all. # Copyright 2020 The HuggingFace Team. All rights reserved. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use thi...
-1
huggingface/transformers
20,253
Rephrasing the link.
# What does this PR do? Fixes https://github.com/huggingface/transformers/pull/20226#discussion_r1023296368 <!-- Congratulations! You've made it this far! You're not quite done yet though. Once merged, your PR is going to appear in the release notes with the title you set, so make sure it's a great title that fully ...
Narsil
2022-11-16T08:55:46Z
2022-11-16T16:09:45Z
e9d9982e7c99da93c7b5ed0058bdd49e749aee5b
a239bdd28ff0ea85e4405fdd02623d25268904f0
Rephrasing the link.. # What does this PR do? Fixes https://github.com/huggingface/transformers/pull/20226#discussion_r1023296368 <!-- Congratulations! You've made it this far! You're not quite done yet though. Once merged, your PR is going to appear in the release notes with the title you set, so make sure it's a g...
./src/transformers/models/vision_text_dual_encoder/modeling_flax_vision_text_dual_encoder.py
# coding=utf-8 # Copyright 2021 The HuggingFace Inc. team. All rights reserved. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless r...
# coding=utf-8 # Copyright 2021 The HuggingFace Inc. team. All rights reserved. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless r...
-1
huggingface/transformers
20,253
Rephrasing the link.
# What does this PR do? Fixes https://github.com/huggingface/transformers/pull/20226#discussion_r1023296368 <!-- Congratulations! You've made it this far! You're not quite done yet though. Once merged, your PR is going to appear in the release notes with the title you set, so make sure it's a great title that fully ...
Narsil
2022-11-16T08:55:46Z
2022-11-16T16:09:45Z
e9d9982e7c99da93c7b5ed0058bdd49e749aee5b
a239bdd28ff0ea85e4405fdd02623d25268904f0
Rephrasing the link.. # What does this PR do? Fixes https://github.com/huggingface/transformers/pull/20226#discussion_r1023296368 <!-- Congratulations! You've made it this far! You're not quite done yet though. Once merged, your PR is going to appear in the release notes with the title you set, so make sure it's a g...
./tests/models/fnet/__init__.py
-1
huggingface/transformers
20,253
Rephrasing the link.
# What does this PR do? Fixes https://github.com/huggingface/transformers/pull/20226#discussion_r1023296368 <!-- Congratulations! You've made it this far! You're not quite done yet though. Once merged, your PR is going to appear in the release notes with the title you set, so make sure it's a great title that fully ...
Narsil
2022-11-16T08:55:46Z
2022-11-16T16:09:45Z
e9d9982e7c99da93c7b5ed0058bdd49e749aee5b
a239bdd28ff0ea85e4405fdd02623d25268904f0
Rephrasing the link.. # What does this PR do? Fixes https://github.com/huggingface/transformers/pull/20226#discussion_r1023296368 <!-- Congratulations! You've made it this far! You're not quite done yet though. Once merged, your PR is going to appear in the release notes with the title you set, so make sure it's a g...
./src/transformers/commands/convert.py
# Copyright 2020 The HuggingFace Team. All rights reserved. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicabl...
# Copyright 2020 The HuggingFace Team. All rights reserved. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicabl...
-1
huggingface/transformers
20,253
Rephrasing the link.
# What does this PR do? Fixes https://github.com/huggingface/transformers/pull/20226#discussion_r1023296368 <!-- Congratulations! You've made it this far! You're not quite done yet though. Once merged, your PR is going to appear in the release notes with the title you set, so make sure it's a great title that fully ...
Narsil
2022-11-16T08:55:46Z
2022-11-16T16:09:45Z
e9d9982e7c99da93c7b5ed0058bdd49e749aee5b
a239bdd28ff0ea85e4405fdd02623d25268904f0
Rephrasing the link.. # What does this PR do? Fixes https://github.com/huggingface/transformers/pull/20226#discussion_r1023296368 <!-- Congratulations! You've made it this far! You're not quite done yet though. Once merged, your PR is going to appear in the release notes with the title you set, so make sure it's a g...
./tests/models/prophetnet/test_tokenization_prophetnet.py
# coding=utf-8 # Copyright 2020 The HuggingFace Inc. team, The Microsoft Research team. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # ...
# coding=utf-8 # Copyright 2020 The HuggingFace Inc. team, The Microsoft Research team. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # ...
-1
huggingface/transformers
20,253
Rephrasing the link.
# What does this PR do? Fixes https://github.com/huggingface/transformers/pull/20226#discussion_r1023296368 <!-- Congratulations! You've made it this far! You're not quite done yet though. Once merged, your PR is going to appear in the release notes with the title you set, so make sure it's a great title that fully ...
Narsil
2022-11-16T08:55:46Z
2022-11-16T16:09:45Z
e9d9982e7c99da93c7b5ed0058bdd49e749aee5b
a239bdd28ff0ea85e4405fdd02623d25268904f0
Rephrasing the link.. # What does this PR do? Fixes https://github.com/huggingface/transformers/pull/20226#discussion_r1023296368 <!-- Congratulations! You've made it this far! You're not quite done yet though. Once merged, your PR is going to appear in the release notes with the title you set, so make sure it's a g...
./src/transformers/commands/lfs.py
""" Implementation of a custom transfer agent for the transfer type "multipart" for git-lfs. Inspired by: github.com/cbartz/git-lfs-swift-transfer-agent/blob/master/git_lfs_swift_transfer.py Spec is: github.com/git-lfs/git-lfs/blob/master/docs/custom-transfers.md To launch debugger while developing: ``` [lfs "cust...
""" Implementation of a custom transfer agent for the transfer type "multipart" for git-lfs. Inspired by: github.com/cbartz/git-lfs-swift-transfer-agent/blob/master/git_lfs_swift_transfer.py Spec is: github.com/git-lfs/git-lfs/blob/master/docs/custom-transfers.md To launch debugger while developing: ``` [lfs "cust...
-1
huggingface/transformers
20,253
Rephrasing the link.
# What does this PR do? Fixes https://github.com/huggingface/transformers/pull/20226#discussion_r1023296368 <!-- Congratulations! You've made it this far! You're not quite done yet though. Once merged, your PR is going to appear in the release notes with the title you set, so make sure it's a great title that fully ...
Narsil
2022-11-16T08:55:46Z
2022-11-16T16:09:45Z
e9d9982e7c99da93c7b5ed0058bdd49e749aee5b
a239bdd28ff0ea85e4405fdd02623d25268904f0
Rephrasing the link.. # What does this PR do? Fixes https://github.com/huggingface/transformers/pull/20226#discussion_r1023296368 <!-- Congratulations! You've made it this far! You're not quite done yet though. Once merged, your PR is going to appear in the release notes with the title you set, so make sure it's a g...
./examples/pytorch/audio-classification/run_audio_classification.py
#!/usr/bin/env python # coding=utf-8 # Copyright 2021 The HuggingFace Inc. team. All rights reserved. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LI...
#!/usr/bin/env python # coding=utf-8 # Copyright 2021 The HuggingFace Inc. team. All rights reserved. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LI...
-1
huggingface/transformers
20,253
Rephrasing the link.
# What does this PR do? Fixes https://github.com/huggingface/transformers/pull/20226#discussion_r1023296368 <!-- Congratulations! You've made it this far! You're not quite done yet though. Once merged, your PR is going to appear in the release notes with the title you set, so make sure it's a great title that fully ...
Narsil
2022-11-16T08:55:46Z
2022-11-16T16:09:45Z
e9d9982e7c99da93c7b5ed0058bdd49e749aee5b
a239bdd28ff0ea85e4405fdd02623d25268904f0
Rephrasing the link.. # What does this PR do? Fixes https://github.com/huggingface/transformers/pull/20226#discussion_r1023296368 <!-- Congratulations! You've made it this far! You're not quite done yet though. Once merged, your PR is going to appear in the release notes with the title you set, so make sure it's a g...
./tests/sagemaker/test_multi_node_data_parallel.py
import json import os import subprocess import unittest from ast import literal_eval import pytest from parameterized import parameterized, parameterized_class from . import is_sagemaker_available if is_sagemaker_available(): from sagemaker import Session, TrainingJobAnalytics from sagemaker.huggingface im...
import json import os import subprocess import unittest from ast import literal_eval import pytest from parameterized import parameterized, parameterized_class from . import is_sagemaker_available if is_sagemaker_available(): from sagemaker import Session, TrainingJobAnalytics from sagemaker.huggingface im...
-1
huggingface/transformers
20,253
Rephrasing the link.
# What does this PR do? Fixes https://github.com/huggingface/transformers/pull/20226#discussion_r1023296368 <!-- Congratulations! You've made it this far! You're not quite done yet though. Once merged, your PR is going to appear in the release notes with the title you set, so make sure it's a great title that fully ...
Narsil
2022-11-16T08:55:46Z
2022-11-16T16:09:45Z
e9d9982e7c99da93c7b5ed0058bdd49e749aee5b
a239bdd28ff0ea85e4405fdd02623d25268904f0
Rephrasing the link.. # What does this PR do? Fixes https://github.com/huggingface/transformers/pull/20226#discussion_r1023296368 <!-- Congratulations! You've made it this far! You're not quite done yet though. Once merged, your PR is going to appear in the release notes with the title you set, so make sure it's a g...
./src/transformers/models/longformer/tokenization_longformer_fast.py
# coding=utf-8 # Copyright 2020 The Allen Institute for AI team and The HuggingFace Inc. team. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2...
# coding=utf-8 # Copyright 2020 The Allen Institute for AI team and The HuggingFace Inc. team. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2...
-1
huggingface/transformers
20,253
Rephrasing the link.
# What does this PR do? Fixes https://github.com/huggingface/transformers/pull/20226#discussion_r1023296368 <!-- Congratulations! You've made it this far! You're not quite done yet though. Once merged, your PR is going to appear in the release notes with the title you set, so make sure it's a great title that fully ...
Narsil
2022-11-16T08:55:46Z
2022-11-16T16:09:45Z
e9d9982e7c99da93c7b5ed0058bdd49e749aee5b
a239bdd28ff0ea85e4405fdd02623d25268904f0
Rephrasing the link.. # What does this PR do? Fixes https://github.com/huggingface/transformers/pull/20226#discussion_r1023296368 <!-- Congratulations! You've made it this far! You're not quite done yet though. Once merged, your PR is going to appear in the release notes with the title you set, so make sure it's a g...
./src/transformers/utils/generic.py
# Copyright 2022 The HuggingFace Team. All rights reserved. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicabl...
# Copyright 2022 The HuggingFace Team. All rights reserved. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicabl...
-1
huggingface/transformers
20,253
Rephrasing the link.
# What does this PR do? Fixes https://github.com/huggingface/transformers/pull/20226#discussion_r1023296368 <!-- Congratulations! You've made it this far! You're not quite done yet though. Once merged, your PR is going to appear in the release notes with the title you set, so make sure it's a great title that fully ...
Narsil
2022-11-16T08:55:46Z
2022-11-16T16:09:45Z
e9d9982e7c99da93c7b5ed0058bdd49e749aee5b
a239bdd28ff0ea85e4405fdd02623d25268904f0
Rephrasing the link.. # What does this PR do? Fixes https://github.com/huggingface/transformers/pull/20226#discussion_r1023296368 <!-- Congratulations! You've made it this far! You're not quite done yet though. Once merged, your PR is going to appear in the release notes with the title you set, so make sure it's a g...
./tests/models/openai/test_modeling_tf_openai.py
# coding=utf-8 # Copyright 2020 The HuggingFace Team. All rights reserved. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless requir...
# coding=utf-8 # Copyright 2020 The HuggingFace Team. All rights reserved. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless requir...
-1
huggingface/transformers
20,253
Rephrasing the link.
# What does this PR do? Fixes https://github.com/huggingface/transformers/pull/20226#discussion_r1023296368 <!-- Congratulations! You've made it this far! You're not quite done yet though. Once merged, your PR is going to appear in the release notes with the title you set, so make sure it's a great title that fully ...
Narsil
2022-11-16T08:55:46Z
2022-11-16T16:09:45Z
e9d9982e7c99da93c7b5ed0058bdd49e749aee5b
a239bdd28ff0ea85e4405fdd02623d25268904f0
Rephrasing the link.. # What does this PR do? Fixes https://github.com/huggingface/transformers/pull/20226#discussion_r1023296368 <!-- Congratulations! You've made it this far! You're not quite done yet though. Once merged, your PR is going to appear in the release notes with the title you set, so make sure it's a g...
./src/transformers/models/swin/convert_swin_simmim_to_pytorch.py
# coding=utf-8 # Copyright 2022 The HuggingFace Inc. team. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable...
# coding=utf-8 # Copyright 2022 The HuggingFace Inc. team. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable...
-1
huggingface/transformers
20,253
Rephrasing the link.
# What does this PR do? Fixes https://github.com/huggingface/transformers/pull/20226#discussion_r1023296368 <!-- Congratulations! You've made it this far! You're not quite done yet though. Once merged, your PR is going to appear in the release notes with the title you set, so make sure it's a great title that fully ...
Narsil
2022-11-16T08:55:46Z
2022-11-16T16:09:45Z
e9d9982e7c99da93c7b5ed0058bdd49e749aee5b
a239bdd28ff0ea85e4405fdd02623d25268904f0
Rephrasing the link.. # What does this PR do? Fixes https://github.com/huggingface/transformers/pull/20226#discussion_r1023296368 <!-- Congratulations! You've made it this far! You're not quite done yet though. Once merged, your PR is going to appear in the release notes with the title you set, so make sure it's a g...
./src/transformers/models/gpt2/convert_gpt2_original_tf_checkpoint_to_pytorch.py
# coding=utf-8 # Copyright 2018 The HuggingFace Inc. team. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable...
# coding=utf-8 # Copyright 2018 The HuggingFace Inc. team. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable...
-1
huggingface/transformers
20,253
Rephrasing the link.
# What does this PR do? Fixes https://github.com/huggingface/transformers/pull/20226#discussion_r1023296368 <!-- Congratulations! You've made it this far! You're not quite done yet though. Once merged, your PR is going to appear in the release notes with the title you set, so make sure it's a great title that fully ...
Narsil
2022-11-16T08:55:46Z
2022-11-16T16:09:45Z
e9d9982e7c99da93c7b5ed0058bdd49e749aee5b
a239bdd28ff0ea85e4405fdd02623d25268904f0
Rephrasing the link.. # What does this PR do? Fixes https://github.com/huggingface/transformers/pull/20226#discussion_r1023296368 <!-- Congratulations! You've made it this far! You're not quite done yet though. Once merged, your PR is going to appear in the release notes with the title you set, so make sure it's a g...
./tests/models/bert_japanese/__init__.py
-1
huggingface/transformers
20,253
Rephrasing the link.
# What does this PR do? Fixes https://github.com/huggingface/transformers/pull/20226#discussion_r1023296368 <!-- Congratulations! You've made it this far! You're not quite done yet though. Once merged, your PR is going to appear in the release notes with the title you set, so make sure it's a great title that fully ...
Narsil
2022-11-16T08:55:46Z
2022-11-16T16:09:45Z
e9d9982e7c99da93c7b5ed0058bdd49e749aee5b
a239bdd28ff0ea85e4405fdd02623d25268904f0
Rephrasing the link.. # What does this PR do? Fixes https://github.com/huggingface/transformers/pull/20226#discussion_r1023296368 <!-- Congratulations! You've made it this far! You're not quite done yet though. Once merged, your PR is going to appear in the release notes with the title you set, so make sure it's a g...
./src/transformers/models/xlm/__init__.py
# flake8: noqa # There's no way to ignore "F401 '...' imported but unused" warnings in this # module, but to preserve other warnings. So, don't check this module at all. # Copyright 2020 The HuggingFace Team. All rights reserved. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use thi...
# flake8: noqa # There's no way to ignore "F401 '...' imported but unused" warnings in this # module, but to preserve other warnings. So, don't check this module at all. # Copyright 2020 The HuggingFace Team. All rights reserved. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use thi...
-1
huggingface/transformers
20,253
Rephrasing the link.
# What does this PR do? Fixes https://github.com/huggingface/transformers/pull/20226#discussion_r1023296368 <!-- Congratulations! You've made it this far! You're not quite done yet though. Once merged, your PR is going to appear in the release notes with the title you set, so make sure it's a great title that fully ...
Narsil
2022-11-16T08:55:46Z
2022-11-16T16:09:45Z
e9d9982e7c99da93c7b5ed0058bdd49e749aee5b
a239bdd28ff0ea85e4405fdd02623d25268904f0
Rephrasing the link.. # What does this PR do? Fixes https://github.com/huggingface/transformers/pull/20226#discussion_r1023296368 <!-- Congratulations! You've made it this far! You're not quite done yet though. Once merged, your PR is going to appear in the release notes with the title you set, so make sure it's a g...
./src/transformers/models/bartpho/__init__.py
# flake8: noqa # There's no way to ignore "F401 '...' imported but unused" warnings in this # module, but to preserve other warnings. So, don't check this module at all. # Copyright 2021 The HuggingFace Team. All rights reserved. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use thi...
# flake8: noqa # There's no way to ignore "F401 '...' imported but unused" warnings in this # module, but to preserve other warnings. So, don't check this module at all. # Copyright 2021 The HuggingFace Team. All rights reserved. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use thi...
-1
huggingface/transformers
20,253
Rephrasing the link.
# What does this PR do? Fixes https://github.com/huggingface/transformers/pull/20226#discussion_r1023296368 <!-- Congratulations! You've made it this far! You're not quite done yet though. Once merged, your PR is going to appear in the release notes with the title you set, so make sure it's a great title that fully ...
Narsil
2022-11-16T08:55:46Z
2022-11-16T16:09:45Z
e9d9982e7c99da93c7b5ed0058bdd49e749aee5b
a239bdd28ff0ea85e4405fdd02623d25268904f0
Rephrasing the link.. # What does this PR do? Fixes https://github.com/huggingface/transformers/pull/20226#discussion_r1023296368 <!-- Congratulations! You've made it this far! You're not quite done yet though. Once merged, your PR is going to appear in the release notes with the title you set, so make sure it's a g...
./src/transformers/models/bert/convert_bert_token_dropping_original_tf2_checkpoint_to_pytorch.py
# Copyright 2022 The HuggingFace Team. All rights reserved. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicabl...
# Copyright 2022 The HuggingFace Team. All rights reserved. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicabl...
-1
huggingface/transformers
20,253
Rephrasing the link.
# What does this PR do? Fixes https://github.com/huggingface/transformers/pull/20226#discussion_r1023296368 <!-- Congratulations! You've made it this far! You're not quite done yet though. Once merged, your PR is going to appear in the release notes with the title you set, so make sure it's a great title that fully ...
Narsil
2022-11-16T08:55:46Z
2022-11-16T16:09:45Z
e9d9982e7c99da93c7b5ed0058bdd49e749aee5b
a239bdd28ff0ea85e4405fdd02623d25268904f0
Rephrasing the link.. # What does this PR do? Fixes https://github.com/huggingface/transformers/pull/20226#discussion_r1023296368 <!-- Congratulations! You've made it this far! You're not quite done yet though. Once merged, your PR is going to appear in the release notes with the title you set, so make sure it's a g...
./examples/research_projects/onnx/summarization/bart_onnx/generation_onnx.py
import copy import itertools from typing import List, Optional, Tuple import torch import torch.nn.functional as F from transformers import BartConfig from transformers.generation import GenerationMixin def _convert_past_list_to_tuple(past_key_values): """ In Bart model, the type of past_key_values is tuple...
import copy import itertools from typing import List, Optional, Tuple import torch import torch.nn.functional as F from transformers import BartConfig from transformers.generation import GenerationMixin def _convert_past_list_to_tuple(past_key_values): """ In Bart model, the type of past_key_values is tuple...
-1
huggingface/transformers
20,253
Rephrasing the link.
# What does this PR do? Fixes https://github.com/huggingface/transformers/pull/20226#discussion_r1023296368 <!-- Congratulations! You've made it this far! You're not quite done yet though. Once merged, your PR is going to appear in the release notes with the title you set, so make sure it's a great title that fully ...
Narsil
2022-11-16T08:55:46Z
2022-11-16T16:09:45Z
e9d9982e7c99da93c7b5ed0058bdd49e749aee5b
a239bdd28ff0ea85e4405fdd02623d25268904f0
Rephrasing the link.. # What does this PR do? Fixes https://github.com/huggingface/transformers/pull/20226#discussion_r1023296368 <!-- Congratulations! You've made it this far! You're not quite done yet though. Once merged, your PR is going to appear in the release notes with the title you set, so make sure it's a g...
./examples/tensorflow/translation/run_translation.py
#!/usr/bin/env python # coding=utf-8 # Copyright 2021 The HuggingFace Team. All rights reserved. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE...
#!/usr/bin/env python # coding=utf-8 # Copyright 2021 The HuggingFace Team. All rights reserved. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE...
-1
huggingface/transformers
20,253
Rephrasing the link.
# What does this PR do? Fixes https://github.com/huggingface/transformers/pull/20226#discussion_r1023296368 <!-- Congratulations! You've made it this far! You're not quite done yet though. Once merged, your PR is going to appear in the release notes with the title you set, so make sure it's a great title that fully ...
Narsil
2022-11-16T08:55:46Z
2022-11-16T16:09:45Z
e9d9982e7c99da93c7b5ed0058bdd49e749aee5b
a239bdd28ff0ea85e4405fdd02623d25268904f0
Rephrasing the link.. # What does this PR do? Fixes https://github.com/huggingface/transformers/pull/20226#discussion_r1023296368 <!-- Congratulations! You've made it this far! You're not quite done yet though. Once merged, your PR is going to appear in the release notes with the title you set, so make sure it's a g...
./examples/pytorch/speech-recognition/run_speech_recognition_ctc.py
#!/usr/bin/env python # coding=utf-8 # Copyright 2021 The HuggingFace Inc. team. All rights reserved. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LI...
#!/usr/bin/env python # coding=utf-8 # Copyright 2021 The HuggingFace Inc. team. All rights reserved. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LI...
-1
huggingface/transformers
20,253
Rephrasing the link.
# What does this PR do? Fixes https://github.com/huggingface/transformers/pull/20226#discussion_r1023296368 <!-- Congratulations! You've made it this far! You're not quite done yet though. Once merged, your PR is going to appear in the release notes with the title you set, so make sure it's a great title that fully ...
Narsil
2022-11-16T08:55:46Z
2022-11-16T16:09:45Z
e9d9982e7c99da93c7b5ed0058bdd49e749aee5b
a239bdd28ff0ea85e4405fdd02623d25268904f0
Rephrasing the link.. # What does this PR do? Fixes https://github.com/huggingface/transformers/pull/20226#discussion_r1023296368 <!-- Congratulations! You've made it this far! You're not quite done yet though. Once merged, your PR is going to appear in the release notes with the title you set, so make sure it's a g...
./examples/legacy/seq2seq/seq2seq_training_args.py
# Copyright 2020 The HuggingFace Team. All rights reserved. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicabl...
# Copyright 2020 The HuggingFace Team. All rights reserved. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicabl...
-1
huggingface/transformers
20,253
Rephrasing the link.
# What does this PR do? Fixes https://github.com/huggingface/transformers/pull/20226#discussion_r1023296368 <!-- Congratulations! You've made it this far! You're not quite done yet though. Once merged, your PR is going to appear in the release notes with the title you set, so make sure it's a great title that fully ...
Narsil
2022-11-16T08:55:46Z
2022-11-16T16:09:45Z
e9d9982e7c99da93c7b5ed0058bdd49e749aee5b
a239bdd28ff0ea85e4405fdd02623d25268904f0
Rephrasing the link.. # What does this PR do? Fixes https://github.com/huggingface/transformers/pull/20226#discussion_r1023296368 <!-- Congratulations! You've made it this far! You're not quite done yet though. Once merged, your PR is going to appear in the release notes with the title you set, so make sure it's a g...
./tests/models/trajectory_transformer/test_modeling_trajectory_transformer.py
# coding=utf-8 # Copyright 2022 The HuggingFace Inc. team. All rights reserved. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless r...
# coding=utf-8 # Copyright 2022 The HuggingFace Inc. team. All rights reserved. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless r...
-1
huggingface/transformers
20,253
Rephrasing the link.
# What does this PR do? Fixes https://github.com/huggingface/transformers/pull/20226#discussion_r1023296368 <!-- Congratulations! You've made it this far! You're not quite done yet though. Once merged, your PR is going to appear in the release notes with the title you set, so make sure it's a great title that fully ...
Narsil
2022-11-16T08:55:46Z
2022-11-16T16:09:45Z
e9d9982e7c99da93c7b5ed0058bdd49e749aee5b
a239bdd28ff0ea85e4405fdd02623d25268904f0
Rephrasing the link.. # What does this PR do? Fixes https://github.com/huggingface/transformers/pull/20226#discussion_r1023296368 <!-- Congratulations! You've made it this far! You're not quite done yet though. Once merged, your PR is going to appear in the release notes with the title you set, so make sure it's a g...
./templates/adding_a_new_model/cookiecutter-template-{{cookiecutter.modelname}}/modeling_flax_{{cookiecutter.lowercase_modelname}}.py
# coding=utf-8 # Copyright 2022 {{cookiecutter.authors}} and The HuggingFace Inc. team. All rights reserved. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/lice...
# coding=utf-8 # Copyright 2022 {{cookiecutter.authors}} and The HuggingFace Inc. team. All rights reserved. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/lice...
-1
huggingface/transformers
20,253
Rephrasing the link.
# What does this PR do? Fixes https://github.com/huggingface/transformers/pull/20226#discussion_r1023296368 <!-- Congratulations! You've made it this far! You're not quite done yet though. Once merged, your PR is going to appear in the release notes with the title you set, so make sure it's a great title that fully ...
Narsil
2022-11-16T08:55:46Z
2022-11-16T16:09:45Z
e9d9982e7c99da93c7b5ed0058bdd49e749aee5b
a239bdd28ff0ea85e4405fdd02623d25268904f0
Rephrasing the link.. # What does this PR do? Fixes https://github.com/huggingface/transformers/pull/20226#discussion_r1023296368 <!-- Congratulations! You've made it this far! You're not quite done yet though. Once merged, your PR is going to appear in the release notes with the title you set, so make sure it's a g...
./src/transformers/models/ibert/modeling_ibert.py
# coding=utf-8 # Copyright 2021 The I-BERT Authors (Sehoon Kim, Amir Gholami, Zhewei Yao, # Michael Mahoney, Kurt Keutzer - UC Berkeley) and The HuggingFace Inc. team. # Copyright (c) 20121, NVIDIA CORPORATION. All rights reserved. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use t...
# coding=utf-8 # Copyright 2021 The I-BERT Authors (Sehoon Kim, Amir Gholami, Zhewei Yao, # Michael Mahoney, Kurt Keutzer - UC Berkeley) and The HuggingFace Inc. team. # Copyright (c) 20121, NVIDIA CORPORATION. All rights reserved. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use t...
-1
huggingface/transformers
20,253
Rephrasing the link.
# What does this PR do? Fixes https://github.com/huggingface/transformers/pull/20226#discussion_r1023296368 <!-- Congratulations! You've made it this far! You're not quite done yet though. Once merged, your PR is going to appear in the release notes with the title you set, so make sure it's a great title that fully ...
Narsil
2022-11-16T08:55:46Z
2022-11-16T16:09:45Z
e9d9982e7c99da93c7b5ed0058bdd49e749aee5b
a239bdd28ff0ea85e4405fdd02623d25268904f0
Rephrasing the link.. # What does this PR do? Fixes https://github.com/huggingface/transformers/pull/20226#discussion_r1023296368 <!-- Congratulations! You've made it this far! You're not quite done yet though. Once merged, your PR is going to appear in the release notes with the title you set, so make sure it's a g...
./src/transformers/models/mobilebert/modeling_mobilebert.py
# MIT License # # Copyright (c) 2020 The Google AI Language Team Authors, The HuggingFace Inc. team and github/lonePatient # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal # in the Software without restricti...
# MIT License # # Copyright (c) 2020 The Google AI Language Team Authors, The HuggingFace Inc. team and github/lonePatient # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal # in the Software without restricti...
-1
huggingface/transformers
20,253
Rephrasing the link.
# What does this PR do? Fixes https://github.com/huggingface/transformers/pull/20226#discussion_r1023296368 <!-- Congratulations! You've made it this far! You're not quite done yet though. Once merged, your PR is going to appear in the release notes with the title you set, so make sure it's a great title that fully ...
Narsil
2022-11-16T08:55:46Z
2022-11-16T16:09:45Z
e9d9982e7c99da93c7b5ed0058bdd49e749aee5b
a239bdd28ff0ea85e4405fdd02623d25268904f0
Rephrasing the link.. # What does this PR do? Fixes https://github.com/huggingface/transformers/pull/20226#discussion_r1023296368 <!-- Congratulations! You've made it this far! You're not quite done yet though. Once merged, your PR is going to appear in the release notes with the title you set, so make sure it's a g...
./src/transformers/models/deformable_detr/__init__.py
# flake8: noqa # There's no way to ignore "F401 '...' imported but unused" warnings in this # module, but to preserve other warnings. So, don't check this module at all. # Copyright 2022 The HuggingFace Team. All rights reserved. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use thi...
# flake8: noqa # There's no way to ignore "F401 '...' imported but unused" warnings in this # module, but to preserve other warnings. So, don't check this module at all. # Copyright 2022 The HuggingFace Team. All rights reserved. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use thi...
-1
huggingface/transformers
20,253
Rephrasing the link.
# What does this PR do? Fixes https://github.com/huggingface/transformers/pull/20226#discussion_r1023296368 <!-- Congratulations! You've made it this far! You're not quite done yet though. Once merged, your PR is going to appear in the release notes with the title you set, so make sure it's a great title that fully ...
Narsil
2022-11-16T08:55:46Z
2022-11-16T16:09:45Z
e9d9982e7c99da93c7b5ed0058bdd49e749aee5b
a239bdd28ff0ea85e4405fdd02623d25268904f0
Rephrasing the link.. # What does this PR do? Fixes https://github.com/huggingface/transformers/pull/20226#discussion_r1023296368 <!-- Congratulations! You've made it this far! You're not quite done yet though. Once merged, your PR is going to appear in the release notes with the title you set, so make sure it's a g...
./src/transformers/generation/__init__.py
# flake8: noqa # There's no way to ignore "F401 '...' imported but unused" warnings in this # module, but to preserve other warnings. So, don't check this module at all. # Copyright 2022 The HuggingFace Team. All rights reserved. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use thi...
# flake8: noqa # There's no way to ignore "F401 '...' imported but unused" warnings in this # module, but to preserve other warnings. So, don't check this module at all. # Copyright 2022 The HuggingFace Team. All rights reserved. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use thi...
-1
huggingface/transformers
20,253
Rephrasing the link.
# What does this PR do? Fixes https://github.com/huggingface/transformers/pull/20226#discussion_r1023296368 <!-- Congratulations! You've made it this far! You're not quite done yet though. Once merged, your PR is going to appear in the release notes with the title you set, so make sure it's a great title that fully ...
Narsil
2022-11-16T08:55:46Z
2022-11-16T16:09:45Z
e9d9982e7c99da93c7b5ed0058bdd49e749aee5b
a239bdd28ff0ea85e4405fdd02623d25268904f0
Rephrasing the link.. # What does this PR do? Fixes https://github.com/huggingface/transformers/pull/20226#discussion_r1023296368 <!-- Congratulations! You've made it this far! You're not quite done yet though. Once merged, your PR is going to appear in the release notes with the title you set, so make sure it's a g...
./src/transformers/models/wav2vec2/tokenization_wav2vec2.py
# coding=utf-8 # Copyright 2021 The Facebook Inc. and The HuggingFace Inc. team. All rights reserved. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LI...
# coding=utf-8 # Copyright 2021 The Facebook Inc. and The HuggingFace Inc. team. All rights reserved. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LI...
-1
huggingface/transformers
20,253
Rephrasing the link.
# What does this PR do? Fixes https://github.com/huggingface/transformers/pull/20226#discussion_r1023296368 <!-- Congratulations! You've made it this far! You're not quite done yet though. Once merged, your PR is going to appear in the release notes with the title you set, so make sure it's a great title that fully ...
Narsil
2022-11-16T08:55:46Z
2022-11-16T16:09:45Z
e9d9982e7c99da93c7b5ed0058bdd49e749aee5b
a239bdd28ff0ea85e4405fdd02623d25268904f0
Rephrasing the link.. # What does this PR do? Fixes https://github.com/huggingface/transformers/pull/20226#discussion_r1023296368 <!-- Congratulations! You've made it this far! You're not quite done yet though. Once merged, your PR is going to appear in the release notes with the title you set, so make sure it's a g...
./tests/models/vit_mae/test_modeling_vit_mae.py
# coding=utf-8 # Copyright 2022 The HuggingFace Inc. team. All rights reserved. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless r...
# coding=utf-8 # Copyright 2022 The HuggingFace Inc. team. All rights reserved. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless r...
-1
huggingface/transformers
20,253
Rephrasing the link.
# What does this PR do? Fixes https://github.com/huggingface/transformers/pull/20226#discussion_r1023296368 <!-- Congratulations! You've made it this far! You're not quite done yet though. Once merged, your PR is going to appear in the release notes with the title you set, so make sure it's a great title that fully ...
Narsil
2022-11-16T08:55:46Z
2022-11-16T16:09:45Z
e9d9982e7c99da93c7b5ed0058bdd49e749aee5b
a239bdd28ff0ea85e4405fdd02623d25268904f0
Rephrasing the link.. # What does this PR do? Fixes https://github.com/huggingface/transformers/pull/20226#discussion_r1023296368 <!-- Congratulations! You've made it this far! You're not quite done yet though. Once merged, your PR is going to appear in the release notes with the title you set, so make sure it's a g...
./src/transformers/models/big_bird/tokenization_big_bird.py
# coding=utf-8 # Copyright 2021 Google Research and The HuggingFace Inc. team. All rights reserved. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICE...
# coding=utf-8 # Copyright 2021 Google Research and The HuggingFace Inc. team. All rights reserved. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICE...
-1
huggingface/transformers
20,253
Rephrasing the link.
# What does this PR do? Fixes https://github.com/huggingface/transformers/pull/20226#discussion_r1023296368 <!-- Congratulations! You've made it this far! You're not quite done yet though. Once merged, your PR is going to appear in the release notes with the title you set, so make sure it's a great title that fully ...
Narsil
2022-11-16T08:55:46Z
2022-11-16T16:09:45Z
e9d9982e7c99da93c7b5ed0058bdd49e749aee5b
a239bdd28ff0ea85e4405fdd02623d25268904f0
Rephrasing the link.. # What does this PR do? Fixes https://github.com/huggingface/transformers/pull/20226#discussion_r1023296368 <!-- Congratulations! You've made it this far! You're not quite done yet though. Once merged, your PR is going to appear in the release notes with the title you set, so make sure it's a g...
./docs/source/it/model_sharing.mdx
<!--Copyright 2022 The HuggingFace Team. All rights reserved. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed...
<!--Copyright 2022 The HuggingFace Team. All rights reserved. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed...
-1
huggingface/transformers
20,253
Rephrasing the link.
# What does this PR do? Fixes https://github.com/huggingface/transformers/pull/20226#discussion_r1023296368 <!-- Congratulations! You've made it this far! You're not quite done yet though. Once merged, your PR is going to appear in the release notes with the title you set, so make sure it's a great title that fully ...
Narsil
2022-11-16T08:55:46Z
2022-11-16T16:09:45Z
e9d9982e7c99da93c7b5ed0058bdd49e749aee5b
a239bdd28ff0ea85e4405fdd02623d25268904f0
Rephrasing the link.. # What does this PR do? Fixes https://github.com/huggingface/transformers/pull/20226#discussion_r1023296368 <!-- Congratulations! You've made it this far! You're not quite done yet though. Once merged, your PR is going to appear in the release notes with the title you set, so make sure it's a g...
./src/transformers/models/fnet/configuration_fnet.py
# coding=utf-8 # Copyright 2021 Google AI and The HuggingFace Inc. team. All rights reserved. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2....
# coding=utf-8 # Copyright 2021 Google AI and The HuggingFace Inc. team. All rights reserved. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2....
-1
huggingface/transformers
20,253
Rephrasing the link.
# What does this PR do? Fixes https://github.com/huggingface/transformers/pull/20226#discussion_r1023296368 <!-- Congratulations! You've made it this far! You're not quite done yet though. Once merged, your PR is going to appear in the release notes with the title you set, so make sure it's a great title that fully ...
Narsil
2022-11-16T08:55:46Z
2022-11-16T16:09:45Z
e9d9982e7c99da93c7b5ed0058bdd49e749aee5b
a239bdd28ff0ea85e4405fdd02623d25268904f0
Rephrasing the link.. # What does this PR do? Fixes https://github.com/huggingface/transformers/pull/20226#discussion_r1023296368 <!-- Congratulations! You've made it this far! You're not quite done yet though. Once merged, your PR is going to appear in the release notes with the title you set, so make sure it's a g...
./tests/utils/test_logging.py
# Copyright 2020 The HuggingFace Team. All rights reserved. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicabl...
# Copyright 2020 The HuggingFace Team. All rights reserved. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicabl...
-1
huggingface/transformers
20,253
Rephrasing the link.
# What does this PR do? Fixes https://github.com/huggingface/transformers/pull/20226#discussion_r1023296368 <!-- Congratulations! You've made it this far! You're not quite done yet though. Once merged, your PR is going to appear in the release notes with the title you set, so make sure it's a great title that fully ...
Narsil
2022-11-16T08:55:46Z
2022-11-16T16:09:45Z
e9d9982e7c99da93c7b5ed0058bdd49e749aee5b
a239bdd28ff0ea85e4405fdd02623d25268904f0
Rephrasing the link.. # What does this PR do? Fixes https://github.com/huggingface/transformers/pull/20226#discussion_r1023296368 <!-- Congratulations! You've made it this far! You're not quite done yet though. Once merged, your PR is going to appear in the release notes with the title you set, so make sure it's a g...
./examples/pytorch/speech-pretraining/run_wav2vec2_pretraining_no_trainer.py
#!/usr/bin/env python # coding=utf-8 # Copyright 2021 The HuggingFace Inc. team. All rights reserved. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LI...
#!/usr/bin/env python # coding=utf-8 # Copyright 2021 The HuggingFace Inc. team. All rights reserved. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LI...
-1
huggingface/transformers
20,253
Rephrasing the link.
# What does this PR do? Fixes https://github.com/huggingface/transformers/pull/20226#discussion_r1023296368 <!-- Congratulations! You've made it this far! You're not quite done yet though. Once merged, your PR is going to appear in the release notes with the title you set, so make sure it's a great title that fully ...
Narsil
2022-11-16T08:55:46Z
2022-11-16T16:09:45Z
e9d9982e7c99da93c7b5ed0058bdd49e749aee5b
a239bdd28ff0ea85e4405fdd02623d25268904f0
Rephrasing the link.. # What does this PR do? Fixes https://github.com/huggingface/transformers/pull/20226#discussion_r1023296368 <!-- Congratulations! You've made it this far! You're not quite done yet though. Once merged, your PR is going to appear in the release notes with the title you set, so make sure it's a g...
./tests/models/camembert/test_modeling_camembert.py
# coding=utf-8 # Copyright 2020 The HuggingFace Team. All rights reserved. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless requir...
# coding=utf-8 # Copyright 2020 The HuggingFace Team. All rights reserved. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless requir...
-1
huggingface/transformers
20,253
Rephrasing the link.
# What does this PR do? Fixes https://github.com/huggingface/transformers/pull/20226#discussion_r1023296368 <!-- Congratulations! You've made it this far! You're not quite done yet though. Once merged, your PR is going to appear in the release notes with the title you set, so make sure it's a great title that fully ...
Narsil
2022-11-16T08:55:46Z
2022-11-16T16:09:45Z
e9d9982e7c99da93c7b5ed0058bdd49e749aee5b
a239bdd28ff0ea85e4405fdd02623d25268904f0
Rephrasing the link.. # What does this PR do? Fixes https://github.com/huggingface/transformers/pull/20226#discussion_r1023296368 <!-- Congratulations! You've made it this far! You're not quite done yet though. Once merged, your PR is going to appear in the release notes with the title you set, so make sure it's a g...
./examples/legacy/seq2seq/train_mbart_cc25_enro.sh
# Copyright 2020 The HuggingFace Team. All rights reserved. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicabl...
# Copyright 2020 The HuggingFace Team. All rights reserved. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicabl...
-1
huggingface/transformers
20,253
Rephrasing the link.
# What does this PR do? Fixes https://github.com/huggingface/transformers/pull/20226#discussion_r1023296368 <!-- Congratulations! You've made it this far! You're not quite done yet though. Once merged, your PR is going to appear in the release notes with the title you set, so make sure it's a great title that fully ...
Narsil
2022-11-16T08:55:46Z
2022-11-16T16:09:45Z
e9d9982e7c99da93c7b5ed0058bdd49e749aee5b
a239bdd28ff0ea85e4405fdd02623d25268904f0
Rephrasing the link.. # What does this PR do? Fixes https://github.com/huggingface/transformers/pull/20226#discussion_r1023296368 <!-- Congratulations! You've made it this far! You're not quite done yet though. Once merged, your PR is going to appear in the release notes with the title you set, so make sure it's a g...
./tests/models/vit_mae/test_modeling_tf_vit_mae.py
# coding=utf-8 # Copyright 2022 The HuggingFace Inc. team. All rights reserved. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless r...
# coding=utf-8 # Copyright 2022 The HuggingFace Inc. team. All rights reserved. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless r...
-1
huggingface/transformers
20,253
Rephrasing the link.
# What does this PR do? Fixes https://github.com/huggingface/transformers/pull/20226#discussion_r1023296368 <!-- Congratulations! You've made it this far! You're not quite done yet though. Once merged, your PR is going to appear in the release notes with the title you set, so make sure it's a great title that fully ...
Narsil
2022-11-16T08:55:46Z
2022-11-16T16:09:45Z
e9d9982e7c99da93c7b5ed0058bdd49e749aee5b
a239bdd28ff0ea85e4405fdd02623d25268904f0
Rephrasing the link.. # What does this PR do? Fixes https://github.com/huggingface/transformers/pull/20226#discussion_r1023296368 <!-- Congratulations! You've made it this far! You're not quite done yet though. Once merged, your PR is going to appear in the release notes with the title you set, so make sure it's a g...
./examples/research_projects/fsner/src/fsner/__init__.py
from .model import FSNERModel from .tokenizer_utils import FSNERTokenizerUtils __all__ = ["FSNERModel", "FSNERTokenizerUtils"]
from .model import FSNERModel from .tokenizer_utils import FSNERTokenizerUtils __all__ = ["FSNERModel", "FSNERTokenizerUtils"]
-1
huggingface/transformers
20,253
Rephrasing the link.
# What does this PR do? Fixes https://github.com/huggingface/transformers/pull/20226#discussion_r1023296368 <!-- Congratulations! You've made it this far! You're not quite done yet though. Once merged, your PR is going to appear in the release notes with the title you set, so make sure it's a great title that fully ...
Narsil
2022-11-16T08:55:46Z
2022-11-16T16:09:45Z
e9d9982e7c99da93c7b5ed0058bdd49e749aee5b
a239bdd28ff0ea85e4405fdd02623d25268904f0
Rephrasing the link.. # What does this PR do? Fixes https://github.com/huggingface/transformers/pull/20226#discussion_r1023296368 <!-- Congratulations! You've made it this far! You're not quite done yet though. Once merged, your PR is going to appear in the release notes with the title you set, so make sure it's a g...
./.git/hooks/applypatch-msg.sample
#!/bin/sh # # An example hook script to check the commit log message taken by # applypatch from an e-mail message. # # The hook should exit with non-zero status after issuing an # appropriate message if it wants to stop the commit. The hook is # allowed to edit the commit message file. # # To enable this hook, rename ...
#!/bin/sh # # An example hook script to check the commit log message taken by # applypatch from an e-mail message. # # The hook should exit with non-zero status after issuing an # appropriate message if it wants to stop the commit. The hook is # allowed to edit the commit message file. # # To enable this hook, rename ...
-1
huggingface/transformers
20,253
Rephrasing the link.
# What does this PR do? Fixes https://github.com/huggingface/transformers/pull/20226#discussion_r1023296368 <!-- Congratulations! You've made it this far! You're not quite done yet though. Once merged, your PR is going to appear in the release notes with the title you set, so make sure it's a great title that fully ...
Narsil
2022-11-16T08:55:46Z
2022-11-16T16:09:45Z
e9d9982e7c99da93c7b5ed0058bdd49e749aee5b
a239bdd28ff0ea85e4405fdd02623d25268904f0
Rephrasing the link.. # What does this PR do? Fixes https://github.com/huggingface/transformers/pull/20226#discussion_r1023296368 <!-- Congratulations! You've made it this far! You're not quite done yet though. Once merged, your PR is going to appear in the release notes with the title you set, so make sure it's a g...
./src/transformers/onnx/config.py
# Copyright 2021 The HuggingFace Team. All rights reserved. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicabl...
# Copyright 2021 The HuggingFace Team. All rights reserved. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicabl...
-1
huggingface/transformers
20,253
Rephrasing the link.
# What does this PR do? Fixes https://github.com/huggingface/transformers/pull/20226#discussion_r1023296368 <!-- Congratulations! You've made it this far! You're not quite done yet though. Once merged, your PR is going to appear in the release notes with the title you set, so make sure it's a great title that fully ...
Narsil
2022-11-16T08:55:46Z
2022-11-16T16:09:45Z
e9d9982e7c99da93c7b5ed0058bdd49e749aee5b
a239bdd28ff0ea85e4405fdd02623d25268904f0
Rephrasing the link.. # What does this PR do? Fixes https://github.com/huggingface/transformers/pull/20226#discussion_r1023296368 <!-- Congratulations! You've made it this far! You're not quite done yet though. Once merged, your PR is going to appear in the release notes with the title you set, so make sure it's a g...
./tests/models/deit/test_feature_extraction_deit.py
# coding=utf-8 # Copyright 2021 HuggingFace Inc. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or ag...
# coding=utf-8 # Copyright 2021 HuggingFace Inc. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or ag...
-1
huggingface/transformers
20,253
Rephrasing the link.
# What does this PR do? Fixes https://github.com/huggingface/transformers/pull/20226#discussion_r1023296368 <!-- Congratulations! You've made it this far! You're not quite done yet though. Once merged, your PR is going to appear in the release notes with the title you set, so make sure it's a great title that fully ...
Narsil
2022-11-16T08:55:46Z
2022-11-16T16:09:45Z
e9d9982e7c99da93c7b5ed0058bdd49e749aee5b
a239bdd28ff0ea85e4405fdd02623d25268904f0
Rephrasing the link.. # What does this PR do? Fixes https://github.com/huggingface/transformers/pull/20226#discussion_r1023296368 <!-- Congratulations! You've made it this far! You're not quite done yet though. Once merged, your PR is going to appear in the release notes with the title you set, so make sure it's a g...
./src/transformers/models/auto/modeling_flax_auto.py
# coding=utf-8 # Copyright 2018 The Google Flax Team Authors and The HuggingFace Inc. team. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 ...
# coding=utf-8 # Copyright 2018 The Google Flax Team Authors and The HuggingFace Inc. team. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 ...
-1
huggingface/transformers
20,253
Rephrasing the link.
# What does this PR do? Fixes https://github.com/huggingface/transformers/pull/20226#discussion_r1023296368 <!-- Congratulations! You've made it this far! You're not quite done yet though. Once merged, your PR is going to appear in the release notes with the title you set, so make sure it's a great title that fully ...
Narsil
2022-11-16T08:55:46Z
2022-11-16T16:09:45Z
e9d9982e7c99da93c7b5ed0058bdd49e749aee5b
a239bdd28ff0ea85e4405fdd02623d25268904f0
Rephrasing the link.. # What does this PR do? Fixes https://github.com/huggingface/transformers/pull/20226#discussion_r1023296368 <!-- Congratulations! You've made it this far! You're not quite done yet though. Once merged, your PR is going to appear in the release notes with the title you set, so make sure it's a g...
./tests/models/mbart/test_tokenization_mbart.py
# Copyright 2020 The HuggingFace Team. All rights reserved. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicabl...
# Copyright 2020 The HuggingFace Team. All rights reserved. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicabl...
-1
huggingface/transformers
20,253
Rephrasing the link.
# What does this PR do? Fixes https://github.com/huggingface/transformers/pull/20226#discussion_r1023296368 <!-- Congratulations! You've made it this far! You're not quite done yet though. Once merged, your PR is going to appear in the release notes with the title you set, so make sure it's a great title that fully ...
Narsil
2022-11-16T08:55:46Z
2022-11-16T16:09:45Z
e9d9982e7c99da93c7b5ed0058bdd49e749aee5b
a239bdd28ff0ea85e4405fdd02623d25268904f0
Rephrasing the link.. # What does this PR do? Fixes https://github.com/huggingface/transformers/pull/20226#discussion_r1023296368 <!-- Congratulations! You've made it this far! You're not quite done yet though. Once merged, your PR is going to appear in the release notes with the title you set, so make sure it's a g...
./src/transformers/models/flava/modeling_flava.py
# coding=utf-8 # Copyright 2022 Meta Platforms authors and The HuggingFace Team. All rights reserved. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LI...
# coding=utf-8 # Copyright 2022 Meta Platforms authors and The HuggingFace Team. All rights reserved. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LI...
-1
huggingface/transformers
20,253
Rephrasing the link.
# What does this PR do? Fixes https://github.com/huggingface/transformers/pull/20226#discussion_r1023296368 <!-- Congratulations! You've made it this far! You're not quite done yet though. Once merged, your PR is going to appear in the release notes with the title you set, so make sure it's a great title that fully ...
Narsil
2022-11-16T08:55:46Z
2022-11-16T16:09:45Z
e9d9982e7c99da93c7b5ed0058bdd49e749aee5b
a239bdd28ff0ea85e4405fdd02623d25268904f0
Rephrasing the link.. # What does this PR do? Fixes https://github.com/huggingface/transformers/pull/20226#discussion_r1023296368 <!-- Congratulations! You've made it this far! You're not quite done yet though. Once merged, your PR is going to appear in the release notes with the title you set, so make sure it's a g...
./src/transformers/models/retribert/modeling_retribert.py
# coding=utf-8 # Copyright 2019-present, the HuggingFace Inc. team, The Google AI Language Team and Facebook, Inc. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.or...
# coding=utf-8 # Copyright 2019-present, the HuggingFace Inc. team, The Google AI Language Team and Facebook, Inc. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.or...
-1
huggingface/transformers
20,253
Rephrasing the link.
# What does this PR do? Fixes https://github.com/huggingface/transformers/pull/20226#discussion_r1023296368 <!-- Congratulations! You've made it this far! You're not quite done yet though. Once merged, your PR is going to appear in the release notes with the title you set, so make sure it's a great title that fully ...
Narsil
2022-11-16T08:55:46Z
2022-11-16T16:09:45Z
e9d9982e7c99da93c7b5ed0058bdd49e749aee5b
a239bdd28ff0ea85e4405fdd02623d25268904f0
Rephrasing the link.. # What does this PR do? Fixes https://github.com/huggingface/transformers/pull/20226#discussion_r1023296368 <!-- Congratulations! You've made it this far! You're not quite done yet though. Once merged, your PR is going to appear in the release notes with the title you set, so make sure it's a g...
./docs/source/en/model_doc/bigbird_pegasus.mdx
<!--Copyright 2021 The HuggingFace Team. All rights reserved. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed...
<!--Copyright 2021 The HuggingFace Team. All rights reserved. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed...
-1
huggingface/transformers
20,253
Rephrasing the link.
# What does this PR do? Fixes https://github.com/huggingface/transformers/pull/20226#discussion_r1023296368 <!-- Congratulations! You've made it this far! You're not quite done yet though. Once merged, your PR is going to appear in the release notes with the title you set, so make sure it's a great title that fully ...
Narsil
2022-11-16T08:55:46Z
2022-11-16T16:09:45Z
e9d9982e7c99da93c7b5ed0058bdd49e749aee5b
a239bdd28ff0ea85e4405fdd02623d25268904f0
Rephrasing the link.. # What does this PR do? Fixes https://github.com/huggingface/transformers/pull/20226#discussion_r1023296368 <!-- Congratulations! You've made it this far! You're not quite done yet though. Once merged, your PR is going to appear in the release notes with the title you set, so make sure it's a g...
./tests/models/layoutlmv2/__init__.py
-1
huggingface/transformers
20,253
Rephrasing the link.
# What does this PR do? Fixes https://github.com/huggingface/transformers/pull/20226#discussion_r1023296368 <!-- Congratulations! You've made it this far! You're not quite done yet though. Once merged, your PR is going to appear in the release notes with the title you set, so make sure it's a great title that fully ...
Narsil
2022-11-16T08:55:46Z
2022-11-16T16:09:45Z
e9d9982e7c99da93c7b5ed0058bdd49e749aee5b
a239bdd28ff0ea85e4405fdd02623d25268904f0
Rephrasing the link.. # What does this PR do? Fixes https://github.com/huggingface/transformers/pull/20226#discussion_r1023296368 <!-- Congratulations! You've made it this far! You're not quite done yet though. Once merged, your PR is going to appear in the release notes with the title you set, so make sure it's a g...
./tests/models/t5/test_tokenization_t5.py
# coding=utf-8 # Copyright 2018 Google T5 Authors and HuggingFace Inc. team. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless requ...
# coding=utf-8 # Copyright 2018 Google T5 Authors and HuggingFace Inc. team. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless requ...
-1
huggingface/transformers
20,253
Rephrasing the link.
# What does this PR do? Fixes https://github.com/huggingface/transformers/pull/20226#discussion_r1023296368 <!-- Congratulations! You've made it this far! You're not quite done yet though. Once merged, your PR is going to appear in the release notes with the title you set, so make sure it's a great title that fully ...
Narsil
2022-11-16T08:55:46Z
2022-11-16T16:09:45Z
e9d9982e7c99da93c7b5ed0058bdd49e749aee5b
a239bdd28ff0ea85e4405fdd02623d25268904f0
Rephrasing the link.. # What does this PR do? Fixes https://github.com/huggingface/transformers/pull/20226#discussion_r1023296368 <!-- Congratulations! You've made it this far! You're not quite done yet though. Once merged, your PR is going to appear in the release notes with the title you set, so make sure it's a g...
./scripts/fsmt/eval-allenai-wmt19.sh
#!/usr/bin/env bash # Copyright 2020 The HuggingFace Team. All rights reserved. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless r...
#!/usr/bin/env bash # Copyright 2020 The HuggingFace Team. All rights reserved. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless r...
-1
huggingface/transformers
20,253
Rephrasing the link.
# What does this PR do? Fixes https://github.com/huggingface/transformers/pull/20226#discussion_r1023296368 <!-- Congratulations! You've made it this far! You're not quite done yet though. Once merged, your PR is going to appear in the release notes with the title you set, so make sure it's a great title that fully ...
Narsil
2022-11-16T08:55:46Z
2022-11-16T16:09:45Z
e9d9982e7c99da93c7b5ed0058bdd49e749aee5b
a239bdd28ff0ea85e4405fdd02623d25268904f0
Rephrasing the link.. # What does this PR do? Fixes https://github.com/huggingface/transformers/pull/20226#discussion_r1023296368 <!-- Congratulations! You've made it this far! You're not quite done yet though. Once merged, your PR is going to appear in the release notes with the title you set, so make sure it's a g...
./tests/models/xlnet/test_modeling_xlnet.py
# coding=utf-8 # Copyright 2020 The HuggingFace Team. All rights reserved. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless requir...
# coding=utf-8 # Copyright 2020 The HuggingFace Team. All rights reserved. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless requir...
-1
huggingface/transformers
20,253
Rephrasing the link.
# What does this PR do? Fixes https://github.com/huggingface/transformers/pull/20226#discussion_r1023296368 <!-- Congratulations! You've made it this far! You're not quite done yet though. Once merged, your PR is going to appear in the release notes with the title you set, so make sure it's a great title that fully ...
Narsil
2022-11-16T08:55:46Z
2022-11-16T16:09:45Z
e9d9982e7c99da93c7b5ed0058bdd49e749aee5b
a239bdd28ff0ea85e4405fdd02623d25268904f0
Rephrasing the link.. # What does this PR do? Fixes https://github.com/huggingface/transformers/pull/20226#discussion_r1023296368 <!-- Congratulations! You've made it this far! You're not quite done yet though. Once merged, your PR is going to appear in the release notes with the title you set, so make sure it's a g...
./src/transformers/models/time_series_transformer/modeling_time_series_transformer.py
# coding=utf-8 # Copyright 2022 The HuggingFace Inc. team. All rights reserved. # Copyright 2018 Amazon.com, Inc. or its affiliates. All Rights Reserved. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the ...
# coding=utf-8 # Copyright 2022 The HuggingFace Inc. team. All rights reserved. # Copyright 2018 Amazon.com, Inc. or its affiliates. All Rights Reserved. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the ...
-1
huggingface/transformers
20,253
Rephrasing the link.
# What does this PR do? Fixes https://github.com/huggingface/transformers/pull/20226#discussion_r1023296368 <!-- Congratulations! You've made it this far! You're not quite done yet though. Once merged, your PR is going to appear in the release notes with the title you set, so make sure it's a great title that fully ...
Narsil
2022-11-16T08:55:46Z
2022-11-16T16:09:45Z
e9d9982e7c99da93c7b5ed0058bdd49e749aee5b
a239bdd28ff0ea85e4405fdd02623d25268904f0
Rephrasing the link.. # What does this PR do? Fixes https://github.com/huggingface/transformers/pull/20226#discussion_r1023296368 <!-- Congratulations! You've made it this far! You're not quite done yet though. Once merged, your PR is going to appear in the release notes with the title you set, so make sure it's a g...
./tests/models/fsmt/test_modeling_fsmt.py
# coding=utf-8 # Copyright 2020 Huggingface # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed ...
# coding=utf-8 # Copyright 2020 Huggingface # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed ...
-1
huggingface/transformers
20,253
Rephrasing the link.
# What does this PR do? Fixes https://github.com/huggingface/transformers/pull/20226#discussion_r1023296368 <!-- Congratulations! You've made it this far! You're not quite done yet though. Once merged, your PR is going to appear in the release notes with the title you set, so make sure it's a great title that fully ...
Narsil
2022-11-16T08:55:46Z
2022-11-16T16:09:45Z
e9d9982e7c99da93c7b5ed0058bdd49e749aee5b
a239bdd28ff0ea85e4405fdd02623d25268904f0
Rephrasing the link.. # What does this PR do? Fixes https://github.com/huggingface/transformers/pull/20226#discussion_r1023296368 <!-- Congratulations! You've made it this far! You're not quite done yet though. Once merged, your PR is going to appear in the release notes with the title you set, so make sure it's a g...
./src/transformers/models/regnet/__init__.py
# flake8: noqa # There's no way to ignore "F401 '...' imported but unused" warnings in this # module, but to preserve other warnings. So, don't check this module at all. # Copyright 2022 The HuggingFace Team. All rights reserved. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use thi...
# flake8: noqa # There's no way to ignore "F401 '...' imported but unused" warnings in this # module, but to preserve other warnings. So, don't check this module at all. # Copyright 2022 The HuggingFace Team. All rights reserved. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use thi...
-1
huggingface/transformers
20,253
Rephrasing the link.
# What does this PR do? Fixes https://github.com/huggingface/transformers/pull/20226#discussion_r1023296368 <!-- Congratulations! You've made it this far! You're not quite done yet though. Once merged, your PR is going to appear in the release notes with the title you set, so make sure it's a great title that fully ...
Narsil
2022-11-16T08:55:46Z
2022-11-16T16:09:45Z
e9d9982e7c99da93c7b5ed0058bdd49e749aee5b
a239bdd28ff0ea85e4405fdd02623d25268904f0
Rephrasing the link.. # What does this PR do? Fixes https://github.com/huggingface/transformers/pull/20226#discussion_r1023296368 <!-- Congratulations! You've made it this far! You're not quite done yet though. Once merged, your PR is going to appear in the release notes with the title you set, so make sure it's a g...
./docs/source/en/model_doc/mobilenet_v2.mdx
<!--Copyright 2022 The HuggingFace Team. All rights reserved. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed...
<!--Copyright 2022 The HuggingFace Team. All rights reserved. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed...
-1
huggingface/transformers
20,253
Rephrasing the link.
# What does this PR do? Fixes https://github.com/huggingface/transformers/pull/20226#discussion_r1023296368 <!-- Congratulations! You've made it this far! You're not quite done yet though. Once merged, your PR is going to appear in the release notes with the title you set, so make sure it's a great title that fully ...
Narsil
2022-11-16T08:55:46Z
2022-11-16T16:09:45Z
e9d9982e7c99da93c7b5ed0058bdd49e749aee5b
a239bdd28ff0ea85e4405fdd02623d25268904f0
Rephrasing the link.. # What does this PR do? Fixes https://github.com/huggingface/transformers/pull/20226#discussion_r1023296368 <!-- Congratulations! You've made it this far! You're not quite done yet though. Once merged, your PR is going to appear in the release notes with the title you set, so make sure it's a g...
./tests/models/blenderbot_small/test_modeling_blenderbot_small.py
# coding=utf-8 # Copyright 2021, The HuggingFace Inc. team. All rights reserved. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless ...
# coding=utf-8 # Copyright 2021, The HuggingFace Inc. team. All rights reserved. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless ...
-1
huggingface/transformers
20,253
Rephrasing the link.
# What does this PR do? Fixes https://github.com/huggingface/transformers/pull/20226#discussion_r1023296368 <!-- Congratulations! You've made it this far! You're not quite done yet though. Once merged, your PR is going to appear in the release notes with the title you set, so make sure it's a great title that fully ...
Narsil
2022-11-16T08:55:46Z
2022-11-16T16:09:45Z
e9d9982e7c99da93c7b5ed0058bdd49e749aee5b
a239bdd28ff0ea85e4405fdd02623d25268904f0
Rephrasing the link.. # What does this PR do? Fixes https://github.com/huggingface/transformers/pull/20226#discussion_r1023296368 <!-- Congratulations! You've made it this far! You're not quite done yet though. Once merged, your PR is going to appear in the release notes with the title you set, so make sure it's a g...
./src/transformers/commands/__init__.py
# Copyright 2020 The HuggingFace Team. All rights reserved. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicabl...
# Copyright 2020 The HuggingFace Team. All rights reserved. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicabl...
-1
huggingface/transformers
20,253
Rephrasing the link.
# What does this PR do? Fixes https://github.com/huggingface/transformers/pull/20226#discussion_r1023296368 <!-- Congratulations! You've made it this far! You're not quite done yet though. Once merged, your PR is going to appear in the release notes with the title you set, so make sure it's a great title that fully ...
Narsil
2022-11-16T08:55:46Z
2022-11-16T16:09:45Z
e9d9982e7c99da93c7b5ed0058bdd49e749aee5b
a239bdd28ff0ea85e4405fdd02623d25268904f0
Rephrasing the link.. # What does this PR do? Fixes https://github.com/huggingface/transformers/pull/20226#discussion_r1023296368 <!-- Congratulations! You've made it this far! You're not quite done yet though. Once merged, your PR is going to appear in the release notes with the title you set, so make sure it's a g...
./tests/sagemaker/README.md
# Testing new Hugging Face Deep Learning Container. This document explains the testing strategy for releasing the new Hugging Face Deep Learning Container. AWS maintains 14 days of currency with framework releases. Besides framework releases, AWS release train is bi-weekly on Monday. Code cutoff date for any changes i...
# Testing new Hugging Face Deep Learning Container. This document explains the testing strategy for releasing the new Hugging Face Deep Learning Container. AWS maintains 14 days of currency with framework releases. Besides framework releases, AWS release train is bi-weekly on Monday. Code cutoff date for any changes i...
-1
huggingface/transformers
20,253
Rephrasing the link.
# What does this PR do? Fixes https://github.com/huggingface/transformers/pull/20226#discussion_r1023296368 <!-- Congratulations! You've made it this far! You're not quite done yet though. Once merged, your PR is going to appear in the release notes with the title you set, so make sure it's a great title that fully ...
Narsil
2022-11-16T08:55:46Z
2022-11-16T16:09:45Z
e9d9982e7c99da93c7b5ed0058bdd49e749aee5b
a239bdd28ff0ea85e4405fdd02623d25268904f0
Rephrasing the link.. # What does this PR do? Fixes https://github.com/huggingface/transformers/pull/20226#discussion_r1023296368 <!-- Congratulations! You've made it this far! You're not quite done yet though. Once merged, your PR is going to appear in the release notes with the title you set, so make sure it's a g...
./tests/models/wav2vec2_conformer/test_modeling_wav2vec2_conformer.py
# coding=utf-8 # Copyright 2022 The HuggingFace Inc. team. All rights reserved. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless r...
# coding=utf-8 # Copyright 2022 The HuggingFace Inc. team. All rights reserved. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless r...
-1
huggingface/transformers
20,242
Update reqs to include min gather_for_metrics Accelerate version
# What does this PR do? Update all the PyTorch examples using `accelerate` and `gather_for_metrics` to include a minimum accelerate version of 0.12.0 since this introduced `gather_for_metrics` Related to https://github.com/huggingface/accelerate/issues/854 ## Before submitting - [ ] This PR fixes a typo or im...
muellerzr
2022-11-15T17:40:32Z
2022-11-15T18:28:01Z
c19aa7accef713d0df95cc2d02156b43d461aa89
822ae69c1b1c486b6ed277964906e273888221a3
Update reqs to include min gather_for_metrics Accelerate version. # What does this PR do? Update all the PyTorch examples using `accelerate` and `gather_for_metrics` to include a minimum accelerate version of 0.12.0 since this introduced `gather_for_metrics` Related to https://github.com/huggingface/accelerate/is...
./examples/pytorch/image-classification/requirements.txt
torch>=1.5.0 torchvision>=0.6.0 datasets>=1.17.0 evaluate
accelerate>=0.12.0 torch>=1.5.0 torchvision>=0.6.0 datasets>=1.17.0 evaluate
1
huggingface/transformers
20,242
Update reqs to include min gather_for_metrics Accelerate version
# What does this PR do? Update all the PyTorch examples using `accelerate` and `gather_for_metrics` to include a minimum accelerate version of 0.12.0 since this introduced `gather_for_metrics` Related to https://github.com/huggingface/accelerate/issues/854 ## Before submitting - [ ] This PR fixes a typo or im...
muellerzr
2022-11-15T17:40:32Z
2022-11-15T18:28:01Z
c19aa7accef713d0df95cc2d02156b43d461aa89
822ae69c1b1c486b6ed277964906e273888221a3
Update reqs to include min gather_for_metrics Accelerate version. # What does this PR do? Update all the PyTorch examples using `accelerate` and `gather_for_metrics` to include a minimum accelerate version of 0.12.0 since this introduced `gather_for_metrics` Related to https://github.com/huggingface/accelerate/is...
./examples/pytorch/language-modeling/requirements.txt
accelerate torch >= 1.3 datasets >= 1.8.0 sentencepiece != 0.1.92 protobuf evaluate
accelerate >= 0.12.0 torch >= 1.3 datasets >= 1.8.0 sentencepiece != 0.1.92 protobuf evaluate
1
huggingface/transformers
20,242
Update reqs to include min gather_for_metrics Accelerate version
# What does this PR do? Update all the PyTorch examples using `accelerate` and `gather_for_metrics` to include a minimum accelerate version of 0.12.0 since this introduced `gather_for_metrics` Related to https://github.com/huggingface/accelerate/issues/854 ## Before submitting - [ ] This PR fixes a typo or im...
muellerzr
2022-11-15T17:40:32Z
2022-11-15T18:28:01Z
c19aa7accef713d0df95cc2d02156b43d461aa89
822ae69c1b1c486b6ed277964906e273888221a3
Update reqs to include min gather_for_metrics Accelerate version. # What does this PR do? Update all the PyTorch examples using `accelerate` and `gather_for_metrics` to include a minimum accelerate version of 0.12.0 since this introduced `gather_for_metrics` Related to https://github.com/huggingface/accelerate/is...
./examples/pytorch/multiple-choice/requirements.txt
accelerate sentencepiece != 0.1.92 protobuf torch >= 1.3 evaluate
accelerate >= 0.12.0 sentencepiece != 0.1.92 protobuf torch >= 1.3 evaluate
1
huggingface/transformers
20,242
Update reqs to include min gather_for_metrics Accelerate version
# What does this PR do? Update all the PyTorch examples using `accelerate` and `gather_for_metrics` to include a minimum accelerate version of 0.12.0 since this introduced `gather_for_metrics` Related to https://github.com/huggingface/accelerate/issues/854 ## Before submitting - [ ] This PR fixes a typo or im...
muellerzr
2022-11-15T17:40:32Z
2022-11-15T18:28:01Z
c19aa7accef713d0df95cc2d02156b43d461aa89
822ae69c1b1c486b6ed277964906e273888221a3
Update reqs to include min gather_for_metrics Accelerate version. # What does this PR do? Update all the PyTorch examples using `accelerate` and `gather_for_metrics` to include a minimum accelerate version of 0.12.0 since this introduced `gather_for_metrics` Related to https://github.com/huggingface/accelerate/is...
./examples/pytorch/question-answering/requirements.txt
accelerate datasets >= 1.8.0 torch >= 1.3.0 evaluate
accelerate >= 0.12.0 datasets >= 1.8.0 torch >= 1.3.0 evaluate
1
huggingface/transformers
20,242
Update reqs to include min gather_for_metrics Accelerate version
# What does this PR do? Update all the PyTorch examples using `accelerate` and `gather_for_metrics` to include a minimum accelerate version of 0.12.0 since this introduced `gather_for_metrics` Related to https://github.com/huggingface/accelerate/issues/854 ## Before submitting - [ ] This PR fixes a typo or im...
muellerzr
2022-11-15T17:40:32Z
2022-11-15T18:28:01Z
c19aa7accef713d0df95cc2d02156b43d461aa89
822ae69c1b1c486b6ed277964906e273888221a3
Update reqs to include min gather_for_metrics Accelerate version. # What does this PR do? Update all the PyTorch examples using `accelerate` and `gather_for_metrics` to include a minimum accelerate version of 0.12.0 since this introduced `gather_for_metrics` Related to https://github.com/huggingface/accelerate/is...
./examples/pytorch/speech-pretraining/requirements.txt
datasets >= 1.12.0 torch >= 1.5 torchaudio accelerate >= 0.5.0 librosa
datasets >= 1.12.0 torch >= 1.5 torchaudio accelerate >= 0.12.0 librosa
1
huggingface/transformers
20,242
Update reqs to include min gather_for_metrics Accelerate version
# What does this PR do? Update all the PyTorch examples using `accelerate` and `gather_for_metrics` to include a minimum accelerate version of 0.12.0 since this introduced `gather_for_metrics` Related to https://github.com/huggingface/accelerate/issues/854 ## Before submitting - [ ] This PR fixes a typo or im...
muellerzr
2022-11-15T17:40:32Z
2022-11-15T18:28:01Z
c19aa7accef713d0df95cc2d02156b43d461aa89
822ae69c1b1c486b6ed277964906e273888221a3
Update reqs to include min gather_for_metrics Accelerate version. # What does this PR do? Update all the PyTorch examples using `accelerate` and `gather_for_metrics` to include a minimum accelerate version of 0.12.0 since this introduced `gather_for_metrics` Related to https://github.com/huggingface/accelerate/is...
./examples/pytorch/summarization/requirements.txt
accelerate datasets >= 1.8.0 sentencepiece != 0.1.92 protobuf rouge-score nltk py7zr torch >= 1.3 evaluate
accelerate >= 0.12.0 datasets >= 1.8.0 sentencepiece != 0.1.92 protobuf rouge-score nltk py7zr torch >= 1.3 evaluate
1
huggingface/transformers
20,242
Update reqs to include min gather_for_metrics Accelerate version
# What does this PR do? Update all the PyTorch examples using `accelerate` and `gather_for_metrics` to include a minimum accelerate version of 0.12.0 since this introduced `gather_for_metrics` Related to https://github.com/huggingface/accelerate/issues/854 ## Before submitting - [ ] This PR fixes a typo or im...
muellerzr
2022-11-15T17:40:32Z
2022-11-15T18:28:01Z
c19aa7accef713d0df95cc2d02156b43d461aa89
822ae69c1b1c486b6ed277964906e273888221a3
Update reqs to include min gather_for_metrics Accelerate version. # What does this PR do? Update all the PyTorch examples using `accelerate` and `gather_for_metrics` to include a minimum accelerate version of 0.12.0 since this introduced `gather_for_metrics` Related to https://github.com/huggingface/accelerate/is...
./examples/pytorch/text-classification/requirements.txt
accelerate datasets >= 1.8.0 sentencepiece != 0.1.92 scipy scikit-learn protobuf torch >= 1.3 evaluate
accelerate >= 0.12.0 datasets >= 1.8.0 sentencepiece != 0.1.92 scipy scikit-learn protobuf torch >= 1.3 evaluate
1
huggingface/transformers
20,242
Update reqs to include min gather_for_metrics Accelerate version
# What does this PR do? Update all the PyTorch examples using `accelerate` and `gather_for_metrics` to include a minimum accelerate version of 0.12.0 since this introduced `gather_for_metrics` Related to https://github.com/huggingface/accelerate/issues/854 ## Before submitting - [ ] This PR fixes a typo or im...
muellerzr
2022-11-15T17:40:32Z
2022-11-15T18:28:01Z
c19aa7accef713d0df95cc2d02156b43d461aa89
822ae69c1b1c486b6ed277964906e273888221a3
Update reqs to include min gather_for_metrics Accelerate version. # What does this PR do? Update all the PyTorch examples using `accelerate` and `gather_for_metrics` to include a minimum accelerate version of 0.12.0 since this introduced `gather_for_metrics` Related to https://github.com/huggingface/accelerate/is...
./examples/pytorch/token-classification/requirements.txt
accelerate seqeval datasets >= 1.8.0 torch >= 1.3 evaluate
accelerate >= 0.12.0 seqeval datasets >= 1.8.0 torch >= 1.3 evaluate
1
huggingface/transformers
20,242
Update reqs to include min gather_for_metrics Accelerate version
# What does this PR do? Update all the PyTorch examples using `accelerate` and `gather_for_metrics` to include a minimum accelerate version of 0.12.0 since this introduced `gather_for_metrics` Related to https://github.com/huggingface/accelerate/issues/854 ## Before submitting - [ ] This PR fixes a typo or im...
muellerzr
2022-11-15T17:40:32Z
2022-11-15T18:28:01Z
c19aa7accef713d0df95cc2d02156b43d461aa89
822ae69c1b1c486b6ed277964906e273888221a3
Update reqs to include min gather_for_metrics Accelerate version. # What does this PR do? Update all the PyTorch examples using `accelerate` and `gather_for_metrics` to include a minimum accelerate version of 0.12.0 since this introduced `gather_for_metrics` Related to https://github.com/huggingface/accelerate/is...
./examples/pytorch/translation/requirements.txt
accelerate datasets >= 1.8.0 sentencepiece != 0.1.92 protobuf sacrebleu >= 1.4.12 py7zr torch >= 1.3 evaluate
accelerate >= 0.12.0 datasets >= 1.8.0 sentencepiece != 0.1.92 protobuf sacrebleu >= 1.4.12 py7zr torch >= 1.3 evaluate
1
huggingface/transformers
20,242
Update reqs to include min gather_for_metrics Accelerate version
# What does this PR do? Update all the PyTorch examples using `accelerate` and `gather_for_metrics` to include a minimum accelerate version of 0.12.0 since this introduced `gather_for_metrics` Related to https://github.com/huggingface/accelerate/issues/854 ## Before submitting - [ ] This PR fixes a typo or im...
muellerzr
2022-11-15T17:40:32Z
2022-11-15T18:28:01Z
c19aa7accef713d0df95cc2d02156b43d461aa89
822ae69c1b1c486b6ed277964906e273888221a3
Update reqs to include min gather_for_metrics Accelerate version. # What does this PR do? Update all the PyTorch examples using `accelerate` and `gather_for_metrics` to include a minimum accelerate version of 0.12.0 since this introduced `gather_for_metrics` Related to https://github.com/huggingface/accelerate/is...
./examples/research_projects/jax-projects/big_bird/requirements.txt
git+https://github.com/huggingface/transformers@main datasets sentencepiece wandb flax jsonlines
git+https://github.com/huggingface/transformers@main datasets sentencepiece wandb flax jsonlines
-1
huggingface/transformers
20,242
Update reqs to include min gather_for_metrics Accelerate version
# What does this PR do? Update all the PyTorch examples using `accelerate` and `gather_for_metrics` to include a minimum accelerate version of 0.12.0 since this introduced `gather_for_metrics` Related to https://github.com/huggingface/accelerate/issues/854 ## Before submitting - [ ] This PR fixes a typo or im...
muellerzr
2022-11-15T17:40:32Z
2022-11-15T18:28:01Z
c19aa7accef713d0df95cc2d02156b43d461aa89
822ae69c1b1c486b6ed277964906e273888221a3
Update reqs to include min gather_for_metrics Accelerate version. # What does this PR do? Update all the PyTorch examples using `accelerate` and `gather_for_metrics` to include a minimum accelerate version of 0.12.0 since this introduced `gather_for_metrics` Related to https://github.com/huggingface/accelerate/is...
./examples/pytorch/semantic-segmentation/requirements.txt
git://github.com/huggingface/accelerate.git datasets >= 2.0.0 torch >= 1.3 evaluate
git://github.com/huggingface/accelerate.git datasets >= 2.0.0 torch >= 1.3 evaluate
-1
huggingface/transformers
20,242
Update reqs to include min gather_for_metrics Accelerate version
# What does this PR do? Update all the PyTorch examples using `accelerate` and `gather_for_metrics` to include a minimum accelerate version of 0.12.0 since this introduced `gather_for_metrics` Related to https://github.com/huggingface/accelerate/issues/854 ## Before submitting - [ ] This PR fixes a typo or im...
muellerzr
2022-11-15T17:40:32Z
2022-11-15T18:28:01Z
c19aa7accef713d0df95cc2d02156b43d461aa89
822ae69c1b1c486b6ed277964906e273888221a3
Update reqs to include min gather_for_metrics Accelerate version. # What does this PR do? Update all the PyTorch examples using `accelerate` and `gather_for_metrics` to include a minimum accelerate version of 0.12.0 since this introduced `gather_for_metrics` Related to https://github.com/huggingface/accelerate/is...
./examples/research_projects/decision_transformer/requirements.txt
absl-py==1.0.0 aiohttp==3.8.1 aiosignal==1.2.0 alembic==1.7.7 appdirs==1.4.4 APScheduler==3.9.1 arrow==1.2.2 asttokens==2.0.5 astunparse==1.6.3 async-timeout==4.0.2 attrs==21.4.0 audioread==2.1.9 autopage==0.5.0 backcall==0.2.0 backoff==1.11.1 backports.zoneinfo==0.2.1 binaryornot==0.4.4 black==22.1.0 boto3==1.16.34 bo...
absl-py==1.0.0 aiohttp==3.8.1 aiosignal==1.2.0 alembic==1.7.7 appdirs==1.4.4 APScheduler==3.9.1 arrow==1.2.2 asttokens==2.0.5 astunparse==1.6.3 async-timeout==4.0.2 attrs==21.4.0 audioread==2.1.9 autopage==0.5.0 backcall==0.2.0 backoff==1.11.1 backports.zoneinfo==0.2.1 binaryornot==0.4.4 black==22.1.0 boto3==1.16.34 bo...
-1
huggingface/transformers
20,242
Update reqs to include min gather_for_metrics Accelerate version
# What does this PR do? Update all the PyTorch examples using `accelerate` and `gather_for_metrics` to include a minimum accelerate version of 0.12.0 since this introduced `gather_for_metrics` Related to https://github.com/huggingface/accelerate/issues/854 ## Before submitting - [ ] This PR fixes a typo or im...
muellerzr
2022-11-15T17:40:32Z
2022-11-15T18:28:01Z
c19aa7accef713d0df95cc2d02156b43d461aa89
822ae69c1b1c486b6ed277964906e273888221a3
Update reqs to include min gather_for_metrics Accelerate version. # What does this PR do? Update all the PyTorch examples using `accelerate` and `gather_for_metrics` to include a minimum accelerate version of 0.12.0 since this introduced `gather_for_metrics` Related to https://github.com/huggingface/accelerate/is...
./examples/research_projects/adversarial/requirements.txt
transformers == 3.5.1
transformers == 3.5.1
-1
huggingface/transformers
20,242
Update reqs to include min gather_for_metrics Accelerate version
# What does this PR do? Update all the PyTorch examples using `accelerate` and `gather_for_metrics` to include a minimum accelerate version of 0.12.0 since this introduced `gather_for_metrics` Related to https://github.com/huggingface/accelerate/issues/854 ## Before submitting - [ ] This PR fixes a typo or im...
muellerzr
2022-11-15T17:40:32Z
2022-11-15T18:28:01Z
c19aa7accef713d0df95cc2d02156b43d461aa89
822ae69c1b1c486b6ed277964906e273888221a3
Update reqs to include min gather_for_metrics Accelerate version. # What does this PR do? Update all the PyTorch examples using `accelerate` and `gather_for_metrics` to include a minimum accelerate version of 0.12.0 since this introduced `gather_for_metrics` Related to https://github.com/huggingface/accelerate/is...
./examples/research_projects/bert-loses-patience/requirements.txt
transformers == 3.5.1
transformers == 3.5.1
-1
huggingface/transformers
20,242
Update reqs to include min gather_for_metrics Accelerate version
# What does this PR do? Update all the PyTorch examples using `accelerate` and `gather_for_metrics` to include a minimum accelerate version of 0.12.0 since this introduced `gather_for_metrics` Related to https://github.com/huggingface/accelerate/issues/854 ## Before submitting - [ ] This PR fixes a typo or im...
muellerzr
2022-11-15T17:40:32Z
2022-11-15T18:28:01Z
c19aa7accef713d0df95cc2d02156b43d461aa89
822ae69c1b1c486b6ed277964906e273888221a3
Update reqs to include min gather_for_metrics Accelerate version. # What does this PR do? Update all the PyTorch examples using `accelerate` and `gather_for_metrics` to include a minimum accelerate version of 0.12.0 since this introduced `gather_for_metrics` Related to https://github.com/huggingface/accelerate/is...
./examples/research_projects/jax-projects/hybrid_clip/requirements.txt
jax>=0.2.8 jaxlib>=0.1.59 flax>=0.3.5 optax>=0.0.8 -f https://download.pytorch.org/whl/torch_stable.html torch==1.9.0+cpu -f https://download.pytorch.org/whl/torch_stable.html torchvision==0.10.0+cpu
jax>=0.2.8 jaxlib>=0.1.59 flax>=0.3.5 optax>=0.0.8 -f https://download.pytorch.org/whl/torch_stable.html torch==1.9.0+cpu -f https://download.pytorch.org/whl/torch_stable.html torchvision==0.10.0+cpu
-1
huggingface/transformers
20,242
Update reqs to include min gather_for_metrics Accelerate version
# What does this PR do? Update all the PyTorch examples using `accelerate` and `gather_for_metrics` to include a minimum accelerate version of 0.12.0 since this introduced `gather_for_metrics` Related to https://github.com/huggingface/accelerate/issues/854 ## Before submitting - [ ] This PR fixes a typo or im...
muellerzr
2022-11-15T17:40:32Z
2022-11-15T18:28:01Z
c19aa7accef713d0df95cc2d02156b43d461aa89
822ae69c1b1c486b6ed277964906e273888221a3
Update reqs to include min gather_for_metrics Accelerate version. # What does this PR do? Update all the PyTorch examples using `accelerate` and `gather_for_metrics` to include a minimum accelerate version of 0.12.0 since this introduced `gather_for_metrics` Related to https://github.com/huggingface/accelerate/is...
./examples/research_projects/deebert/requirements.txt
transformers == 3.5.1
transformers == 3.5.1
-1
huggingface/transformers
20,242
Update reqs to include min gather_for_metrics Accelerate version
# What does this PR do? Update all the PyTorch examples using `accelerate` and `gather_for_metrics` to include a minimum accelerate version of 0.12.0 since this introduced `gather_for_metrics` Related to https://github.com/huggingface/accelerate/issues/854 ## Before submitting - [ ] This PR fixes a typo or im...
muellerzr
2022-11-15T17:40:32Z
2022-11-15T18:28:01Z
c19aa7accef713d0df95cc2d02156b43d461aa89
822ae69c1b1c486b6ed277964906e273888221a3
Update reqs to include min gather_for_metrics Accelerate version. # What does this PR do? Update all the PyTorch examples using `accelerate` and `gather_for_metrics` to include a minimum accelerate version of 0.12.0 since this introduced `gather_for_metrics` Related to https://github.com/huggingface/accelerate/is...
./tests/sagemaker/scripts/pytorch/requirements.txt
git+https://github.com/huggingface/transformers.git@main # install main or adjust it with vX.X.X for installing version specific transforms datasets==1.8.0
git+https://github.com/huggingface/transformers.git@main # install main or adjust it with vX.X.X for installing version specific transforms datasets==1.8.0
-1
huggingface/transformers
20,242
Update reqs to include min gather_for_metrics Accelerate version
# What does this PR do? Update all the PyTorch examples using `accelerate` and `gather_for_metrics` to include a minimum accelerate version of 0.12.0 since this introduced `gather_for_metrics` Related to https://github.com/huggingface/accelerate/issues/854 ## Before submitting - [ ] This PR fixes a typo or im...
muellerzr
2022-11-15T17:40:32Z
2022-11-15T18:28:01Z
c19aa7accef713d0df95cc2d02156b43d461aa89
822ae69c1b1c486b6ed277964906e273888221a3
Update reqs to include min gather_for_metrics Accelerate version. # What does this PR do? Update all the PyTorch examples using `accelerate` and `gather_for_metrics` to include a minimum accelerate version of 0.12.0 since this introduced `gather_for_metrics` Related to https://github.com/huggingface/accelerate/is...
./tests/fixtures/tests_samples/GermEval/train.txt
Schartau B-PER sagte O dem O " O Tagesspiegel B-ORG " O vom O Freitag O , O Fischer B-PER sei O " O in O einer O Weise O aufgetreten O , O die O alles O andere O als O überzeugend O war O " O . O Firmengründer O Wolf B-PER Peter I-PER Bree I-PER arbeitete O Anfang O der O siebziger O Jahre O als O Möbelvertreter O , O...
Schartau B-PER sagte O dem O " O Tagesspiegel B-ORG " O vom O Freitag O , O Fischer B-PER sei O " O in O einer O Weise O aufgetreten O , O die O alles O andere O als O überzeugend O war O " O . O Firmengründer O Wolf B-PER Peter I-PER Bree I-PER arbeitete O Anfang O der O siebziger O Jahre O als O Möbelvertreter O , O...
-1
huggingface/transformers
20,242
Update reqs to include min gather_for_metrics Accelerate version
# What does this PR do? Update all the PyTorch examples using `accelerate` and `gather_for_metrics` to include a minimum accelerate version of 0.12.0 since this introduced `gather_for_metrics` Related to https://github.com/huggingface/accelerate/issues/854 ## Before submitting - [ ] This PR fixes a typo or im...
muellerzr
2022-11-15T17:40:32Z
2022-11-15T18:28:01Z
c19aa7accef713d0df95cc2d02156b43d461aa89
822ae69c1b1c486b6ed277964906e273888221a3
Update reqs to include min gather_for_metrics Accelerate version. # What does this PR do? Update all the PyTorch examples using `accelerate` and `gather_for_metrics` to include a minimum accelerate version of 0.12.0 since this introduced `gather_for_metrics` Related to https://github.com/huggingface/accelerate/is...
./examples/tensorflow/multiple-choice/requirements.txt
sentencepiece != 0.1.92 protobuf tensorflow >= 2.3
sentencepiece != 0.1.92 protobuf tensorflow >= 2.3
-1
huggingface/transformers
20,242
Update reqs to include min gather_for_metrics Accelerate version
# What does this PR do? Update all the PyTorch examples using `accelerate` and `gather_for_metrics` to include a minimum accelerate version of 0.12.0 since this introduced `gather_for_metrics` Related to https://github.com/huggingface/accelerate/issues/854 ## Before submitting - [ ] This PR fixes a typo or im...
muellerzr
2022-11-15T17:40:32Z
2022-11-15T18:28:01Z
c19aa7accef713d0df95cc2d02156b43d461aa89
822ae69c1b1c486b6ed277964906e273888221a3
Update reqs to include min gather_for_metrics Accelerate version. # What does this PR do? Update all the PyTorch examples using `accelerate` and `gather_for_metrics` to include a minimum accelerate version of 0.12.0 since this introduced `gather_for_metrics` Related to https://github.com/huggingface/accelerate/is...
./examples/research_projects/lxmert/requirements.txt
appdirs==1.4.3 argon2-cffi==20.1.0 async-generator==1.10 attrs==20.2.0 backcall==0.2.0 CacheControl==0.12.6 certifi==2020.6.20 cffi==1.14.2 chardet==3.0.4 click==7.1.2 colorama==0.4.3 contextlib2==0.6.0 cycler==0.10.0 datasets==1.0.0 decorator==4.4.2 defusedxml==0.6.0 dill==0.3.2 distlib==0.3.0 distro==1.4.0 entrypoint...
appdirs==1.4.3 argon2-cffi==20.1.0 async-generator==1.10 attrs==20.2.0 backcall==0.2.0 CacheControl==0.12.6 certifi==2020.6.20 cffi==1.14.2 chardet==3.0.4 click==7.1.2 colorama==0.4.3 contextlib2==0.6.0 cycler==0.10.0 datasets==1.0.0 decorator==4.4.2 defusedxml==0.6.0 dill==0.3.2 distlib==0.3.0 distro==1.4.0 entrypoint...
-1
huggingface/transformers
20,242
Update reqs to include min gather_for_metrics Accelerate version
# What does this PR do? Update all the PyTorch examples using `accelerate` and `gather_for_metrics` to include a minimum accelerate version of 0.12.0 since this introduced `gather_for_metrics` Related to https://github.com/huggingface/accelerate/issues/854 ## Before submitting - [ ] This PR fixes a typo or im...
muellerzr
2022-11-15T17:40:32Z
2022-11-15T18:28:01Z
c19aa7accef713d0df95cc2d02156b43d461aa89
822ae69c1b1c486b6ed277964906e273888221a3
Update reqs to include min gather_for_metrics Accelerate version. # What does this PR do? Update all the PyTorch examples using `accelerate` and `gather_for_metrics` to include a minimum accelerate version of 0.12.0 since this introduced `gather_for_metrics` Related to https://github.com/huggingface/accelerate/is...
./tests/fixtures/sample_text.txt
This text is included to make sure Unicode is handled properly: 力加勝北区ᴵᴺᵀᵃছজটডণত Text should be one-sentence-per-line, with empty lines between documents. This sample text is public domain and was randomly selected from Project Guttenberg. The rain had only ceased with the gray streaks of morning at Blazing Star, and t...
This text is included to make sure Unicode is handled properly: 力加勝北区ᴵᴺᵀᵃছজটডণত Text should be one-sentence-per-line, with empty lines between documents. This sample text is public domain and was randomly selected from Project Guttenberg. The rain had only ceased with the gray streaks of morning at Blazing Star, and t...
-1
huggingface/transformers
20,242
Update reqs to include min gather_for_metrics Accelerate version
# What does this PR do? Update all the PyTorch examples using `accelerate` and `gather_for_metrics` to include a minimum accelerate version of 0.12.0 since this introduced `gather_for_metrics` Related to https://github.com/huggingface/accelerate/issues/854 ## Before submitting - [ ] This PR fixes a typo or im...
muellerzr
2022-11-15T17:40:32Z
2022-11-15T18:28:01Z
c19aa7accef713d0df95cc2d02156b43d461aa89
822ae69c1b1c486b6ed277964906e273888221a3
Update reqs to include min gather_for_metrics Accelerate version. # What does this PR do? Update all the PyTorch examples using `accelerate` and `gather_for_metrics` to include a minimum accelerate version of 0.12.0 since this introduced `gather_for_metrics` Related to https://github.com/huggingface/accelerate/is...
./examples/research_projects/movement-pruning/requirements.txt
torch>=1.4.0 -e git+https://github.com/huggingface/transformers.git@352d5472b0c1dec0f420d606d16747d851b4bda8#egg=transformers knockknock>=0.1.8.1 h5py>=2.10.0 numpy>=1.18.2 scipy>=1.4.1
torch>=1.4.0 -e git+https://github.com/huggingface/transformers.git@352d5472b0c1dec0f420d606d16747d851b4bda8#egg=transformers knockknock>=0.1.8.1 h5py>=2.10.0 numpy>=1.18.2 scipy>=1.4.1
-1
huggingface/transformers
20,242
Update reqs to include min gather_for_metrics Accelerate version
# What does this PR do? Update all the PyTorch examples using `accelerate` and `gather_for_metrics` to include a minimum accelerate version of 0.12.0 since this introduced `gather_for_metrics` Related to https://github.com/huggingface/accelerate/issues/854 ## Before submitting - [ ] This PR fixes a typo or im...
muellerzr
2022-11-15T17:40:32Z
2022-11-15T18:28:01Z
c19aa7accef713d0df95cc2d02156b43d461aa89
822ae69c1b1c486b6ed277964906e273888221a3
Update reqs to include min gather_for_metrics Accelerate version. # What does this PR do? Update all the PyTorch examples using `accelerate` and `gather_for_metrics` to include a minimum accelerate version of 0.12.0 since this introduced `gather_for_metrics` Related to https://github.com/huggingface/accelerate/is...
./tests/fixtures/empty.txt
-1
huggingface/transformers
20,242
Update reqs to include min gather_for_metrics Accelerate version
# What does this PR do? Update all the PyTorch examples using `accelerate` and `gather_for_metrics` to include a minimum accelerate version of 0.12.0 since this introduced `gather_for_metrics` Related to https://github.com/huggingface/accelerate/issues/854 ## Before submitting - [ ] This PR fixes a typo or im...
muellerzr
2022-11-15T17:40:32Z
2022-11-15T18:28:01Z
c19aa7accef713d0df95cc2d02156b43d461aa89
822ae69c1b1c486b6ed277964906e273888221a3
Update reqs to include min gather_for_metrics Accelerate version. # What does this PR do? Update all the PyTorch examples using `accelerate` and `gather_for_metrics` to include a minimum accelerate version of 0.12.0 since this introduced `gather_for_metrics` Related to https://github.com/huggingface/accelerate/is...
./tests/fixtures/tests_samples/COCO/coco_annotations.txt
[{"segmentation": [[333.96, 175.14, 338.26, 134.33, 342.55, 95.67, 348.99, 79.57, 368.32, 80.64, 371.54, 91.38, 364.03, 106.41, 356.51, 145.07, 351.14, 166.55, 350.07, 184.8, 345.77, 185.88, 332.89, 178.36, 332.89, 172.99]], "area": 2120.991099999999, "iscrowd": 0, "image_id": 39769, "bbox": [332.89, 79.57, 38.65, 106....
[{"segmentation": [[333.96, 175.14, 338.26, 134.33, 342.55, 95.67, 348.99, 79.57, 368.32, 80.64, 371.54, 91.38, 364.03, 106.41, 356.51, 145.07, 351.14, 166.55, 350.07, 184.8, 345.77, 185.88, 332.89, 178.36, 332.89, 172.99]], "area": 2120.991099999999, "iscrowd": 0, "image_id": 39769, "bbox": [332.89, 79.57, 38.65, 106....
-1
huggingface/transformers
20,242
Update reqs to include min gather_for_metrics Accelerate version
# What does this PR do? Update all the PyTorch examples using `accelerate` and `gather_for_metrics` to include a minimum accelerate version of 0.12.0 since this introduced `gather_for_metrics` Related to https://github.com/huggingface/accelerate/issues/854 ## Before submitting - [ ] This PR fixes a typo or im...
muellerzr
2022-11-15T17:40:32Z
2022-11-15T18:28:01Z
c19aa7accef713d0df95cc2d02156b43d461aa89
822ae69c1b1c486b6ed277964906e273888221a3
Update reqs to include min gather_for_metrics Accelerate version. # What does this PR do? Update all the PyTorch examples using `accelerate` and `gather_for_metrics` to include a minimum accelerate version of 0.12.0 since this introduced `gather_for_metrics` Related to https://github.com/huggingface/accelerate/is...
./examples/research_projects/tapex/requirements.txt
numpy datasets pandas nltk
numpy datasets pandas nltk
-1
huggingface/transformers
20,242
Update reqs to include min gather_for_metrics Accelerate version
# What does this PR do? Update all the PyTorch examples using `accelerate` and `gather_for_metrics` to include a minimum accelerate version of 0.12.0 since this introduced `gather_for_metrics` Related to https://github.com/huggingface/accelerate/issues/854 ## Before submitting - [ ] This PR fixes a typo or im...
muellerzr
2022-11-15T17:40:32Z
2022-11-15T18:28:01Z
c19aa7accef713d0df95cc2d02156b43d461aa89
822ae69c1b1c486b6ed277964906e273888221a3
Update reqs to include min gather_for_metrics Accelerate version. # What does this PR do? Update all the PyTorch examples using `accelerate` and `gather_for_metrics` to include a minimum accelerate version of 0.12.0 since this introduced `gather_for_metrics` Related to https://github.com/huggingface/accelerate/is...
./examples/research_projects/onnx/summarization/requirements.txt
torch >= 1.10
torch >= 1.10
-1
huggingface/transformers
20,242
Update reqs to include min gather_for_metrics Accelerate version
# What does this PR do? Update all the PyTorch examples using `accelerate` and `gather_for_metrics` to include a minimum accelerate version of 0.12.0 since this introduced `gather_for_metrics` Related to https://github.com/huggingface/accelerate/issues/854 ## Before submitting - [ ] This PR fixes a typo or im...
muellerzr
2022-11-15T17:40:32Z
2022-11-15T18:28:01Z
c19aa7accef713d0df95cc2d02156b43d461aa89
822ae69c1b1c486b6ed277964906e273888221a3
Update reqs to include min gather_for_metrics Accelerate version. # What does this PR do? Update all the PyTorch examples using `accelerate` and `gather_for_metrics` to include a minimum accelerate version of 0.12.0 since this introduced `gather_for_metrics` Related to https://github.com/huggingface/accelerate/is...
./examples/tensorflow/benchmarking/requirements.txt
tensorflow >= 2.3
tensorflow >= 2.3
-1
huggingface/transformers
20,242
Update reqs to include min gather_for_metrics Accelerate version
# What does this PR do? Update all the PyTorch examples using `accelerate` and `gather_for_metrics` to include a minimum accelerate version of 0.12.0 since this introduced `gather_for_metrics` Related to https://github.com/huggingface/accelerate/issues/854 ## Before submitting - [ ] This PR fixes a typo or im...
muellerzr
2022-11-15T17:40:32Z
2022-11-15T18:28:01Z
c19aa7accef713d0df95cc2d02156b43d461aa89
822ae69c1b1c486b6ed277964906e273888221a3
Update reqs to include min gather_for_metrics Accelerate version. # What does this PR do? Update all the PyTorch examples using `accelerate` and `gather_for_metrics` to include a minimum accelerate version of 0.12.0 since this introduced `gather_for_metrics` Related to https://github.com/huggingface/accelerate/is...
./examples/research_projects/rag-end2end-retriever/requirements.txt
faiss-cpu >= 1.7.2 datasets psutil >= 5.9.1 torch >= 1.11.0 pytorch-lightning == 1.6.4 nvidia-ml-py3 == 7.352.0 ray >= 1.13.0
faiss-cpu >= 1.7.2 datasets psutil >= 5.9.1 torch >= 1.11.0 pytorch-lightning == 1.6.4 nvidia-ml-py3 == 7.352.0 ray >= 1.13.0
-1