model.rst 740 Bytes
Newer Older
thomwolf's avatar
thomwolf committed
1
2
3
Models
----------------------------------------------------

4
5
6
7
8
9
10
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.

thomwolf's avatar
thomwolf committed
11
12
13
``PreTrainedModel``
~~~~~~~~~~~~~~~~~~~~~

14
.. autoclass:: transformers.PreTrainedModel
thomwolf's avatar
thomwolf committed
15
    :members:
LysandreJik's avatar
LysandreJik committed
16
17
18
19
20
21

``TFPreTrainedModel``
~~~~~~~~~~~~~~~~~~~~~

.. autoclass:: pytorch_transformers.TFPreTrainedModel
    :members: