README.md 9.18 KB
Newer Older
1
2
# Generating the documentation

3
To generate the documentation, you first have to build it. Several packages are necessary to build the doc,
4
you can install them with the following command, at the root of the code repository:
5
6

```bash
7
pip install -e ".[docs]"
8
```
9

10
11
12
13
14
15
16
17
---
**NOTE**

You only need to generate the documentation to inspect it locally (if you're planning changes and want to 
check how they look like before committing for instance). You don't have to commit the built documentation.

---

18
19
## Packages installed

20
Here's an overview of all the packages installed. If you ran the previous command installing all packages from
21
22
`requirements.txt`, you do not need to run the following commands.

23
Building it requires the package `sphinx` that you can
24
25
26
27
28
29
install using:

```bash
pip install -U sphinx
```

30
You would also need the custom installed [theme](https://github.com/readthedocs/sphinx_rtd_theme) by
31
32
33
34
35
36
[Read The Docs](https://readthedocs.org/). You can install it using the following command:

```bash
pip install sphinx_rtd_theme
```

37
38
39
40
41
42
43
44
The third necessary package is the `recommonmark` package to accept Markdown as well as Restructured text:

```bash
pip install recommonmark
```

## Building the documentation

45
46
47
48
49
50
Once you have setup `sphinx`, you can build the documentation by running the following command in the `/docs` folder:

```bash
make html
```

51
52
A folder called ``_build/html`` should have been created. You can now open the file ``_build/html/index.html`` in your
browser. 
53

54
55
56
---
**NOTE**

Dima Veselov's avatar
Dima Veselov committed
57
If you are adding/removing elements from the toc-tree or from any structural item, it is recommended to clean the build
58
59
60
61
62
63
64
65
66
67
68
69
directory before rebuilding. Run the following command to clean and build:

```bash
make clean && make html
```

---

It should build the static app that will be available under `/docs/_build/html`

## Adding a new element to the tree (toc-tree)

LysandreJik's avatar
LysandreJik committed
70
Accepted files are reStructuredText (.rst) and Markdown (.md). Create a file with its extension and put it
thomwolf's avatar
thomwolf committed
71
in the source directory. You can then link it to the toc-tree by putting the filename without the extension.
72

73
74
75
76
77
78
79
80
81
82
83
84
## Preview the documentation in a pull request

Once you have made your pull request, you can check what the documentation will look like after it's merged by
following these steps:

- Look at the checks at the bottom of the conversation page of your PR (you may need to click on "show all checks" to
  expand them).
- Click on "details" next to the `ci/circleci: build_doc` check.
- In the new window, click on the "Artifacts" tab.
- Locate the file "docs/_build/html/index.html" (or any specific page you want to check) and click on it to get a 
  preview.

85
86
87
88
89
90
## Writing Documentation - Specification

The `huggingface/transformers` documentation follows the
[Google documentation](https://sphinxcontrib-napoleon.readthedocs.io/en/latest/example_google.html) style. It is
mostly written in ReStructuredText 
([Sphinx simple documentation](https://www.sphinx-doc.org/en/master/usage/restructuredtext/index.html), 
91
[Sourceforge complete documentation](https://docutils.sourceforge.io/docs/ref/rst/restructuredtext.html)).
92
93


94
95
96
### Adding a new tutorial

Adding a new tutorial or section is done in two steps:
97
98
99
100

- Add a new file under `./source`. This file can either be ReStructuredText (.rst) or Markdown (.md).
- Link that file in `./source/index.rst` on the correct toc-tree.

101
102
103
104
Make sure to put your new file under the proper section. It's unlikely to go in the first section (*Get Started*), so
depending on the intended targets (beginners, more advanced users or researchers) it should go in section two, three or
four.

105
106
107
108
### Adding a new model

When adding a new model:
 
109
- Create a file `xxx.rst` under `./source/model_doc` (don't hesitate to copy an existing file as template). 
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
- Link that file in `./source/index.rst` on the `model_doc` toc-tree.
- Write a short overview of the model:
    - Overview with paper & authors
    - Paper abstract
    - Tips and tricks and how to use it best
- Add the classes that should be linked in the model. This generally includes the configuration, the tokenizer, and
  every model of that class (the base model, alongside models with additional heads), both in PyTorch and TensorFlow.
  The order is generally: 
    - Configuration, 
    - Tokenizer
    - PyTorch base model
    - PyTorch head models
    - TensorFlow base model
    - TensorFlow head models

These classes should be added using the RST syntax. Usually as follows:
```
XXXConfig
128
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
129
130
131
132
133

.. autoclass:: transformers.XXXConfig
    :members:
```

134
135
This will include every public method of the configuration that is documented. If for some reason you wish for a method
not to be displayed in the documentation, you can do so by specifying which methods should be in the docs:
136
137
138

```
XXXTokenizer
139
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
140
141
142
143
144
145
146
147
148

.. autoclass:: transformers.XXXTokenizer
    :members: build_inputs_with_special_tokens, get_special_tokens_mask,
        create_token_type_ids_from_sequences, save_vocabulary

```

### Writing source documentation

149
Values that should be put in `code` should either be surrounded by double backticks: \`\`like so\`\` or be written as
150
151
an object using the :obj: syntax: :obj:\`like so\`. Note that argument names and objects like True, None or any strings
should usually be put in `code`.
152
153

When mentionning a class, it is recommended to use the :class: syntax as the mentioned class will be automatically
154
linked by Sphinx: :class:\`~transformers.XXXClass\`
155

156
157
158
159
160
When mentioning a function, it is recommended to use the :func: syntax as the mentioned function will be automatically
linked by Sphinx: :func:\`~transformers.function\`.

When mentioning a method, it is recommended to use the :meth: syntax as the mentioned method will be automatically
linked by Sphinx: :meth:\`~transformers.XXXClass.method\`.
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176

Links should be done as so (note the double underscore at the end): \`text for the link <./local-link-or-global-link#loc>\`__

#### Defining arguments in a method

Arguments should be defined with the `Args:` prefix, followed by a line return and an indentation. 
The argument should be followed by its type, with its shape if it is a tensor, and a line return.
Another indentation is necessary before writing the description of the argument.

Here's an example showcasing everything so far:

```
    Args:
        input_ids (:obj:`torch.LongTensor` of shape :obj:`(batch_size, sequence_length)`):
            Indices of input sequence tokens in the vocabulary.

177
178
179
            Indices can be obtained using :class:`~transformers.AlbertTokenizer`.
            See :meth:`~transformers.PreTrainedTokenizer.encode` and
            :meth:`~transformers.PreTrainedTokenizer.__call__` for details.
180
181
182
183

            `What are input IDs? <../glossary.html#input-ids>`__
```

184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
For optional arguments or arguments with defaults we follow the following syntax: imagine we have a function with the
following signature:

```
def my_function(x: str = None, a: float = 1):
```

then its documentation should look like this:

```
    Args:
        x (:obj:`str`, `optional`):
            This argument controls ...
        a (:obj:`float`, `optional`, defaults to 1):
            This argument is used to ...
```

Note that we always omit the "defaults to :obj:\`None\`" when None is the default for any argument. Also note that even
if the first line describing your argument type and its default gets long, you can't break it on several lines. You can
however write as many lines as you want in the indented description (see the example above with `input_ids`). 

205
206
207
208
209
210
211
212
213
214
215
216
217
218
#### Writing a multi-line code block 

Multi-line code blocks can be useful for displaying examples. They are done like so:

```
Example::

    # first line of code
    # second line
    # etc
```

The `Example` string at the beginning can be replaced by anything as long as there are two semicolons following it.

219
220
221
We follow the [doctest](https://docs.python.org/3/library/doctest.html) syntax for the examples to automatically test
the results stay consistent with the library.

222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
#### Writing a return block

Arguments should be defined with the `Args:` prefix, followed by a line return and an indentation. 
The first line should be the type of the return, followed by a line return. No need to indent further for the elements
building the return.

Here's an example for tuple return, comprising several objects:

```
    Returns:
        :obj:`tuple(torch.FloatTensor)` comprising various elements depending on the configuration (:class:`~transformers.BertConfig`) and inputs:
        loss (`optional`, returned when ``masked_lm_labels`` is provided) ``torch.FloatTensor`` of shape ``(1,)``:
            Total loss as the sum of the masked language modeling loss and the next sequence prediction (classification) loss.
        prediction_scores (:obj:`torch.FloatTensor` of shape :obj:`(batch_size, sequence_length, config.vocab_size)`)
            Prediction scores of the language modeling head (scores for each vocabulary token before SoftMax).
```

Here's an example for a single value return:

```
    Returns:
243
        :obj:`List[int]`: A list of integers in the range [0, 1] --- 1 for a special token, 0 for a sequence token.
244
```