Skip to content

Commit

Permalink
[docs] Update link in es/pipeline_webserver.md (#30745)
Browse files Browse the repository at this point in the history
* update link

* run make style
  • Loading branch information
aaronjimv authored May 10, 2024
1 parent 2d1602a commit 8ce4fef
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 10 deletions.
8 changes: 1 addition & 7 deletions docs/source/es/pipeline_webserver.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,13 +9,7 @@ Crear un motor de inferencia es un tema complejo, y la "mejor" solución probabl
</Tip>


Lo fundamental para entender es que podemos usar un iterador, tal como [en un conjunto de datos](https://huggingface.co/docs/transformers/pipeline_tutorial#using-pipelines-on-a-dataset), ya que un servidor web es básicamente un sistema que espera solicitudes y las trata a medida que llegan.

<!--
To do:
* Check the content of es/pipeline_tutorial.md
* And update the link [en un conjunto de datos] -> (pipeline_tutorial#pipelines-en-un-conjunto-de-datos)
-->
Lo fundamental para entender es que podemos usar un iterador, tal como [en un conjunto de datos](pipeline_tutorial#uso-de-pipelines-en-un-conjunto-de-datos), ya que un servidor web es básicamente un sistema que espera solicitudes y las trata a medida que llegan.

Por lo general, los servidores web están multiplexados (multihilo, asíncrono, etc.) para manejar varias solicitudes simultáneamente. Por otro lado, los flujos de trabajo (y principalmente los modelos subyacentes) no son realmente ideales para el paralelismo; consumen mucha RAM, por lo que es mejor darles todos los recursos disponibles cuando se están ejecutando o es un trabajo intensivo en cómputo.

Expand Down
4 changes: 1 addition & 3 deletions examples/pytorch/object-detection/run_object_detection.py
Original file line number Diff line number Diff line change
Expand Up @@ -244,9 +244,7 @@ class DataTrainingArguments:
)
image_square_size: Optional[int] = field(
default=600,
metadata={
"help": "Image longest size will be resized to this value, then image will be padded to square."
},
metadata={"help": "Image longest size will be resized to this value, then image will be padded to square."},
)
max_train_samples: Optional[int] = field(
default=None,
Expand Down

0 comments on commit 8ce4fef

Please sign in to comment.