test_configuration_common.py 5.35 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
17

import json
Aymeric Augustin's avatar
Aymeric Augustin committed
18
import os
19
import tempfile
Sylvain Gugger's avatar
Sylvain Gugger committed
20
21
22
23
24
25
import unittest

from huggingface_hub import HfApi
from requests.exceptions import HTTPError
from transformers import BertConfig
from transformers.testing_utils import ENDPOINT_STAGING, PASS, USER, is_staging_test
26
27
28


class ConfigTester(object):
NielsRogge's avatar
NielsRogge committed
29
    def __init__(self, parent, config_class=None, has_text_modality=True, **kwargs):
30
31
        self.parent = parent
        self.config_class = config_class
NielsRogge's avatar
NielsRogge committed
32
        self.has_text_modality = has_text_modality
33
34
35
36
        self.inputs_dict = kwargs

    def create_and_test_config_common_properties(self):
        config = self.config_class(**self.inputs_dict)
NielsRogge's avatar
NielsRogge committed
37
38
        if self.has_text_modality:
            self.parent.assertTrue(hasattr(config, "vocab_size"))
39
40
41
        self.parent.assertTrue(hasattr(config, "hidden_size"))
        self.parent.assertTrue(hasattr(config, "num_attention_heads"))
        self.parent.assertTrue(hasattr(config, "num_hidden_layers"))
42
43
44
45
46
47
48
49
50

    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
51

52
        with tempfile.TemporaryDirectory() as tmpdirname:
thomwolf's avatar
thomwolf committed
53
54
55
56
57
58
59
60
61
            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)

62
        with tempfile.TemporaryDirectory() as tmpdirname:
thomwolf's avatar
thomwolf committed
63
64
65
            config_first.save_pretrained(tmpdirname)
            config_second = self.config_class.from_pretrained(tmpdirname)

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

68
69
70
71
72
73
74
75
76
    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)

77
78
79
80
81
82
    def check_config_can_be_init_without_params(self):
        if self.config_class.is_composition:
            return
        config = self.config_class()
        self.parent.assertIsNotNone(config)

83
84
85
86
    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
87
        self.create_and_test_config_from_and_save_pretrained()
88
        self.create_and_test_config_with_num_labels()
89
        self.check_config_can_be_init_without_params()
Sylvain Gugger's avatar
Sylvain Gugger committed
90
91
92
93
94
95
96
97
98
99
100
101


@is_staging_test
class ConfigPushToHubTester(unittest.TestCase):
    @classmethod
    def setUpClass(cls):
        cls._api = HfApi(endpoint=ENDPOINT_STAGING)
        cls._token = cls._api.login(username=USER, password=PASS)

    @classmethod
    def tearDownClass(cls):
        try:
102
            cls._api.delete_repo(token=cls._token, name="test-config")
Sylvain Gugger's avatar
Sylvain Gugger committed
103
104
105
106
        except HTTPError:
            pass

        try:
107
            cls._api.delete_repo(token=cls._token, name="test-config-org", organization="valid_org")
Sylvain Gugger's avatar
Sylvain Gugger committed
108
109
110
111
112
113
114
115
        except HTTPError:
            pass

    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
        )
        with tempfile.TemporaryDirectory() as tmp_dir:
116
            config.save_pretrained(tmp_dir, push_to_hub=True, repo_name="test-config", use_auth_token=self._token)
Sylvain Gugger's avatar
Sylvain Gugger committed
117

118
            new_config = BertConfig.from_pretrained(f"{USER}/test-config")
Sylvain Gugger's avatar
Sylvain Gugger committed
119
120
121
122
123
124
125
126
127
128
129
130
131
            for k, v in config.__dict__.items():
                if k != "transformers_version":
                    self.assertEqual(v, getattr(new_config, k))

    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
        )

        with tempfile.TemporaryDirectory() as tmp_dir:
            config.save_pretrained(
                tmp_dir,
                push_to_hub=True,
132
                repo_name="test-config-org",
Sylvain Gugger's avatar
Sylvain Gugger committed
133
134
135
136
                use_auth_token=self._token,
                organization="valid_org",
            )

137
            new_config = BertConfig.from_pretrained("valid_org/test-config-org")
Sylvain Gugger's avatar
Sylvain Gugger committed
138
139
140
            for k, v in config.__dict__.items():
                if k != "transformers_version":
                    self.assertEqual(v, getattr(new_config, k))