-
Notifications
You must be signed in to change notification settings - Fork 27.4k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[Doc] Spanish translation of pad_truncation.md #27890
Merged
stevhliu
merged 14 commits into
huggingface:main
from
aaronjimv:Translate_to_es_pad_truncation.md
Dec 8, 2023
Merged
Changes from 10 commits
Commits
Show all changes
14 commits
Select commit
Hold shift + click to select a range
713ee2f
Add pad_truncation to es/_toctree.yml
aaronjimv add618e
Add pad_truncation.md to es/
aaronjimv a92f05f
Translated first two paragraph
aaronjimv 2032507
Translated paddig argument section
aaronjimv 5ebf8eb
Translated truncation argument section
aaronjimv 6efaae3
Translated final paragraphs
aaronjimv 64b9fd7
Translated table
aaronjimv 44ff107
Fixed typo in the table of en/pad_truncation.md
aaronjimv 8bf9029
Merge branch 'main' into Translate_to_es_pad_truncation.md
aaronjimv 396a9da
Run make style | Fix a word
aaronjimv 5812147
Merge branch 'main' into Translate_to_es_pad_truncation.md
aaronjimv f3b7a48
Add Padding (relleno) y el Truncation (truncamiento) in the final par…
aaronjimv 58e626b
Merge branch 'main' into Translate_to_es_pad_truncation.md
aaronjimv 686ada4
Fix relleno and truncamiento words
aaronjimv File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,69 @@ | ||
<!--Copyright 2022 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. | ||
|
||
⚠️ Note that this file is in Markdown but contain specific syntax for our doc-builder (similar to MDX) that may not be | ||
rendered properly in your Markdown viewer. | ||
|
||
--> | ||
|
||
# Relleno y truncamiento | ||
|
||
Las entradas agrupadas por lotes (batched) suelen tener longitudes diferentes, por lo que no se pueden convertir en tensores de tamaño fijo. El relleno (también conocido como "Padding") y el truncamiento (conocido como "Truncation") son estrategias para abordar este problema y crear tensores rectangulares a partir de lotes de longitudes variables. El Padding agrega un **padding token** especial para garantizar que las secuencias más cortas tengan la misma longitud que la secuencia más larga en un lote o la longitud máxima aceptada por el modelo. Truncation funciona en la otra dirección al truncar secuencias largas. | ||
|
||
En la mayoría de los casos, es bastante eficaz rellenar el lote hasta la longitud de la secuencia más larga y truncar hasta la longitud máxima que un modelo puede aceptar. Sin embargo, la API admite más estrategias si las necesitas. Los tres argumentos que necesitas son: `padding`, `truncation` y `max_length`. | ||
|
||
El argumento `padding` controla el relleno. Puede ser un booleano o una cadena: | ||
|
||
- `True` o `'longest'`: rellena hasta la longitud de la secuencia más larga en el lote (no se aplica relleno si solo proporcionas una única secuencia). | ||
- `'max_length'`: rellena hasta una longitud especificada por el argumento `max_length` o la longitud máxima aceptada | ||
por el modelo si no se proporciona `max_length` (`max_length=None`). El Padding se aplicará incluso si solo proporcionas una única secuencia. | ||
- `False` o `'do_not_pad'`: no se aplica relleno. Este es el comportamiento predeterminado. | ||
|
||
El argumento `truncation` controla el truncamiento. Puede ser un booleano o una cadena: | ||
|
||
- `True` o `'longest_first'`: trunca hasta una longitud máxima especificada por el argumento `max_length` o | ||
la longitud máxima aceptada por el modelo si no se proporciona `max_length` (`max_length=None`). Esto | ||
truncará token por token, eliminando un token de la secuencia más larga en el par hasta alcanzar la longitud adecuada. | ||
- `'only_second'`: trunca hasta una longitud máxima especificada por el argumento `max_length` o la longitud máxima | ||
aceptada por el modelo si no se proporciona `max_length` (`max_length=None`). Esto solo truncará | ||
la segunda oración de un par si se proporciona un par de secuencias (o un lote de pares de secuencias). | ||
- `'only_first'`: trunca hasta una longitud máxima especificada por el argumento `max_length` o la longitud máxima | ||
aceptada por el modelo si no se proporciona `max_length` (`max_length=None`). Esto solo truncará | ||
la primera oración de un par si se proporciona un par de secuencias (o un lote de pares de secuencias). | ||
- `False` o `'do_not_truncate'`: no se aplica truncamiento. Este es el comportamiento predeterminado. | ||
|
||
El argumento `max_length` controla la longitud del Padding y el Truncation. Puede ser un número entero o `None`, en cuyo caso se establecerá automáticamente en la longitud máxima que el modelo puede aceptar. Si el modelo no tiene una longitud máxima de entrada específica, se desactiva el Truncation o el Padding hasta `max_length`. | ||
|
||
La siguiente tabla resume la forma recomendada de configurar el Padding y el Truncation. Si usas pares de secuencias de entrada en alguno de los siguientes ejemplos, puedes reemplazar `truncation=True` por una `ESTRATEGIA` seleccionada en | ||
`['only_first', 'only_second', 'longest_first']`, es decir, `truncation='only_second'` o `truncation='longest_first'` para controlar cómo se truncan ambas secuencias en el par, como se detalló anteriormente. | ||
|
||
| Truncation | Padding | Instrucción | | ||
|-----------------------------------------|--------------------------------------|---------------------------------------------------------------------------------------------| | ||
| sin truncamiento | sin relleno | `tokenizer(batch_sentences)` | | ||
| | relleno hasta la longitud máxima del lote | `tokenizer(batch_sentences, padding=True)` o | | ||
| | | `tokenizer(batch_sentences, padding='longest')` | | ||
| | relleno hasta la longitud máxima del modelo | `tokenizer(batch_sentences, padding='max_length')` | | ||
| | relleno hasta una longitud específica | `tokenizer(batch_sentences, padding='max_length', max_length=42)` | | ||
| | relleno hasta un múltiplo de un valor | `tokenizer(batch_sentences, padding=True, pad_to_multiple_of=8)` | | ||
| truncamiento hasta la longitud máxima del modelo | sin relleno | `tokenizer(batch_sentences, truncation=True)` o | | ||
| | | `tokenizer(batch_sentences, truncation=ESTRATEGIA)` | | ||
| | relleno hasta la longitud máxima del lote | `tokenizer(batch_sentences, padding=True, truncation=True)` o | | ||
| | | `tokenizer(batch_sentences, padding=True, truncation=ESTRATEGIA)` | | ||
| | relleno hasta la longitud máxima del modelo | `tokenizer(batch_sentences, padding='max_length', truncation=True)` o | | ||
| | | `tokenizer(batch_sentences, padding='max_length', truncation=ESTRATEGIA)` | | ||
| | relleno hasta una longitud específica | No es posible | | ||
| truncamiento hasta una longitud específica | sin relleno | `tokenizer(batch_sentences, truncation=True, max_length=42)` o | | ||
| | | `tokenizer(batch_sentences, truncation=ESTRATEGIA, max_length=42)` | | ||
| | relleno hasta la longitud máxima del lote | `tokenizer(batch_sentences, padding=True, truncation=True, max_length=42)` o | | ||
| | | `tokenizer(batch_sentences, padding=True, truncation=ESTRATEGIA, max_length=42)` | | ||
| | relleno hasta la longitud máxima del modelo | No es posible | | ||
| | relleno hasta una longitud específica | `tokenizer(batch_sentences, padding='max_length', truncation=True, max_length=42)` o | | ||
| | | `tokenizer(batch_sentences, padding='max_length', truncation=ESTRATEGIA, max_length=42)` | |
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I would be consistent with calling it truncamiento o Truncation, same for padding.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Hi @osanseviero, will be ok in this way?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Hi there! My feedback was that in some sections you use the word in English and others in Spanish. E.g.
My suggestion would be to only say "El relleno (tambien conocido como "Padding")" as you already do in line 19, and afterwards only say padding or relleno, but not both. Imo you can use "relleno" and just said padding when you're explicitly saying set the
padding
parameter or similarThere was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Ok, I get it. Thanks.