configuration_roberta.py 3.1 KB
Newer Older
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
# coding=utf-8
# Copyright 2018 The Google AI Language Team Authors and The HuggingFace Inc. team.
# Copyright (c) 2018, NVIDIA CORPORATION.  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.
""" RoBERTa configuration """


import logging

from .configuration_bert import BertConfig

Aymeric Augustin's avatar
Aymeric Augustin committed
23

24
25
26
logger = logging.getLogger(__name__)

ROBERTA_PRETRAINED_CONFIG_ARCHIVE_MAP = {
27
28
29
30
31
32
    "roberta-base": "https://s3.amazonaws.com/models.huggingface.co/bert/roberta-base-config.json",
    "roberta-large": "https://s3.amazonaws.com/models.huggingface.co/bert/roberta-large-config.json",
    "roberta-large-mnli": "https://s3.amazonaws.com/models.huggingface.co/bert/roberta-large-mnli-config.json",
    "distilroberta-base": "https://s3.amazonaws.com/models.huggingface.co/bert/distilroberta-base-config.json",
    "roberta-base-openai-detector": "https://s3.amazonaws.com/models.huggingface.co/bert/roberta-base-openai-detector-config.json",
    "roberta-large-openai-detector": "https://s3.amazonaws.com/models.huggingface.co/bert/roberta-large-openai-detector-config.json",
33
34
35
36
}


class RobertaConfig(BertConfig):
Lysandre Debut's avatar
Lysandre Debut committed
37
    r"""
38
        This is the configuration class to store the configuration of a :class:`~transformers.RobertaModel`.
Lysandre Debut's avatar
Lysandre Debut committed
39
40
        It is used to instantiate an RoBERTa model according to the specified arguments, defining the model
        architecture. Instantiating a configuration with the defaults will yield a similar configuration to that of
Lysandre's avatar
Lysandre committed
41
        the BERT `bert-base-uncased <https://huggingface.co/bert-base-uncased>`__ architecture.
Lysandre Debut's avatar
Lysandre Debut committed
42
43
44
45
46
47
48

        Configuration objects inherit from  :class:`~transformers.PretrainedConfig` and can be used
        to control the model outputs. Read the documentation from  :class:`~transformers.PretrainedConfig`
        for more information.

        The :class:`~transformers.RobertaConfig` class directly inherits :class:`~transformers.BertConfig`.
        It reuses the same defaults. Please check the parent class for more information.
Lysandre's avatar
Lysandre committed
49
50
51

        Example::

52
            >>> from transformers import RobertaConfig, RobertaModel
Lysandre's avatar
Lysandre committed
53

54
55
            >>> # Initializing a RoBERTa configuration
            >>> configuration = RobertaConfig()
Lysandre's avatar
Lysandre committed
56

57
58
            >>> # Initializing a model from the configuration
            >>> model = RobertaModel(configuration)
Lysandre's avatar
Lysandre committed
59

60
61
            >>> # Accessing the model configuration
            >>> configuration = model.config
Lysandre Debut's avatar
Lysandre Debut committed
62
    """
63
    model_type = "roberta"
64
65

    def __init__(self, pad_token_id=1, bos_token_id=0, eos_token_id=2, **kwargs):
Julien Chaumond's avatar
Julien Chaumond committed
66
        """Constructs RobertaConfig.
67
68
        """
        super().__init__(pad_token_id=pad_token_id, bos_token_id=bos_token_id, eos_token_id=eos_token_id, **kwargs)