README.md 11 KB
Newer Older
Sylvain Gugger's avatar
Sylvain Gugger committed
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
<!---
Copyright 2020 The HuggingFace Team. All rights reserved.

Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at

    http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
-->

17
18
# Generating the documentation

19
To generate the documentation, you first have to build it. Several packages are necessary to build the doc,
20
you can install them with the following command, at the root of the code repository:
21
22

```bash
23
pip install -e ".[docs]"
24
```
25

26
27
28
29
30
31
Then you need to install our special tool that builds the documentation:

```bash
pip install git+https://github.com/huggingface/doc-builder
```

32
33
34
---
**NOTE**

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

---

40
41
## Building the documentation

42
43
Once you have setup the `doc-builder` and additional packages, you can generate the documentation by typing th
folowwing command:
44
45

```bash
46
doc-builder build transformers docs/source/ --build_dir ~/tmp/test-build
47
48
```

49
50
51
You can adapt the `--build_dir` to set any temporary folder that you prefer. This command will create it and generate
the MDX files that will be rendered as the documentation on the main website. You can inspect them in your favorite
Markdown editor.
52

53
54
55
---
**NOTE**

56
57
It's not possible to see locally how the final documentation will look like for now. We are working on solutions to
enable this, but any pre-visualiser of Markdown file should already give you a good idea of the result!
58
59
60

---

61
## Adding a new element to the navigation bar
62

63
64
Accepted files are reStructuredText (.rst) and Markdown (.md or .mdx). We are progressively moving away from rst so you should
create any new documentation file in the .mdx format. 
65

66
67
Create a file with its extension and put it in the source directory. You can then link it to the toc-tree by putting
the filename without the extension in the [`_toctree.yml`](https://github.com/huggingface/transformers/blob/master/docs/source/_toctree.yml) file.
68

69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
## Renaming section headers and moving sections

It helps to keep the old links working when renaming section header and/or moving sections from one document to another. This is because the old links are likely to be used in Issues, Forums and Social media and it'd be make for a much more superior user experience if users reading those months later could still easily navigate to the originally intended information.

Therefore we simply keep a little map of moved sections at the end of the document where the original section was. The key is to preserve the original anchor.

So if you renamed a section from: "Section A" to "Section B", then you can add at the end of the file:

```
Sections that were moved:

[ <a href="#section-b">Section A</a><a id="section-a"></a> ]
```
and of course if you moved it to another file, then:

```
Sections that were moved:

[ <a href="../new-file#section-b">Section A</a><a id="section-a"></a> ]
```

Use the relative style to link to the new file so that the versioned docs continue to work.

For an example of a rich moved sections set please see the very end of [the Trainer doc](https://github.com/huggingface/transformers/blob/master/docs/source/main_classes/trainer.mdx).


95
96
## Preview the documentation in a pull request

97
Coming soon!
98

99
100
101
## Writing Documentation - Specification

The `huggingface/transformers` documentation follows the
102
103
104
105
[Google documentation](https://sphinxcontrib-napoleon.readthedocs.io/en/latest/example_google.html) style for docstrings,
although we can write them directly in Markdown. Parts of it are written in ReStructuredText
([Sphinx simple documentation](https://www.sphinx-doc.org/en/master/usage/restructuredtext/index.html) but we are
updating those.
106

107
108
109
### Adding a new tutorial

Adding a new tutorial or section is done in two steps:
110
111

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

114
115
116
117
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.

118
119
120
### Adding a new model

When adding a new model:
121

122
123
- Create a file `xxx.mdx` or under `./source/model_doc` (don't hesitate to copy an existing file as template).
- Link that file in `./source/_toctree.yml`.
124
125
126
127
128
129
- 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.
130
131
  The order is generally:
    - Configuration,
132
133
134
135
136
137
    - Tokenizer
    - PyTorch base model
    - PyTorch head models
    - TensorFlow base model
    - TensorFlow head models

138
139
These classes should be added using our Markdown syntax. Usually as follows:

140
```
141
## XXXConfig
142

143
[[autodoc]] XXXConfig
144
145
```

146
147
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:
148
149

```
150
151
152
153
154
155
156
157
## XXXTokenizer

[[autodoc]] XXXTokenizer
    - build_inputs_with_special_tokens
    - get_special_tokens_mask
    - create_token_type_ids_from_sequences
    - save_vocabulary
```
158

159
160
If you just want to add a method that is not documented (for instance magic method like `__call__` are not documented
byt default) you can put the list of methods to add in a list that contains `all`:
161
162

```
163
## XXXTokenizer
164

165
166
167
168
[[autodoc]] XXXTokenizer
    - all
    - __call__
```
169

170
### Writing source documentation
171

172
173
Values that should be put in `code` should either be surrounded by backticks: \`like so\`. Note that argument names
and objects like True, None or any strings should usually be put in `code`.
174

175
176
177
When mentioning a class, function or method, it is recommended to use our syntax for internal links so that our tool
adds a link to its documentation with this syntax: \[\`XXXClass\`\] or \[\`function\`\]. This requires the class or 
function to be in the main package.
178

179
180
181
182
If you want to create a link to some internal class or function, you need to
provide its path. For instance: \[\`file_utils.ModelOutput\`\]. This will be converted into a link with
`file_utils.ModelOutput` in the description. To get rid of the path and only keep the name of the object you are
linking to, add a ~: \[\`~file_utils.ModelOutput\`\] will generate a link with `ModelOutput` in the description.
183

184
The same wroks for methods so you can either use \[\`XXXClass.method\`\] or \[~\`XXXClass.method\`\].
185
186
187

#### Defining arguments in a method

188
189
190
191
192
193
194
195
196
197
198
Arguments should be defined with the `Args:` (or `Arguments:` or `Parameters:`) 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, a colon and its
description:

```
    Args:
        n_layers (`int`): The number of layers of the model.
```

If the description is too long to fit in one line, another indentation is necessary before writing the description
after th argument.
199
200
201
202
203

Here's an example showcasing everything so far:

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

207
208
            Indices can be obtained using [`AlbertTokenizer`]. See [`~PreTrainedTokenizer.encode`] and
            [`~PreTrainedTokenizer.__call__`] for details.
209

210
            [What are input IDs?](../glossary#input-ids)
211
212
```

213
214
215
216
217
218
219
220
221
222
223
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:
224
        x (`str`, *optional*):
225
            This argument controls ...
226
        a (`float`, *optional*, defaults to 1):
227
228
229
            This argument is used to ...
```

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

234
#### Writing a multi-line code block
235

236
Multi-line code blocks can be useful for displaying examples. They are done between two lines of three backticks as usual in Markdown:
237
238


239
````
240
```
241
242
243
244
245
# first line of code
# second line
# etc
```
````
246

247
248
249
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.

250
251
#### Writing a return block

252
The return block should be introduced with the `Returns:` prefix, followed by a line return and an indentation.
253
254
255
256
257
258
259
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 a single value return:

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

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

```
266
267
268
269
270
271
    Returns:
        `tuple(torch.FloatTensor)` comprising various elements depending on the configuration ([`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** (`torch.FloatTensor` of shape `(batch_size, sequence_length, config.vocab_size)`) --
          Prediction scores of the language modeling head (scores for each vocabulary token before SoftMax).
272
273
```

274
275
276
277
278
279
280
#### Adding an image

Due to the rapidly growing repository, it is important to make sure that no files that would significantly weigh down the repository are added. This includes images, videos and other non-text files. We prefer to leverage a hf.co hosted `dataset` like
the ones hosted on [`hf-internal-testing`](https://huggingface.co/hf-internal-testing) in which to place these files and reference
them by URL. We recommend putting them in the following dataset: [huggingface/documentation-images](https://huggingface.co/datasets/huggingface/documentation-images).
If an external contribution, feel free to add the images to your PR and ask a Hugging Face member to migrate your images
to this dataset.
281