"docs/vscode:/vscode.git/clone" did not exist on "bcaf566038fa3195f0817db1a36c806c70065a20"
check_config_docstrings.py 3.54 KB
Newer Older
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
# 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 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 inspect
import re
18

19
from transformers import CTRLConfig
20
from transformers.utils import direct_transformers_import
21
22
23
24
25
26
27
28


# All paths are set with the intent you should run this script from the root of the repo with the command
# python utils/check_config_docstrings.py
PATH_TO_TRANSFORMERS = "src/transformers"


# This is to make sure the transformers module imported is the one in the repo.
29
transformers = direct_transformers_import(PATH_TO_TRANSFORMERS)
30
31
32
33
34

CONFIG_MAPPING = transformers.models.auto.configuration_auto.CONFIG_MAPPING

# Regex pattern used to find the checkpoint mentioned in the docstring of `config_class`.
# For example, `[bert-base-uncased](https://huggingface.co/bert-base-uncased)`
35
_re_checkpoint = re.compile(r"\[(.+?)\]\((https://huggingface\.co/.+?)\)")
36
37
38
39
40


CONFIG_CLASSES_TO_IGNORE_FOR_DOCSTRING_CHECKPOINT_CHECK = {
    "DecisionTransformerConfig",
    "EncoderDecoderConfig",
Sanchit Gandhi's avatar
Sanchit Gandhi committed
41
    "MusicgenConfig",
42
43
    "RagConfig",
    "SpeechEncoderDecoderConfig",
amyeroberts's avatar
amyeroberts committed
44
    "TimmBackboneConfig",
45
46
    "VisionEncoderDecoderConfig",
    "VisionTextDualEncoderConfig",
Jason Phang's avatar
Jason Phang committed
47
    "LlamaConfig",
48
49
50
}


Yih-Dar's avatar
Yih-Dar committed
51
52
def get_checkpoint_from_config_class(config_class):
    checkpoint = None
53

Yih-Dar's avatar
Yih-Dar committed
54
55
56
57
    # source code of `config_class`
    config_source = inspect.getsource(config_class)
    checkpoints = _re_checkpoint.findall(config_source)

58
59
60
61
62
63
    # Each `checkpoint` is a tuple of a checkpoint name and a checkpoint link.
    # For example, `('bert-base-uncased', 'https://huggingface.co/bert-base-uncased')`
    for ckpt_name, ckpt_link in checkpoints:
        # allow the link to end with `/`
        if ckpt_link.endswith("/"):
            ckpt_link = ckpt_link[:-1]
Yih-Dar's avatar
Yih-Dar committed
64
65
66
67
68
69

        # verify the checkpoint name corresponds to the checkpoint link
        ckpt_link_from_name = f"https://huggingface.co/{ckpt_name}"
        if ckpt_link == ckpt_link_from_name:
            checkpoint = ckpt_name
            break
70

Yih-Dar's avatar
Yih-Dar committed
71
    return checkpoint
72
73


Yih-Dar's avatar
Yih-Dar committed
74
75
76
def check_config_docstrings_have_checkpoints():
    configs_without_checkpoint = []

77
78
79
    a = [CTRLConfig]

    for config_class in a:
Sylvain Gugger's avatar
Sylvain Gugger committed
80
81
82
        # Skip deprecated models
        if "models.deprecated" in config_class.__module__:
            continue
Yih-Dar's avatar
Yih-Dar committed
83
        checkpoint = get_checkpoint_from_config_class(config_class)
84
85

        name = config_class.__name__
Yih-Dar's avatar
Yih-Dar committed
86
        if checkpoint is None and name not in CONFIG_CLASSES_TO_IGNORE_FOR_DOCSTRING_CHECKPOINT_CHECK:
87
88
89
90
            configs_without_checkpoint.append(name)

    if len(configs_without_checkpoint) > 0:
        message = "\n".join(sorted(configs_without_checkpoint))
91
92
93
94
95
96
        raise ValueError(
            f"The following configurations don't contain any valid checkpoint:\n{message}\n\n"
            "The requirement is to include a link pointing to one of the models of this architecture in the "
            "docstring of the config classes listed above. The link should have be a markdown format like "
            "[myorg/mymodel](https://huggingface.co/myorg/mymodel)."
        )
97
98
99
100


if __name__ == "__main__":
    check_config_docstrings_have_checkpoints()