e06fe8e8c6
Self-hosted runner (benchmark) / Benchmark (aws-g5-4xlarge-cache) (push) Waiting to run
New model PR merged notification / Notify new model (push) Waiting to run
Update Transformers metadata / build_and_package (push) Waiting to run
Secret Leaks / trufflehog (push) Failing after 1s
Build documentation / build (push) Failing after 1s
Build documentation / build_other_lang (push) Failing after 0s
CodeQL Security Analysis / CodeQL Analysis (push) Failing after 0s
PR CI / pr-ci (push) Failing after 1s
Slow tests on important models (on Push - A10) / Get all modified files (push) Failing after 1s
Slow tests on important models (on Push - A10) / Model CI (push) Has been skipped
332 lines
14 KiB
Python
332 lines
14 KiB
Python
# Copyright 2026 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 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.
|
|
|
|
import argparse
|
|
import ast
|
|
import difflib
|
|
import glob
|
|
import os
|
|
import subprocess
|
|
import tempfile
|
|
from collections import Counter, OrderedDict
|
|
from typing import Any
|
|
|
|
from sort_auto_mappings import sort_auto_mapping
|
|
|
|
from transformers.models.auto.configuration_auto import CONFIG_MAPPING_NAMES as COMPLETE_CONFIG_MAPPING_NAMES
|
|
from transformers.models.auto.feature_extraction_auto import MISSING_FEATURE_EXTRACTOR_MAPPING_NAMES
|
|
from transformers.models.auto.image_processing_auto import MISSING_IMAGE_PROCESSOR_MAPPING_NAMES
|
|
from transformers.models.auto.processing_auto import MISSING_PROCESSOR_MAPPING_NAMES
|
|
from transformers.models.auto.video_processing_auto import MISSING_VIDEO_PROCESSOR_MAPPING_NAMES
|
|
|
|
|
|
CHECKER_CONFIG = {
|
|
"name": "auto_mappings",
|
|
"label": "Generate auto mappings",
|
|
"cache_globs": [],
|
|
"check_args": [],
|
|
"fix_args": ["--fix_and_overwrite"],
|
|
}
|
|
|
|
AUTO_GENERATED_HEADER = """# 🚨🚨🚨🚨🚨🚨🚨🚨🚨🚨🚨🚨🚨🚨🚨🚨🚨🚨🚨🚨🚨🚨🚨🚨🚨🚨🚨🚨🚨🚨🚨🚨🚨🚨🚨🚨🚨🚨🚨🚨🚨🚨🚨🚨🚨🚨🚨🚨
|
|
# This file was automatically generated from existing config files and their `model_type`s. Do NOT edit this file
|
|
# manually as any edits will be overwritten by auto-generation of the file. If any change should be done,
|
|
# please add the correct `cls.model_type` in your config class and run `python utils/check_auto.py --fix_and_overwrite`.
|
|
# 🚨🚨🚨🚨🚨🚨🚨🚨🚨🚨🚨🚨🚨🚨🚨🚨🚨🚨🚨🚨🚨🚨🚨🚨🚨🚨🚨🚨🚨🚨🚨🚨🚨🚨🚨🚨🚨🚨🚨🚨🚨🚨🚨🚨🚨🚨🚨🚨
|
|
# Copyright 2026 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 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.
|
|
|
|
"""
|
|
|
|
# Some keys are duplicated due to incorrect naming at model shipping and BC
|
|
IGNORE_DUPLICATE_CONFIG = ["GPT2Config", "EvollaConfig", "MLCDVisionConfig"]
|
|
|
|
AUTO_FILENAME = "src/transformers/models/auto/auto_mappings.py"
|
|
|
|
|
|
def build_config_mapping_names() -> tuple[dict, dict]:
|
|
model_type_map = OrderedDict()
|
|
special_mappings = OrderedDict()
|
|
# Track which model_types were resolved by a "natural" match (model_type == module_name)
|
|
# so a later non-natural match (e.g. MaskFormerDetrConfig with model_type="detr" inside
|
|
# models/maskformer/) does not silently overwrite the canonical class.
|
|
natural_types: set[str] = set()
|
|
|
|
# `glob.glob` is filesystem-order dependent — sort to make the output deterministic.
|
|
all_files = sorted(glob.glob("src/transformers/models/**/configuration_*.py", recursive=True))
|
|
for config_path in all_files:
|
|
module_name = config_path.split("/")[-2]
|
|
with open(config_path, "r") as f:
|
|
content = f.read()
|
|
|
|
tree = ast.parse(content)
|
|
for node in tree.body:
|
|
if isinstance(node, ast.ClassDef) and any(
|
|
base.id == "PreTrainedConfig" for base in node.bases if isinstance(base, ast.Name)
|
|
):
|
|
config_cls_name = node.name
|
|
model_type = None
|
|
for stmt in node.body:
|
|
if isinstance(stmt, ast.Assign):
|
|
if model_types := [
|
|
stmt.value.value
|
|
for target in stmt.targets
|
|
if isinstance(target, ast.Name) and target.id == "model_type"
|
|
]:
|
|
model_type = model_types[0]
|
|
break
|
|
elif isinstance(stmt, ast.AnnAssign):
|
|
if stmt.target.id == "model_type":
|
|
model_type = stmt.value.value
|
|
break
|
|
|
|
if not model_type:
|
|
continue
|
|
|
|
is_natural = model_type == module_name
|
|
# If we already recorded a natural match for this model_type, don't let a
|
|
# non-natural one overwrite it — the natural class is the canonical owner.
|
|
if model_type in natural_types and not is_natural:
|
|
continue
|
|
|
|
model_type_map[model_type] = config_cls_name
|
|
if is_natural:
|
|
natural_types.add(model_type)
|
|
special_mappings.pop(model_type, None)
|
|
else:
|
|
special_mappings[model_type] = module_name
|
|
|
|
return model_type_map, special_mappings
|
|
|
|
|
|
def build_processor_mapping(
|
|
config_mapping: dict[str, str],
|
|
processor_filename: str,
|
|
parent_class_name: str,
|
|
) -> OrderedDict[str, dict[str, str | None]]:
|
|
processor_mapping = OrderedDict()
|
|
for model_type in config_mapping:
|
|
module = model_type.replace("-", "_")
|
|
processor_name = None
|
|
|
|
if os.path.exists(f"src/transformers/models/{module}/{processor_filename}_{module}.py"):
|
|
with open(f"src/transformers/models/{module}/{processor_filename}_{module}.py", "r") as f:
|
|
content = f.read()
|
|
|
|
tree = ast.parse(content)
|
|
for node in tree.body:
|
|
if isinstance(node, ast.ClassDef) and any(
|
|
base.id == parent_class_name for base in node.bases if isinstance(base, ast.Name)
|
|
):
|
|
processor_name = node.name
|
|
|
|
if processor_name is not None:
|
|
processor_mapping[model_type] = processor_name
|
|
|
|
return processor_mapping
|
|
|
|
|
|
def get_all_config_mappings():
|
|
# Generate new config mapping dicts by parsing all model-config classes
|
|
config_mapping, special_mapping = build_config_mapping_names()
|
|
|
|
# The config mapping has to be one-to-one for correct `AutoConfig.from_pretrained()` because `LazyMapping`
|
|
# reverts keys/values and creates a dict from it. Duplicate values will be overwritten by whatever comes at last
|
|
duplicate_keys = [n for n, c in Counter(COMPLETE_CONFIG_MAPPING_NAMES.keys()).items() if c > 1]
|
|
if duplicate_keys:
|
|
raise ValueError(
|
|
f"Keys in `CONFIG_MAPPING_NAMES` contain duplicates = {duplicate_keys}. "
|
|
"The mapping has to be one-to-one to ensure correct `AutoConfig` functionality!"
|
|
)
|
|
|
|
duplicate_values = [
|
|
n
|
|
for n, c in Counter(COMPLETE_CONFIG_MAPPING_NAMES.values()).items()
|
|
if c > 1 and n not in IGNORE_DUPLICATE_CONFIG
|
|
]
|
|
if duplicate_values:
|
|
raise ValueError(
|
|
f"Values in `CONFIG_MAPPING_NAMES` contain duplicates = {duplicate_values}. "
|
|
"The mapping has to be one-to-one to ensure correct `AutoConfig` functionality!"
|
|
)
|
|
return config_mapping, special_mapping
|
|
|
|
|
|
def get_all_processor_mappings(config_mapping: dict[str, str]):
|
|
files_to_names = {
|
|
"image_processing_pil": (
|
|
"PilBackend",
|
|
"IMAGE_PROCESSOR_MAPPING_NAMES_PIL",
|
|
MISSING_IMAGE_PROCESSOR_MAPPING_NAMES,
|
|
),
|
|
"image_processing": (
|
|
"TorchvisionBackend",
|
|
"IMAGE_PROCESSOR_MAPPING_NAMES_TV",
|
|
MISSING_IMAGE_PROCESSOR_MAPPING_NAMES,
|
|
),
|
|
"video_processing": (
|
|
"BaseVideoProcessor",
|
|
"VIDEO_PROCESSOR_MAPPING_NAMES",
|
|
MISSING_VIDEO_PROCESSOR_MAPPING_NAMES,
|
|
),
|
|
"feature_extraction": (
|
|
"SequenceFeatureExtractor",
|
|
"FEATURE_EXTRACTOR_MAPPING_NAMES",
|
|
MISSING_FEATURE_EXTRACTOR_MAPPING_NAMES,
|
|
),
|
|
"processing": ("ProcessorMixin", "PROCESSOR_MAPPING_NAMES", MISSING_PROCESSOR_MAPPING_NAMES),
|
|
}
|
|
|
|
all_mappings = {}
|
|
for processor_filename, (parent_class_name, mapping_name, missing_mapping_names) in files_to_names.items():
|
|
all_mappings[mapping_name] = build_processor_mapping(
|
|
config_mapping=config_mapping,
|
|
processor_filename=processor_filename,
|
|
parent_class_name=parent_class_name,
|
|
)
|
|
|
|
# Make sure users aren't duplicating the same keys manually
|
|
# Skip image processor until pil <-> tv backend are merged into one mapping
|
|
if "image_processing" not in processor_filename:
|
|
check_duplicates(all_mappings[mapping_name], missing_mapping_names)
|
|
|
|
merged_image_processor_mapping = {}
|
|
for model_type in config_mapping:
|
|
pil_processor_name = all_mappings["IMAGE_PROCESSOR_MAPPING_NAMES_PIL"].get(model_type)
|
|
tv_processor_name = all_mappings["IMAGE_PROCESSOR_MAPPING_NAMES_TV"].get(model_type)
|
|
|
|
if pil_processor_name is not None or tv_processor_name is not None:
|
|
merged_image_processor_mapping[model_type] = {
|
|
**({"pil": pil_processor_name} if pil_processor_name else {}),
|
|
**({"torchvision": tv_processor_name} if tv_processor_name else {}),
|
|
}
|
|
|
|
all_mappings["IMAGE_PROCESSOR_MAPPING_NAMES"] = merged_image_processor_mapping
|
|
del all_mappings["IMAGE_PROCESSOR_MAPPING_NAMES_PIL"]
|
|
del all_mappings["IMAGE_PROCESSOR_MAPPING_NAMES_TV"]
|
|
check_duplicates(MISSING_IMAGE_PROCESSOR_MAPPING_NAMES, merged_image_processor_mapping)
|
|
|
|
return all_mappings
|
|
|
|
|
|
def run_ruff_and_sort(file: str):
|
|
"""Run `ruff` linter and formatter on `file`, as in `make style` and sort the mappings order"""
|
|
sort_auto_mapping(file, overwrite=True)
|
|
subprocess.run(["ruff", "check", file, "--fix"], stdout=subprocess.DEVNULL)
|
|
subprocess.run(["ruff", "format", file], stdout=subprocess.DEVNULL)
|
|
|
|
|
|
def format_dict_value(v):
|
|
if isinstance(v, str):
|
|
return f'"{v}"'
|
|
elif isinstance(v, dict):
|
|
items = ", ".join(f'"{k}": {format_dict_value(val)}' for k, val in v.items())
|
|
return "{" + items + "}"
|
|
elif isinstance(v, list):
|
|
items = ", ".join(format_dict_value(x) for x in v)
|
|
return "[" + items + "]"
|
|
else:
|
|
return repr(v)
|
|
|
|
|
|
def format_ordered_dict(name: str, data: OrderedDict):
|
|
lines = []
|
|
|
|
lines.append(f"{name} = OrderedDict(")
|
|
lines.append(f"{' ' * 4}[")
|
|
|
|
for k, v in data.items():
|
|
lines.append(f'{" " * 8}("{k}", {format_dict_value(v)}),')
|
|
|
|
lines.append(f"{' ' * 4}]")
|
|
lines.append(")\n\n")
|
|
|
|
return "\n".join(lines)
|
|
|
|
|
|
def check_duplicates(mapping_for_special_models: dict[str, Any], auto_mapping: dict[str, Any]):
|
|
if intersections := (set(mapping_for_special_models.keys()) & set(auto_mapping.keys())):
|
|
raise ValueError(
|
|
"You have manually duplicated a model-type that is present in `auto_mappings.py`. "
|
|
f"Please, delete the entries for {intersections} if they are identical to auto-generated dict, "
|
|
"or use consistent naming across model files so that the names match."
|
|
)
|
|
|
|
|
|
def main(overwrite: bool):
|
|
# Read existing file content if available
|
|
old_content = ""
|
|
if os.path.exists(AUTO_FILENAME):
|
|
old_content = open(AUTO_FILENAME, "r").read()
|
|
|
|
config_mapping, special_mapping = get_all_config_mappings()
|
|
all_processor_mappings = get_all_processor_mappings(config_mapping=config_mapping)
|
|
|
|
new_mappings = {
|
|
"CONFIG_MAPPING_NAMES": config_mapping,
|
|
"SPECIAL_MODEL_TYPE_TO_MODULE_NAME": special_mapping,
|
|
**all_processor_mappings,
|
|
}
|
|
new_content = AUTO_GENERATED_HEADER + "\nfrom collections import OrderedDict\n\n"
|
|
for k, v in new_mappings.items():
|
|
new_content += format_ordered_dict(name=k, data=v)
|
|
|
|
# If the new auto-generate content is different, overwrite it
|
|
# Dirty hack to sort and apply ruff to the file content, for easier matching
|
|
with tempfile.TemporaryDirectory() as temp_folder:
|
|
temp_filename = os.path.join(temp_folder, "temp.py")
|
|
with open(temp_filename, "w") as temp_file:
|
|
temp_file.write(new_content)
|
|
|
|
run_ruff_and_sort(temp_filename)
|
|
new_content = open(temp_filename, "r").read()
|
|
|
|
if old_content != new_content:
|
|
if not overwrite:
|
|
diff = "".join(
|
|
difflib.unified_diff(
|
|
old_content.splitlines(keepends=True),
|
|
new_content.splitlines(keepends=True),
|
|
fromfile=f"{AUTO_FILENAME} (on disk)",
|
|
tofile=f"{AUTO_FILENAME} (regenerated)",
|
|
n=3,
|
|
)
|
|
)
|
|
raise Exception(
|
|
"Generated auto-mapping is not consistent with the contents of `models/auto/auto_mappings.py`.\n"
|
|
"Run `make fix-repo` or `python utils/check_auto.py --fix_and_overwrite` to fix them.\n\n"
|
|
f"Diff (on disk → regenerated):\n{diff}"
|
|
)
|
|
else:
|
|
with open(AUTO_FILENAME, "w") as f:
|
|
f.write(new_content)
|
|
|
|
|
|
if __name__ == "__main__":
|
|
parser = argparse.ArgumentParser()
|
|
parser.add_argument("--fix_and_overwrite", action="store_true", help="Whether to fix inconsistencies.")
|
|
args = parser.parse_args()
|
|
main(overwrite=args.fix_and_overwrite)
|