test_configuration_common.py 17.2 KB
Newer Older
1
2
3
4
5
6
7
8
9
10
11
12
13
14
# coding=utf-8
# Copyright 2019 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 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.
Aymeric Augustin's avatar
Aymeric Augustin committed
15

16
import copy
17
import json
Aymeric Augustin's avatar
Aymeric Augustin committed
18
import os
19
import shutil
20
import sys
21
import tempfile
Sylvain Gugger's avatar
Sylvain Gugger committed
22
import unittest
23
import unittest.mock as mock
24
from pathlib import Path
Sylvain Gugger's avatar
Sylvain Gugger committed
25

26
from huggingface_hub import HfFolder, delete_repo
Sylvain Gugger's avatar
Sylvain Gugger committed
27
from requests.exceptions import HTTPError
28

29
from transformers import AutoConfig, BertConfig, GPT2Config, is_torch_available
30
from transformers.configuration_utils import PretrainedConfig
31
from transformers.testing_utils import TOKEN, USER, is_staging_test
32
33


34
35
36
37
38
sys.path.append(str(Path(__file__).parent.parent / "utils"))

from test_module.custom_configuration import CustomConfig  # noqa E402


39
40
41
42
43
44
45
config_common_kwargs = {
    "return_dict": False,
    "output_hidden_states": True,
    "output_attentions": True,
    "torchscript": True,
    "torch_dtype": "float16",
    "use_bfloat16": True,
Matt's avatar
Matt committed
46
    "tf_legacy_loss": True,
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
    "pruned_heads": {"a": 1},
    "tie_word_embeddings": False,
    "is_decoder": True,
    "cross_attention_hidden_size": 128,
    "add_cross_attention": True,
    "tie_encoder_decoder": True,
    "max_length": 50,
    "min_length": 3,
    "do_sample": True,
    "early_stopping": True,
    "num_beams": 3,
    "num_beam_groups": 3,
    "diversity_penalty": 0.5,
    "temperature": 2.0,
    "top_k": 10,
    "top_p": 0.7,
63
    "typical_p": 0.2,
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
    "repetition_penalty": 0.8,
    "length_penalty": 0.8,
    "no_repeat_ngram_size": 5,
    "encoder_no_repeat_ngram_size": 5,
    "bad_words_ids": [1, 2, 3],
    "num_return_sequences": 3,
    "chunk_size_feed_forward": 5,
    "output_scores": True,
    "return_dict_in_generate": True,
    "forced_bos_token_id": 2,
    "forced_eos_token_id": 3,
    "remove_invalid_values": True,
    "architectures": ["BertModel"],
    "finetuning_task": "translation",
    "id2label": {0: "label"},
    "label2id": {"label": "0"},
    "tokenizer_class": "BertTokenizerFast",
    "prefix": "prefix",
    "bos_token_id": 6,
    "pad_token_id": 7,
    "eos_token_id": 8,
    "sep_token_id": 9,
    "decoder_start_token_id": 10,
87
    "exponential_decay_length_penalty": (5, 1.01),
88
89
    "suppress_tokens": [0, 1],
    "begin_suppress_tokens": 2,
90
91
92
93
94
    "task_specific_params": {"translation": "some_params"},
    "problem_type": "regression",
}


95
class ConfigTester(object):
Sylvain Gugger's avatar
Sylvain Gugger committed
96
    def __init__(self, parent, config_class=None, has_text_modality=True, common_properties=None, **kwargs):
97
98
        self.parent = parent
        self.config_class = config_class
NielsRogge's avatar
NielsRogge committed
99
        self.has_text_modality = has_text_modality
100
        self.inputs_dict = kwargs
Sylvain Gugger's avatar
Sylvain Gugger committed
101
        self.common_properties = common_properties
102
103
104

    def create_and_test_config_common_properties(self):
        config = self.config_class(**self.inputs_dict)
Sylvain Gugger's avatar
Sylvain Gugger committed
105
106
107
108
109
        common_properties = (
            ["hidden_size", "num_attention_heads", "num_hidden_layers"]
            if self.common_properties is None
            else self.common_properties
        )
110
111

        # Add common fields for text models
NielsRogge's avatar
NielsRogge committed
112
        if self.has_text_modality:
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
            common_properties.extend(["vocab_size"])

        # Test that config has the common properties as getters
        for prop in common_properties:
            self.parent.assertTrue(hasattr(config, prop), msg=f"`{prop}` does not exist")

        # Test that config has the common properties as setter
        for idx, name in enumerate(common_properties):
            try:
                setattr(config, name, idx)
                self.parent.assertEqual(
                    getattr(config, name), idx, msg=f"`{name} value {idx} expected, but was {getattr(config, name)}"
                )
            except NotImplementedError:
                # Some models might not be able to implement setters for common_properties
                # In that case, a NotImplementedError is raised
                pass

        # Test if config class can be called with Config(prop_name=..)
        for idx, name in enumerate(common_properties):
            try:
                config = self.config_class(**{name: idx})
                self.parent.assertEqual(
                    getattr(config, name), idx, msg=f"`{name} value {idx} expected, but was {getattr(config, name)}"
                )
            except NotImplementedError:
                # Some models might not be able to implement setters for common_properties
                # In that case, a NotImplementedError is raised
                pass
142
143
144
145
146
147
148
149
150

    def create_and_test_config_to_json_string(self):
        config = self.config_class(**self.inputs_dict)
        obj = json.loads(config.to_json_string())
        for key, value in self.inputs_dict.items():
            self.parent.assertEqual(obj[key], value)

    def create_and_test_config_to_json_file(self):
        config_first = self.config_class(**self.inputs_dict)
thomwolf's avatar
thomwolf committed
151

152
        with tempfile.TemporaryDirectory() as tmpdirname:
thomwolf's avatar
thomwolf committed
153
154
155
156
157
158
159
160
161
            json_file_path = os.path.join(tmpdirname, "config.json")
            config_first.to_json_file(json_file_path)
            config_second = self.config_class.from_json_file(json_file_path)

        self.parent.assertEqual(config_second.to_dict(), config_first.to_dict())

    def create_and_test_config_from_and_save_pretrained(self):
        config_first = self.config_class(**self.inputs_dict)

162
        with tempfile.TemporaryDirectory() as tmpdirname:
thomwolf's avatar
thomwolf committed
163
164
165
            config_first.save_pretrained(tmpdirname)
            config_second = self.config_class.from_pretrained(tmpdirname)

166
167
        self.parent.assertEqual(config_second.to_dict(), config_first.to_dict())

168
169
170
171
172
173
174
175
176
177
178
    def create_and_test_config_from_and_save_pretrained_subfolder(self):
        config_first = self.config_class(**self.inputs_dict)

        subfolder = "test"
        with tempfile.TemporaryDirectory() as tmpdirname:
            sub_tmpdirname = os.path.join(tmpdirname, subfolder)
            config_first.save_pretrained(sub_tmpdirname)
            config_second = self.config_class.from_pretrained(tmpdirname, subfolder=subfolder)

        self.parent.assertEqual(config_second.to_dict(), config_first.to_dict())

179
180
181
182
183
184
185
186
187
    def create_and_test_config_with_num_labels(self):
        config = self.config_class(**self.inputs_dict, num_labels=5)
        self.parent.assertEqual(len(config.id2label), 5)
        self.parent.assertEqual(len(config.label2id), 5)

        config.num_labels = 3
        self.parent.assertEqual(len(config.id2label), 3)
        self.parent.assertEqual(len(config.label2id), 3)

188
189
190
191
192
193
    def check_config_can_be_init_without_params(self):
        if self.config_class.is_composition:
            return
        config = self.config_class()
        self.parent.assertIsNotNone(config)

194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
    def check_config_arguments_init(self):
        kwargs = copy.deepcopy(config_common_kwargs)
        config = self.config_class(**kwargs)
        wrong_values = []
        for key, value in config_common_kwargs.items():
            if key == "torch_dtype":
                if not is_torch_available():
                    continue
                else:
                    import torch

                    if config.torch_dtype != torch.float16:
                        wrong_values.append(("torch_dtype", config.torch_dtype, torch.float16))
            elif getattr(config, key) != value:
                wrong_values.append((key, getattr(config, key), value))

        if len(wrong_values) > 0:
            errors = "\n".join([f"- {v[0]}: got {v[1]} instead of {v[2]}" for v in wrong_values])
212
            raise ValueError(f"The following keys were not properly set in the config:\n{errors}")
213

214
215
216
217
    def run_common_tests(self):
        self.create_and_test_config_common_properties()
        self.create_and_test_config_to_json_string()
        self.create_and_test_config_to_json_file()
thomwolf's avatar
thomwolf committed
218
        self.create_and_test_config_from_and_save_pretrained()
219
        self.create_and_test_config_from_and_save_pretrained_subfolder()
220
        self.create_and_test_config_with_num_labels()
221
        self.check_config_can_be_init_without_params()
222
        self.check_config_arguments_init()
Sylvain Gugger's avatar
Sylvain Gugger committed
223
224
225
226
227
228


@is_staging_test
class ConfigPushToHubTester(unittest.TestCase):
    @classmethod
    def setUpClass(cls):
229
230
        cls._token = TOKEN
        HfFolder.save_token(TOKEN)
Sylvain Gugger's avatar
Sylvain Gugger committed
231
232
233
234

    @classmethod
    def tearDownClass(cls):
        try:
235
            delete_repo(token=cls._token, repo_id="test-config")
Sylvain Gugger's avatar
Sylvain Gugger committed
236
237
238
239
        except HTTPError:
            pass

        try:
240
            delete_repo(token=cls._token, repo_id="valid_org/test-config-org")
Sylvain Gugger's avatar
Sylvain Gugger committed
241
242
243
        except HTTPError:
            pass

244
        try:
245
            delete_repo(token=cls._token, repo_id="test-dynamic-config")
246
247
248
        except HTTPError:
            pass

Sylvain Gugger's avatar
Sylvain Gugger committed
249
250
251
252
    def test_push_to_hub(self):
        config = BertConfig(
            vocab_size=99, hidden_size=32, num_hidden_layers=5, num_attention_heads=4, intermediate_size=37
        )
253
254
255
        config.push_to_hub("test-config", use_auth_token=self._token)

        new_config = BertConfig.from_pretrained(f"{USER}/test-config")
256
        for k, v in config.to_dict().items():
257
258
259
260
261
262
263
            if k != "transformers_version":
                self.assertEqual(v, getattr(new_config, k))

        # Reset repo
        delete_repo(token=self._token, repo_id="test-config")

        # Push to hub via save_pretrained
Sylvain Gugger's avatar
Sylvain Gugger committed
264
        with tempfile.TemporaryDirectory() as tmp_dir:
265
            config.save_pretrained(tmp_dir, repo_id="test-config", push_to_hub=True, use_auth_token=self._token)
Sylvain Gugger's avatar
Sylvain Gugger committed
266

267
        new_config = BertConfig.from_pretrained(f"{USER}/test-config")
268
        for k, v in config.to_dict().items():
269
270
            if k != "transformers_version":
                self.assertEqual(v, getattr(new_config, k))
Sylvain Gugger's avatar
Sylvain Gugger committed
271
272
273
274
275

    def test_push_to_hub_in_organization(self):
        config = BertConfig(
            vocab_size=99, hidden_size=32, num_hidden_layers=5, num_attention_heads=4, intermediate_size=37
        )
276
277
278
        config.push_to_hub("valid_org/test-config-org", use_auth_token=self._token)

        new_config = BertConfig.from_pretrained("valid_org/test-config-org")
279
        for k, v in config.to_dict().items():
280
281
            if k != "transformers_version":
                self.assertEqual(v, getattr(new_config, k))
Sylvain Gugger's avatar
Sylvain Gugger committed
282

283
284
285
286
        # Reset repo
        delete_repo(token=self._token, repo_id="valid_org/test-config-org")

        # Push to hub via save_pretrained
Sylvain Gugger's avatar
Sylvain Gugger committed
287
288
        with tempfile.TemporaryDirectory() as tmp_dir:
            config.save_pretrained(
289
                tmp_dir, repo_id="valid_org/test-config-org", push_to_hub=True, use_auth_token=self._token
Sylvain Gugger's avatar
Sylvain Gugger committed
290
291
            )

292
        new_config = BertConfig.from_pretrained("valid_org/test-config-org")
293
        for k, v in config.to_dict().items():
294
295
            if k != "transformers_version":
                self.assertEqual(v, getattr(new_config, k))
296

297
    def test_push_to_hub_dynamic_config(self):
298
299
        CustomConfig.register_for_auto_class()
        config = CustomConfig(attribute=42)
300

301
        config.push_to_hub("test-dynamic-config", use_auth_token=self._token)
302

303
304
        # This has added the proper auto_map field to the config
        self.assertDictEqual(config.auto_map, {"AutoConfig": "custom_configuration.CustomConfig"})
305
306
307

        new_config = AutoConfig.from_pretrained(f"{USER}/test-dynamic-config", trust_remote_code=True)
        # Can't make an isinstance check because the new_config is from the FakeConfig class of a dynamic module
308
        self.assertEqual(new_config.__class__.__name__, "CustomConfig")
309
310
        self.assertEqual(new_config.attribute, 42)

311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327

class ConfigTestUtils(unittest.TestCase):
    def test_config_from_string(self):
        c = GPT2Config()

        # attempt to modify each of int/float/bool/str config records and verify they were updated
        n_embd = c.n_embd + 1  # int
        resid_pdrop = c.resid_pdrop + 1.0  # float
        scale_attn_weights = not c.scale_attn_weights  # bool
        summary_type = c.summary_type + "foo"  # str
        c.update_from_string(
            f"n_embd={n_embd},resid_pdrop={resid_pdrop},scale_attn_weights={scale_attn_weights},summary_type={summary_type}"
        )
        self.assertEqual(n_embd, c.n_embd, "mismatch for key: n_embd")
        self.assertEqual(resid_pdrop, c.resid_pdrop, "mismatch for key: resid_pdrop")
        self.assertEqual(scale_attn_weights, c.scale_attn_weights, "mismatch for key: scale_attn_weights")
        self.assertEqual(summary_type, c.summary_type, "mismatch for key: summary_type")
328
329
330
331
332

    def test_config_common_kwargs_is_complete(self):
        base_config = PretrainedConfig()
        missing_keys = [key for key in base_config.__dict__ if key not in config_common_kwargs]
        # If this part of the test fails, you have arguments to addin config_common_kwargs above.
333
334
335
        self.assertListEqual(
            missing_keys, ["is_encoder_decoder", "_name_or_path", "_commit_hash", "transformers_version"]
        )
336
337
338
        keys_with_defaults = [key for key, value in config_common_kwargs.items() if value == getattr(base_config, key)]
        if len(keys_with_defaults) > 0:
            raise ValueError(
Sylvain Gugger's avatar
Sylvain Gugger committed
339
340
341
                "The following keys are set with the default values in"
                " `test_configuration_common.config_common_kwargs` pick another value for them:"
                f" {', '.join(keys_with_defaults)}."
342
            )
343

344
345
346
347
348
349
350
351
352
    def test_from_pretrained_subfolder(self):
        with self.assertRaises(OSError):
            # config is in subfolder, the following should not work without specifying the subfolder
            _ = BertConfig.from_pretrained("hf-internal-testing/tiny-random-bert-subfolder")

        config = BertConfig.from_pretrained("hf-internal-testing/tiny-random-bert-subfolder", subfolder="bert")

        self.assertIsNotNone(config)

353
354
355
356
    def test_cached_files_are_used_when_internet_is_down(self):
        # A mock response for an HTTP head request to emulate server down
        response_mock = mock.Mock()
        response_mock.status_code = 500
357
        response_mock.headers = {}
358
        response_mock.raise_for_status.side_effect = HTTPError
359
        response_mock.json.return_value = {}
360
361
362
363
364

        # Download this model to make sure it's in the cache.
        _ = BertConfig.from_pretrained("hf-internal-testing/tiny-random-bert")

        # Under the mock environment we get a 500 error when trying to reach the model.
Lucain's avatar
Lucain committed
365
        with mock.patch("requests.Session.request", return_value=response_mock) as mock_head:
366
367
368
369
            _ = BertConfig.from_pretrained("hf-internal-testing/tiny-random-bert")
            # This check we did call the fake head request
            mock_head.assert_called()

370
371
372
373
374
375
    def test_legacy_load_from_url(self):
        # This test is for deprecated behavior and can be removed in v5
        _ = BertConfig.from_pretrained(
            "https://huggingface.co/hf-internal-testing/tiny-random-bert/resolve/main/config.json"
        )

376
377
378
379

class ConfigurationVersioningTest(unittest.TestCase):
    def test_local_versioning(self):
        configuration = AutoConfig.from_pretrained("bert-base-cased")
380
        configuration.configuration_files = ["config.4.0.0.json"]
381
382
383
384
385
386
387
388
389
390
391
392

        with tempfile.TemporaryDirectory() as tmp_dir:
            configuration.save_pretrained(tmp_dir)
            configuration.hidden_size = 2
            json.dump(configuration.to_dict(), open(os.path.join(tmp_dir, "config.4.0.0.json"), "w"))

            # This should pick the new configuration file as the version of Transformers is > 4.0.0
            new_configuration = AutoConfig.from_pretrained(tmp_dir)
            self.assertEqual(new_configuration.hidden_size, 2)

            # Will need to be adjusted if we reach v42 and this test is still here.
            # Should pick the old configuration file as the version of Transformers is < 4.42.0
393
394
395
            configuration.configuration_files = ["config.42.0.0.json"]
            configuration.hidden_size = 768
            configuration.save_pretrained(tmp_dir)
396
397
398
399
400
            shutil.move(os.path.join(tmp_dir, "config.4.0.0.json"), os.path.join(tmp_dir, "config.42.0.0.json"))
            new_configuration = AutoConfig.from_pretrained(tmp_dir)
            self.assertEqual(new_configuration.hidden_size, 768)

    def test_repo_versioning_before(self):
401
402
        # This repo has two configuration files, one for v4.0.0 and above with a different hidden size.
        repo = "hf-internal-testing/test-two-configs"
403
404
405

        import transformers as new_transformers

406
        new_transformers.configuration_utils.__version__ = "v4.0.0"
407
408
409
        new_configuration, kwargs = new_transformers.models.auto.AutoConfig.from_pretrained(
            repo, return_unused_kwargs=True
        )
410
        self.assertEqual(new_configuration.hidden_size, 2)
411
        # This checks `_configuration_file` ia not kept in the kwargs by mistake.
412
        self.assertDictEqual(kwargs, {})
413
414
415
416
417
418

        # Testing an older version by monkey-patching the version in the module it's used.
        import transformers as old_transformers

        old_transformers.configuration_utils.__version__ = "v3.0.0"
        old_configuration = old_transformers.models.auto.AutoConfig.from_pretrained(repo)
419
        self.assertEqual(old_configuration.hidden_size, 768)