"...git@developer.sourcefind.cn:chenpangpang/transformers.git" did not exist on "e0e2da1194563544e36d9d77c1a7c4e78dc3816f"
Unverified Commit 5a8a532d authored by Andrea Sottana's avatar Andrea Sottana Committed by GitHub
Browse files

Adding links to pipelines parameters documentation (#19227)

* Adding links to pipelines parameters documentation

Adding PR based on suggestion in this issue https://github.com/huggingface/transformers/issues/19038#issuecomment-1259592359

* styling

* Updated config.yml

* Updated config.yml

* update README_es.md
parent e94384e4
...@@ -32,7 +32,9 @@ class Text2TextGenerationPipeline(Pipeline): ...@@ -32,7 +32,9 @@ class Text2TextGenerationPipeline(Pipeline):
The models that this pipeline can use are models that have been fine-tuned on a translation task. See the The models that this pipeline can use are models that have been fine-tuned on a translation task. See the
up-to-date list of available models on up-to-date list of available models on
[huggingface.co/models](https://huggingface.co/models?filter=text2text-generation). [huggingface.co/models](https://huggingface.co/models?filter=text2text-generation). For a list of available
parameters, see the [following
documentation](https://huggingface.co/docs/transformers/en/main_classes/text_generation#transformers.generation_utils.GenerationMixin.generate)
Usage: Usage:
...@@ -202,7 +204,9 @@ class SummarizationPipeline(Text2TextGenerationPipeline): ...@@ -202,7 +204,9 @@ class SummarizationPipeline(Text2TextGenerationPipeline):
The models that this pipeline can use are models that have been fine-tuned on a summarization task, which is The models that this pipeline can use are models that have been fine-tuned on a summarization task, which is
currently, '*bart-large-cnn*', '*t5-small*', '*t5-base*', '*t5-large*', '*t5-3b*', '*t5-11b*'. See the up-to-date currently, '*bart-large-cnn*', '*t5-small*', '*t5-base*', '*t5-large*', '*t5-3b*', '*t5-11b*'. See the up-to-date
list of available models on [huggingface.co/models](https://huggingface.co/models?filter=summarization). list of available models on [huggingface.co/models](https://huggingface.co/models?filter=summarization). For a list
of available parameters, see the [following
documentation](https://huggingface.co/docs/transformers/en/main_classes/text_generation#transformers.generation_utils.GenerationMixin.generate)
Usage: Usage:
...@@ -269,6 +273,8 @@ class TranslationPipeline(Text2TextGenerationPipeline): ...@@ -269,6 +273,8 @@ class TranslationPipeline(Text2TextGenerationPipeline):
The models that this pipeline can use are models that have been fine-tuned on a translation task. See the The models that this pipeline can use are models that have been fine-tuned on a translation task. See the
up-to-date list of available models on [huggingface.co/models](https://huggingface.co/models?filter=translation). up-to-date list of available models on [huggingface.co/models](https://huggingface.co/models?filter=translation).
For a list of available parameters, see the [following
documentation](https://huggingface.co/docs/transformers/en/main_classes/text_generation#transformers.generation_utils.GenerationMixin.generate)
Usage: Usage:
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment