Fix en documentation typos (#21799)

* fix wrong url

* typos in english documentation
This commit is contained in:
Thomas Paviot
2023-02-27 08:36:36 +01:00
committed by GitHub
parent a36983653e
commit ba2a5f13f7
17 changed files with 19 additions and 19 deletions

View File

@@ -156,7 +156,7 @@ To apply the preprocessing function over the entire dataset, use 🤗 Datasets [
>>> tokenized_wnut = wnut.map(tokenize_and_align_labels, batched=True)
```
Now create a batch of examples using [`DataCollatorWithPadding`]. It's more efficient to *dynamically pad* the sentences to the longest length in a batch during collation, instead of padding the whole dataset to the maximium length.
Now create a batch of examples using [`DataCollatorWithPadding`]. It's more efficient to *dynamically pad* the sentences to the longest length in a batch during collation, instead of padding the whole dataset to the maximum length.
<frameworkcontent>
<pt>