mirror of
https://github.com/huggingface/transformers.git
synced 2025-07-23 14:29:01 +06:00
16 lines
634 B
ReStructuredText
16 lines
634 B
ReStructuredText
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``
|
|
~~~~~~~~~~~~~~~~~~~~~
|
|
|
|
.. autoclass:: pytorch_transformers.PreTrainedModel
|
|
:members:
|