Models¶
The base class PreTrainedModel
implements the common methods for loading/saving a model either from a local file or directory, or from a pretrained model configuration provided by the library (downloaded from HuggingFace’s AWS S3 repository).
PreTrainedModel
also implements a few methods which are common among all the models to:
resize the input token embeddings when new tokens are added to the vocabulary
prune the attention heads of the model.
PreTrainedModel
¶
-
class
transformers.
PreTrainedModel
(config, *inputs, **kwargs)[source]¶ Base class for all models.
PreTrainedModel
takes care of storing the configuration of the models and handles methods for loading/downloading/saving models as well as a few methods common to all models to (i) resize the input embeddings and (ii) prune heads in the self-attention heads.- Class attributes (overridden by derived classes):
config_class
: a class derived fromPretrainedConfig
to use as configuration class for this model architecture.load_tf_weights
: a pythonmethod
for loading a TensorFlow checkpoint in a PyTorch model, taking as arguments:model
: an instance of the relevant subclass ofPreTrainedModel
,config
: an instance of the relevant subclass ofPretrainedConfig
,path
: a path (string) to the TensorFlow checkpoint.
base_model_prefix
: a string indicating the attribute associated to the base model in derived classes of the same architecture adding modules on top of the base model.
-
property
dummy_inputs
¶ Dummy inputs to do a forward pass in the network.
- Returns
torch.Tensor with dummy inputs
-
classmethod
from_pretrained
(pretrained_model_name_or_path, *model_args, **kwargs)[source]¶ Instantiate a pretrained pytorch model from a pre-trained model configuration.
The model is set in evaluation mode by default using
model.eval()
(Dropout modules are deactivated) To train the model, you should first set it back in training mode withmodel.train()
The warning
Weights from XXX not initialized from pretrained model
means that the weights of XXX do not come pre-trained with the rest of the model. It is up to you to train those weights with a downstream fine-tuning task.The warning
Weights from XXX not used in YYY
means that the layer XXX is not used by YYY, therefore those weights are discarded.- Parameters
pretrained_model_name_or_path – either: - a string with the shortcut name of a pre-trained model to load from cache or download, e.g.:
bert-base-uncased
. - a string with the identifier name of a pre-trained model that was user-uploaded to our S3, e.g.:dbmdz/bert-base-german-cased
. - a path to a directory containing model weights saved usingsave_pretrained()
, e.g.:./my_model_directory/
. - a path or url to a tensorflow index checkpoint file (e.g. ./tf_model/model.ckpt.index). In this case,from_tf
should be set to True and a configuration object should be provided asconfig
argument. This loading path is slower than converting the TensorFlow checkpoint in a PyTorch model using the provided conversion scripts and loading the PyTorch model afterwards. - None if you are both providing the configuration and state dictionary (resp. with keyword argumentsconfig
andstate_dict
)model_args – (optional) Sequence of positional arguments: All remaning positional arguments will be passed to the underlying model’s
__init__
methodconfig –
(optional) one of: - an instance of a class derived from
PretrainedConfig
, or - a string valid as input tofrom_pretrained()
- Configuration for the model to use instead of an automatically loaded configuation. Configuration can be automatically loaded when:
the model is a model provided by the library (loaded with the
shortcut-name
string of a pretrained model), orthe model was saved using
save_pretrained()
and is reloaded by suppling the save directory.the model is loaded by suppling a local directory as
pretrained_model_name_or_path
and a configuration JSON file named config.json is found in the directory.
state_dict – (optional) dict: an optional state dictionnary for the model to use instead of a state dictionary loaded from saved weights file. This option can be used if you want to create a model from a pretrained configuration but load your own weights. In this case though, you should check if using
save_pretrained()
andfrom_pretrained()
is not a simpler option.cache_dir – (optional) string: Path to a directory in which a downloaded pre-trained model configuration should be cached if the standard cache should not be used.
force_download – (optional) boolean, default False: Force to (re-)download the model weights and configuration files and override the cached versions if they exists.
resume_download – (optional) boolean, default False: Do not delete incompletely recieved file. Attempt to resume the download if such a file exists.
proxies – (optional) dict, default None: A dictionary of proxy servers to use by protocol or endpoint, e.g.: {‘http’: ‘foo.bar:3128’, ‘http://hostname’: ‘foo.bar:4012’}. The proxies are used on each request.
output_loading_info – (optional) boolean: Set to
True
to also return a dictionnary containing missing keys, unexpected keys and error messages.kwargs –
(optional) Remaining dictionary of keyword arguments: Can be used to update the configuration object (after it being loaded) and initiate the model. (e.g.
output_attention=True
). Behave differently depending on whether a config is provided or automatically loaded:If a configuration is provided with
config
,**kwargs
will be directly passed to the underlying model’s__init__
method (we assume all relevant updates to the configuration have already been done)If a configuration is not provided,
kwargs
will be first passed to the configuration class initialization function (from_pretrained()
). Each key ofkwargs
that corresponds to a configuration attribute will be used to override said attribute with the suppliedkwargs
value. Remaining keys that do not correspond to any configuration attribute will be passed to the underlying model’s__init__
function.
Examples:
# For example purposes. Not runnable. model = BertModel.from_pretrained('bert-base-uncased') # Download model and configuration from S3 and cache. model = BertModel.from_pretrained('./test/saved_model/') # E.g. model was saved using `save_pretrained('./test/saved_model/')` model = BertModel.from_pretrained('bert-base-uncased', output_attention=True) # Update configuration during loading assert model.config.output_attention == True # Loading from a TF checkpoint file instead of a PyTorch model (slower) config = BertConfig.from_json_file('./tf_model/my_tf_model_config.json') model = BertModel.from_pretrained('./tf_model/my_tf_checkpoint.ckpt.index', from_tf=True, config=config)
-
get_input_embeddings
()[source]¶ Returns the model’s input embeddings.
- Returns
A torch module mapping vocabulary to hidden states.
- Return type
nn.Module
-
get_output_embeddings
()[source]¶ Returns the model’s output embeddings.
- Returns
A torch module mapping hidden states to vocabulary.
- Return type
nn.Module
-
prune_heads
(heads_to_prune: Dict)[source]¶ Prunes heads of the base model.
- Parameters
heads_to_prune – dict with keys being selected layer indices (int) and associated values being the list of heads to prune in said layer (list of int).
{1 (E.g.) – [0, 2], 2: [2, 3]} will prune heads 0 and 2 on layer 1 and heads 2 and 3 on layer 2.
-
resize_token_embeddings
(new_num_tokens: Optional[int] = None)[source]¶ Resize input token embeddings matrix of the model if new_num_tokens != config.vocab_size. Take care of tying weights embeddings afterwards if the model class has a tie_weights() method.
- Parameters
new_num_tokens – (optional) int: New number of tokens in the embedding matrix. Increasing the size will add newly initialized vectors at the end. Reducing the size will remove vectors from the end. If not provided or None: does nothing and just returns a pointer to the input tokens
torch.nn.Embeddings
Module of the model.
- Return:
torch.nn.Embeddings
Pointer to the input tokens Embeddings Module of the model
-
save_pretrained
(save_directory)[source]¶ Save a model and its configuration file to a directory, so that it can be re-loaded using the :func:`~transformers.PreTrainedModel.from_pretrained` class method.
- Parameters
save_directory – directory to which to save.
Helper Functions
¶
-
transformers.
apply_chunking_to_forward
(chunk_size: int, chunk_dim: int, forward_fn: Callable[…, torch.Tensor], *input_tensors) → torch.Tensor[source]¶ This function chunks the input_tensors into smaller input tensor parts of size chunk_size over the dimension chunk_dim. It then applies a layer forward_fn to each chunk independently to save memory. If the forward_fn is independent across the chunk_dim this function will yield the same result as not applying it.
- Parameters
chunk_size – int - the chunk size of a chunked tensor. num_chunks = len(input_tensors[0]) / chunk_size
chunk_dim – int - the dimension over which the input_tensors should be chunked
forward_fn – fn - the forward fn of the model
input_tensors – tuple(torch.Tensor) - the input tensors of forward_fn which are chunked
- Returns
a Tensor with the same shape the foward_fn would have given if applied
Examples:
# rename the usual forward() fn to forward_chunk() def forward_chunk(self, hidden_states): hidden_states = self.decoder(hidden_states) return hidden_states # implement a chunked forward function def forward(self, hidden_states): return apply_chunking_to_forward(self.chunk_size_lm_head, self.seq_len_dim, self.forward_chunk, hidden_states)
TFPreTrainedModel
¶
-
class
transformers.
TFPreTrainedModel
(*args, **kwargs)[source]¶ Base class for all TF models.
TFPreTrainedModel
takes care of storing the configuration of the models and handles methods for loading/downloading/saving models as well as a few methods common to all models to (i) resize the input embeddings and (ii) prune heads in the self-attention heads.- Class attributes (overridden by derived classes):
config_class
: a class derived fromPretrainedConfig
to use as configuration class for this model architecture.load_tf_weights
: a pythonmethod
for loading a TensorFlow checkpoint in a PyTorch model, taking as arguments:model
: an instance of the relevant subclass ofPreTrainedModel
,config
: an instance of the relevant subclass ofPretrainedConfig
,path
: a path (string) to the TensorFlow checkpoint.
base_model_prefix
: a string indicating the attribute associated to the base model in derived classes of the same architecture adding modules on top of the base model.
-
property
dummy_inputs
¶ Dummy inputs to build the network.
- Returns
tf.Tensor with dummy inputs
-
classmethod
from_pretrained
(pretrained_model_name_or_path, *model_args, **kwargs)[source]¶ Instantiate a pretrained TF 2.0 model from a pre-trained model configuration.
The warning
Weights from XXX not initialized from pretrained model
means that the weights of XXX do not come pre-trained with the rest of the model. It is up to you to train those weights with a downstream fine-tuning task.The warning
Weights from XXX not used in YYY
means that the layer XXX is not used by YYY, therefore those weights are discarded.- Parameters
pretrained_model_name_or_path – either: - a string with the shortcut name of a pre-trained model to load from cache or download, e.g.:
bert-base-uncased
. - a string with the identifier name of a pre-trained model that was user-uploaded to our S3, e.g.:dbmdz/bert-base-german-cased
. - a path to a directory containing model weights saved usingsave_pretrained()
, e.g.:./my_model_directory/
. - a path or url to a PyTorch state_dict save file (e.g. ./pt_model/pytorch_model.bin). In this case,from_pt
should be set to True and a configuration object should be provided asconfig
argument. This loading path is slower than converting the PyTorch checkpoint in a TensorFlow model using the provided conversion scripts and loading the TensorFlow model afterwards.model_args – (optional) Sequence of positional arguments: All remaning positional arguments will be passed to the underlying model’s
__init__
methodconfig –
- (optional) one of:
an instance of a class derived from
PretrainedConfig
, ora string valid as input to
from_pretrained()
- Configuration for the model to use instead of an automatically loaded configuation. Configuration can be automatically loaded when:
the model is a model provided by the library (loaded with the
shortcut-name
string of a pretrained model), orthe model was saved using
save_pretrained()
and is reloaded by suppling the save directory.the model is loaded by suppling a local directory as
pretrained_model_name_or_path
and a configuration JSON file named config.json is found in the directory.
from_pt – (optional) boolean, default False: Load the model weights from a PyTorch state_dict save file (see docstring of pretrained_model_name_or_path argument).
cache_dir – (optional) string: Path to a directory in which a downloaded pre-trained model configuration should be cached if the standard cache should not be used.
force_download – (optional) boolean, default False: Force to (re-)download the model weights and configuration files and override the cached versions if they exists.
resume_download – (optional) boolean, default False: Do not delete incompletely recieved file. Attempt to resume the download if such a file exists.
proxies – (optional) dict, default None: A dictionary of proxy servers to use by protocol or endpoint, e.g.: {‘http’: ‘foo.bar:3128’, ‘http://hostname’: ‘foo.bar:4012’}. The proxies are used on each request.
output_loading_info – (optional) boolean: Set to
True
to also return a dictionnary containing missing keys, unexpected keys and error messages.kwargs –
(optional) Remaining dictionary of keyword arguments: Can be used to update the configuration object (after it being loaded) and initiate the model. (e.g.
output_attention=True
). Behave differently depending on whether a config is provided or automatically loaded:If a configuration is provided with
config
,**kwargs
will be directly passed to the underlying model’s__init__
method (we assume all relevant updates to the configuration have already been done)If a configuration is not provided,
kwargs
will be first passed to the configuration class initialization function (from_pretrained()
). Each key ofkwargs
that corresponds to a configuration attribute will be used to override said attribute with the suppliedkwargs
value. Remaining keys that do not correspond to any configuration attribute will be passed to the underlying model’s__init__
function.
Examples:
# For example purposes. Not runnable. model = BertModel.from_pretrained('bert-base-uncased') # Download model and configuration from S3 and cache. model = BertModel.from_pretrained('./test/saved_model/') # E.g. model was saved using `save_pretrained('./test/saved_model/')` model = BertModel.from_pretrained('bert-base-uncased', output_attention=True) # Update configuration during loading assert model.config.output_attention == True # Loading from a TF checkpoint file instead of a PyTorch model (slower) config = BertConfig.from_json_file('./tf_model/my_tf_model_config.json') model = BertModel.from_pretrained('./tf_model/my_tf_checkpoint.ckpt.index', from_pt=True, config=config)
-
get_input_embeddings
()[source]¶ Returns the model’s input embeddings.
- Returns
A torch module mapping vocabulary to hidden states.
- Return type
tf.keras.layers.Layer
-
get_output_embeddings
()[source]¶ Returns the model’s output embeddings.
- Returns
A torch module mapping hidden states to vocabulary.
- Return type
tf.keras.layers.Layer
-
prune_heads
(heads_to_prune)[source]¶ Prunes heads of the base model.
- Parameters
heads_to_prune – dict with keys being selected layer indices (int) and associated values being the list of heads to prune in said layer (list of int).
-
resize_token_embeddings
(new_num_tokens=None)[source]¶ Resize input token embeddings matrix of the model if new_num_tokens != config.vocab_size. Take care of tying weights embeddings afterwards if the model class has a tie_weights() method.
- Parameters
new_num_tokens – (optional) int: New number of tokens in the embedding matrix. Increasing the size will add newly initialized vectors at the end. Reducing the size will remove vectors from the end. If not provided or None: does nothing and just returns a pointer to the input tokens
tf.Variable
Module of the model.
- Return:
tf.Variable
Pointer to the input tokens Embeddings Module of the model
-
save_pretrained
(save_directory)[source]¶ Save a model and its configuration file to a directory, so that it can be re-loaded using the
from_pretrained()
class method.