__init__.py 6.28 KB
Newer Older
1
2
#!/usr/bin/env python
# coding=utf-8
3

4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
# 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 required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.

from packaging import version

from .. import __version__
NielsRogge's avatar
NielsRogge committed
21
from .constants import IMAGENET_DEFAULT_MEAN, IMAGENET_DEFAULT_STD, IMAGENET_STANDARD_MEAN, IMAGENET_STANDARD_STD
22
23
24
25
26
27
28
29
30
31
32
33
34
35
from .doc import (
    add_code_sample_docstrings,
    add_end_docstrings,
    add_start_docstrings,
    add_start_docstrings_to_model_forward,
    copy_func,
    replace_return_docstrings,
)
from .generic import (
    ContextManagers,
    ExplicitEnum,
    ModelOutput,
    PaddingStrategy,
    TensorType,
36
    add_model_info_to_auto_map,
37
    cached_property,
38
    can_return_loss,
39
    expand_dims,
40
    find_labels,
41
    flatten_dict,
Matt's avatar
Matt committed
42
    infer_framework,
43
44
    is_jax_tensor,
    is_numpy_array,
45
    is_tensor,
46
    is_tf_symbolic_tensor,
47
48
    is_tf_tensor,
    is_torch_device,
49
    is_torch_dtype,
50
    is_torch_tensor,
51
52
    reshape,
    squeeze,
53
    strtobool,
Sylvain Gugger's avatar
Sylvain Gugger committed
54
    tensor_size,
55
56
    to_numpy,
    to_py_obj,
57
    transpose,
58
    working_or_temp_dir,
59
60
61
62
63
)
from .hub import (
    CLOUDFRONT_DISTRIB_PREFIX,
    DISABLE_TELEMETRY,
    HF_MODULES_CACHE,
64
65
    HUGGINGFACE_CO_PREFIX,
    HUGGINGFACE_CO_RESOLVE_ENDPOINT,
66
67
68
69
70
71
72
73
74
    PYTORCH_PRETRAINED_BERT_CACHE,
    PYTORCH_TRANSFORMERS_CACHE,
    S3_BUCKET_PREFIX,
    TRANSFORMERS_CACHE,
    TRANSFORMERS_DYNAMIC_MODULE_NAME,
    EntryNotFoundError,
    PushToHubMixin,
    RepositoryNotFoundError,
    RevisionNotFoundError,
75
    cached_file,
76
77
    default_cache_path,
    define_sagemaker_information,
78
    download_url,
79
    extract_commit_hash,
80
81
82
83
84
85
    get_cached_models,
    get_file_from_repo,
    get_full_repo_name,
    has_file,
    http_user_agent,
    is_offline_mode,
86
    is_remote_url,
87
    move_cache,
88
    send_example_telemetry,
89
    try_to_load_from_cache,
90
91
92
93
94
95
96
97
98
)
from .import_utils import (
    ENV_VARS_TRUE_AND_AUTO_VALUES,
    ENV_VARS_TRUE_VALUES,
    TORCH_FX_REQUIRED_VERSION,
    USE_JAX,
    USE_TF,
    USE_TORCH,
    DummyObject,
99
    OptionalDependencyNotAvailable,
100
    _LazyModule,
101
    ccl_version,
102
    direct_transformers_import,
103
    get_torch_version,
104
    is_accelerate_available,
105
    is_apex_available,
106
    is_bitsandbytes_available,
NielsRogge's avatar
NielsRogge committed
107
    is_bs4_available,
108
    is_coloredlogs_available,
109
    is_cython_available,
110
    is_datasets_available,
111
    is_decord_available,
112
113
114
115
116
    is_detectron2_available,
    is_faiss_available,
    is_flax_available,
    is_ftfy_available,
    is_in_notebook,
117
    is_ipex_available,
118
    is_jieba_available,
119
    is_jumanpp_available,
120
    is_kenlm_available,
121
    is_keras_nlp_available,
122
    is_librosa_available,
123
    is_natten_available,
124
    is_ninja_available,
125
    is_onnx_available,
Sylvain Gugger's avatar
Sylvain Gugger committed
126
    is_openai_available,
127
    is_optimum_available,
128
    is_pandas_available,
129
    is_peft_available,
130
131
132
133
134
135
136
137
    is_phonemizer_available,
    is_protobuf_available,
    is_psutil_available,
    is_py3nvml_available,
    is_pyctcdecode_available,
    is_pytesseract_available,
    is_pytorch_quantization_available,
    is_rjieba_available,
138
    is_sacremoses_available,
139
    is_safetensors_available,
140
141
142
143
144
145
146
147
    is_sagemaker_dp_enabled,
    is_sagemaker_mp_enabled,
    is_scipy_available,
    is_sentencepiece_available,
    is_sklearn_available,
    is_soundfile_availble,
    is_spacy_available,
    is_speech_available,
148
    is_sudachi_available,
149
    is_tensorflow_probability_available,
150
    is_tensorflow_text_available,
151
152
153
154
155
156
    is_tf2onnx_available,
    is_tf_available,
    is_timm_available,
    is_tokenizers_available,
    is_torch_available,
    is_torch_bf16_available,
157
158
    is_torch_bf16_cpu_available,
    is_torch_bf16_gpu_available,
159
    is_torch_compile_available,
160
161
162
    is_torch_cuda_available,
    is_torch_fx_available,
    is_torch_fx_proxy,
163
    is_torch_neuroncore_available,
164
    is_torch_tensorrt_fx_available,
165
166
167
    is_torch_tf32_available,
    is_torch_tpu_available,
    is_torchaudio_available,
168
    is_torchdistx_available,
169
    is_torchdynamo_available,
NielsRogge's avatar
NielsRogge committed
170
    is_torchvision_available,
171
172
173
174
175
176
177
178
    is_training_run_on_sagemaker,
    is_vision_available,
    requires_backends,
    torch_only_method,
)


WEIGHTS_NAME = "pytorch_model.bin"
Sylvain Gugger's avatar
Sylvain Gugger committed
179
WEIGHTS_INDEX_NAME = "pytorch_model.bin.index.json"
180
181
ADAPTER_WEIGHTS_NAME = "adapter_model.bin"
ADAPTER_SAFE_WEIGHTS_NAME = "adapter_model.safetensors"
182
TF2_WEIGHTS_NAME = "tf_model.h5"
Arthur's avatar
Arthur committed
183
TF2_WEIGHTS_INDEX_NAME = "tf_model.h5.index.json"
184
185
TF_WEIGHTS_NAME = "model.ckpt"
FLAX_WEIGHTS_NAME = "flax_model.msgpack"
Arthur's avatar
Arthur committed
186
FLAX_WEIGHTS_INDEX_NAME = "flax_model.msgpack.index.json"
187
188
SAFE_WEIGHTS_NAME = "model.safetensors"
SAFE_WEIGHTS_INDEX_NAME = "model.safetensors.index.json"
189
190
CONFIG_NAME = "config.json"
FEATURE_EXTRACTOR_NAME = "preprocessor_config.json"
191
IMAGE_PROCESSOR_NAME = FEATURE_EXTRACTOR_NAME
192
GENERATION_CONFIG_NAME = "generation_config.json"
193
194
195
196
197
198
199
200
201
202
MODEL_CARD_NAME = "modelcard.json"

SENTENCEPIECE_UNDERLINE = "▁"
SPIECE_UNDERLINE = SENTENCEPIECE_UNDERLINE  # Kept for backward compatibility

MULTIPLE_CHOICE_DUMMY_INPUTS = [
    [[0, 1, 0, 1], [1, 0, 0, 1]]
] * 2  # Needs to have 0s and 1s only since XLM uses it for langs too.
DUMMY_INPUTS = [[7, 6, 0, 0, 1], [1, 2, 3, 0, 0], [0, 0, 0, 4, 5]]
DUMMY_MASK = [[1, 1, 1, 1, 1], [1, 1, 1, 0, 0], [0, 0, 0, 1, 1]]
203
204
205
206
207
208


def check_min_version(min_version):
    if version.parse(__version__) < version.parse(min_version):
        if "dev" in min_version:
            error_message = (
209
                "This example requires a source install from HuggingFace Transformers (see "
210
211
212
213
214
215
216
                "`https://huggingface.co/transformers/installation.html#installing-from-source`),"
            )
        else:
            error_message = f"This example requires a minimum version of {min_version},"
        error_message += f" but the version found is {__version__}.\n"
        raise ImportError(
            error_message
Sylvain Gugger's avatar
Sylvain Gugger committed
217
218
            + "Check out https://huggingface.co/transformers/examples.html for the examples corresponding to other "
            "versions of HuggingFace Transformers."
219
        )