"vscode:/vscode.git/clone" did not exist on "66d50ca6aed937b54e8c25c2794e7014bb3453d0"
__init__.py 8.82 KB
Newer Older
thomwolf's avatar
thomwolf committed
1
__version__ = "1.2.0"
thomwolf's avatar
thomwolf committed
2

thomwolf's avatar
thomwolf committed
3
4
5
6
7
8
9
10
11
12
13
# Work around to update TensorFlow's absl.logging threshold which alters the
# default Python logging output behavior when present.
# see: https://github.com/abseil/abseil-py/issues/99
# and: https://github.com/tensorflow/tensorflow/issues/26691#issuecomment-500369493
try:
    import absl.logging
    absl.logging.set_verbosity('info')
    absl.logging.set_stderrthreshold('info')
    absl.logging._warn_preinit_stderr = False
except:
    pass
14

thomwolf's avatar
thomwolf committed
15
16
17
18
import logging

logger = logging.getLogger(__name__)  # pylint: disable=invalid-name

19
20
# Tokenizer
from .tokenization_utils import (PreTrainedTokenizer)
thomwolf's avatar
thomwolf committed
21
from .tokenization_auto import AutoTokenizer
thomwolf's avatar
thomwolf committed
22
from .tokenization_bert import BertTokenizer, BasicTokenizer, WordpieceTokenizer
thomwolf's avatar
thomwolf committed
23
from .tokenization_openai import OpenAIGPTTokenizer
24
from .tokenization_transfo_xl import (TransfoXLTokenizer, TransfoXLCorpus)
thomwolf's avatar
thomwolf committed
25
from .tokenization_gpt2 import GPT2Tokenizer
26
from .tokenization_xlnet import XLNetTokenizer, SPIECE_UNDERLINE
thomwolf's avatar
thomwolf committed
27
from .tokenization_xlm import XLMTokenizer
28
from .tokenization_roberta import RobertaTokenizer
thomwolf's avatar
thomwolf committed
29
from .tokenization_distilbert import DistilBertTokenizer
30

31
# Configurations
32
from .configuration_utils import PretrainedConfig
33
34
35
36
37
38
39
40
41
from .configuration_auto import AutoConfig
from .configuration_bert import BertConfig, BERT_PRETRAINED_CONFIG_ARCHIVE_MAP
from .configuration_openai import OpenAIGPTConfig, OPENAI_GPT_PRETRAINED_CONFIG_ARCHIVE_MAP
from .configuration_transfo_xl import TransfoXLConfig, TRANSFO_XL_PRETRAINED_CONFIG_ARCHIVE_MAP
from .configuration_gpt2 import GPT2Config, GPT2_PRETRAINED_CONFIG_ARCHIVE_MAP
from .configuration_xlnet import XLNetConfig, XLNET_PRETRAINED_CONFIG_ARCHIVE_MAP
from .configuration_xlm import XLMConfig, XLM_PRETRAINED_CONFIG_ARCHIVE_MAP
from .configuration_roberta import RobertaConfig, ROBERTA_PRETRAINED_CONFIG_ARCHIVE_MAP
from .configuration_distilbert import DistilBertConfig, DISTILBERT_PRETRAINED_CONFIG_ARCHIVE_MAP
42

43
# Modeling
thomwolf's avatar
thomwolf committed
44
45
try:
    import torch
thomwolf's avatar
thomwolf committed
46
    _torch_available = True  # pylint: disable=invalid-name
thomwolf's avatar
thomwolf committed
47
except ImportError:
thomwolf's avatar
thomwolf committed
48
    _torch_available = False  # pylint: disable=invalid-name
thomwolf's avatar
thomwolf committed
49

thomwolf's avatar
thomwolf committed
50
if _torch_available:
thomwolf's avatar
thomwolf committed
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
    logger.info("PyTorch version {} available.".format(torch.__version__))

    from .modeling_utils import (PreTrainedModel, prune_layer, Conv1D)
    from .modeling_auto import (AutoModel, AutoModelForSequenceClassification, AutoModelForQuestionAnswering,
                                AutoModelWithLMHead)

    from .modeling_bert import (BertPreTrainedModel, BertModel, BertForPreTraining,
                                BertForMaskedLM, BertForNextSentencePrediction,
                                BertForSequenceClassification, BertForMultipleChoice,
                                BertForTokenClassification, BertForQuestionAnswering,
                                load_tf_weights_in_bert, BERT_PRETRAINED_MODEL_ARCHIVE_MAP)
    from .modeling_openai import (OpenAIGPTPreTrainedModel, OpenAIGPTModel,
                                OpenAIGPTLMHeadModel, OpenAIGPTDoubleHeadsModel,
                                load_tf_weights_in_openai_gpt, OPENAI_GPT_PRETRAINED_MODEL_ARCHIVE_MAP)
    from .modeling_transfo_xl import (TransfoXLPreTrainedModel, TransfoXLModel, TransfoXLLMHeadModel,
                                    load_tf_weights_in_transfo_xl, TRANSFO_XL_PRETRAINED_MODEL_ARCHIVE_MAP)
    from .modeling_gpt2 import (GPT2PreTrainedModel, GPT2Model,
                                GPT2LMHeadModel, GPT2DoubleHeadsModel,
                                load_tf_weights_in_gpt2, GPT2_PRETRAINED_MODEL_ARCHIVE_MAP)
    from .modeling_xlnet import (XLNetPreTrainedModel, XLNetModel, XLNetLMHeadModel,
71
72
                                XLNetForSequenceClassification, XLNetForQuestionAnsweringSimple,
                                XLNetForQuestionAnswering,
thomwolf's avatar
thomwolf committed
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
                                load_tf_weights_in_xlnet, XLNET_PRETRAINED_MODEL_ARCHIVE_MAP)
    from .modeling_xlm import (XLMPreTrainedModel , XLMModel,
                            XLMWithLMHeadModel, XLMForSequenceClassification,
                            XLMForQuestionAnswering, XLM_PRETRAINED_MODEL_ARCHIVE_MAP)
    from .modeling_roberta import (RobertaForMaskedLM, RobertaModel, RobertaForSequenceClassification,
                                ROBERTA_PRETRAINED_MODEL_ARCHIVE_MAP)
    from .modeling_distilbert import (DistilBertForMaskedLM, DistilBertModel,
                                DistilBertForSequenceClassification, DistilBertForQuestionAnswering,
                                DISTILBERT_PRETRAINED_MODEL_ARCHIVE_MAP)

    # Optimization
    from .optimization import (AdamW, ConstantLRSchedule, WarmupConstantSchedule, WarmupCosineSchedule,
                               WarmupCosineWithHardRestartsSchedule, WarmupLinearSchedule)


# TensorFlow
try:
    import tensorflow as tf
thomwolf's avatar
thomwolf committed
91
92
    assert int(tf.__version__[0]) >= 2
    _tf_available = True  # pylint: disable=invalid-name
93
except (ImportError, AssertionError):
thomwolf's avatar
thomwolf committed
94
    _tf_available = False  # pylint: disable=invalid-name
thomwolf's avatar
thomwolf committed
95

thomwolf's avatar
thomwolf committed
96
if _tf_available:
thomwolf's avatar
thomwolf committed
97
98
    logger.info("TensorFlow version {} available.".format(tf.__version__))

thomwolf's avatar
thomwolf committed
99
    from .modeling_tf_utils import TFPreTrainedModel, TFSharedEmbeddings, TFSequenceSummary
thomwolf's avatar
thomwolf committed
100
101
102
    from .modeling_tf_auto import (TFAutoModel, TFAutoModelForSequenceClassification, TFAutoModelForQuestionAnswering,
                                   TFAutoModelWithLMHead)

103
104
    from .modeling_tf_bert import (TFBertPreTrainedModel, TFBertMainLayer, TFBertEmbeddings,
                                   TFBertModel, TFBertForPreTraining,
thomwolf's avatar
thomwolf committed
105
106
107
                                   TFBertForMaskedLM, TFBertForNextSentencePrediction,
                                   TFBertForSequenceClassification, TFBertForMultipleChoice,
                                   TFBertForTokenClassification, TFBertForQuestionAnswering,
108
                                   load_bert_pt_weights_in_tf2,
thomwolf's avatar
thomwolf committed
109
                                   TF_BERT_PRETRAINED_MODEL_ARCHIVE_MAP)
thomwolf's avatar
thomwolf committed
110

thomwolf's avatar
thomwolf committed
111
    from .modeling_tf_gpt2 import (TFGPT2PreTrainedModel, TFGPT2MainLayer,
112
113
114
115
                                   TFGPT2Model, TFGPT2LMHeadModel, TFGPT2DoubleHeadsModel,
                                   load_gpt2_pt_weights_in_tf2,
                                   TF_GPT2_PRETRAINED_MODEL_ARCHIVE_MAP)

116
117
118
119
120
    from .modeling_tf_openai import (TFOpenAIGPTPreTrainedModel, TFOpenAIGPTMainLayer,
                                     TFOpenAIGPTModel, TFOpenAIGPTLMHeadModel, TFOpenAIGPTDoubleHeadsModel,
                                     load_openai_gpt_pt_weights_in_tf2,
                                     TF_OPENAI_GPT_PRETRAINED_MODEL_ARCHIVE_MAP)

thomwolf's avatar
thomwolf committed
121
122
123
124
125
    from .modeling_tf_transfo_xl import (TFTransfoXLPreTrainedModel, TFTransfoXLMainLayer,
                                         TFTransfoXLModel, TFTransfoXLLMHeadModel,
                                         load_transfo_xl_pt_weights_in_tf2,
                                         TF_TRANSFO_XL_PRETRAINED_MODEL_ARCHIVE_MAP)

126
127
128
129
130
131
    from .modeling_tf_xlnet import (TFXLNetPreTrainedModel, TFXLNetMainLayer,
                                    TFXLNetModel, TFXLNetLMHeadModel,
                                    TFXLNetForSequenceClassification,
                                    TFXLNetForQuestionAnsweringSimple,
                                    load_xlnet_pt_weights_in_tf2,
                                    TF_XLNET_PRETRAINED_MODEL_ARCHIVE_MAP)
132

thomwolf's avatar
thomwolf committed
133
134
135
136
137
138
139
    from .modeling_tf_xlm import (TFXLMPreTrainedModel, TFXLMMainLayer,
                                  TFXLMModel, TFXLMWithLMHeadModel,
                                  TFXLMForSequenceClassification,
                                  TFXLMForQuestionAnsweringSimple,
                                  load_xlm_pt_weights_in_tf2,
                                  TF_XLM_PRETRAINED_MODEL_ARCHIVE_MAP)

140
    from .modeling_tf_roberta import (TFRobertaPreTrainedModel, TFRobertaMainLayer,
thomwolf's avatar
thomwolf committed
141
                                      TFRobertaModel, TFRobertaForMaskedLM,
142
143
144
145
146
147
148
149
150
151
152
                                      TFRobertaForSequenceClassification,
                                      load_roberta_pt_weights_in_tf2,
                                      TF_ROBERTA_PRETRAINED_MODEL_ARCHIVE_MAP)

    from .modeling_tf_distilbert import (TFDistilBertPreTrainedModel, TFDistilBertMainLayer,
                                         TFDistilBertModel, TFDistilBertForMaskedLM,
                                         TFDistilBertForSequenceClassification,
                                         TFDistilBertForSequenceClassification,
                                         load_distilbert_pt_weights_in_tf2,
                                         TF_DISTILBERT_PRETRAINED_MODEL_ARCHIVE_MAP)

153
# Files and general utilities
154
155
156
from .file_utils import (PYTORCH_TRANSFORMERS_CACHE, PYTORCH_PRETRAINED_BERT_CACHE,
                         cached_path, add_start_docstrings, add_end_docstrings,
                         WEIGHTS_NAME, TF_WEIGHTS_NAME, CONFIG_NAME)
thomwolf's avatar
thomwolf committed
157
158
159
160
161
162

def is_torch_available():
    return _torch_available

def is_tf_available():
    return _tf_available