# Pipelines

## Pipelines

The pipelines are a great and easy way to use models for inference. These pipelines are objects that abstract most of the complex code from the library, offering a simple API dedicated to several tasks, including Named Entity Recognition, Masked Language Modeling, Sentiment Analysis, Feature Extraction and Question Answering. See the [task summary](https://huggingface.co/docs/transformers/task_summary) for examples of use.

There are two categories of pipeline abstractions to be aware about:

* The [pipeline()](https://huggingface.co/docs/transformers/v4.34.1/en/main_classes/pipelines#transformers.pipeline) which is the most powerful object encapsulating all other pipelines.
* Task-specific pipelines are available for [audio](https://huggingface.co/docs/transformers/main_classes/pipelines#audio), [computer vision](https://huggingface.co/docs/transformers/main_classes/pipelines#computer-vision), [natural language processing](https://huggingface.co/docs/transformers/main_classes/pipelines#natural-language-processing), and [multimodal](https://huggingface.co/docs/transformers/main_classes/pipelines#multimodal) tasks.

### The pipeline abstraction

The *pipeline* abstraction is a wrapper around all the other available pipelines. It is instantiated as any other pipeline but can provide additional quality of life.

Simple call on one item:

Copied

```
>>> pipe = pipeline("text-classification")
>>> pipe("This restaurant is awesome")
[{'label': 'POSITIVE', 'score': 0.9998743534088135}]
```

If you want to use a specific model from the [hub](https://huggingface.co/) you can ignore the task if the model on the hub already defines it:

Copied

```
>>> pipe = pipeline(model="roberta-large-mnli")
>>> pipe("This restaurant is awesome")
[{'label': 'NEUTRAL', 'score': 0.7313136458396912}]
```

To call a pipeline on many items, you can call it with a *list*.

Copied

```
>>> pipe = pipeline("text-classification")
>>> pipe(["This restaurant is awesome", "This restaurant is awful"])
[{'label': 'POSITIVE', 'score': 0.9998743534088135},
 {'label': 'NEGATIVE', 'score': 0.9996669292449951}]
```

To iterate over full datasets it is recommended to use a `dataset` directly. This means you don’t need to allocate the whole dataset at once, nor do you need to do batching yourself. This should work just as fast as custom loops on GPU. If it doesn’t don’t hesitate to create an issue.

Copied

```
import datasets
from transformers import pipeline
from transformers.pipelines.pt_utils import KeyDataset
from tqdm.auto import tqdm

pipe = pipeline("automatic-speech-recognition", model="facebook/wav2vec2-base-960h", device=0)
dataset = datasets.load_dataset("superb", name="asr", split="test")

# KeyDataset (only *pt*) will simply return the item in the dict returned by the dataset item
# as we're not interested in the *target* part of the dataset. For sentence pair use KeyPairDataset
for out in tqdm(pipe(KeyDataset(dataset, "file"))):
    print(out)
    # {"text": "NUMBER TEN FRESH NELLY IS WAITING ON YOU GOOD NIGHT HUSBAND"}
    # {"text": ....}
    # ....
```

For ease of use, a generator is also possible:

Copied

```
from transformers import pipeline

pipe = pipeline("text-classification")


def data():
    while True:
        # This could come from a dataset, a database, a queue or HTTP request
        # in a server
        # Caveat: because this is iterative, you cannot use `num_workers > 1` variable
        # to use multiple threads to preprocess data. You can still have 1 thread that
        # does the preprocessing while the main runs the big inference
        yield "This is a test"


for out in pipe(data()):
    print(out)
    # {"text": "NUMBER TEN FRESH NELLY IS WAITING ON YOU GOOD NIGHT HUSBAND"}
    # {"text": ....}
    # ....
```

**transformers.pipeline**

[\<source>](https://github.com/huggingface/transformers/blob/v4.34.1/src/transformers/pipelines/__init__.py#L527)

( task: str = Nonemodel: typing.Union\[str, ForwardRef('PreTrainedModel'), ForwardRef('TFPreTrainedModel'), NoneType] = Noneconfig: typing.Union\[str, transformers.configuration\_utils.PretrainedConfig, NoneType] = Nonetokenizer: typing.Union\[str, transformers.tokenization\_utils.PreTrainedTokenizer, ForwardRef('PreTrainedTokenizerFast'), NoneType] = Nonefeature\_extractor: typing.Union\[str, ForwardRef('SequenceFeatureExtractor'), NoneType] = Noneimage\_processor: typing.Union\[str, transformers.image\_processing\_utils.BaseImageProcessor, NoneType] = Noneframework: typing.Optional\[str] = Nonerevision: typing.Optional\[str] = Noneuse\_fast: bool = Truetoken: typing.Union\[bool, str, NoneType] = Nonedevice: typing.Union\[int, str, ForwardRef('torch.device'), NoneType] = Nonedevice\_map = Nonetorch\_dtype = Nonetrust\_remote\_code: typing.Optional\[bool] = Nonemodel\_kwargs: typing.Dict\[str, typing.Any] = Nonepipeline\_class: typing.Optional\[typing.Any] = None\*\*kwargs ) → [Pipeline](https://huggingface.co/docs/transformers/v4.34.1/en/main_classes/pipelines#transformers.Pipeline)

Parameters

* **task** (`str`) — The task defining which pipeline will be returned. Currently accepted tasks are:
  * `"audio-classification"`: will return a [AudioClassificationPipeline](https://huggingface.co/docs/transformers/v4.34.1/en/main_classes/pipelines#transformers.AudioClassificationPipeline).
  * `"automatic-speech-recognition"`: will return a [AutomaticSpeechRecognitionPipeline](https://huggingface.co/docs/transformers/v4.34.1/en/main_classes/pipelines#transformers.AutomaticSpeechRecognitionPipeline).
  * `"conversational"`: will return a [ConversationalPipeline](https://huggingface.co/docs/transformers/v4.34.1/en/main_classes/pipelines#transformers.ConversationalPipeline).
  * `"depth-estimation"`: will return a [DepthEstimationPipeline](https://huggingface.co/docs/transformers/v4.34.1/en/main_classes/pipelines#transformers.DepthEstimationPipeline).
  * `"document-question-answering"`: will return a [DocumentQuestionAnsweringPipeline](https://huggingface.co/docs/transformers/v4.34.1/en/main_classes/pipelines#transformers.DocumentQuestionAnsweringPipeline).
  * `"feature-extraction"`: will return a [FeatureExtractionPipeline](https://huggingface.co/docs/transformers/v4.34.1/en/main_classes/pipelines#transformers.FeatureExtractionPipeline).
  * `"fill-mask"`: will return a [FillMaskPipeline](https://huggingface.co/docs/transformers/v4.34.1/en/main_classes/pipelines#transformers.FillMaskPipeline):.
  * `"image-classification"`: will return a [ImageClassificationPipeline](https://huggingface.co/docs/transformers/v4.34.1/en/main_classes/pipelines#transformers.ImageClassificationPipeline).
  * `"image-segmentation"`: will return a [ImageSegmentationPipeline](https://huggingface.co/docs/transformers/v4.34.1/en/main_classes/pipelines#transformers.ImageSegmentationPipeline).
  * `"image-to-image"`: will return a [ImageToImagePipeline](https://huggingface.co/docs/transformers/v4.34.1/en/main_classes/pipelines#transformers.ImageToImagePipeline).
  * `"image-to-text"`: will return a [ImageToTextPipeline](https://huggingface.co/docs/transformers/v4.34.1/en/main_classes/pipelines#transformers.ImageToTextPipeline).
  * `"mask-generation"`: will return a `MaskGenerationPipeline`.
  * `"object-detection"`: will return a [ObjectDetectionPipeline](https://huggingface.co/docs/transformers/v4.34.1/en/main_classes/pipelines#transformers.ObjectDetectionPipeline).
  * `"question-answering"`: will return a [QuestionAnsweringPipeline](https://huggingface.co/docs/transformers/v4.34.1/en/main_classes/pipelines#transformers.QuestionAnsweringPipeline).
  * `"summarization"`: will return a [SummarizationPipeline](https://huggingface.co/docs/transformers/v4.34.1/en/main_classes/pipelines#transformers.SummarizationPipeline).
  * `"table-question-answering"`: will return a [TableQuestionAnsweringPipeline](https://huggingface.co/docs/transformers/v4.34.1/en/main_classes/pipelines#transformers.TableQuestionAnsweringPipeline).
  * `"text2text-generation"`: will return a [Text2TextGenerationPipeline](https://huggingface.co/docs/transformers/v4.34.1/en/main_classes/pipelines#transformers.Text2TextGenerationPipeline).
  * `"text-classification"` (alias `"sentiment-analysis"` available): will return a [TextClassificationPipeline](https://huggingface.co/docs/transformers/v4.34.1/en/main_classes/pipelines#transformers.TextClassificationPipeline).
  * `"text-generation"`: will return a [TextGenerationPipeline](https://huggingface.co/docs/transformers/v4.34.1/en/main_classes/pipelines#transformers.TextGenerationPipeline):.
  * `"text-to-audio"` (alias `"text-to-speech"` available): will return a [TextToAudioPipeline](https://huggingface.co/docs/transformers/v4.34.1/en/main_classes/pipelines#transformers.TextToAudioPipeline):.
  * `"token-classification"` (alias `"ner"` available): will return a [TokenClassificationPipeline](https://huggingface.co/docs/transformers/v4.34.1/en/main_classes/pipelines#transformers.TokenClassificationPipeline).
  * `"translation"`: will return a [TranslationPipeline](https://huggingface.co/docs/transformers/v4.34.1/en/main_classes/pipelines#transformers.TranslationPipeline).
  * `"translation_xx_to_yy"`: will return a [TranslationPipeline](https://huggingface.co/docs/transformers/v4.34.1/en/main_classes/pipelines#transformers.TranslationPipeline).
  * `"video-classification"`: will return a [VideoClassificationPipeline](https://huggingface.co/docs/transformers/v4.34.1/en/main_classes/pipelines#transformers.VideoClassificationPipeline).
  * `"visual-question-answering"`: will return a [VisualQuestionAnsweringPipeline](https://huggingface.co/docs/transformers/v4.34.1/en/main_classes/pipelines#transformers.VisualQuestionAnsweringPipeline).
  * `"zero-shot-classification"`: will return a [ZeroShotClassificationPipeline](https://huggingface.co/docs/transformers/v4.34.1/en/main_classes/pipelines#transformers.ZeroShotClassificationPipeline).
  * `"zero-shot-image-classification"`: will return a [ZeroShotImageClassificationPipeline](https://huggingface.co/docs/transformers/v4.34.1/en/main_classes/pipelines#transformers.ZeroShotImageClassificationPipeline).
  * `"zero-shot-audio-classification"`: will return a [ZeroShotAudioClassificationPipeline](https://huggingface.co/docs/transformers/v4.34.1/en/main_classes/pipelines#transformers.ZeroShotAudioClassificationPipeline).
  * `"zero-shot-object-detection"`: will return a [ZeroShotObjectDetectionPipeline](https://huggingface.co/docs/transformers/v4.34.1/en/main_classes/pipelines#transformers.ZeroShotObjectDetectionPipeline).
* **model** (`str` or [PreTrainedModel](https://huggingface.co/docs/transformers/v4.34.1/en/main_classes/model#transformers.PreTrainedModel) or [TFPreTrainedModel](https://huggingface.co/docs/transformers/v4.34.1/en/main_classes/model#transformers.TFPreTrainedModel), *optional*) — The model that will be used by the pipeline to make predictions. This can be a model identifier or an actual instance of a pretrained model inheriting from [PreTrainedModel](https://huggingface.co/docs/transformers/v4.34.1/en/main_classes/model#transformers.PreTrainedModel) (for PyTorch) or [TFPreTrainedModel](https://huggingface.co/docs/transformers/v4.34.1/en/main_classes/model#transformers.TFPreTrainedModel) (for TensorFlow).

  If not provided, the default for the `task` will be loaded.
* **config** (`str` or [PretrainedConfig](https://huggingface.co/docs/transformers/v4.34.1/en/main_classes/configuration#transformers.PretrainedConfig), *optional*) — The configuration that will be used by the pipeline to instantiate the model. This can be a model identifier or an actual pretrained model configuration inheriting from [PretrainedConfig](https://huggingface.co/docs/transformers/v4.34.1/en/main_classes/configuration#transformers.PretrainedConfig).

  If not provided, the default configuration file for the requested model will be used. That means that if `model` is given, its default configuration will be used. However, if `model` is not supplied, this `task`’s default model’s config is used instead.
* **tokenizer** (`str` or [PreTrainedTokenizer](https://huggingface.co/docs/transformers/v4.34.1/en/main_classes/tokenizer#transformers.PreTrainedTokenizer), *optional*) — The tokenizer that will be used by the pipeline to encode data for the model. This can be a model identifier or an actual pretrained tokenizer inheriting from [PreTrainedTokenizer](https://huggingface.co/docs/transformers/v4.34.1/en/main_classes/tokenizer#transformers.PreTrainedTokenizer).

  If not provided, the default tokenizer for the given `model` will be loaded (if it is a string). If `model` is not specified or not a string, then the default tokenizer for `config` is loaded (if it is a string). However, if `config` is also not given or not a string, then the default tokenizer for the given `task` will be loaded.
* **feature\_extractor** (`str` or `PreTrainedFeatureExtractor`, *optional*) — The feature extractor that will be used by the pipeline to encode data for the model. This can be a model identifier or an actual pretrained feature extractor inheriting from `PreTrainedFeatureExtractor`.

  Feature extractors are used for non-NLP models, such as Speech or Vision models as well as multi-modal models. Multi-modal models will also require a tokenizer to be passed.

  If not provided, the default feature extractor for the given `model` will be loaded (if it is a string). If `model` is not specified or not a string, then the default feature extractor for `config` is loaded (if it is a string). However, if `config` is also not given or not a string, then the default feature extractor for the given `task` will be loaded.
* **framework** (`str`, *optional*) — The framework to use, either `"pt"` for PyTorch or `"tf"` for TensorFlow. The specified framework must be installed.

  If no framework is specified, will default to the one currently installed. If no framework is specified and both frameworks are installed, will default to the framework of the `model`, or to PyTorch if no model is provided.
* **revision** (`str`, *optional*, defaults to `"main"`) — When passing a task name or a string model identifier: The specific model version to use. It can be a branch name, a tag name, or a commit id, since we use a git-based system for storing models and other artifacts on boincai.com, so `revision` can be any identifier allowed by git.
* **use\_fast** (`bool`, *optional*, defaults to `True`) — Whether or not to use a Fast tokenizer if possible (a [PreTrainedTokenizerFast](https://huggingface.co/docs/transformers/v4.34.1/en/main_classes/tokenizer#transformers.PreTrainedTokenizerFast)).
* **use\_auth\_token** (`str` or *bool*, *optional*) — The token to use as HTTP bearer authorization for remote files. If `True`, will use the token generated when running `boincai-cli login` (stored in `~/.boincai`).
* **device** (`int` or `str` or `torch.device`) — Defines the device (*e.g.*, `"cpu"`, `"cuda:1"`, `"mps"`, or a GPU ordinal rank like `1`) on which this pipeline will be allocated.
* **device\_map** (`str` or `Dict[str, Union[int, str, torch.device]`, *optional*) — Sent directly as `model_kwargs` (just a simpler shortcut). When `accelerate` library is present, set `device_map="auto"` to compute the most optimized `device_map` automatically (see [here](https://huggingface.co/docs/accelerate/main/en/package_reference/big_modeling#accelerate.cpu_offload) for more information).

  Do not use `device_map` AND `device` at the same time as they will conflict
* **torch\_dtype** (`str` or `torch.dtype`, *optional*) — Sent directly as `model_kwargs` (just a simpler shortcut) to use the available precision for this model (`torch.float16`, `torch.bfloat16`, … or `"auto"`).
* **trust\_remote\_code** (`bool`, *optional*, defaults to `False`) — Whether or not to allow for custom code defined on the Hub in their own modeling, configuration, tokenization or even pipeline files. This option should only be set to `True` for repositories you trust and in which you have read the code, as it will execute code present on the Hub on your local machine.
* **model\_kwargs** (`Dict[str, Any]`, *optional*) — Additional dictionary of keyword arguments passed along to the model’s `from_pretrained(..., **model_kwargs)` function.
* **kwargs** (`Dict[str, Any]`, *optional*) — Additional keyword arguments passed along to the specific pipeline init (see the documentation for the corresponding pipeline class for possible values).

Returns

[Pipeline](https://huggingface.co/docs/transformers/v4.34.1/en/main_classes/pipelines#transformers.Pipeline)

A suitable pipeline for the task.

Utility factory method to build a [Pipeline](https://huggingface.co/docs/transformers/v4.34.1/en/main_classes/pipelines#transformers.Pipeline).

Pipelines are made of:

* A [tokenizer](https://huggingface.co/docs/transformers/main_classes/tokenizer) in charge of mapping raw textual input to token.
* A [model](https://huggingface.co/docs/transformers/main_classes/model) to make predictions from the inputs.
* Some (optional) post processing for enhancing model’s output.

Examples:

Copied

```
>>> from transformers import pipeline, AutoModelForTokenClassification, AutoTokenizer

>>> # Sentiment analysis pipeline
>>> analyzer = pipeline("sentiment-analysis")

>>> # Question answering pipeline, specifying the checkpoint identifier
>>> oracle = pipeline(
...     "question-answering", model="distilbert-base-cased-distilled-squad", tokenizer="bert-base-cased"
... )

>>> # Named entity recognition pipeline, passing in a specific model and tokenizer
>>> model = AutoModelForTokenClassification.from_pretrained("dbmdz/bert-large-cased-finetuned-conll03-english")
>>> tokenizer = AutoTokenizer.from_pretrained("bert-base-cased")
>>> recognizer = pipeline("ner", model=model, tokenizer=tokenizer)
```

### Pipeline batching

All pipelines can use batching. This will work whenever the pipeline uses its streaming ability (so when passing lists or `Dataset` or `generator`).

Copied

```
from transformers import pipeline
from transformers.pipelines.pt_utils import KeyDataset
import datasets

dataset = datasets.load_dataset("imdb", name="plain_text", split="unsupervised")
pipe = pipeline("text-classification", device=0)
for out in pipe(KeyDataset(dataset, "text"), batch_size=8, truncation="only_first"):
    print(out)
    # [{'label': 'POSITIVE', 'score': 0.9998743534088135}]
    # Exactly the same output as before, but the content are passed
    # as batches to the model
```

However, this is not automatically a win for performance. It can be either a 10x speedup or 5x slowdown depending on hardware, data and the actual model being used.

Example where it’s mostly a speedup:

Copied

```
from transformers import pipeline
from torch.utils.data import Dataset
from tqdm.auto import tqdm

pipe = pipeline("text-classification", device=0)


class MyDataset(Dataset):
    def __len__(self):
        return 5000

    def __getitem__(self, i):
        return "This is a test"


dataset = MyDataset()

for batch_size in [1, 8, 64, 256]:
    print("-" * 30)
    print(f"Streaming batch_size={batch_size}")
    for out in tqdm(pipe(dataset, batch_size=batch_size), total=len(dataset)):
        pass
```

Copied

```
# On GTX 970
------------------------------
Streaming no batching
100%|██████████████████████████████████████████████████████████████████████| 5000/5000 [00:26<00:00, 187.52it/s]
------------------------------
Streaming batch_size=8
100%|█████████████████████████████████████████████████████████████████████| 5000/5000 [00:04<00:00, 1205.95it/s]
------------------------------
Streaming batch_size=64
100%|█████████████████████████████████████████████████████████████████████| 5000/5000 [00:02<00:00, 2478.24it/s]
------------------------------
Streaming batch_size=256
100%|█████████████████████████████████████████████████████████████████████| 5000/5000 [00:01<00:00, 2554.43it/s]
(diminishing returns, saturated the GPU)
```

Example where it’s most a slowdown:

Copied

```
class MyDataset(Dataset):
    def __len__(self):
        return 5000

    def __getitem__(self, i):
        if i % 64 == 0:
            n = 100
        else:
            n = 1
        return "This is a test" * n
```

This is a occasional very long sentence compared to the other. In that case, the **whole** batch will need to be 400 tokens long, so the whole batch will be \[64, 400] instead of \[64, 4], leading to the high slowdown. Even worse, on bigger batches, the program simply crashes.

Copied

```
------------------------------
Streaming no batching
100%|█████████████████████████████████████████████████████████████████████| 1000/1000 [00:05<00:00, 183.69it/s]
------------------------------
Streaming batch_size=8
100%|█████████████████████████████████████████████████████████████████████| 1000/1000 [00:03<00:00, 265.74it/s]
------------------------------
Streaming batch_size=64
100%|██████████████████████████████████████████████████████████████████████| 1000/1000 [00:26<00:00, 37.80it/s]
------------------------------
Streaming batch_size=256
  0%|                                                                                 | 0/1000 [00:00<?, ?it/s]
Traceback (most recent call last):
  File "/home/nicolas/src/transformers/test.py", line 42, in <module>
    for out in tqdm(pipe(dataset, batch_size=256), total=len(dataset)):
....
    q = q / math.sqrt(dim_per_head)  # (bs, n_heads, q_length, dim_per_head)
RuntimeError: CUDA out of memory. Tried to allocate 376.00 MiB (GPU 0; 3.95 GiB total capacity; 1.72 GiB already allocated; 354.88 MiB free; 2.46 GiB reserved in total by PyTorch)
```

There are no good (general) solutions for this problem, and your mileage may vary depending on your use cases. Rule of thumb:

For users, a rule of thumb is:

* **Measure performance on your load, with your hardware. Measure, measure, and keep measuring. Real numbers are the only way to go.**
* If you are latency constrained (live product doing inference), don’t batch
* If you are using CPU, don’t batch.
* If you are using throughput (you want to run your model on a bunch of static data), on GPU, then:
  * If you have no clue about the size of the sequence\_length (“natural” data), by default don’t batch, measure and try tentatively to add it, add OOM checks to recover when it will fail (and it will at some point if you don’t control the sequence\_length.)
  * If your sequence\_length is super regular, then batching is more likely to be VERY interesting, measure and push it until you get OOMs.
  * The larger the GPU the more likely batching is going to be more interesting
* As soon as you enable batching, make sure you can handle OOMs nicely.

### Pipeline chunk batching

`zero-shot-classification` and `question-answering` are slightly specific in the sense, that a single input might yield multiple forward pass of a model. Under normal circumstances, this would yield issues with `batch_size` argument.

In order to circumvent this issue, both of these pipelines are a bit specific, they are `ChunkPipeline` instead of regular `Pipeline`. In short:

Copied

```
preprocessed = pipe.preprocess(inputs)
model_outputs = pipe.forward(preprocessed)
outputs = pipe.postprocess(model_outputs)
```

Now becomes:

Copied

```
all_model_outputs = []
for preprocessed in pipe.preprocess(inputs):
    model_outputs = pipe.forward(preprocessed)
    all_model_outputs.append(model_outputs)
outputs = pipe.postprocess(all_model_outputs)
```

This should be very transparent to your code because the pipelines are used in the same way.

This is a simplified view, since the pipeline can handle automatically the batch to ! Meaning you don’t have to care about how many forward passes you inputs are actually going to trigger, you can optimize the `batch_size` independently of the inputs. The caveats from the previous section still apply.

### Pipeline custom code

If you want to override a specific pipeline.

Don’t hesitate to create an issue for your task at hand, the goal of the pipeline is to be easy to use and support most cases, so `transformers` could maybe support your use case.

If you want to try simply you can:

* Subclass your pipeline of choice

Copied

```
class MyPipeline(TextClassificationPipeline):
    def postprocess():
        # Your code goes here
        scores = scores * 100
        # And here


my_pipeline = MyPipeline(model=model, tokenizer=tokenizer, ...)
# or if you use *pipeline* function, then:
my_pipeline = pipeline(model="xxxx", pipeline_class=MyPipeline)
```

That should enable you to do all the custom code you want.

### Implementing a pipeline

[Implementing a new pipeline](https://huggingface.co/docs/transformers/add_new_pipeline)

### Audio

Pipelines available for audio tasks include the following.

#### AudioClassificationPipeline

#### class transformers.AudioClassificationPipeline

[\<source>](https://github.com/huggingface/transformers/blob/v4.34.1/src/transformers/pipelines/audio_classification.py#L67)

( \*args\*\*kwargs )

Parameters

* **model** ([PreTrainedModel](https://huggingface.co/docs/transformers/v4.34.1/en/main_classes/model#transformers.PreTrainedModel) or [TFPreTrainedModel](https://huggingface.co/docs/transformers/v4.34.1/en/main_classes/model#transformers.TFPreTrainedModel)) — The model that will be used by the pipeline to make predictions. This needs to be a model inheriting from [PreTrainedModel](https://huggingface.co/docs/transformers/v4.34.1/en/main_classes/model#transformers.PreTrainedModel) for PyTorch and [TFPreTrainedModel](https://huggingface.co/docs/transformers/v4.34.1/en/main_classes/model#transformers.TFPreTrainedModel) for TensorFlow.
* **tokenizer** ([PreTrainedTokenizer](https://huggingface.co/docs/transformers/v4.34.1/en/main_classes/tokenizer#transformers.PreTrainedTokenizer)) — The tokenizer that will be used by the pipeline to encode data for the model. This object inherits from [PreTrainedTokenizer](https://huggingface.co/docs/transformers/v4.34.1/en/main_classes/tokenizer#transformers.PreTrainedTokenizer).
* **modelcard** (`str` or `ModelCard`, *optional*) — Model card attributed to the model for this pipeline.
* **framework** (`str`, *optional*) — The framework to use, either `"pt"` for PyTorch or `"tf"` for TensorFlow. The specified framework must be installed.

  If no framework is specified, will default to the one currently installed. If no framework is specified and both frameworks are installed, will default to the framework of the `model`, or to PyTorch if no model is provided.
* **task** (`str`, defaults to `""`) — A task-identifier for the pipeline.
* **num\_workers** (`int`, *optional*, defaults to 8) — When the pipeline will use *DataLoader* (when passing a dataset, on GPU for a Pytorch model), the number of workers to be used.
* **batch\_size** (`int`, *optional*, defaults to 1) — When the pipeline will use *DataLoader* (when passing a dataset, on GPU for a Pytorch model), the size of the batch to use, for inference this is not always beneficial, please read [Batching with pipelines](https://huggingface.co/transformers/main_classes/pipelines.html#pipeline-batching) .
* **args\_parser** ([ArgumentHandler](https://huggingface.co/docs/transformers/v4.34.1/en/internal/pipelines_utils#transformers.pipelines.ArgumentHandler), *optional*) — Reference to the object in charge of parsing supplied pipeline parameters.
* **device** (`int`, *optional*, defaults to -1) — Device ordinal for CPU/GPU supports. Setting this to -1 will leverage CPU, a positive will run the model on the associated CUDA device id. You can pass native `torch.device` or a `str` too.
* **binary\_output** (`bool`, *optional*, defaults to `False`) — Flag indicating if the output the pipeline should happen in a binary format (i.e., pickle) or as raw text.

Audio classification pipeline using any `AutoModelForAudioClassification`. This pipeline predicts the class of a raw waveform or an audio file. In case of an audio file, ffmpeg should be installed to support multiple audio formats.

Example:

Copied

```
>>> from transformers import pipeline

>>> classifier = pipeline(model="superb/wav2vec2-base-superb-ks")
>>> classifier("https://boincai.com/datasets/Narsil/asr_dummy/resolve/main/1.flac")
[{'score': 0.997, 'label': '_unknown_'}, {'score': 0.002, 'label': 'left'}, {'score': 0.0, 'label': 'yes'}, {'score': 0.0, 'label': 'down'}, {'score': 0.0, 'label': 'stop'}]
```

Learn more about the basics of using a pipeline in the [pipeline tutorial](https://huggingface.co/docs/transformers/pipeline_tutorial)

This pipeline can currently be loaded from [pipeline()](https://huggingface.co/docs/transformers/v4.34.1/en/main_classes/pipelines#transformers.pipeline) using the following task identifier: `"audio-classification"`.

See the list of available models on [boincai.com/models](https://huggingface.co/models?filter=audio-classification).

**\_\_call\_\_**

[\<source>](https://github.com/huggingface/transformers/blob/v4.34.1/src/transformers/pipelines/audio_classification.py#L103)

( inputs: typing.Union\[numpy.ndarray, bytes, str]\*\*kwargs ) → A list of `dict` with the following keys

Parameters

* **inputs** (`np.ndarray` or `bytes` or `str` or `dict`) — The inputs is either :
  * `str` that is the filename of the audio file, the file will be read at the correct sampling rate to get the waveform using *ffmpeg*. This requires *ffmpeg* to be installed on the system.
  * `bytes` it is supposed to be the content of an audio file and is interpreted by *ffmpeg* in the same way.
  * (`np.ndarray` of shape (n, ) of type `np.float32` or `np.float64`) Raw audio at the correct sampling rate (no further check will be done)
  * `dict` form can be used to pass raw audio sampled at arbitrary `sampling_rate` and let this pipeline do the resampling. The dict must be either be in the format `{"sampling_rate": int, "raw": np.array}`, or `{"sampling_rate": int, "array": np.array}`, where the key `"raw"` or `"array"` is used to denote the raw audio waveform.
* **top\_k** (`int`, *optional*, defaults to None) — The number of top labels that will be returned by the pipeline. If the provided number is `None` or higher than the number of labels available in the model configuration, it will default to the number of labels.

Returns

A list of `dict` with the following keys

* **label** (`str`) — The label predicted.
* **score** (`float`) — The corresponding probability.

Classify the sequence(s) given as inputs. See the [AutomaticSpeechRecognitionPipeline](https://huggingface.co/docs/transformers/v4.34.1/en/main_classes/pipelines#transformers.AutomaticSpeechRecognitionPipeline) documentation for more information.

#### AutomaticSpeechRecognitionPipeline

#### class transformers.AutomaticSpeechRecognitionPipeline

[\<source>](https://github.com/huggingface/transformers/blob/v4.34.1/src/transformers/pipelines/automatic_speech_recognition.py#L135)

( model: PreTrainedModelfeature\_extractor: typing.Union\[ForwardRef('SequenceFeatureExtractor'), str] = Nonetokenizer: typing.Optional\[transformers.tokenization\_utils.PreTrainedTokenizer] = Nonedecoder: typing.Union\[ForwardRef('BeamSearchDecoderCTC'), str, NoneType] = Nonemodelcard: typing.Optional\[transformers.modelcard.ModelCard] = Noneframework: typing.Optional\[str] = Nonetask: str = ''args\_parser: ArgumentHandler = Nonedevice: typing.Union\[int, ForwardRef('torch.device')] = Nonetorch\_dtype: typing.Union\[str, ForwardRef('torch.dtype'), NoneType] = Nonebinary\_output: bool = False\*\*kwargs )

Parameters

* **model** ([PreTrainedModel](https://huggingface.co/docs/transformers/v4.34.1/en/main_classes/model#transformers.PreTrainedModel) or [TFPreTrainedModel](https://huggingface.co/docs/transformers/v4.34.1/en/main_classes/model#transformers.TFPreTrainedModel)) — The model that will be used by the pipeline to make predictions. This needs to be a model inheriting from [PreTrainedModel](https://huggingface.co/docs/transformers/v4.34.1/en/main_classes/model#transformers.PreTrainedModel) for PyTorch and [TFPreTrainedModel](https://huggingface.co/docs/transformers/v4.34.1/en/main_classes/model#transformers.TFPreTrainedModel) for TensorFlow.
* **tokenizer** ([PreTrainedTokenizer](https://huggingface.co/docs/transformers/v4.34.1/en/main_classes/tokenizer#transformers.PreTrainedTokenizer)) — The tokenizer that will be used by the pipeline to encode data for the model. This object inherits from [PreTrainedTokenizer](https://huggingface.co/docs/transformers/v4.34.1/en/main_classes/tokenizer#transformers.PreTrainedTokenizer).
* **feature\_extractor** ([SequenceFeatureExtractor](https://huggingface.co/docs/transformers/v4.34.1/en/main_classes/feature_extractor#transformers.SequenceFeatureExtractor)) — The feature extractor that will be used by the pipeline to encode waveform for the model.
* **chunk\_length\_s** (`float`, *optional*, defaults to 0) — The input length for in each chunk. If `chunk_length_s = 0` then chunking is disabled (default).

  For more information on how to effectively use `chunk_length_s`, please have a look at the [ASR chunking blog post](https://huggingface.co/blog/asr-chunking).
* **stride\_length\_s** (`float`, *optional*, defaults to `chunk_length_s / 6`) — The length of stride on the left and right of each chunk. Used only with `chunk_length_s > 0`. This enables the model to *see* more context and infer letters better than without this context but the pipeline discards the stride bits at the end to make the final reconstitution as perfect as possible.

  For more information on how to effectively use `stride_length_s`, please have a look at the [ASR chunking blog post](https://huggingface.co/blog/asr-chunking).
* **framework** (`str`, *optional*) — The framework to use, either `"pt"` for PyTorch or `"tf"` for TensorFlow. The specified framework must be installed. If no framework is specified, will default to the one currently installed. If no framework is specified and both frameworks are installed, will default to the framework of the `model`, or to PyTorch if no model is provided.
* **device** (Union\[`int`, `torch.device`], *optional*) — Device ordinal for CPU/GPU supports. Setting this to `None` will leverage CPU, a positive will run the model on the associated CUDA device id.
* **decoder** (`pyctcdecode.BeamSearchDecoderCTC`, *optional*) — [PyCTCDecode’s BeamSearchDecoderCTC](https://github.com/kensho-technologies/pyctcdecode/blob/2fd33dc37c4111417e08d89ccd23d28e9b308d19/pyctcdecode/decoder.py#L180) can be passed for language model boosted decoding. See [Wav2Vec2ProcessorWithLM](https://huggingface.co/docs/transformers/v4.34.1/en/model_doc/wav2vec2#transformers.Wav2Vec2ProcessorWithLM) for more information.

Pipeline that aims at extracting spoken text contained within some audio.

The input can be either a raw waveform or a audio file. In case of the audio file, ffmpeg should be installed for to support multiple audio formats

Example:

Copied

```
>>> from transformers import pipeline

>>> transcriber = pipeline(model="openai/whisper-base")
>>> transcriber("https://boincai.com/datasets/Narsil/asr_dummy/resolve/main/1.flac")
{'text': ' He hoped there would be stew for dinner, turnips and carrots and bruised potatoes and fat mutton pieces to be ladled out in thick, peppered flour-fatten sauce.'}
```

Learn more about the basics of using a pipeline in the [pipeline tutorial](https://huggingface.co/docs/transformers/pipeline_tutorial)

**\_\_call\_\_**

[\<source>](https://github.com/huggingface/transformers/blob/v4.34.1/src/transformers/pipelines/automatic_speech_recognition.py#L294)

( inputs: typing.Union\[numpy.ndarray, bytes, str]\*\*kwargs ) → `Dict`

Parameters

* **inputs** (`np.ndarray` or `bytes` or `str` or `dict`) — The inputs is either :
  * `str` that is either the filename of a local audio file, or a public URL address to download the audio file. The file will be read at the correct sampling rate to get the waveform using *ffmpeg*. This requires *ffmpeg* to be installed on the system.
  * `bytes` it is supposed to be the content of an audio file and is interpreted by *ffmpeg* in the same way.
  * (`np.ndarray` of shape (n, ) of type `np.float32` or `np.float64`) Raw audio at the correct sampling rate (no further check will be done)
  * `dict` form can be used to pass raw audio sampled at arbitrary `sampling_rate` and let this pipeline do the resampling. The dict must be in the format `{"sampling_rate": int, "raw": np.array}` with optionally a `"stride": (left: int, right: int)` than can ask the pipeline to treat the first `left` samples and last `right` samples to be ignored in decoding (but used at inference to provide more context to the model). Only use `stride` with CTC models.
* **return\_timestamps** (*optional*, `str` or `bool`) — Only available for pure CTC models (Wav2Vec2, HuBERT, etc) and the Whisper model. Not available for other sequence-to-sequence models.

  For CTC models, timestamps can take one of two formats:

  * `"char"`: the pipeline will return timestamps along the text for every character in the text. For instance, if you get `[{"text": "h", "timestamp": (0.5, 0.6)}, {"text": "i", "timestamp": (0.7, 0.9)}]`, then it means the model predicts that the letter “h” was spoken after `0.5` and before `0.6` seconds.
  * `"word"`: the pipeline will return timestamps along the text for every word in the text. For instance, if you get `[{"text": "hi ", "timestamp": (0.5, 0.9)}, {"text": "there", "timestamp": (1.0, 1.5)}]`, then it means the model predicts that the word “hi” was spoken after `0.5` and before `0.9` seconds.

  For the Whisper model, timestamps can take one of two formats:

  * `"word"`: same as above for word-level CTC timestamps. Word-level timestamps are predicted through the *dynamic-time warping (DTW)* algorithm, an approximation to word-level timestamps by inspecting the cross-attention weights.
  * `True`: the pipeline will return timestamps along the text for *segments* of words in the text. For instance, if you get `[{"text": " Hi there!", "timestamp": (0.5, 1.5)}]`, then it means the model predicts that the segment “Hi there!” was spoken after `0.5` and before `1.5` seconds. Note that a segment of text refers to a sequence of one or more words, rather than individual words as with word-level timestamps.
* **generate\_kwargs** (`dict`, *optional*) — The dictionary of ad-hoc parametrization of `generate_config` to be used for the generation call. For a complete overview of generate, check the [following guide](https://huggingface.co/docs/transformers/en/main_classes/text_generation).
* **max\_new\_tokens** (`int`, *optional*) — The maximum numbers of tokens to generate, ignoring the number of tokens in the prompt.

Returns

`Dict`

A dictionary with the following keys:

* **text** (`str`): The recognized text.
* **chunks** (*optional(, `List[Dict]`) When using `return_timestamps`, the `chunks` will become a list containing all the various text chunks identified by the model,* e.g.\* `[{"text": "hi ", "timestamp": (0.5, 0.9)}, {"text": "there", "timestamp": (1.0, 1.5)}]`. The original full text can roughly be recovered by doing `"".join(chunk["text"] for chunk in output["chunks"])`.

Transcribe the audio sequence(s) given as inputs to text. See the [AutomaticSpeechRecognitionPipeline](https://huggingface.co/docs/transformers/v4.34.1/en/main_classes/pipelines#transformers.AutomaticSpeechRecognitionPipeline) documentation for more information.

#### TextToAudioPipeline

#### class transformers.TextToAudioPipeline

[\<source>](https://github.com/huggingface/transformers/blob/v4.34.1/src/transformers/pipelines/text_to_audio.py#L27)

( \*argsvocoder = Nonesampling\_rate = None\*\*kwargs )

Text-to-audio generation pipeline using any `AutoModelForTextToWaveform` or `AutoModelForTextToSpectrogram`. This pipeline generates an audio file from an input text and optional other conditional inputs.

Example:

Copied

```
>>> from transformers import pipeline

>>> pipe = pipeline(model="suno/bark-small")
>>> output = pipe("Hey it's BOINCAI on the phone!")

>>> audio = output["audio"]
>>> sampling_rate = output["sampling_rate"]
```

Learn more about the basics of using a pipeline in the [pipeline tutorial](https://huggingface.co/docs/transformers/pipeline_tutorial)

This pipeline can currently be loaded from [pipeline()](https://huggingface.co/docs/transformers/v4.34.1/en/main_classes/pipelines#transformers.pipeline) using the following task identifiers: `"text-to-speech"` or `"text-to-audio"`.

See the list of available models on [boincai.com/models](https://huggingface.co/models?filter=text-to-speech).

**\_\_call\_\_**

[\<source>](https://github.com/huggingface/transformers/blob/v4.34.1/src/transformers/pipelines/text_to_audio.py#L122)

( text\_inputs: typing.Union\[str, typing.List\[str]]\*\*forward\_params ) → A `dict` or a list of `dict`

Parameters

* **text\_inputs** (`str` or `List[str]`) — The text(s) to generate.
* **forward\_params** (*optional*) — Parameters passed to the model generation/forward method.

Returns

A `dict` or a list of `dict`

The dictionaries have two keys:

* **audio** (`np.ndarray` of shape `(nb_channels, audio_length)`) — The generated audio waveform.
* **sampling\_rate** (`int`) — The sampling rate of the generated audio waveform.

Generates speech/audio from the inputs. See the [TextToAudioPipeline](https://huggingface.co/docs/transformers/v4.34.1/en/main_classes/pipelines#transformers.TextToAudioPipeline) documentation for more information.

#### ZeroShotAudioClassificationPipeline

#### class transformers.ZeroShotAudioClassificationPipeline

[\<source>](https://github.com/huggingface/transformers/blob/v4.34.1/src/transformers/pipelines/zero_shot_audio_classification.py#L33)

( \*\*kwargs )

Parameters

* **model** ([PreTrainedModel](https://huggingface.co/docs/transformers/v4.34.1/en/main_classes/model#transformers.PreTrainedModel) or [TFPreTrainedModel](https://huggingface.co/docs/transformers/v4.34.1/en/main_classes/model#transformers.TFPreTrainedModel)) — The model that will be used by the pipeline to make predictions. This needs to be a model inheriting from [PreTrainedModel](https://huggingface.co/docs/transformers/v4.34.1/en/main_classes/model#transformers.PreTrainedModel) for PyTorch and [TFPreTrainedModel](https://huggingface.co/docs/transformers/v4.34.1/en/main_classes/model#transformers.TFPreTrainedModel) for TensorFlow.
* **tokenizer** ([PreTrainedTokenizer](https://huggingface.co/docs/transformers/v4.34.1/en/main_classes/tokenizer#transformers.PreTrainedTokenizer)) — The tokenizer that will be used by the pipeline to encode data for the model. This object inherits from [PreTrainedTokenizer](https://huggingface.co/docs/transformers/v4.34.1/en/main_classes/tokenizer#transformers.PreTrainedTokenizer).
* **modelcard** (`str` or `ModelCard`, *optional*) — Model card attributed to the model for this pipeline.
* **framework** (`str`, *optional*) — The framework to use, either `"pt"` for PyTorch or `"tf"` for TensorFlow. The specified framework must be installed.

  If no framework is specified, will default to the one currently installed. If no framework is specified and both frameworks are installed, will default to the framework of the `model`, or to PyTorch if no model is provided.
* **task** (`str`, defaults to `""`) — A task-identifier for the pipeline.
* **num\_workers** (`int`, *optional*, defaults to 8) — When the pipeline will use *DataLoader* (when passing a dataset, on GPU for a Pytorch model), the number of workers to be used.
* **batch\_size** (`int`, *optional*, defaults to 1) — When the pipeline will use *DataLoader* (when passing a dataset, on GPU for a Pytorch model), the size of the batch to use, for inference this is not always beneficial, please read [Batching with pipelines](https://huggingface.co/transformers/main_classes/pipelines.html#pipeline-batching) .
* **args\_parser** ([ArgumentHandler](https://huggingface.co/docs/transformers/v4.34.1/en/internal/pipelines_utils#transformers.pipelines.ArgumentHandler), *optional*) — Reference to the object in charge of parsing supplied pipeline parameters.
* **device** (`int`, *optional*, defaults to -1) — Device ordinal for CPU/GPU supports. Setting this to -1 will leverage CPU, a positive will run the model on the associated CUDA device id. You can pass native `torch.device` or a `str` too.
* **binary\_output** (`bool`, *optional*, defaults to `False`) — Flag indicating if the output the pipeline should happen in a binary format (i.e., pickle) or as raw text.

Zero shot audio classification pipeline using `ClapModel`. This pipeline predicts the class of an audio when you provide an audio and a set of `candidate_labels`.

Example:

Copied

```
>>> from transformers import pipeline
>>> from datasets import load_dataset

>>> dataset = load_dataset("ashraq/esc50")
>>> audio = next(iter(dataset["train"]["audio"]))["array"]
>>> classifier = pipeline(task="zero-shot-audio-classification", model="laion/clap-htsat-unfused")
>>> classifier(audio, candidate_labels=["Sound of a dog", "Sound of vaccum cleaner"])
[{'score': 0.9996, 'label': 'Sound of a dog'}, {'score': 0.0004, 'label': 'Sound of vaccum cleaner'}]
```

Learn more about the basics of using a pipeline in the [pipeline tutorial](https://huggingface.co/docs/transformers/pipeline_tutorial) This audio classification pipeline can currently be loaded from [pipeline()](https://huggingface.co/docs/transformers/v4.34.1/en/main_classes/pipelines#transformers.pipeline) using the following task identifier: `"zero-shot-audio-classification"`. See the list of available models on [boincai.com/models](https://huggingface.co/models?filter=zero-shot-audio-classification).

**\_\_call\_\_**

[\<source>](https://github.com/huggingface/transformers/blob/v4.34.1/src/transformers/pipelines/zero_shot_audio_classification.py#L64)

( audios: typing.Union\[numpy.ndarray, bytes, str]\*\*kwargs )

Parameters

* **audios** (`str`, `List[str]`, `np.array` or `List[np.array]`) — The pipeline handles three types of inputs:
  * A string containing a http link pointing to an audio
  * A string containing a local path to an audio
  * An audio loaded in numpy
* **candidate\_labels** (`List[str]`) — The candidate labels for this audio
* **hypothesis\_template** (`str`, *optional*, defaults to `"This is a sound of {}"`) — The sentence used in cunjunction with *candidate\_labels* to attempt the audio classification by replacing the placeholder with the candidate\_labels. Then likelihood is estimated by using logits\_per\_audio

Assign labels to the audio(s) passed as inputs.

### Computer vision

Pipelines available for computer vision tasks include the following.

#### DepthEstimationPipeline

#### class transformers.DepthEstimationPipeline

[\<source>](https://github.com/huggingface/transformers/blob/v4.34.1/src/transformers/pipelines/depth_estimation.py#L23)

( \*args\*\*kwargs )

Parameters

* **model** ([PreTrainedModel](https://huggingface.co/docs/transformers/v4.34.1/en/main_classes/model#transformers.PreTrainedModel) or [TFPreTrainedModel](https://huggingface.co/docs/transformers/v4.34.1/en/main_classes/model#transformers.TFPreTrainedModel)) — The model that will be used by the pipeline to make predictions. This needs to be a model inheriting from [PreTrainedModel](https://huggingface.co/docs/transformers/v4.34.1/en/main_classes/model#transformers.PreTrainedModel) for PyTorch and [TFPreTrainedModel](https://huggingface.co/docs/transformers/v4.34.1/en/main_classes/model#transformers.TFPreTrainedModel) for TensorFlow.
* **tokenizer** ([PreTrainedTokenizer](https://huggingface.co/docs/transformers/v4.34.1/en/main_classes/tokenizer#transformers.PreTrainedTokenizer)) — The tokenizer that will be used by the pipeline to encode data for the model. This object inherits from [PreTrainedTokenizer](https://huggingface.co/docs/transformers/v4.34.1/en/main_classes/tokenizer#transformers.PreTrainedTokenizer).
* **modelcard** (`str` or `ModelCard`, *optional*) — Model card attributed to the model for this pipeline.
* **framework** (`str`, *optional*) — The framework to use, either `"pt"` for PyTorch or `"tf"` for TensorFlow. The specified framework must be installed.

  If no framework is specified, will default to the one currently installed. If no framework is specified and both frameworks are installed, will default to the framework of the `model`, or to PyTorch if no model is provided.
* **task** (`str`, defaults to `""`) — A task-identifier for the pipeline.
* **num\_workers** (`int`, *optional*, defaults to 8) — When the pipeline will use *DataLoader* (when passing a dataset, on GPU for a Pytorch model), the number of workers to be used.
* **batch\_size** (`int`, *optional*, defaults to 1) — When the pipeline will use *DataLoader* (when passing a dataset, on GPU for a Pytorch model), the size of the batch to use, for inference this is not always beneficial, please read [Batching with pipelines](https://huggingface.co/transformers/main_classes/pipelines.html#pipeline-batching) .
* **args\_parser** ([ArgumentHandler](https://huggingface.co/docs/transformers/v4.34.1/en/internal/pipelines_utils#transformers.pipelines.ArgumentHandler), *optional*) — Reference to the object in charge of parsing supplied pipeline parameters.
* **device** (`int`, *optional*, defaults to -1) — Device ordinal for CPU/GPU supports. Setting this to -1 will leverage CPU, a positive will run the model on the associated CUDA device id. You can pass native `torch.device` or a `str` too.
* **binary\_output** (`bool`, *optional*, defaults to `False`) — Flag indicating if the output the pipeline should happen in a binary format (i.e., pickle) or as raw text.

Depth estimation pipeline using any `AutoModelForDepthEstimation`. This pipeline predicts the depth of an image.

Example:

Copied

```
>>> from transformers import pipeline

>>> depth_estimator = pipeline(task="depth-estimation", model="Intel/dpt-large")
>>> output = depth_estimator("http://images.cocodataset.org/val2017/000000039769.jpg")
>>> # This is a tensor with the values being the depth expressed in meters for each pixel
>>> output["predicted_depth"].shape
torch.Size([1, 384, 384])
```

Learn more about the basics of using a pipeline in the [pipeline tutorial](https://huggingface.co/docs/transformers/pipeline_tutorial)

This depth estimation pipeline can currently be loaded from [pipeline()](https://huggingface.co/docs/transformers/v4.34.1/en/main_classes/pipelines#transformers.pipeline) using the following task identifier: `"depth-estimation"`.

See the list of available models on [boincai.com/models](https://huggingface.co/models?filter=depth-estimation).

**\_\_call\_\_**

[\<source>](https://github.com/huggingface/transformers/blob/v4.34.1/src/transformers/pipelines/depth_estimation.py#L53)

( images: typing.Union\[str, typing.List\[str], ForwardRef('Image.Image'), typing.List\[ForwardRef('Image.Image')]]\*\*kwargs )

Parameters

* **images** (`str`, `List[str]`, `PIL.Image` or `List[PIL.Image]`) — The pipeline handles three types of images:

  * A string containing a http link pointing to an image
  * A string containing a local path to an image
  * An image loaded in PIL directly

  The pipeline accepts either a single image or a batch of images, which must then be passed as a string. Images in a batch must all be in the same format: all as http links, all as local paths, or all as PIL images.
* **top\_k** (`int`, *optional*, defaults to 5) — The number of top labels that will be returned by the pipeline. If the provided number is higher than the number of labels available in the model configuration, it will default to the number of labels.
* **timeout** (`float`, *optional*, defaults to None) — The maximum time in seconds to wait for fetching images from the web. If None, no timeout is set and the call may block forever.

Assign labels to the image(s) passed as inputs.

#### ImageClassificationPipeline

#### class transformers.ImageClassificationPipeline

[\<source>](https://github.com/huggingface/transformers/blob/v4.34.1/src/transformers/pipelines/image_classification.py#L32)

( \*args\*\*kwargs )

Parameters

* **model** ([PreTrainedModel](https://huggingface.co/docs/transformers/v4.34.1/en/main_classes/model#transformers.PreTrainedModel) or [TFPreTrainedModel](https://huggingface.co/docs/transformers/v4.34.1/en/main_classes/model#transformers.TFPreTrainedModel)) — The model that will be used by the pipeline to make predictions. This needs to be a model inheriting from [PreTrainedModel](https://huggingface.co/docs/transformers/v4.34.1/en/main_classes/model#transformers.PreTrainedModel) for PyTorch and [TFPreTrainedModel](https://huggingface.co/docs/transformers/v4.34.1/en/main_classes/model#transformers.TFPreTrainedModel) for TensorFlow.
* **tokenizer** ([PreTrainedTokenizer](https://huggingface.co/docs/transformers/v4.34.1/en/main_classes/tokenizer#transformers.PreTrainedTokenizer)) — The tokenizer that will be used by the pipeline to encode data for the model. This object inherits from [PreTrainedTokenizer](https://huggingface.co/docs/transformers/v4.34.1/en/main_classes/tokenizer#transformers.PreTrainedTokenizer).
* **modelcard** (`str` or `ModelCard`, *optional*) — Model card attributed to the model for this pipeline.
* **framework** (`str`, *optional*) — The framework to use, either `"pt"` for PyTorch or `"tf"` for TensorFlow. The specified framework must be installed.

  If no framework is specified, will default to the one currently installed. If no framework is specified and both frameworks are installed, will default to the framework of the `model`, or to PyTorch if no model is provided.
* **task** (`str`, defaults to `""`) — A task-identifier for the pipeline.
* **num\_workers** (`int`, *optional*, defaults to 8) — When the pipeline will use *DataLoader* (when passing a dataset, on GPU for a Pytorch model), the number of workers to be used.
* **batch\_size** (`int`, *optional*, defaults to 1) — When the pipeline will use *DataLoader* (when passing a dataset, on GPU for a Pytorch model), the size of the batch to use, for inference this is not always beneficial, please read [Batching with pipelines](https://huggingface.co/transformers/main_classes/pipelines.html#pipeline-batching) .
* **args\_parser** ([ArgumentHandler](https://huggingface.co/docs/transformers/v4.34.1/en/internal/pipelines_utils#transformers.pipelines.ArgumentHandler), *optional*) — Reference to the object in charge of parsing supplied pipeline parameters.
* **device** (`int`, *optional*, defaults to -1) — Device ordinal for CPU/GPU supports. Setting this to -1 will leverage CPU, a positive will run the model on the associated CUDA device id. You can pass native `torch.device` or a `str` too.
* **binary\_output** (`bool`, *optional*, defaults to `False`) — Flag indicating if the output the pipeline should happen in a binary format (i.e., pickle) or as raw text.

Image classification pipeline using any `AutoModelForImageClassification`. This pipeline predicts the class of an image.

Example:

Copied

```
>>> from transformers import pipeline

>>> classifier = pipeline(model="microsoft/beit-base-patch16-224-pt22k-ft22k")
>>> classifier("https://boincai.com/datasets/Narsil/image_dummy/raw/main/parrots.png")
[{'score': 0.442, 'label': 'macaw'}, {'score': 0.088, 'label': 'popinjay'}, {'score': 0.075, 'label': 'parrot'}, {'score': 0.073, 'label': 'parodist, lampooner'}, {'score': 0.046, 'label': 'poll, poll_parrot'}]
```

Learn more about the basics of using a pipeline in the [pipeline tutorial](https://huggingface.co/docs/transformers/pipeline_tutorial)

This image classification pipeline can currently be loaded from [pipeline()](https://huggingface.co/docs/transformers/v4.34.1/en/main_classes/pipelines#transformers.pipeline) using the following task identifier: `"image-classification"`.

See the list of available models [boincai.com/models](https://huggingface.co/models?filter=image-classification).

**\_\_call\_\_**

[\<source>](https://github.com/huggingface/transformers/blob/v4.34.1/src/transformers/pipelines/image_classification.py#L74)

( images: typing.Union\[str, typing.List\[str], ForwardRef('Image.Image'), typing.List\[ForwardRef('Image.Image')]]\*\*kwargs )

Parameters

* **images** (`str`, `List[str]`, `PIL.Image` or `List[PIL.Image]`) — The pipeline handles three types of images:

  * A string containing a http link pointing to an image
  * A string containing a local path to an image
  * An image loaded in PIL directly

  The pipeline accepts either a single image or a batch of images, which must then be passed as a string. Images in a batch must all be in the same format: all as http links, all as local paths, or all as PIL images.
* **top\_k** (`int`, *optional*, defaults to 5) — The number of top labels that will be returned by the pipeline. If the provided number is higher than the number of labels available in the model configuration, it will default to the number of labels.
* **timeout** (`float`, *optional*, defaults to None) — The maximum time in seconds to wait for fetching images from the web. If None, no timeout is set and the call may block forever.

Assign labels to the image(s) passed as inputs.

#### ImageSegmentationPipeline

#### class transformers.ImageSegmentationPipeline

[\<source>](https://github.com/huggingface/transformers/blob/v4.34.1/src/transformers/pipelines/image_segmentation.py#L31)

( \*args\*\*kwargs )

Parameters

* **model** ([PreTrainedModel](https://huggingface.co/docs/transformers/v4.34.1/en/main_classes/model#transformers.PreTrainedModel) or [TFPreTrainedModel](https://huggingface.co/docs/transformers/v4.34.1/en/main_classes/model#transformers.TFPreTrainedModel)) — The model that will be used by the pipeline to make predictions. This needs to be a model inheriting from [PreTrainedModel](https://huggingface.co/docs/transformers/v4.34.1/en/main_classes/model#transformers.PreTrainedModel) for PyTorch and [TFPreTrainedModel](https://huggingface.co/docs/transformers/v4.34.1/en/main_classes/model#transformers.TFPreTrainedModel) for TensorFlow.
* **tokenizer** ([PreTrainedTokenizer](https://huggingface.co/docs/transformers/v4.34.1/en/main_classes/tokenizer#transformers.PreTrainedTokenizer)) — The tokenizer that will be used by the pipeline to encode data for the model. This object inherits from [PreTrainedTokenizer](https://huggingface.co/docs/transformers/v4.34.1/en/main_classes/tokenizer#transformers.PreTrainedTokenizer).
* **modelcard** (`str` or `ModelCard`, *optional*) — Model card attributed to the model for this pipeline.
* **framework** (`str`, *optional*) — The framework to use, either `"pt"` for PyTorch or `"tf"` for TensorFlow. The specified framework must be installed.

  If no framework is specified, will default to the one currently installed. If no framework is specified and both frameworks are installed, will default to the framework of the `model`, or to PyTorch if no model is provided.
* **task** (`str`, defaults to `""`) — A task-identifier for the pipeline.
* **num\_workers** (`int`, *optional*, defaults to 8) — When the pipeline will use *DataLoader* (when passing a dataset, on GPU for a Pytorch model), the number of workers to be used.
* **batch\_size** (`int`, *optional*, defaults to 1) — When the pipeline will use *DataLoader* (when passing a dataset, on GPU for a Pytorch model), the size of the batch to use, for inference this is not always beneficial, please read [Batching with pipelines](https://huggingface.co/transformers/main_classes/pipelines.html#pipeline-batching) .
* **args\_parser** ([ArgumentHandler](https://huggingface.co/docs/transformers/v4.34.1/en/internal/pipelines_utils#transformers.pipelines.ArgumentHandler), *optional*) — Reference to the object in charge of parsing supplied pipeline parameters.
* **device** (`int`, *optional*, defaults to -1) — Device ordinal for CPU/GPU supports. Setting this to -1 will leverage CPU, a positive will run the model on the associated CUDA device id. You can pass native `torch.device` or a `str` too.
* **binary\_output** (`bool`, *optional*, defaults to `False`) — Flag indicating if the output the pipeline should happen in a binary format (i.e., pickle) or as raw text.

Image segmentation pipeline using any `AutoModelForXXXSegmentation`. This pipeline predicts masks of objects and their classes.

Example:

Copied

```
>>> from transformers import pipeline

>>> segmenter = pipeline(model="facebook/detr-resnet-50-panoptic")
>>> segments = segmenter("https://boincai.com/datasets/Narsil/image_dummy/raw/main/parrots.png")
>>> len(segments)
2

>>> segments[0]["label"]
'bird'

>>> segments[1]["label"]
'bird'

>>> type(segments[0]["mask"])  # This is a black and white mask showing where is the bird on the original image.
<class 'PIL.Image.Image'>

>>> segments[0]["mask"].size
(768, 512)
```

This image segmentation pipeline can currently be loaded from [pipeline()](https://huggingface.co/docs/transformers/v4.34.1/en/main_classes/pipelines#transformers.pipeline) using the following task identifier: `"image-segmentation"`.

See the list of available models on [boincai.com/models](https://huggingface.co/models?filter=image-segmentation).

**\_\_call\_\_**

[\<source>](https://github.com/huggingface/transformers/blob/v4.34.1/src/transformers/pipelines/image_segmentation.py#L97)

( images\*\*kwargs )

Parameters

* **images** (`str`, `List[str]`, `PIL.Image` or `List[PIL.Image]`) — The pipeline handles three types of images:

  * A string containing an HTTP(S) link pointing to an image
  * A string containing a local path to an image
  * An image loaded in PIL directly

  The pipeline accepts either a single image or a batch of images. Images in a batch must all be in the same format: all as HTTP(S) links, all as local paths, or all as PIL images.
* **subtask** (`str`, *optional*) — Segmentation task to be performed, choose \[`semantic`, `instance` and `panoptic`] depending on model capabilities. If not set, the pipeline will attempt tp resolve in the following order: `panoptic`, `instance`, `semantic`.
* **threshold** (`float`, *optional*, defaults to 0.9) — Probability threshold to filter out predicted masks.
* **mask\_threshold** (`float`, *optional*, defaults to 0.5) — Threshold to use when turning the predicted masks into binary values.
* **overlap\_mask\_area\_threshold** (`float`, *optional*, defaults to 0.5) — Mask overlap threshold to eliminate small, disconnected segments.
* **timeout** (`float`, *optional*, defaults to None) — The maximum time in seconds to wait for fetching images from the web. If None, no timeout is set and the call may block forever.

Perform segmentation (detect masks & classes) in the image(s) passed as inputs.

#### ImageToImagePipeline

#### class transformers.ImageToImagePipeline

[\<source>](https://github.com/huggingface/transformers/blob/v4.34.1/src/transformers/pipelines/image_to_image.py#L40)

( \*args\*\*kwargs )

Parameters

* **model** ([PreTrainedModel](https://huggingface.co/docs/transformers/v4.34.1/en/main_classes/model#transformers.PreTrainedModel) or [TFPreTrainedModel](https://huggingface.co/docs/transformers/v4.34.1/en/main_classes/model#transformers.TFPreTrainedModel)) — The model that will be used by the pipeline to make predictions. This needs to be a model inheriting from [PreTrainedModel](https://huggingface.co/docs/transformers/v4.34.1/en/main_classes/model#transformers.PreTrainedModel) for PyTorch and [TFPreTrainedModel](https://huggingface.co/docs/transformers/v4.34.1/en/main_classes/model#transformers.TFPreTrainedModel) for TensorFlow.
* **tokenizer** ([PreTrainedTokenizer](https://huggingface.co/docs/transformers/v4.34.1/en/main_classes/tokenizer#transformers.PreTrainedTokenizer)) — The tokenizer that will be used by the pipeline to encode data for the model. This object inherits from [PreTrainedTokenizer](https://huggingface.co/docs/transformers/v4.34.1/en/main_classes/tokenizer#transformers.PreTrainedTokenizer).
* **modelcard** (`str` or `ModelCard`, *optional*) — Model card attributed to the model for this pipeline.
* **framework** (`str`, *optional*) — The framework to use, either `"pt"` for PyTorch or `"tf"` for TensorFlow. The specified framework must be installed.

  If no framework is specified, will default to the one currently installed. If no framework is specified and both frameworks are installed, will default to the framework of the `model`, or to PyTorch if no model is provided.
* **task** (`str`, defaults to `""`) — A task-identifier for the pipeline.
* **num\_workers** (`int`, *optional*, defaults to 8) — When the pipeline will use *DataLoader* (when passing a dataset, on GPU for a Pytorch model), the number of workers to be used.
* **batch\_size** (`int`, *optional*, defaults to 1) — When the pipeline will use *DataLoader* (when passing a dataset, on GPU for a Pytorch model), the size of the batch to use, for inference this is not always beneficial, please read [Batching with pipelines](https://huggingface.co/transformers/main_classes/pipelines.html#pipeline-batching) .
* **args\_parser** ([ArgumentHandler](https://huggingface.co/docs/transformers/v4.34.1/en/internal/pipelines_utils#transformers.pipelines.ArgumentHandler), *optional*) — Reference to the object in charge of parsing supplied pipeline parameters.
* **device** (`int`, *optional*, defaults to -1) — Device ordinal for CPU/GPU supports. Setting this to -1 will leverage CPU, a positive will run the model on the associated CUDA device id. You can pass native `torch.device` or a `str` too.
* **binary\_output** (`bool`, *optional*, defaults to `False`) — Flag indicating if the output the pipeline should happen in a binary format (i.e., pickle) or as raw text.

Image to Image pipeline using any `AutoModelForImageToImage`. This pipeline generates an image based on a previous image input.

Example:

Copied

```
>>> from PIL import Image
>>> import requests

>>> from transformers import pipeline

>>> upscaler = pipeline("image-to-image", model="caidas/swin2SR-classical-sr-x2-64")
>>> img = Image.open(requests.get("http://images.cocodataset.org/val2017/000000039769.jpg", stream=True).raw)
>>> img = img.resize((64, 64))
>>> upscaled_img = upscaler(img)
>>> img.size
(64, 64)

>>> upscaled_img.size
(144, 144)
```

This image to image pipeline can currently be loaded from [pipeline()](https://huggingface.co/docs/transformers/v4.34.1/en/main_classes/pipelines#transformers.pipeline) using the following task identifier: `"image-to-image"`.

See the list of available models on [boincai.com/models](https://huggingface.co/models?filter=image-to-image).

**\_\_call\_\_**

[\<source>](https://github.com/huggingface/transformers/blob/v4.34.1/src/transformers/pipelines/image_to_image.py#L87)

( images: typing.Union\[str, typing.List\[str], ForwardRef('Image.Image'), typing.List\[ForwardRef('Image.Image')]]\*\*kwargs )

Parameters

* **images** (`str`, `List[str]`, `PIL.Image` or `List[PIL.Image]`) — The pipeline handles three types of images:

  * A string containing a http link pointing to an image
  * A string containing a local path to an image
  * An image loaded in PIL directly

  The pipeline accepts either a single image or a batch of images, which must then be passed as a string. Images in a batch must all be in the same format: all as http links, all as local paths, or all as PIL images.
* **timeout** (`float`, *optional*, defaults to None) — The maximum time in seconds to wait for fetching images from the web. If None, no timeout is used and the call may block forever.

Transform the image(s) passed as inputs.

#### ObjectDetectionPipeline

#### class transformers.ObjectDetectionPipeline

[\<source>](https://github.com/huggingface/transformers/blob/v4.34.1/src/transformers/pipelines/object_detection.py#L27)

( \*args\*\*kwargs )

Parameters

* **model** ([PreTrainedModel](https://huggingface.co/docs/transformers/v4.34.1/en/main_classes/model#transformers.PreTrainedModel) or [TFPreTrainedModel](https://huggingface.co/docs/transformers/v4.34.1/en/main_classes/model#transformers.TFPreTrainedModel)) — The model that will be used by the pipeline to make predictions. This needs to be a model inheriting from [PreTrainedModel](https://huggingface.co/docs/transformers/v4.34.1/en/main_classes/model#transformers.PreTrainedModel) for PyTorch and [TFPreTrainedModel](https://huggingface.co/docs/transformers/v4.34.1/en/main_classes/model#transformers.TFPreTrainedModel) for TensorFlow.
* **tokenizer** ([PreTrainedTokenizer](https://huggingface.co/docs/transformers/v4.34.1/en/main_classes/tokenizer#transformers.PreTrainedTokenizer)) — The tokenizer that will be used by the pipeline to encode data for the model. This object inherits from [PreTrainedTokenizer](https://huggingface.co/docs/transformers/v4.34.1/en/main_classes/tokenizer#transformers.PreTrainedTokenizer).
* **modelcard** (`str` or `ModelCard`, *optional*) — Model card attributed to the model for this pipeline.
* **framework** (`str`, *optional*) — The framework to use, either `"pt"` for PyTorch or `"tf"` for TensorFlow. The specified framework must be installed.

  If no framework is specified, will default to the one currently installed. If no framework is specified and both frameworks are installed, will default to the framework of the `model`, or to PyTorch if no model is provided.
* **task** (`str`, defaults to `""`) — A task-identifier for the pipeline.
* **num\_workers** (`int`, *optional*, defaults to 8) — When the pipeline will use *DataLoader* (when passing a dataset, on GPU for a Pytorch model), the number of workers to be used.
* **batch\_size** (`int`, *optional*, defaults to 1) — When the pipeline will use *DataLoader* (when passing a dataset, on GPU for a Pytorch model), the size of the batch to use, for inference this is not always beneficial, please read [Batching with pipelines](https://huggingface.co/transformers/main_classes/pipelines.html#pipeline-batching) .
* **args\_parser** ([ArgumentHandler](https://huggingface.co/docs/transformers/v4.34.1/en/internal/pipelines_utils#transformers.pipelines.ArgumentHandler), *optional*) — Reference to the object in charge of parsing supplied pipeline parameters.
* **device** (`int`, *optional*, defaults to -1) — Device ordinal for CPU/GPU supports. Setting this to -1 will leverage CPU, a positive will run the model on the associated CUDA device id. You can pass native `torch.device` or a `str` too.
* **binary\_output** (`bool`, *optional*, defaults to `False`) — Flag indicating if the output the pipeline should happen in a binary format (i.e., pickle) or as raw text.

Object detection pipeline using any `AutoModelForObjectDetection`. This pipeline predicts bounding boxes of objects and their classes.

Example:

Copied

```
>>> from transformers import pipeline

>>> detector = pipeline(model="facebook/detr-resnet-50")
>>> detector("https://boincai.com/datasets/Narsil/image_dummy/raw/main/parrots.png")
[{'score': 0.997, 'label': 'bird', 'box': {'xmin': 69, 'ymin': 171, 'xmax': 396, 'ymax': 507}}, {'score': 0.999, 'label': 'bird', 'box': {'xmin': 398, 'ymin': 105, 'xmax': 767, 'ymax': 507}}]

>>> # x, y  are expressed relative to the top left hand corner.
```

Learn more about the basics of using a pipeline in the [pipeline tutorial](https://huggingface.co/docs/transformers/pipeline_tutorial)

This object detection pipeline can currently be loaded from [pipeline()](https://huggingface.co/docs/transformers/v4.34.1/en/main_classes/pipelines#transformers.pipeline) using the following task identifier: `"object-detection"`.

See the list of available models on  [boincai.com/models](https://huggingface.co/models?filter=image-to-image)..

**\_\_call\_\_**

[\<source>](https://github.com/huggingface/transformers/blob/v4.34.1/src/transformers/pipelines/object_detection.py#L72)

( \*args\*\*kwargs )

Parameters

* **images** (`str`, `List[str]`, `PIL.Image` or `List[PIL.Image]`) — The pipeline handles three types of images:

  * A string containing an HTTP(S) link pointing to an image
  * A string containing a local path to an image
  * An image loaded in PIL directly

  The pipeline accepts either a single image or a batch of images. Images in a batch must all be in the same format: all as HTTP(S) links, all as local paths, or all as PIL images.
* **threshold** (`float`, *optional*, defaults to 0.9) — The probability necessary to make a prediction.
* **timeout** (`float`, *optional*, defaults to None) — The maximum time in seconds to wait for fetching images from the web. If None, no timeout is set and the call may block forever.

Detect objects (bounding boxes & classes) in the image(s) passed as inputs.

#### VideoClassificationPipeline

#### class transformers.VideoClassificationPipeline

[\<source>](https://github.com/huggingface/transformers/blob/v4.34.1/src/transformers/pipelines/video_classification.py#L22)

( \*args\*\*kwargs )

Parameters

* **model** ([PreTrainedModel](https://huggingface.co/docs/transformers/v4.34.1/en/main_classes/model#transformers.PreTrainedModel) or [TFPreTrainedModel](https://huggingface.co/docs/transformers/v4.34.1/en/main_classes/model#transformers.TFPreTrainedModel)) — The model that will be used by the pipeline to make predictions. This needs to be a model inheriting from [PreTrainedModel](https://huggingface.co/docs/transformers/v4.34.1/en/main_classes/model#transformers.PreTrainedModel) for PyTorch and [TFPreTrainedModel](https://huggingface.co/docs/transformers/v4.34.1/en/main_classes/model#transformers.TFPreTrainedModel) for TensorFlow.
* **tokenizer** ([PreTrainedTokenizer](https://huggingface.co/docs/transformers/v4.34.1/en/main_classes/tokenizer#transformers.PreTrainedTokenizer)) — The tokenizer that will be used by the pipeline to encode data for the model. This object inherits from [PreTrainedTokenizer](https://huggingface.co/docs/transformers/v4.34.1/en/main_classes/tokenizer#transformers.PreTrainedTokenizer).
* **modelcard** (`str` or `ModelCard`, *optional*) — Model card attributed to the model for this pipeline.
* **framework** (`str`, *optional*) — The framework to use, either `"pt"` for PyTorch or `"tf"` for TensorFlow. The specified framework must be installed.

  If no framework is specified, will default to the one currently installed. If no framework is specified and both frameworks are installed, will default to the framework of the `model`, or to PyTorch if no model is provided.
* **task** (`str`, defaults to `""`) — A task-identifier for the pipeline.
* **num\_workers** (`int`, *optional*, defaults to 8) — When the pipeline will use *DataLoader* (when passing a dataset, on GPU for a Pytorch model), the number of workers to be used.
* **batch\_size** (`int`, *optional*, defaults to 1) — When the pipeline will use *DataLoader* (when passing a dataset, on GPU for a Pytorch model), the size of the batch to use, for inference this is not always beneficial, please read [Batching with pipelines](https://huggingface.co/transformers/main_classes/pipelines.html#pipeline-batching) .
* **args\_parser** ([ArgumentHandler](https://huggingface.co/docs/transformers/v4.34.1/en/internal/pipelines_utils#transformers.pipelines.ArgumentHandler), *optional*) — Reference to the object in charge of parsing supplied pipeline parameters.
* **device** (`int`, *optional*, defaults to -1) — Device ordinal for CPU/GPU supports. Setting this to -1 will leverage CPU, a positive will run the model on the associated CUDA device id. You can pass native `torch.device` or a `str` too.
* **binary\_output** (`bool`, *optional*, defaults to `False`) — Flag indicating if the output the pipeline should happen in a binary format (i.e., pickle) or as raw text.

Video classification pipeline using any `AutoModelForVideoClassification`. This pipeline predicts the class of a video.

This video classification pipeline can currently be loaded from [pipeline()](https://huggingface.co/docs/transformers/v4.34.1/en/main_classes/pipelines#transformers.pipeline) using the following task identifier: `"video-classification"`.

See the list of available models on  [boincai.com/models](https://huggingface.co/models?filter=image-to-image)..

**\_\_call\_\_**

[\<source>](https://github.com/huggingface/transformers/blob/v4.34.1/src/transformers/pipelines/video_classification.py#L51)

( videos: typing.Union\[str, typing.List\[str]]\*\*kwargs )

Parameters

* **videos** (`str`, `List[str]`) — The pipeline handles three types of videos:

  * A string containing a http link pointing to a video
  * A string containing a local path to a video

  The pipeline accepts either a single video or a batch of videos, which must then be passed as a string. Videos in a batch must all be in the same format: all as http links or all as local paths.
* **top\_k** (`int`, *optional*, defaults to 5) — The number of top labels that will be returned by the pipeline. If the provided number is higher than the number of labels available in the model configuration, it will default to the number of labels.
* **num\_frames** (`int`, *optional*, defaults to `self.model.config.num_frames`) — The number of frames sampled from the video to run the classification on. If not provided, will default to the number of frames specified in the model configuration.
* **frame\_sampling\_rate** (`int`, *optional*, defaults to 1) — The sampling rate used to select frames from the video. If not provided, will default to 1, i.e. every frame will be used.

Assign labels to the video(s) passed as inputs.

#### ZeroShotImageClassificationPipeline

#### class transformers.ZeroShotImageClassificationPipeline

[\<source>](https://github.com/huggingface/transformers/blob/v4.34.1/src/transformers/pipelines/zero_shot_image_classification.py#L31)

( \*\*kwargs )

Parameters

* **model** ([PreTrainedModel](https://huggingface.co/docs/transformers/v4.34.1/en/main_classes/model#transformers.PreTrainedModel) or [TFPreTrainedModel](https://huggingface.co/docs/transformers/v4.34.1/en/main_classes/model#transformers.TFPreTrainedModel)) — The model that will be used by the pipeline to make predictions. This needs to be a model inheriting from [PreTrainedModel](https://huggingface.co/docs/transformers/v4.34.1/en/main_classes/model#transformers.PreTrainedModel) for PyTorch and [TFPreTrainedModel](https://huggingface.co/docs/transformers/v4.34.1/en/main_classes/model#transformers.TFPreTrainedModel) for TensorFlow.
* **tokenizer** ([PreTrainedTokenizer](https://huggingface.co/docs/transformers/v4.34.1/en/main_classes/tokenizer#transformers.PreTrainedTokenizer)) — The tokenizer that will be used by the pipeline to encode data for the model. This object inherits from [PreTrainedTokenizer](https://huggingface.co/docs/transformers/v4.34.1/en/main_classes/tokenizer#transformers.PreTrainedTokenizer).
* **modelcard** (`str` or `ModelCard`, *optional*) — Model card attributed to the model for this pipeline.
* **framework** (`str`, *optional*) — The framework to use, either `"pt"` for PyTorch or `"tf"` for TensorFlow. The specified framework must be installed.

  If no framework is specified, will default to the one currently installed. If no framework is specified and both frameworks are installed, will default to the framework of the `model`, or to PyTorch if no model is provided.
* **task** (`str`, defaults to `""`) — A task-identifier for the pipeline.
* **num\_workers** (`int`, *optional*, defaults to 8) — When the pipeline will use *DataLoader* (when passing a dataset, on GPU for a Pytorch model), the number of workers to be used.
* **batch\_size** (`int`, *optional*, defaults to 1) — When the pipeline will use *DataLoader* (when passing a dataset, on GPU for a Pytorch model), the size of the batch to use, for inference this is not always beneficial, please read [Batching with pipelines](https://huggingface.co/transformers/main_classes/pipelines.html#pipeline-batching) .
* **args\_parser** ([ArgumentHandler](https://huggingface.co/docs/transformers/v4.34.1/en/internal/pipelines_utils#transformers.pipelines.ArgumentHandler), *optional*) — Reference to the object in charge of parsing supplied pipeline parameters.
* **device** (`int`, *optional*, defaults to -1) — Device ordinal for CPU/GPU supports. Setting this to -1 will leverage CPU, a positive will run the model on the associated CUDA device id. You can pass native `torch.device` or a `str` too.
* **binary\_output** (`bool`, *optional*, defaults to `False`) — Flag indicating if the output the pipeline should happen in a binary format (i.e., pickle) or as raw text.

Zero shot image classification pipeline using `CLIPModel`. This pipeline predicts the class of an image when you provide an image and a set of `candidate_labels`.

Example:

Copied

```
>>> from transformers import pipeline

>>> classifier = pipeline(model="openai/clip-vit-large-patch14")
>>> classifier(
...     "https:// 
boincai.com/datasets/Narsil/image_dummy/raw/main/parrots.png",
...     candidate_labels=["animals", "humans", "landscape"],
... )
[{'score': 0.965, 'label': 'animals'}, {'score': 0.03, 'label': 'humans'}, {'score': 0.005, 'label': 'landscape'}]

>>> classifier(
...     "https:// 
boincai.com/datasets/Narsil/image_dummy/raw/main/parrots.png",
...     candidate_labels=["black and white", "photorealist", "painting"],
... )
[{'score': 0.996, 'label': 'black and white'}, {'score': 0.003, 'label': 'photorealist'}, {'score': 0.0, 'label': 'painting'}]
```

Learn more about the basics of using a pipeline in the [pipeline tutorial](https://huggingface.co/docs/transformers/pipeline_tutorial)

This image classification pipeline can currently be loaded from [pipeline()](https://huggingface.co/docs/transformers/v4.34.1/en/main_classes/pipelines#transformers.pipeline) using the following task identifier: `"zero-shot-image-classification"`.

See the list of available models on  [boincai.com/models](https://huggingface.co/models?filter=image-to-image)..

**\_\_call\_\_**

[\<source>](https://github.com/huggingface/transformers/blob/v4.34.1/src/transformers/pipelines/zero_shot_image_classification.py#L74)

( images: typing.Union\[str, typing.List\[str], ForwardRef('Image'), typing.List\[ForwardRef('Image')]]\*\*kwargs )

Parameters

* **images** (`str`, `List[str]`, `PIL.Image` or `List[PIL.Image]`) — The pipeline handles three types of images:
  * A string containing a http link pointing to an image
  * A string containing a local path to an image
  * An image loaded in PIL directly
* **candidate\_labels** (`List[str]`) — The candidate labels for this image
* **hypothesis\_template** (`str`, *optional*, defaults to `"This is a photo of {}"`) — The sentence used in cunjunction with *candidate\_labels* to attempt the image classification by replacing the placeholder with the candidate\_labels. Then likelihood is estimated by using logits\_per\_image
* **timeout** (`float`, *optional*, defaults to None) — The maximum time in seconds to wait for fetching images from the web. If None, no timeout is set and the call may block forever.

Assign labels to the image(s) passed as inputs.

#### ZeroShotObjectDetectionPipeline

#### class transformers.ZeroShotObjectDetectionPipeline

[\<source>](https://github.com/huggingface/transformers/blob/v4.34.1/src/transformers/pipelines/zero_shot_object_detection.py#L23)

( \*\*kwargs )

Parameters

* **model** ([PreTrainedModel](https://huggingface.co/docs/transformers/v4.34.1/en/main_classes/model#transformers.PreTrainedModel) or [TFPreTrainedModel](https://huggingface.co/docs/transformers/v4.34.1/en/main_classes/model#transformers.TFPreTrainedModel)) — The model that will be used by the pipeline to make predictions. This needs to be a model inheriting from [PreTrainedModel](https://huggingface.co/docs/transformers/v4.34.1/en/main_classes/model#transformers.PreTrainedModel) for PyTorch and [TFPreTrainedModel](https://huggingface.co/docs/transformers/v4.34.1/en/main_classes/model#transformers.TFPreTrainedModel) for TensorFlow.
* **tokenizer** ([PreTrainedTokenizer](https://huggingface.co/docs/transformers/v4.34.1/en/main_classes/tokenizer#transformers.PreTrainedTokenizer)) — The tokenizer that will be used by the pipeline to encode data for the model. This object inherits from [PreTrainedTokenizer](https://huggingface.co/docs/transformers/v4.34.1/en/main_classes/tokenizer#transformers.PreTrainedTokenizer).
* **modelcard** (`str` or `ModelCard`, *optional*) — Model card attributed to the model for this pipeline.
* **framework** (`str`, *optional*) — The framework to use, either `"pt"` for PyTorch or `"tf"` for TensorFlow. The specified framework must be installed.

  If no framework is specified, will default to the one currently installed. If no framework is specified and both frameworks are installed, will default to the framework of the `model`, or to PyTorch if no model is provided.
* **task** (`str`, defaults to `""`) — A task-identifier for the pipeline.
* **num\_workers** (`int`, *optional*, defaults to 8) — When the pipeline will use *DataLoader* (when passing a dataset, on GPU for a Pytorch model), the number of workers to be used.
* **batch\_size** (`int`, *optional*, defaults to 1) — When the pipeline will use *DataLoader* (when passing a dataset, on GPU for a Pytorch model), the size of the batch to use, for inference this is not always beneficial, please read [Batching with pipelines](https://huggingface.co/transformers/main_classes/pipelines.html#pipeline-batching) .
* **args\_parser** ([ArgumentHandler](https://huggingface.co/docs/transformers/v4.34.1/en/internal/pipelines_utils#transformers.pipelines.ArgumentHandler), *optional*) — Reference to the object in charge of parsing supplied pipeline parameters.
* **device** (`int`, *optional*, defaults to -1) — Device ordinal for CPU/GPU supports. Setting this to -1 will leverage CPU, a positive will run the model on the associated CUDA device id. You can pass native `torch.device` or a `str` too.
* **binary\_output** (`bool`, *optional*, defaults to `False`) — Flag indicating if the output the pipeline should happen in a binary format (i.e., pickle) or as raw text.

Zero shot object detection pipeline using `OwlViTForObjectDetection`. This pipeline predicts bounding boxes of objects when you provide an image and a set of `candidate_labels`.

Example:

Copied

```
>>> from transformers import pipeline

>>> detector = pipeline(model="google/owlvit-base-patch32", task="zero-shot-object-detection")
>>> detector(
...     "http://images.cocodataset.org/val2017/000000039769.jpg",
...     candidate_labels=["cat", "couch"],
... )
[{'score': 0.287, 'label': 'cat', 'box': {'xmin': 324, 'ymin': 20, 'xmax': 640, 'ymax': 373}}, {'score': 0.254, 'label': 'cat', 'box': {'xmin': 1, 'ymin': 55, 'xmax': 315, 'ymax': 472}}, {'score': 0.121, 'label': 'couch', 'box': {'xmin': 4, 'ymin': 0, 'xmax': 642, 'ymax': 476}}]

>>> detector(
...     "https:// boincai.com/datasets/Narsil/image_dummy/raw/main/parrots.png",
...     candidate_labels=["head", "bird"],
... )
[{'score': 0.119, 'label': 'bird', 'box': {'xmin': 71, 'ymin': 170, 'xmax': 410, 'ymax': 508}}]
```

Learn more about the basics of using a pipeline in the [pipeline tutorial](https://huggingface.co/docs/transformers/pipeline_tutorial)

This object detection pipeline can currently be loaded from [pipeline()](https://huggingface.co/docs/transformers/v4.34.1/en/main_classes/pipelines#transformers.pipeline) using the following task identifier: `"zero-shot-object-detection"`.

See the list of available models on  [boincai.com/models](https://huggingface.co/models?filter=image-to-image)..

**\_\_call\_\_**

[\<source>](https://github.com/huggingface/transformers/blob/v4.34.1/src/transformers/pipelines/zero_shot_object_detection.py#L65)

( image: typing.Union\[str, ForwardRef('Image.Image'), typing.List\[typing.Dict\[str, typing.Any]]]candidate\_labels: typing.Union\[str, typing.List\[str]] = None\*\*kwargs )

Parameters

* **image** (`str`, `PIL.Image` or `List[Dict[str, Any]]`) — The pipeline handles three types of images:

  * A string containing an http url pointing to an image
  * A string containing a local path to an image
  * An image loaded in PIL directly

  You can use this parameter to send directly a list of images, or a dataset or a generator like so:

Detect objects (bounding boxes & classes) in the image(s) passed as inputs.

### Natural Language Processing

Pipelines available for natural language processing tasks include the following.

#### ConversationalPipeline

#### class transformers.Conversation

[\<source>](https://github.com/huggingface/transformers/blob/v4.34.1/src/transformers/pipelines/conversational.py#L18)

( messages: typing.Union\[str, typing.List\[typing.Dict\[str, str]]] = Noneconversation\_id: UUID = None\*\*deprecated\_kwargs )

Parameters

* **messages** (Union\[str, List\[Dict\[str, str]]], *optional*) — The initial messages to start the conversation, either a string, or a list of dicts containing “role” and “content” keys. If a string is passed, it is interpreted as a single message with the “user” role.
* **conversation\_id** (`uuid.UUID`, *optional*) — Unique identifier for the conversation. If not provided, a random UUID4 id will be assigned to the conversation.

Utility class containing a conversation and its history. This class is meant to be used as an input to the [ConversationalPipeline](https://huggingface.co/docs/transformers/v4.34.1/en/main_classes/pipelines#transformers.ConversationalPipeline). The conversation contains several utility functions to manage the addition of new user inputs and generated model responses.

Usage:

Copied

```
conversation = Conversation("Going to the movies tonight - any suggestions?")
conversation.add_message({"role": "assistant", "content": "The Big lebowski."})
conversation.add_message({"role": "user", "content": "Is it good?"})
```

**add\_user\_input**

[\<source>](https://github.com/huggingface/transformers/blob/v4.34.1/src/transformers/pipelines/conversational.py#L88)

( text: stroverwrite: bool = False )

Add a user input to the conversation for the next round. This is a legacy method that assumes that inputs must alternate user/assistant/user/assistant, and so will not add multiple user messages in succession. We recommend just using `add_message` with role “user” instead.

**append\_response**

[\<source>](https://github.com/huggingface/transformers/blob/v4.34.1/src/transformers/pipelines/conversational.py#L109)

( response: str )

This is a legacy method. We recommend just using `add_message` with an appropriate role instead.

**mark\_processed**

[\<source>](https://github.com/huggingface/transformers/blob/v4.34.1/src/transformers/pipelines/conversational.py#L115)

( )

This is a legacy method that no longer has any effect, as the Conversation no longer distinguishes between processed and unprocessed user input.

#### class transformers.ConversationalPipeline

[\<source>](https://github.com/huggingface/transformers/blob/v4.34.1/src/transformers/pipelines/conversational.py#L191)

( \*args\*\*kwargs )

Parameters

* **model** ([PreTrainedModel](https://huggingface.co/docs/transformers/v4.34.1/en/main_classes/model#transformers.PreTrainedModel) or [TFPreTrainedModel](https://huggingface.co/docs/transformers/v4.34.1/en/main_classes/model#transformers.TFPreTrainedModel)) — The model that will be used by the pipeline to make predictions. This needs to be a model inheriting from [PreTrainedModel](https://huggingface.co/docs/transformers/v4.34.1/en/main_classes/model#transformers.PreTrainedModel) for PyTorch and [TFPreTrainedModel](https://huggingface.co/docs/transformers/v4.34.1/en/main_classes/model#transformers.TFPreTrainedModel) for TensorFlow.
* **tokenizer** ([PreTrainedTokenizer](https://huggingface.co/docs/transformers/v4.34.1/en/main_classes/tokenizer#transformers.PreTrainedTokenizer)) — The tokenizer that will be used by the pipeline to encode data for the model. This object inherits from [PreTrainedTokenizer](https://huggingface.co/docs/transformers/v4.34.1/en/main_classes/tokenizer#transformers.PreTrainedTokenizer).
* **modelcard** (`str` or `ModelCard`, *optional*) — Model card attributed to the model for this pipeline.
* **framework** (`str`, *optional*) — The framework to use, either `"pt"` for PyTorch or `"tf"` for TensorFlow. The specified framework must be installed.

  If no framework is specified, will default to the one currently installed. If no framework is specified and both frameworks are installed, will default to the framework of the `model`, or to PyTorch if no model is provided.
* **task** (`str`, defaults to `""`) — A task-identifier for the pipeline.
* **num\_workers** (`int`, *optional*, defaults to 8) — When the pipeline will use *DataLoader* (when passing a dataset, on GPU for a Pytorch model), the number of workers to be used.
* **batch\_size** (`int`, *optional*, defaults to 1) — When the pipeline will use *DataLoader* (when passing a dataset, on GPU for a Pytorch model), the size of the batch to use, for inference this is not always beneficial, please read [Batching with pipelines](https://huggingface.co/transformers/main_classes/pipelines.html#pipeline-batching) .
* **args\_parser** ([ArgumentHandler](https://huggingface.co/docs/transformers/v4.34.1/en/internal/pipelines_utils#transformers.pipelines.ArgumentHandler), *optional*) — Reference to the object in charge of parsing supplied pipeline parameters.
* **device** (`int`, *optional*, defaults to -1) — Device ordinal for CPU/GPU supports. Setting this to -1 will leverage CPU, a positive will run the model on the associated CUDA device id. You can pass native `torch.device` or a `str` too.
* **binary\_output** (`bool`, *optional*, defaults to `False`) — Flag indicating if the output the pipeline should happen in a binary format (i.e., pickle) or as raw text.
* **min\_length\_for\_response** (`int`, *optional*, defaults to 32) — The minimum length (in number of tokens) for a response.
* **minimum\_tokens** (`int`, *optional*, defaults to 10) — The minimum length of tokens to leave for a response.

Multi-turn conversational pipeline.

Example:

Copied

```
>>> from transformers import pipeline, Conversation

>>> chatbot = pipeline(model="microsoft/DialoGPT-medium")
>>> conversation = Conversation("Going to the movies tonight - any suggestions?")
>>> conversation = chatbot(conversation)
>>> conversation.generated_responses[-1]
'The Big Lebowski'

>>> conversation.add_user_input("Is it an action movie?")
>>> conversation = chatbot(conversation)
>>> conversation.generated_responses[-1]
"It's a comedy."
```

Learn more about the basics of using a pipeline in the [pipeline tutorial](https://huggingface.co/docs/transformers/pipeline_tutorial)

This conversational pipeline can currently be loaded from [pipeline()](https://huggingface.co/docs/transformers/v4.34.1/en/main_classes/pipelines#transformers.pipeline) using the following task identifier: `"conversational"`.

The models that this pipeline can use are models that have been fine-tuned on a multi-turn conversational task, currently: *‘microsoft/DialoGPT-small’*, *‘microsoft/DialoGPT-medium’*, *‘microsoft/DialoGPT-large’*. See the up-to-date list of available models on [boincai.com/models](https://huggingface.co/models?filter=conversational).

**\_\_call\_\_**

[\<source>](https://github.com/huggingface/transformers/blob/v4.34.1/src/transformers/pipelines/conversational.py#L250)

( conversations: typing.Union\[transformers.pipelines.conversational.Conversation, typing.List\[transformers.pipelines.conversational.Conversation]]num\_workers = 0\*\*kwargs ) → [Conversation](https://huggingface.co/docs/transformers/v4.34.1/en/main_classes/pipelines#transformers.Conversation) or a list of [Conversation](https://huggingface.co/docs/transformers/v4.34.1/en/main_classes/pipelines#transformers.Conversation)

Parameters

* **conversations** (a [Conversation](https://huggingface.co/docs/transformers/v4.34.1/en/main_classes/pipelines#transformers.Conversation) or a list of [Conversation](https://huggingface.co/docs/transformers/v4.34.1/en/main_classes/pipelines#transformers.Conversation)) — Conversations to generate responses for.
* **clean\_up\_tokenization\_spaces** (`bool`, *optional*, defaults to `False`) — Whether or not to clean up the potential extra spaces in the text output. generate\_kwargs — Additional keyword arguments to pass along to the generate method of the model (see the generate method corresponding to your framework [here](https://huggingface.co/docs/transformers/main_classes/model#generative-models)).

Returns

[Conversation](https://huggingface.co/docs/transformers/v4.34.1/en/main_classes/pipelines#transformers.Conversation) or a list of [Conversation](https://huggingface.co/docs/transformers/v4.34.1/en/main_classes/pipelines#transformers.Conversation)

Conversation(s) with updated generated responses for those containing a new user input.

Generate responses for the conversation(s) given as inputs.

#### FillMaskPipeline

#### class transformers.FillMaskPipeline

[\<source>](https://github.com/huggingface/transformers/blob/v4.34.1/src/transformers/pipelines/fill_mask.py#L34)

( model: typing.Union\[ForwardRef('PreTrainedModel'), ForwardRef('TFPreTrainedModel')]tokenizer: typing.Optional\[transformers.tokenization\_utils.PreTrainedTokenizer] = Nonefeature\_extractor: typing.Optional\[ForwardRef('SequenceFeatureExtractor')] = Noneimage\_processor: typing.Optional\[transformers.image\_processing\_utils.BaseImageProcessor] = Nonemodelcard: typing.Optional\[transformers.modelcard.ModelCard] = Noneframework: typing.Optional\[str] = Nonetask: str = ''args\_parser: ArgumentHandler = Nonedevice: typing.Union\[int, ForwardRef('torch.device')] = Nonetorch\_dtype: typing.Union\[str, ForwardRef('torch.dtype'), NoneType] = Nonebinary\_output: bool = False\*\*kwargs )

Parameters

* **model** ([PreTrainedModel](https://huggingface.co/docs/transformers/v4.34.1/en/main_classes/model#transformers.PreTrainedModel) or [TFPreTrainedModel](https://huggingface.co/docs/transformers/v4.34.1/en/main_classes/model#transformers.TFPreTrainedModel)) — The model that will be used by the pipeline to make predictions. This needs to be a model inheriting from [PreTrainedModel](https://huggingface.co/docs/transformers/v4.34.1/en/main_classes/model#transformers.PreTrainedModel) for PyTorch and [TFPreTrainedModel](https://huggingface.co/docs/transformers/v4.34.1/en/main_classes/model#transformers.TFPreTrainedModel) for TensorFlow.
* **tokenizer** ([PreTrainedTokenizer](https://huggingface.co/docs/transformers/v4.34.1/en/main_classes/tokenizer#transformers.PreTrainedTokenizer)) — The tokenizer that will be used by the pipeline to encode data for the model. This object inherits from [PreTrainedTokenizer](https://huggingface.co/docs/transformers/v4.34.1/en/main_classes/tokenizer#transformers.PreTrainedTokenizer).
* **modelcard** (`str` or `ModelCard`, *optional*) — Model card attributed to the model for this pipeline.
* **framework** (`str`, *optional*) — The framework to use, either `"pt"` for PyTorch or `"tf"` for TensorFlow. The specified framework must be installed.

  If no framework is specified, will default to the one currently installed. If no framework is specified and both frameworks are installed, will default to the framework of the `model`, or to PyTorch if no model is provided.
* **task** (`str`, defaults to `""`) — A task-identifier for the pipeline.
* **num\_workers** (`int`, *optional*, defaults to 8) — When the pipeline will use *DataLoader* (when passing a dataset, on GPU for a Pytorch model), the number of workers to be used.
* **batch\_size** (`int`, *optional*, defaults to 1) — When the pipeline will use *DataLoader* (when passing a dataset, on GPU for a Pytorch model), the size of the batch to use, for inference this is not always beneficial, please read [Batching with pipelines](https://huggingface.co/transformers/main_classes/pipelines.html#pipeline-batching) .
* **args\_parser** ([ArgumentHandler](https://huggingface.co/docs/transformers/v4.34.1/en/internal/pipelines_utils#transformers.pipelines.ArgumentHandler), *optional*) — Reference to the object in charge of parsing supplied pipeline parameters.
* **device** (`int`, *optional*, defaults to -1) — Device ordinal for CPU/GPU supports. Setting this to -1 will leverage CPU, a positive will run the model on the associated CUDA device id. You can pass native `torch.device` or a `str` too.
* **binary\_output** (`bool`, *optional*, defaults to `False`) — Flag indicating if the output the pipeline should happen in a binary format (i.e., pickle) or as raw text.
* **top\_k** (`int`, defaults to 5) — The number of predictions to return.
* **targets** (`str` or `List[str]`, *optional*) — When passed, the model will limit the scores to the passed targets instead of looking up in the whole vocab. If the provided targets are not in the model vocab, they will be tokenized and the first resulting token will be used (with a warning, and that might be slower).

Masked language modeling prediction pipeline using any `ModelWithLMHead`. See the [masked language modeling examples](https://huggingface.co/docs/transformers/task_summary#masked-language-modeling) for more information.

Example:

Copied

```
>>> from transformers import pipeline

>>> fill_masker = pipeline(model="bert-base-uncased")
>>> fill_masker("This is a simple [MASK].")
[{'score': 0.042, 'token': 3291, 'token_str': 'problem', 'sequence': 'this is a simple problem.'}, {'score': 0.031, 'token': 3160, 'token_str': 'question', 'sequence': 'this is a simple question.'}, {'score': 0.03, 'token': 8522, 'token_str': 'equation', 'sequence': 'this is a simple equation.'}, {'score': 0.027, 'token': 2028, 'token_str': 'one', 'sequence': 'this is a simple one.'}, {'score': 0.024, 'token': 3627, 'token_str': 'rule', 'sequence': 'this is a simple rule.'}]
```

Learn more about the basics of using a pipeline in the [pipeline tutorial](https://huggingface.co/docs/transformers/pipeline_tutorial)

This mask filling pipeline can currently be loaded from [pipeline()](https://huggingface.co/docs/transformers/v4.34.1/en/main_classes/pipelines#transformers.pipeline) using the following task identifier: `"fill-mask"`.

The models that this pipeline can use are models that have been trained with a masked language modeling objective, which includes the bi-directional models in the library. See the up-to-date list of available models on [boincai.com/models](https://huggingface.co/models?filter=fill-mask).

This pipeline only works for inputs with exactly one token masked. Experimental: We added support for multiple masks. The returned values are raw model output, and correspond to disjoint probabilities where one might expect joint probabilities (See [discussion](https://github.com/huggingface/transformers/pull/10222)).

This pipeline now supports tokenizer\_kwargs. For example try:

Copied

```
>>> from transformers import pipeline

>>> fill_masker = pipeline(model="bert-base-uncased")
>>> tokenizer_kwargs = {"truncation": True}
>>> fill_masker(
...     "This is a simple [MASK]. " + "...with a large amount of repeated text appended. " * 100,
...     tokenizer_kwargs=tokenizer_kwargs,
... )
```

**\_\_call\_\_**

[\<source>](https://github.com/huggingface/transformers/blob/v4.34.1/src/transformers/pipelines/fill_mask.py#L248)

( inputs\*args\*\*kwargs ) → A list or a list of list of `dict`

Parameters

* **args** (`str` or `List[str]`) — One or several texts (or one list of prompts) with masked tokens.
* **targets** (`str` or `List[str]`, *optional*) — When passed, the model will limit the scores to the passed targets instead of looking up in the whole vocab. If the provided targets are not in the model vocab, they will be tokenized and the first resulting token will be used (with a warning, and that might be slower).
* **top\_k** (`int`, *optional*) — When passed, overrides the number of predictions to return.

Returns

A list or a list of list of `dict`

Each result comes as list of dictionaries with the following keys:

* **sequence** (`str`) — The corresponding input with the mask token prediction.
* **score** (`float`) — The corresponding probability.
* **token** (`int`) — The predicted token id (to replace the masked one).
* **token\_str** (`str`) — The predicted token (to replace the masked one).

Fill the masked token in the text(s) given as inputs.

#### NerPipeline

#### class transformers.TokenClassificationPipeline

[\<source>](https://github.com/huggingface/transformers/blob/v4.34.1/src/transformers/pipelines/token_classification.py#L96)

( args\_parser = \<transformers.pipelines.token\_classification.TokenClassificationArgumentHandler object at 0x7f8de61e9ac0>\*args\*\*kwargs )

Parameters

* **model** ([PreTrainedModel](https://huggingface.co/docs/transformers/v4.34.1/en/main_classes/model#transformers.PreTrainedModel) or [TFPreTrainedModel](https://huggingface.co/docs/transformers/v4.34.1/en/main_classes/model#transformers.TFPreTrainedModel)) — The model that will be used by the pipeline to make predictions. This needs to be a model inheriting from [PreTrainedModel](https://huggingface.co/docs/transformers/v4.34.1/en/main_classes/model#transformers.PreTrainedModel) for PyTorch and [TFPreTrainedModel](https://huggingface.co/docs/transformers/v4.34.1/en/main_classes/model#transformers.TFPreTrainedModel) for TensorFlow.
* **tokenizer** ([PreTrainedTokenizer](https://huggingface.co/docs/transformers/v4.34.1/en/main_classes/tokenizer#transformers.PreTrainedTokenizer)) — The tokenizer that will be used by the pipeline to encode data for the model. This object inherits from [PreTrainedTokenizer](https://huggingface.co/docs/transformers/v4.34.1/en/main_classes/tokenizer#transformers.PreTrainedTokenizer).
* **modelcard** (`str` or `ModelCard`, *optional*) — Model card attributed to the model for this pipeline.
* **framework** (`str`, *optional*) — The framework to use, either `"pt"` for PyTorch or `"tf"` for TensorFlow. The specified framework must be installed.

  If no framework is specified, will default to the one currently installed. If no framework is specified and both frameworks are installed, will default to the framework of the `model`, or to PyTorch if no model is provided.
* **task** (`str`, defaults to `""`) — A task-identifier for the pipeline.
* **num\_workers** (`int`, *optional*, defaults to 8) — When the pipeline will use *DataLoader* (when passing a dataset, on GPU for a Pytorch model), the number of workers to be used.
* **batch\_size** (`int`, *optional*, defaults to 1) — When the pipeline will use *DataLoader* (when passing a dataset, on GPU for a Pytorch model), the size of the batch to use, for inference this is not always beneficial, please read [Batching with pipelines](https://huggingface.co/transformers/main_classes/pipelines.html#pipeline-batching) .
* **args\_parser** ([ArgumentHandler](https://huggingface.co/docs/transformers/v4.34.1/en/internal/pipelines_utils#transformers.pipelines.ArgumentHandler), *optional*) — Reference to the object in charge of parsing supplied pipeline parameters.
* **device** (`int`, *optional*, defaults to -1) — Device ordinal for CPU/GPU supports. Setting this to -1 will leverage CPU, a positive will run the model on the associated CUDA device id. You can pass native `torch.device` or a `str` too.
* **binary\_output** (`bool`, *optional*, defaults to `False`) — Flag indicating if the output the pipeline should happen in a binary format (i.e., pickle) or as raw text.
* **ignore\_labels** (`List[str]`, defaults to `["O"]`) — A list of labels to ignore.
* **grouped\_entities** (`bool`, *optional*, defaults to `False`) — DEPRECATED, use `aggregation_strategy` instead. Whether or not to group the tokens corresponding to the same entity together in the predictions or not.
* **stride** (`int`, *optional*) — If stride is provided, the pipeline is applied on all the text. The text is split into chunks of size model\_max\_length. Works only with fast tokenizers and `aggregation_strategy` different from `NONE`. The value of this argument defines the number of overlapping tokens between chunks. In other words, the model will shift forward by `tokenizer.model_max_length - stride` tokens each step.
* **aggregation\_strategy** (`str`, *optional*, defaults to `"none"`) — The strategy to fuse (or not) tokens based on the model prediction.
  * “none” : Will simply not do any aggregation and simply return raw results from the model
  * “simple” : Will attempt to group entities following the default schema. (A, B-TAG), (B, I-TAG), (C, I-TAG), (D, B-TAG2) (E, B-TAG2) will end up being \[{“word”: ABC, “entity”: “TAG”}, {“word”: “D”, “entity”: “TAG2”}, {“word”: “E”, “entity”: “TAG2”}] Notice that two consecutive B tags will end up as different entities. On word based languages, we might end up splitting words undesirably : Imagine Microsoft being tagged as \[{“word”: “Micro”, “entity”: “ENTERPRISE”}, {“word”: “soft”, “entity”: “NAME”}]. Look for FIRST, MAX, AVERAGE for ways to mitigate that and disambiguate words (on languages that support that meaning, which is basically tokens separated by a space). These mitigations will only work on real words, “New york” might still be tagged with two different entities.
  * “first” : (works only on word based models) Will use the `SIMPLE` strategy except that words, cannot end up with different tags. Words will simply use the tag of the first token of the word when there is ambiguity.
  * “average” : (works only on word based models) Will use the `SIMPLE` strategy except that words, cannot end up with different tags. scores will be averaged first across tokens, and then the maximum label is applied.
  * “max” : (works only on word based models) Will use the `SIMPLE` strategy except that words, cannot end up with different tags. Word entity will simply be the token with the maximum score.

Named Entity Recognition pipeline using any `ModelForTokenClassification`. See the [named entity recognition examples](https://huggingface.co/docs/transformers/task_summary#named-entity-recognition) for more information.

Example:

Copied

```
>>> from transformers import pipeline

>>> token_classifier = pipeline(model="Jean-Baptiste/camembert-ner", aggregation_strategy="simple")
>>> sentence = "Je m'appelle jean-baptiste et je vis à montréal"
>>> tokens = token_classifier(sentence)
>>> tokens
[{'entity_group': 'PER', 'score': 0.9931, 'word': 'jean-baptiste', 'start': 12, 'end': 26}, {'entity_group': 'LOC', 'score': 0.998, 'word': 'montréal', 'start': 38, 'end': 47}]

>>> token = tokens[0]
>>> # Start and end provide an easy way to highlight words in the original text.
>>> sentence[token["start"] : token["end"]]
' jean-baptiste'

>>> # Some models use the same idea to do part of speech.
>>> syntaxer = pipeline(model="vblagoje/bert-english-uncased-finetuned-pos", aggregation_strategy="simple")
>>> syntaxer("My name is Sarah and I live in London")
[{'entity_group': 'PRON', 'score': 0.999, 'word': 'my', 'start': 0, 'end': 2}, {'entity_group': 'NOUN', 'score': 0.997, 'word': 'name', 'start': 3, 'end': 7}, {'entity_group': 'AUX', 'score': 0.994, 'word': 'is', 'start': 8, 'end': 10}, {'entity_group': 'PROPN', 'score': 0.999, 'word': 'sarah', 'start': 11, 'end': 16}, {'entity_group': 'CCONJ', 'score': 0.999, 'word': 'and', 'start': 17, 'end': 20}, {'entity_group': 'PRON', 'score': 0.999, 'word': 'i', 'start': 21, 'end': 22}, {'entity_group': 'VERB', 'score': 0.998, 'word': 'live', 'start': 23, 'end': 27}, {'entity_group': 'ADP', 'score': 0.999, 'word': 'in', 'start': 28, 'end': 30}, {'entity_group': 'PROPN', 'score': 0.999, 'word': 'london', 'start': 31, 'end': 37}]
```

Learn more about the basics of using a pipeline in the [pipeline tutorial](https://huggingface.co/docs/transformers/pipeline_tutorial)

This token recognition pipeline can currently be loaded from [pipeline()](https://huggingface.co/docs/transformers/v4.34.1/en/main_classes/pipelines#transformers.pipeline) using the following task identifier: `"ner"` (for predicting the classes of tokens in a sequence: person, organisation, location or miscellaneous).

The models that this pipeline can use are models that have been fine-tuned on a token classification task. See the up-to-date list of available models on [boincai.com/models](https://huggingface.co/models?filter=token-classification).

**aggregate\_words**

[\<source>](https://github.com/huggingface/transformers/blob/v4.34.1/src/transformers/pipelines/token_classification.py#L470)

( entities: typing.List\[dict]aggregation\_strategy: AggregationStrategy )

Override tokens from a given word that disagree to force agreement on word boundaries.

Example: micro|soft| com|pany| B-ENT I-NAME I-ENT I-ENT will be rewritten with first strategy as microsoft| company| B-ENT I-ENT

**gather\_pre\_entities**

[\<source>](https://github.com/huggingface/transformers/blob/v4.34.1/src/transformers/pipelines/token_classification.py#L356)

( sentence: strinput\_ids: ndarrayscores: ndarrayoffset\_mapping: typing.Union\[typing.List\[typing.Tuple\[int, int]], NoneType]special\_tokens\_mask: ndarrayaggregation\_strategy: AggregationStrategy )

Fuse various numpy arrays into dicts with all the information needed for aggregation

**group\_entities**

[\<source>](https://github.com/huggingface/transformers/blob/v4.34.1/src/transformers/pipelines/token_classification.py#L533)

( entities: typing.List\[dict] )

Parameters

* **entities** (`dict`) — The entities predicted by the pipeline.

Find and group together the adjacent tokens with the same entity predicted.

**group\_sub\_entities**

[\<source>](https://github.com/huggingface/transformers/blob/v4.34.1/src/transformers/pipelines/token_classification.py#L498)

( entities: typing.List\[dict] )

Parameters

* **entities** (`dict`) — The entities predicted by the pipeline.

Group together the adjacent tokens with the same entity predicted.

See [TokenClassificationPipeline](https://huggingface.co/docs/transformers/v4.34.1/en/main_classes/pipelines#transformers.TokenClassificationPipeline) for all details.

#### QuestionAnsweringPipeline

#### class transformers.QuestionAnsweringPipeline

[\<source>](https://github.com/huggingface/transformers/blob/v4.34.1/src/transformers/pipelines/question_answering.py#L225)

( model: typing.Union\[ForwardRef('PreTrainedModel'), ForwardRef('TFPreTrainedModel')]tokenizer: PreTrainedTokenizermodelcard: typing.Optional\[transformers.modelcard.ModelCard] = Noneframework: typing.Optional\[str] = Nonetask: str = ''\*\*kwargs )

Parameters

* **model** ([PreTrainedModel](https://huggingface.co/docs/transformers/v4.34.1/en/main_classes/model#transformers.PreTrainedModel) or [TFPreTrainedModel](https://huggingface.co/docs/transformers/v4.34.1/en/main_classes/model#transformers.TFPreTrainedModel)) — The model that will be used by the pipeline to make predictions. This needs to be a model inheriting from [PreTrainedModel](https://huggingface.co/docs/transformers/v4.34.1/en/main_classes/model#transformers.PreTrainedModel) for PyTorch and [TFPreTrainedModel](https://huggingface.co/docs/transformers/v4.34.1/en/main_classes/model#transformers.TFPreTrainedModel) for TensorFlow.
* **tokenizer** ([PreTrainedTokenizer](https://huggingface.co/docs/transformers/v4.34.1/en/main_classes/tokenizer#transformers.PreTrainedTokenizer)) — The tokenizer that will be used by the pipeline to encode data for the model. This object inherits from [PreTrainedTokenizer](https://huggingface.co/docs/transformers/v4.34.1/en/main_classes/tokenizer#transformers.PreTrainedTokenizer).
* **modelcard** (`str` or `ModelCard`, *optional*) — Model card attributed to the model for this pipeline.
* **framework** (`str`, *optional*) — The framework to use, either `"pt"` for PyTorch or `"tf"` for TensorFlow. The specified framework must be installed.

  If no framework is specified, will default to the one currently installed. If no framework is specified and both frameworks are installed, will default to the framework of the `model`, or to PyTorch if no model is provided.
* **task** (`str`, defaults to `""`) — A task-identifier for the pipeline.
* **num\_workers** (`int`, *optional*, defaults to 8) — When the pipeline will use *DataLoader* (when passing a dataset, on GPU for a Pytorch model), the number of workers to be used.
* **batch\_size** (`int`, *optional*, defaults to 1) — When the pipeline will use *DataLoader* (when passing a dataset, on GPU for a Pytorch model), the size of the batch to use, for inference this is not always beneficial, please read [Batching with pipelines](https://huggingface.co/transformers/main_classes/pipelines.html#pipeline-batching) .
* **args\_parser** ([ArgumentHandler](https://huggingface.co/docs/transformers/v4.34.1/en/internal/pipelines_utils#transformers.pipelines.ArgumentHandler), *optional*) — Reference to the object in charge of parsing supplied pipeline parameters.
* **device** (`int`, *optional*, defaults to -1) — Device ordinal for CPU/GPU supports. Setting this to -1 will leverage CPU, a positive will run the model on the associated CUDA device id. You can pass native `torch.device` or a `str` too.
* **binary\_output** (`bool`, *optional*, defaults to `False`) — Flag indicating if the output the pipeline should happen in a binary format (i.e., pickle) or as raw text.

Question Answering pipeline using any `ModelForQuestionAnswering`. See the [question answering examples](https://huggingface.co/docs/transformers/task_summary#question-answering) for more information.

Example:

Copied

```
>>> from transformers import pipeline

>>> oracle = pipeline(model="deepset/roberta-base-squad2")
>>> oracle(question="Where do I live?", context="My name is Wolfgang and I live in Berlin")
{'score': 0.9191, 'start': 34, 'end': 40, 'answer': 'Berlin'}
```

Learn more about the basics of using a pipeline in the [pipeline tutorial](https://huggingface.co/docs/transformers/pipeline_tutorial)

This question answering pipeline can currently be loaded from [pipeline()](https://huggingface.co/docs/transformers/v4.34.1/en/main_classes/pipelines#transformers.pipeline) using the following task identifier: `"question-answering"`.

The models that this pipeline can use are models that have been fine-tuned on a question answering task. See the up-to-date list of available models on[ boincai.com/models](https://boinc-ai.gitbook.io/transformers/api/main-classes/www.boincai.com)

**\_\_call\_\_**

[\<source>](https://github.com/huggingface/transformers/blob/v4.34.1/src/transformers/pipelines/question_answering.py#L343)

( \*args\*\*kwargs ) → A `dict` or a list of `dict`

Parameters

* **args** (`SquadExample` or a list of `SquadExample`) — One or several `SquadExample` containing the question and context.
* **X** (`SquadExample` or a list of `SquadExample`, *optional*) — One or several `SquadExample` containing the question and context (will be treated the same way as if passed as the first positional argument).
* **data** (`SquadExample` or a list of `SquadExample`, *optional*) — One or several `SquadExample` containing the question and context (will be treated the same way as if passed as the first positional argument).
* **question** (`str` or `List[str]`) — One or several question(s) (must be used in conjunction with the `context` argument).
* **context** (`str` or `List[str]`) — One or several context(s) associated with the question(s) (must be used in conjunction with the `question` argument).
* **topk** (`int`, *optional*, defaults to 1) — The number of answers to return (will be chosen by order of likelihood). Note that we return less than topk answers if there are not enough options available within the context.
* **doc\_stride** (`int`, *optional*, defaults to 128) — If the context is too long to fit with the question for the model, it will be split in several chunks with some overlap. This argument controls the size of that overlap.
* **max\_answer\_len** (`int`, *optional*, defaults to 15) — The maximum length of predicted answers (e.g., only answers with a shorter length are considered).
* **max\_seq\_len** (`int`, *optional*, defaults to 384) — The maximum length of the total sentence (context + question) in tokens of each chunk passed to the model. The context will be split in several chunks (using `doc_stride` as overlap) if needed.
* **max\_question\_len** (`int`, *optional*, defaults to 64) — The maximum length of the question after tokenization. It will be truncated if needed.
* **handle\_impossible\_answer** (`bool`, *optional*, defaults to `False`) — Whether or not we accept impossible as an answer.
* **align\_to\_words** (`bool`, *optional*, defaults to `True`) — Attempts to align the answer to real words. Improves quality on space separated langages. Might hurt on non-space-separated languages (like Japanese or Chinese)

Returns

A `dict` or a list of `dict`

Each result comes as a dictionary with the following keys:

* **score** (`float`) — The probability associated to the answer.
* **start** (`int`) — The character start index of the answer (in the tokenized version of the input).
* **end** (`int`) — The character end index of the answer (in the tokenized version of the input).
* **answer** (`str`) — The answer to the question.

Answer the question(s) given as inputs by using the context(s).

**create\_sample**

[\<source>](https://github.com/huggingface/transformers/blob/v4.34.1/src/transformers/pipelines/question_answering.py#L278)

( question: typing.Union\[str, typing.List\[str]]context: typing.Union\[str, typing.List\[str]] ) → One or a list of `SquadExample`

Parameters

* **question** (`str` or `List[str]`) — The question(s) asked.
* **context** (`str` or `List[str]`) — The context(s) in which we will look for the answer.

Returns

One or a list of `SquadExample`

The corresponding `SquadExample` grouping question and context.

QuestionAnsweringPipeline leverages the `SquadExample` internally. This helper method encapsulate all the logic for converting question(s) and context(s) to `SquadExample`.

We currently support extractive question answering.

**span\_to\_answer**

[\<source>](https://github.com/huggingface/transformers/blob/v4.34.1/src/transformers/pipelines/question_answering.py#L630)

( text: strstart: intend: int ) → Dictionary like \`{‘answer’

Parameters

* **text** (`str`) — The actual context to extract the answer from.
* **start** (`int`) — The answer starting token index.
* **end** (`int`) — The answer end token index.

Returns

Dictionary like \`{‘answer’

str, ‘start’: int, ‘end’: int}\`

When decoding from token probabilities, this method maps token indexes to actual word in the initial context.

#### SummarizationPipeline

#### class transformers.SummarizationPipeline

[\<source>](https://github.com/huggingface/transformers/blob/v4.34.1/src/transformers/pipelines/text2text_generation.py#L217)

( \*args\*\*kwargs )

Parameters

* **model** ([PreTrainedModel](https://huggingface.co/docs/transformers/v4.34.1/en/main_classes/model#transformers.PreTrainedModel) or [TFPreTrainedModel](https://huggingface.co/docs/transformers/v4.34.1/en/main_classes/model#transformers.TFPreTrainedModel)) — The model that will be used by the pipeline to make predictions. This needs to be a model inheriting from [PreTrainedModel](https://huggingface.co/docs/transformers/v4.34.1/en/main_classes/model#transformers.PreTrainedModel) for PyTorch and [TFPreTrainedModel](https://huggingface.co/docs/transformers/v4.34.1/en/main_classes/model#transformers.TFPreTrainedModel) for TensorFlow.
* **tokenizer** ([PreTrainedTokenizer](https://huggingface.co/docs/transformers/v4.34.1/en/main_classes/tokenizer#transformers.PreTrainedTokenizer)) — The tokenizer that will be used by the pipeline to encode data for the model. This object inherits from [PreTrainedTokenizer](https://huggingface.co/docs/transformers/v4.34.1/en/main_classes/tokenizer#transformers.PreTrainedTokenizer).
* **modelcard** (`str` or `ModelCard`, *optional*) — Model card attributed to the model for this pipeline.
* **framework** (`str`, *optional*) — The framework to use, either `"pt"` for PyTorch or `"tf"` for TensorFlow. The specified framework must be installed.

  If no framework is specified, will default to the one currently installed. If no framework is specified and both frameworks are installed, will default to the framework of the `model`, or to PyTorch if no model is provided.
* **task** (`str`, defaults to `""`) — A task-identifier for the pipeline.
* **num\_workers** (`int`, *optional*, defaults to 8) — When the pipeline will use *DataLoader* (when passing a dataset, on GPU for a Pytorch model), the number of workers to be used.
* **batch\_size** (`int`, *optional*, defaults to 1) — When the pipeline will use *DataLoader* (when passing a dataset, on GPU for a Pytorch model), the size of the batch to use, for inference this is not always beneficial, please read [Batching with pipelines](https://huggingface.co/transformers/main_classes/pipelines.html#pipeline-batching) .
* **args\_parser** ([ArgumentHandler](https://huggingface.co/docs/transformers/v4.34.1/en/internal/pipelines_utils#transformers.pipelines.ArgumentHandler), *optional*) — Reference to the object in charge of parsing supplied pipeline parameters.
* **device** (`int`, *optional*, defaults to -1) — Device ordinal for CPU/GPU supports. Setting this to -1 will leverage CPU, a positive will run the model on the associated CUDA device id. You can pass native `torch.device` or a `str` too.
* **binary\_output** (`bool`, *optional*, defaults to `False`) — Flag indicating if the output the pipeline should happen in a binary format (i.e., pickle) or as raw text.

Summarize news articles and other documents.

This summarizing pipeline can currently be loaded from [pipeline()](https://huggingface.co/docs/transformers/v4.34.1/en/main_classes/pipelines#transformers.pipeline) using the following task identifier: `"summarization"`.

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 list of available models on [boincai.com/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.GenerationMixin.generate)

Usage:

Copied

```
# use bart in pytorch
summarizer = pipeline("summarization")
summarizer("An apple a day, keeps the doctor away", min_length=5, max_length=20)

# use t5 in tf
summarizer = pipeline("summarization", model="t5-base", tokenizer="t5-base", framework="tf")
summarizer("An apple a day, keeps the doctor away", min_length=5, max_length=20)
```

**\_\_call\_\_**

[\<source>](https://github.com/huggingface/transformers/blob/v4.34.1/src/transformers/pipelines/text2text_generation.py#L245)

( \*args\*\*kwargs ) → A list or a list of list of `dict`

Parameters

* **documents** (*str* or `List[str]`) — One or several articles (or one list of articles) to summarize.
* **return\_text** (`bool`, *optional*, defaults to `True`) — Whether or not to include the decoded texts in the outputs
* **return\_tensors** (`bool`, *optional*, defaults to `False`) — Whether or not to include the tensors of predictions (as token indices) in the outputs.
* **clean\_up\_tokenization\_spaces** (`bool`, *optional*, defaults to `False`) — Whether or not to clean up the potential extra spaces in the text output. generate\_kwargs — Additional keyword arguments to pass along to the generate method of the model (see the generate method corresponding to your framework [here](https://huggingface.co/docs/transformers/main_classes/model#generative-models)).

Returns

A list or a list of list of `dict`

Each result comes as a dictionary with the following keys:

* **summary\_text** (`str`, present when `return_text=True`) — The summary of the corresponding input.
* **summary\_token\_ids** (`torch.Tensor` or `tf.Tensor`, present when `return_tensors=True`) — The token ids of the summary.

Summarize the text(s) given as inputs.

#### TableQuestionAnsweringPipeline

#### class transformers.TableQuestionAnsweringPipeline

[\<source>](https://github.com/huggingface/transformers/blob/v4.34.1/src/transformers/pipelines/table_question_answering.py#L88)

( args\_parser = \<transformers.pipelines.table\_question\_answering.TableQuestionAnsweringArgumentHandler object at 0x7f8de62ba6d0>\*args\*\*kwargs )

Parameters

* **model** ([PreTrainedModel](https://huggingface.co/docs/transformers/v4.34.1/en/main_classes/model#transformers.PreTrainedModel) or [TFPreTrainedModel](https://huggingface.co/docs/transformers/v4.34.1/en/main_classes/model#transformers.TFPreTrainedModel)) — The model that will be used by the pipeline to make predictions. This needs to be a model inheriting from [PreTrainedModel](https://huggingface.co/docs/transformers/v4.34.1/en/main_classes/model#transformers.PreTrainedModel) for PyTorch and [TFPreTrainedModel](https://huggingface.co/docs/transformers/v4.34.1/en/main_classes/model#transformers.TFPreTrainedModel) for TensorFlow.
* **tokenizer** ([PreTrainedTokenizer](https://huggingface.co/docs/transformers/v4.34.1/en/main_classes/tokenizer#transformers.PreTrainedTokenizer)) — The tokenizer that will be used by the pipeline to encode data for the model. This object inherits from [PreTrainedTokenizer](https://huggingface.co/docs/transformers/v4.34.1/en/main_classes/tokenizer#transformers.PreTrainedTokenizer).
* **modelcard** (`str` or `ModelCard`, *optional*) — Model card attributed to the model for this pipeline.
* **framework** (`str`, *optional*) — The framework to use, either `"pt"` for PyTorch or `"tf"` for TensorFlow. The specified framework must be installed.

  If no framework is specified, will default to the one currently installed. If no framework is specified and both frameworks are installed, will default to the framework of the `model`, or to PyTorch if no model is provided.
* **task** (`str`, defaults to `""`) — A task-identifier for the pipeline.
* **num\_workers** (`int`, *optional*, defaults to 8) — When the pipeline will use *DataLoader* (when passing a dataset, on GPU for a Pytorch model), the number of workers to be used.
* **batch\_size** (`int`, *optional*, defaults to 1) — When the pipeline will use *DataLoader* (when passing a dataset, on GPU for a Pytorch model), the size of the batch to use, for inference this is not always beneficial, please read [Batching with pipelines](https://huggingface.co/transformers/main_classes/pipelines.html#pipeline-batching) .
* **args\_parser** ([ArgumentHandler](https://huggingface.co/docs/transformers/v4.34.1/en/internal/pipelines_utils#transformers.pipelines.ArgumentHandler), *optional*) — Reference to the object in charge of parsing supplied pipeline parameters.
* **device** (`int`, *optional*, defaults to -1) — Device ordinal for CPU/GPU supports. Setting this to -1 will leverage CPU, a positive will run the model on the associated CUDA device id. You can pass native `torch.device` or a `str` too.
* **binary\_output** (`bool`, *optional*, defaults to `False`) — Flag indicating if the output the pipeline should happen in a binary format (i.e., pickle) or as raw text.

Table Question Answering pipeline using a `ModelForTableQuestionAnswering`. This pipeline is only available in PyTorch.

Example:

Copied

```
>>> from transformers import pipeline

>>> oracle = pipeline(model="google/tapas-base-finetuned-wtq")
>>> table = {
...     "Repository": ["Transformers", "Datasets", "Tokenizers"],
...     "Stars": ["36542", "4512", "3934"],
...     "Contributors": ["651", "77", "34"],
...     "Programming language": ["Python", "Python", "Rust, Python and NodeJS"],
... }
>>> oracle(query="How many stars does the transformers repository have?", table=table)
{'answer': 'AVERAGE > 36542', 'coordinates': [(0, 1)], 'cells': ['36542'], 'aggregator': 'AVERAGE'}
```

Learn more about the basics of using a pipeline in the [pipeline tutorial](https://huggingface.co/docs/transformers/pipeline_tutorial)

This tabular question answering pipeline can currently be loaded from [pipeline()](https://huggingface.co/docs/transformers/v4.34.1/en/main_classes/pipelines#transformers.pipeline) using the following task identifier: `"table-question-answering"`.

The models that this pipeline can use are models that have been fine-tuned on a tabular question answering task. See the up-to-date list of available models on [boincai.com/models](https://huggingface.co/models?filter=table-question-answering).

**\_\_call\_\_**

[\<source>](https://github.com/huggingface/transformers/blob/v4.34.1/src/transformers/pipelines/table_question_answering.py#L270)

( \*args\*\*kwargs ) → A dictionary or a list of dictionaries containing results

Parameters

* **table** (`pd.DataFrame` or `Dict`) — Pandas DataFrame or dictionary that will be converted to a DataFrame containing all the table values. See above for an example of dictionary.
* **query** (`str` or `List[str]`) — Query or list of queries that will be sent to the model alongside the table.
* **sequential** (`bool`, *optional*, defaults to `False`) — Whether to do inference sequentially or as a batch. Batching is faster, but models like SQA require the inference to be done sequentially to extract relations within sequences, given their conversational nature.
* **padding** (`bool`, `str` or [PaddingStrategy](https://huggingface.co/docs/transformers/v4.34.1/en/internal/file_utils#transformers.utils.PaddingStrategy), *optional*, defaults to `False`) — Activates and controls padding. Accepts the following values:
  * `True` or `'longest'`: Pad to the longest sequence in the batch (or no padding if only a single sequence if provided).
  * `'max_length'`: Pad to a maximum length specified with the argument `max_length` or to the maximum acceptable input length for the model if that argument is not provided.
  * `False` or `'do_not_pad'` (default): No padding (i.e., can output a batch with sequences of different lengths).
* **truncation** (`bool`, `str` or `TapasTruncationStrategy`, *optional*, defaults to `False`) — Activates and controls truncation. Accepts the following values:
  * `True` or `'drop_rows_to_fit'`: Truncate to a maximum length specified with the argument `max_length` or to the maximum acceptable input length for the model if that argument is not provided. This will truncate row by row, removing rows from the table.
  * `False` or `'do_not_truncate'` (default): No truncation (i.e., can output batch with sequence lengths greater than the model maximum admissible input size).

Returns

A dictionary or a list of dictionaries containing results

Each result is a dictionary with the following keys:

* **answer** (`str`) — The answer of the query given the table. If there is an aggregator, the answer will be preceded by `AGGREGATOR >`.
* **coordinates** (`List[Tuple[int, int]]`) — Coordinates of the cells of the answers.
* **cells** (`List[str]`) — List of strings made up of the answer cell values.
* **aggregator** (`str`) — If the model has an aggregator, this returns the aggregator.

Answers queries according to a table. The pipeline accepts several types of inputs which are detailed below:

* `pipeline(table, query)`
* `pipeline(table, [query])`
* `pipeline(table=table, query=query)`
* `pipeline(table=table, query=[query])`
* `pipeline({"table": table, "query": query})`
* `pipeline({"table": table, "query": [query]})`
* `pipeline([{"table": table, "query": query}, {"table": table, "query": query}])`

The `table` argument should be a dict or a DataFrame built from that dict, containing the whole table:

Example:

Copied

```
data = {
    "actors": ["brad pitt", "leonardo di caprio", "george clooney"],
    "age": ["56", "45", "59"],
    "number of movies": ["87", "53", "69"],
    "date of birth": ["7 february 1967", "10 june 1996", "28 november 1967"],
}
```

This dictionary can be passed in as such, or can be converted to a pandas DataFrame:

Example:

Copied

```
import pandas as pd

table = pd.DataFrame.from_dict(data)
```

#### TextClassificationPipeline

#### class transformers.TextClassificationPipeline

[\<source>](https://github.com/huggingface/transformers/blob/v4.34.1/src/transformers/pipelines/text_classification.py#L49)

( \*\*kwargs )

Parameters

* **model** ([PreTrainedModel](https://huggingface.co/docs/transformers/v4.34.1/en/main_classes/model#transformers.PreTrainedModel) or [TFPreTrainedModel](https://huggingface.co/docs/transformers/v4.34.1/en/main_classes/model#transformers.TFPreTrainedModel)) — The model that will be used by the pipeline to make predictions. This needs to be a model inheriting from [PreTrainedModel](https://huggingface.co/docs/transformers/v4.34.1/en/main_classes/model#transformers.PreTrainedModel) for PyTorch and [TFPreTrainedModel](https://huggingface.co/docs/transformers/v4.34.1/en/main_classes/model#transformers.TFPreTrainedModel) for TensorFlow.
* **tokenizer** ([PreTrainedTokenizer](https://huggingface.co/docs/transformers/v4.34.1/en/main_classes/tokenizer#transformers.PreTrainedTokenizer)) — The tokenizer that will be used by the pipeline to encode data for the model. This object inherits from [PreTrainedTokenizer](https://huggingface.co/docs/transformers/v4.34.1/en/main_classes/tokenizer#transformers.PreTrainedTokenizer).
* **modelcard** (`str` or `ModelCard`, *optional*) — Model card attributed to the model for this pipeline.
* **framework** (`str`, *optional*) — The framework to use, either `"pt"` for PyTorch or `"tf"` for TensorFlow. The specified framework must be installed.

  If no framework is specified, will default to the one currently installed. If no framework is specified and both frameworks are installed, will default to the framework of the `model`, or to PyTorch if no model is provided.
* **task** (`str`, defaults to `""`) — A task-identifier for the pipeline.
* **num\_workers** (`int`, *optional*, defaults to 8) — When the pipeline will use *DataLoader* (when passing a dataset, on GPU for a Pytorch model), the number of workers to be used.
* **batch\_size** (`int`, *optional*, defaults to 1) — When the pipeline will use *DataLoader* (when passing a dataset, on GPU for a Pytorch model), the size of the batch to use, for inference this is not always beneficial, please read [Batching with pipelines](https://huggingface.co/transformers/main_classes/pipelines.html#pipeline-batching) .
* **args\_parser** ([ArgumentHandler](https://huggingface.co/docs/transformers/v4.34.1/en/internal/pipelines_utils#transformers.pipelines.ArgumentHandler), *optional*) — Reference to the object in charge of parsing supplied pipeline parameters.
* **device** (`int`, *optional*, defaults to -1) — Device ordinal for CPU/GPU supports. Setting this to -1 will leverage CPU, a positive will run the model on the associated CUDA device id. You can pass native `torch.device` or a `str` too.
* **binary\_output** (`bool`, *optional*, defaults to `False`) — Flag indicating if the output the pipeline should happen in a binary format (i.e., pickle) or as raw text.
* **return\_all\_scores** (`bool`, *optional*, defaults to `False`) — Whether to return all prediction scores or just the one of the predicted class.
* **function\_to\_apply** (`str`, *optional*, defaults to `"default"`) — The function to apply to the model outputs in order to retrieve the scores. Accepts four different values:
  * `"default"`: if the model has a single label, will apply the sigmoid function on the output. If the model has several labels, will apply the softmax function on the output.
  * `"sigmoid"`: Applies the sigmoid function on the output.
  * `"softmax"`: Applies the softmax function on the output.
  * `"none"`: Does not apply any function on the output.

Text classification pipeline using any `ModelForSequenceClassification`. See the [sequence classification examples](https://huggingface.co/docs/transformers/task_summary#sequence-classification) for more information.

Example:

Copied

```
>>> from transformers import pipeline

>>> classifier = pipeline(model="distilbert-base-uncased-finetuned-sst-2-english")
>>> classifier("This movie is disgustingly good !")
[{'label': 'POSITIVE', 'score': 1.0}]

>>> classifier("Director tried too much.")
[{'label': 'NEGATIVE', 'score': 0.996}]
```

Learn more about the basics of using a pipeline in the [pipeline tutorial](https://huggingface.co/docs/transformers/pipeline_tutorial)

This text classification pipeline can currently be loaded from [pipeline()](https://huggingface.co/docs/transformers/v4.34.1/en/main_classes/pipelines#transformers.pipeline) using the following task identifier: `"sentiment-analysis"` (for classifying sequences according to positive or negative sentiments).

If multiple classification labels are available (`model.config.num_labels >= 2`), the pipeline will run a softmax over the results. If there is a single label, the pipeline will run a sigmoid over the result.

The models that this pipeline can use are models that have been fine-tuned on a sequence classification task. See the up-to-date list of available models on [boincai.com/models](https://huggingface.co/models?filter=text-classification).

**\_\_call\_\_**

[\<source>](https://github.com/huggingface/transformers/blob/v4.34.1/src/transformers/pipelines/text_classification.py#L122)

( \*args\*\*kwargs ) → A list or a list of list of `dict`

Parameters

* **args** (`str` or `List[str]` or `Dict[str]`, or `List[Dict[str]]`) — One or several texts to classify. In order to use text pairs for your classification, you can send a dictionary containing `{"text", "text_pair"}` keys, or a list of those.
* **top\_k** (`int`, *optional*, defaults to `1`) — How many results to return.
* **function\_to\_apply** (`str`, *optional*, defaults to `"default"`) — The function to apply to the model outputs in order to retrieve the scores. Accepts four different values:

  If this argument is not specified, then it will apply the following functions according to the number of labels:

  * If the model has a single label, will apply the sigmoid function on the output.
  * If the model has several labels, will apply the softmax function on the output.

  Possible values are:

  * `"sigmoid"`: Applies the sigmoid function on the output.
  * `"softmax"`: Applies the softmax function on the output.
  * `"none"`: Does not apply any function on the output.

Returns

A list or a list of list of `dict`

Each result comes as list of dictionaries with the following keys:

* **label** (`str`) — The label predicted.
* **score** (`float`) — The corresponding probability.

If `top_k` is used, one such dictionary is returned per label.

Classify the text(s) given as inputs.

#### TextGenerationPipeline

#### class transformers.TextGenerationPipeline

[\<source>](https://github.com/huggingface/transformers/blob/v4.34.1/src/transformers/pipelines/text_generation.py#L24)

( \*args\*\*kwargs )

Parameters

* **model** ([PreTrainedModel](https://huggingface.co/docs/transformers/v4.34.1/en/main_classes/model#transformers.PreTrainedModel) or [TFPreTrainedModel](https://huggingface.co/docs/transformers/v4.34.1/en/main_classes/model#transformers.TFPreTrainedModel)) — The model that will be used by the pipeline to make predictions. This needs to be a model inheriting from [PreTrainedModel](https://huggingface.co/docs/transformers/v4.34.1/en/main_classes/model#transformers.PreTrainedModel) for PyTorch and [TFPreTrainedModel](https://huggingface.co/docs/transformers/v4.34.1/en/main_classes/model#transformers.TFPreTrainedModel) for TensorFlow.
* **tokenizer** ([PreTrainedTokenizer](https://huggingface.co/docs/transformers/v4.34.1/en/main_classes/tokenizer#transformers.PreTrainedTokenizer)) — The tokenizer that will be used by the pipeline to encode data for the model. This object inherits from [PreTrainedTokenizer](https://huggingface.co/docs/transformers/v4.34.1/en/main_classes/tokenizer#transformers.PreTrainedTokenizer).
* **modelcard** (`str` or `ModelCard`, *optional*) — Model card attributed to the model for this pipeline.
* **framework** (`str`, *optional*) — The framework to use, either `"pt"` for PyTorch or `"tf"` for TensorFlow. The specified framework must be installed.

  If no framework is specified, will default to the one currently installed. If no framework is specified and both frameworks are installed, will default to the framework of the `model`, or to PyTorch if no model is provided.
* **task** (`str`, defaults to `""`) — A task-identifier for the pipeline.
* **num\_workers** (`int`, *optional*, defaults to 8) — When the pipeline will use *DataLoader* (when passing a dataset, on GPU for a Pytorch model), the number of workers to be used.
* **batch\_size** (`int`, *optional*, defaults to 1) — When the pipeline will use *DataLoader* (when passing a dataset, on GPU for a Pytorch model), the size of the batch to use, for inference this is not always beneficial, please read [Batching with pipelines](https://huggingface.co/transformers/main_classes/pipelines.html#pipeline-batching) .
* **args\_parser** ([ArgumentHandler](https://huggingface.co/docs/transformers/v4.34.1/en/internal/pipelines_utils#transformers.pipelines.ArgumentHandler), *optional*) — Reference to the object in charge of parsing supplied pipeline parameters.
* **device** (`int`, *optional*, defaults to -1) — Device ordinal for CPU/GPU supports. Setting this to -1 will leverage CPU, a positive will run the model on the associated CUDA device id. You can pass native `torch.device` or a `str` too.
* **binary\_output** (`bool`, *optional*, defaults to `False`) — Flag indicating if the output the pipeline should happen in a binary format (i.e., pickle) or as raw text.

Language generation pipeline using any `ModelWithLMHead`. This pipeline predicts the words that will follow a specified text prompt.

Example:

Copied

```
>>> from transformers import pipeline

>>> generator = pipeline(model="gpt2")
>>> generator("I can't believe you did such a ", do_sample=False)
[{'generated_text': "I can't believe you did such a icky thing to me. I'm so sorry. I'm so sorry. I'm so sorry. I'm so sorry. I'm so sorry. I'm so sorry. I'm so sorry. I"}]

>>> # These parameters will return suggestions, and only the newly created text making it easier for prompting suggestions.
>>> outputs = generator("My tart needs some", num_return_sequences=4, return_full_text=False)
```

Learn more about the basics of using a pipeline in the [pipeline tutorial](https://huggingface.co/docs/transformers/pipeline_tutorial). You can pass text generation parameters to this pipeline to control stopping criteria, decoding strategy, and more. Learn more about text generation parameters in [Text generation strategies](https://huggingface.co/docs/transformers/generation_strategies) and [Text generation](https://huggingface.co/docs/transformers/main_classes/text_generation).

This language generation pipeline can currently be loaded from [pipeline()](https://huggingface.co/docs/transformers/v4.34.1/en/main_classes/pipelines#transformers.pipeline) using the following task identifier: `"text-generation"`.

The models that this pipeline can use are models that have been trained with an autoregressive language modeling objective, which includes the uni-directional models in the library (e.g. gpt2). See the list of available models on [boincai.com/models](https://huggingface.co/models?filter=text-generation).

**\_\_call\_\_**

[\<source>](https://github.com/huggingface/transformers/blob/v4.34.1/src/transformers/pipelines/text_generation.py#L167)

( text\_inputs\*\*kwargs ) → A list or a list of list of `dict`

Parameters

* **args** (`str` or `List[str]`) — One or several prompts (or one list of prompts) to complete.
* **return\_tensors** (`bool`, *optional*, defaults to `False`) — Whether or not to return the tensors of predictions (as token indices) in the outputs. If set to `True`, the decoded text is not returned.
* **return\_text** (`bool`, *optional*, defaults to `True`) — Whether or not to return the decoded texts in the outputs.
* **return\_full\_text** (`bool`, *optional*, defaults to `True`) — If set to `False` only added text is returned, otherwise the full text is returned. Only meaningful if *return\_text* is set to True.
* **clean\_up\_tokenization\_spaces** (`bool`, *optional*, defaults to `False`) — Whether or not to clean up the potential extra spaces in the text output.
* **prefix** (`str`, *optional*) — Prefix added to prompt.
* **handle\_long\_generation** (`str`, *optional*) — By default, this pipelines does not handle long generation (ones that exceed in one form or the other the model maximum length). There is no perfect way to adress this (more info :[https://github.com/boincai/transformers/issues/14033#issuecomment-948385227](https://github.com/huggingface/transformers/issues/14033#issuecomment-948385227)). This provides common strategies to work around that problem depending on your use case.

  * `None` : default strategy where nothing in particular happens
  * `"hole"`: Truncates left of input, and leaves a gap wide enough to let generation happen (might truncate a lot of the prompt and not suitable when generation exceed the model capacity)

  generate\_kwargs — Additional keyword arguments to pass along to the generate method of the model (see the generate method corresponding to your framework [here](https://huggingface.co/docs/transformers/main_classes/model#generative-models)).

Returns

A list or a list of list of `dict`

Returns one of the following dictionaries (cannot return a combination of both `generated_text` and `generated_token_ids`):

* **generated\_text** (`str`, present when `return_text=True`) — The generated text.
* **generated\_token\_ids** (`torch.Tensor` or `tf.Tensor`, present when `return_tensors=True`) — The token ids of the generated text.

Complete the prompt(s) given as inputs.

#### Text2TextGenerationPipeline

#### class transformers.Text2TextGenerationPipeline

[\<source>](https://github.com/huggingface/transformers/blob/v4.34.1/src/transformers/pipelines/text2text_generation.py#L26)

( \*args\*\*kwargs )

Parameters

* **model** ([PreTrainedModel](https://huggingface.co/docs/transformers/v4.34.1/en/main_classes/model#transformers.PreTrainedModel) or [TFPreTrainedModel](https://huggingface.co/docs/transformers/v4.34.1/en/main_classes/model#transformers.TFPreTrainedModel)) — The model that will be used by the pipeline to make predictions. This needs to be a model inheriting from [PreTrainedModel](https://huggingface.co/docs/transformers/v4.34.1/en/main_classes/model#transformers.PreTrainedModel) for PyTorch and [TFPreTrainedModel](https://huggingface.co/docs/transformers/v4.34.1/en/main_classes/model#transformers.TFPreTrainedModel) for TensorFlow.
* **tokenizer** ([PreTrainedTokenizer](https://huggingface.co/docs/transformers/v4.34.1/en/main_classes/tokenizer#transformers.PreTrainedTokenizer)) — The tokenizer that will be used by the pipeline to encode data for the model. This object inherits from [PreTrainedTokenizer](https://huggingface.co/docs/transformers/v4.34.1/en/main_classes/tokenizer#transformers.PreTrainedTokenizer).
* **modelcard** (`str` or `ModelCard`, *optional*) — Model card attributed to the model for this pipeline.
* **framework** (`str`, *optional*) — The framework to use, either `"pt"` for PyTorch or `"tf"` for TensorFlow. The specified framework must be installed.

  If no framework is specified, will default to the one currently installed. If no framework is specified and both frameworks are installed, will default to the framework of the `model`, or to PyTorch if no model is provided.
* **task** (`str`, defaults to `""`) — A task-identifier for the pipeline.
* **num\_workers** (`int`, *optional*, defaults to 8) — When the pipeline will use *DataLoader* (when passing a dataset, on GPU for a Pytorch model), the number of workers to be used.
* **batch\_size** (`int`, *optional*, defaults to 1) — When the pipeline will use *DataLoader* (when passing a dataset, on GPU for a Pytorch model), the size of the batch to use, for inference this is not always beneficial, please read [Batching with pipelines](https://huggingface.co/transformers/main_classes/pipelines.html#pipeline-batching) .
* **args\_parser** ([ArgumentHandler](https://huggingface.co/docs/transformers/v4.34.1/en/internal/pipelines_utils#transformers.pipelines.ArgumentHandler), *optional*) — Reference to the object in charge of parsing supplied pipeline parameters.
* **device** (`int`, *optional*, defaults to -1) — Device ordinal for CPU/GPU supports. Setting this to -1 will leverage CPU, a positive will run the model on the associated CUDA device id. You can pass native `torch.device` or a `str` too.
* **binary\_output** (`bool`, *optional*, defaults to `False`) — Flag indicating if the output the pipeline should happen in a binary format (i.e., pickle) or as raw text.

Pipeline for text to text generation using seq2seq models.

Example:

Copied

```
>>> from transformers import pipeline

>>> generator = pipeline(model="mrm8488/t5-base-finetuned-question-generation-ap")
>>> generator(
...     "answer: Manuel context: Manuel has created RuPERTa-base with the support of HF-Transformers and Google"
... )
[{'generated_text': 'question: Who created the RuPERTa-base?'}]
```

Learn more about the basics of using a pipeline in the [pipeline tutorial](https://huggingface.co/docs/transformers/pipeline_tutorial). You can pass text generation parameters to this pipeline to control stopping criteria, decoding strategy, and more. Learn more about text generation parameters in [Text generation strategies](https://huggingface.co/docs/transformers/generation_strategies) and [Text generation](https://huggingface.co/docs/transformers/main_classes/text_generation).

This Text2TextGenerationPipeline pipeline can currently be loaded from [pipeline()](https://huggingface.co/docs/transformers/v4.34.1/en/main_classes/pipelines#transformers.pipeline) using the following task identifier: `"text2text-generation"`.

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 [boincai.com/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.GenerationMixin.generate)

Usage:

Copied

```
text2text_generator = pipeline("text2text-generation")
text2text_generator("question: What is 42 ? context: 42 is the answer to life, the universe and everything")
```

**\_\_call\_\_**

[\<source>](https://github.com/huggingface/transformers/blob/v4.34.1/src/transformers/pipelines/text2text_generation.py#L138)

( \*args\*\*kwargs ) → A list or a list of list of `dict`

Parameters

* **args** (`str` or `List[str]`) — Input text for the encoder.
* **return\_tensors** (`bool`, *optional*, defaults to `False`) — Whether or not to include the tensors of predictions (as token indices) in the outputs.
* **return\_text** (`bool`, *optional*, defaults to `True`) — Whether or not to include the decoded texts in the outputs.
* **clean\_up\_tokenization\_spaces** (`bool`, *optional*, defaults to `False`) — Whether or not to clean up the potential extra spaces in the text output.
* **truncation** (`TruncationStrategy`, *optional*, defaults to `TruncationStrategy.DO_NOT_TRUNCATE`) — The truncation strategy for the tokenization within the pipeline. `TruncationStrategy.DO_NOT_TRUNCATE` (default) will never truncate, but it is sometimes desirable to truncate the input to fit the model’s max\_length instead of throwing an error down the line. generate\_kwargs — Additional keyword arguments to pass along to the generate method of the model (see the generate method corresponding to your framework [here](https://huggingface.co/docs/transformers/main_classes/model#generative-models)).

Returns

A list or a list of list of `dict`

Each result comes as a dictionary with the following keys:

* **generated\_text** (`str`, present when `return_text=True`) — The generated text.
* **generated\_token\_ids** (`torch.Tensor` or `tf.Tensor`, present when `return_tensors=True`) — The token ids of the generated text.

Generate the output text(s) using text(s) given as inputs.

**check\_inputs**

[\<source>](https://github.com/huggingface/transformers/blob/v4.34.1/src/transformers/pipelines/text2text_generation.py#L111)

( input\_length: intmin\_length: intmax\_length: int )

Checks whether there might be something wrong with given input with regard to the model.

#### TokenClassificationPipeline

#### class transformers.TokenClassificationPipeline

[\<source>](https://github.com/huggingface/transformers/blob/v4.34.1/src/transformers/pipelines/token_classification.py#L96)

( args\_parser = \<transformers.pipelines.token\_classification.TokenClassificationArgumentHandler object at 0x7f8de61e9ac0>\*args\*\*kwargs )

Parameters

* **model** ([PreTrainedModel](https://huggingface.co/docs/transformers/v4.34.1/en/main_classes/model#transformers.PreTrainedModel) or [TFPreTrainedModel](https://huggingface.co/docs/transformers/v4.34.1/en/main_classes/model#transformers.TFPreTrainedModel)) — The model that will be used by the pipeline to make predictions. This needs to be a model inheriting from [PreTrainedModel](https://huggingface.co/docs/transformers/v4.34.1/en/main_classes/model#transformers.PreTrainedModel) for PyTorch and [TFPreTrainedModel](https://huggingface.co/docs/transformers/v4.34.1/en/main_classes/model#transformers.TFPreTrainedModel) for TensorFlow.
* **tokenizer** ([PreTrainedTokenizer](https://huggingface.co/docs/transformers/v4.34.1/en/main_classes/tokenizer#transformers.PreTrainedTokenizer)) — The tokenizer that will be used by the pipeline to encode data for the model. This object inherits from [PreTrainedTokenizer](https://huggingface.co/docs/transformers/v4.34.1/en/main_classes/tokenizer#transformers.PreTrainedTokenizer).
* **modelcard** (`str` or `ModelCard`, *optional*) — Model card attributed to the model for this pipeline.
* **framework** (`str`, *optional*) — The framework to use, either `"pt"` for PyTorch or `"tf"` for TensorFlow. The specified framework must be installed.

  If no framework is specified, will default to the one currently installed. If no framework is specified and both frameworks are installed, will default to the framework of the `model`, or to PyTorch if no model is provided.
* **task** (`str`, defaults to `""`) — A task-identifier for the pipeline.
* **num\_workers** (`int`, *optional*, defaults to 8) — When the pipeline will use *DataLoader* (when passing a dataset, on GPU for a Pytorch model), the number of workers to be used.
* **batch\_size** (`int`, *optional*, defaults to 1) — When the pipeline will use *DataLoader* (when passing a dataset, on GPU for a Pytorch model), the size of the batch to use, for inference this is not always beneficial, please read [Batching with pipelines](https://huggingface.co/transformers/main_classes/pipelines.html#pipeline-batching) .
* **args\_parser** ([ArgumentHandler](https://huggingface.co/docs/transformers/v4.34.1/en/internal/pipelines_utils#transformers.pipelines.ArgumentHandler), *optional*) — Reference to the object in charge of parsing supplied pipeline parameters.
* **device** (`int`, *optional*, defaults to -1) — Device ordinal for CPU/GPU supports. Setting this to -1 will leverage CPU, a positive will run the model on the associated CUDA device id. You can pass native `torch.device` or a `str` too.
* **binary\_output** (`bool`, *optional*, defaults to `False`) — Flag indicating if the output the pipeline should happen in a binary format (i.e., pickle) or as raw text.
* **ignore\_labels** (`List[str]`, defaults to `["O"]`) — A list of labels to ignore.
* **grouped\_entities** (`bool`, *optional*, defaults to `False`) — DEPRECATED, use `aggregation_strategy` instead. Whether or not to group the tokens corresponding to the same entity together in the predictions or not.
* **stride** (`int`, *optional*) — If stride is provided, the pipeline is applied on all the text. The text is split into chunks of size model\_max\_length. Works only with fast tokenizers and `aggregation_strategy` different from `NONE`. The value of this argument defines the number of overlapping tokens between chunks. In other words, the model will shift forward by `tokenizer.model_max_length - stride` tokens each step.
* **aggregation\_strategy** (`str`, *optional*, defaults to `"none"`) — The strategy to fuse (or not) tokens based on the model prediction.
  * “none” : Will simply not do any aggregation and simply return raw results from the model
  * “simple” : Will attempt to group entities following the default schema. (A, B-TAG), (B, I-TAG), (C, I-TAG), (D, B-TAG2) (E, B-TAG2) will end up being \[{“word”: ABC, “entity”: “TAG”}, {“word”: “D”, “entity”: “TAG2”}, {“word”: “E”, “entity”: “TAG2”}] Notice that two consecutive B tags will end up as different entities. On word based languages, we might end up splitting words undesirably : Imagine Microsoft being tagged as \[{“word”: “Micro”, “entity”: “ENTERPRISE”}, {“word”: “soft”, “entity”: “NAME”}]. Look for FIRST, MAX, AVERAGE for ways to mitigate that and disambiguate words (on languages that support that meaning, which is basically tokens separated by a space). These mitigations will only work on real words, “New york” might still be tagged with two different entities.
  * “first” : (works only on word based models) Will use the `SIMPLE` strategy except that words, cannot end up with different tags. Words will simply use the tag of the first token of the word when there is ambiguity.
  * “average” : (works only on word based models) Will use the `SIMPLE` strategy except that words, cannot end up with different tags. scores will be averaged first across tokens, and then the maximum label is applied.
  * “max” : (works only on word based models) Will use the `SIMPLE` strategy except that words, cannot end up with different tags. Word entity will simply be the token with the maximum score.

Named Entity Recognition pipeline using any `ModelForTokenClassification`. See the [named entity recognition examples](https://huggingface.co/docs/transformers/task_summary#named-entity-recognition) for more information.

Example:

Copied

```
>>> from transformers import pipeline

>>> token_classifier = pipeline(model="Jean-Baptiste/camembert-ner", aggregation_strategy="simple")
>>> sentence = "Je m'appelle jean-baptiste et je vis à montréal"
>>> tokens = token_classifier(sentence)
>>> tokens
[{'entity_group': 'PER', 'score': 0.9931, 'word': 'jean-baptiste', 'start': 12, 'end': 26}, {'entity_group': 'LOC', 'score': 0.998, 'word': 'montréal', 'start': 38, 'end': 47}]

>>> token = tokens[0]
>>> # Start and end provide an easy way to highlight words in the original text.
>>> sentence[token["start"] : token["end"]]
' jean-baptiste'

>>> # Some models use the same idea to do part of speech.
>>> syntaxer = pipeline(model="vblagoje/bert-english-uncased-finetuned-pos", aggregation_strategy="simple")
>>> syntaxer("My name is Sarah and I live in London")
[{'entity_group': 'PRON', 'score': 0.999, 'word': 'my', 'start': 0, 'end': 2}, {'entity_group': 'NOUN', 'score': 0.997, 'word': 'name', 'start': 3, 'end': 7}, {'entity_group': 'AUX', 'score': 0.994, 'word': 'is', 'start': 8, 'end': 10}, {'entity_group': 'PROPN', 'score': 0.999, 'word': 'sarah', 'start': 11, 'end': 16}, {'entity_group': 'CCONJ', 'score': 0.999, 'word': 'and', 'start': 17, 'end': 20}, {'entity_group': 'PRON', 'score': 0.999, 'word': 'i', 'start': 21, 'end': 22}, {'entity_group': 'VERB', 'score': 0.998, 'word': 'live', 'start': 23, 'end': 27}, {'entity_group': 'ADP', 'score': 0.999, 'word': 'in', 'start': 28, 'end': 30}, {'entity_group': 'PROPN', 'score': 0.999, 'word': 'london', 'start': 31, 'end': 37}]
```

Learn more about the basics of using a pipeline in the [pipeline tutorial](https://huggingface.co/docs/transformers/pipeline_tutorial)

This token recognition pipeline can currently be loaded from [pipeline()](https://huggingface.co/docs/transformers/v4.34.1/en/main_classes/pipelines#transformers.pipeline) using the following task identifier: `"ner"` (for predicting the classes of tokens in a sequence: person, organisation, location or miscellaneous).

The models that this pipeline can use are models that have been fine-tuned on a token classification task. See the up-to-date list of available models on [boincai.com/models](https://huggingface.co/models?filter=token-classification).

**\_\_call\_\_**

[\<source>](https://github.com/huggingface/transformers/blob/v4.34.1/src/transformers/pipelines/token_classification.py#L219)

( inputs: typing.Union\[str, typing.List\[str]]\*\*kwargs ) → A list or a list of list of `dict`

Parameters

* **inputs** (`str` or `List[str]`) — One or several texts (or one list of texts) for token classification.

Returns

A list or a list of list of `dict`

Each result comes as a list of dictionaries (one for each token in the corresponding input, or each entity if this pipeline was instantiated with an aggregation\_strategy) with the following keys:

* **word** (`str`) — The token/word classified. This is obtained by decoding the selected tokens. If you want to have the exact string in the original sentence, use `start` and `end`.
* **score** (`float`) — The corresponding probability for `entity`.
* **entity** (`str`) — The entity predicted for that token/word (it is named *entity\_group* when *aggregation\_strategy* is not `"none"`.
* **index** (`int`, only present when `aggregation_strategy="none"`) — The index of the corresponding token in the sentence.
* **start** (`int`, *optional*) — The index of the start of the corresponding entity in the sentence. Only exists if the offsets are available within the tokenizer
* **end** (`int`, *optional*) — The index of the end of the corresponding entity in the sentence. Only exists if the offsets are available within the tokenizer

Classify each token of the text(s) given as inputs.

**aggregate\_words**

[\<source>](https://github.com/huggingface/transformers/blob/v4.34.1/src/transformers/pipelines/token_classification.py#L470)

( entities: typing.List\[dict]aggregation\_strategy: AggregationStrategy )

Override tokens from a given word that disagree to force agreement on word boundaries.

Example: micro|soft| com|pany| B-ENT I-NAME I-ENT I-ENT will be rewritten with first strategy as microsoft| company| B-ENT I-ENT

**gather\_pre\_entities**

[\<source>](https://github.com/huggingface/transformers/blob/v4.34.1/src/transformers/pipelines/token_classification.py#L356)

( sentence: strinput\_ids: ndarrayscores: ndarrayoffset\_mapping: typing.Union\[typing.List\[typing.Tuple\[int, int]], NoneType]special\_tokens\_mask: ndarrayaggregation\_strategy: AggregationStrategy )

Fuse various numpy arrays into dicts with all the information needed for aggregation

**group\_entities**

[\<source>](https://github.com/huggingface/transformers/blob/v4.34.1/src/transformers/pipelines/token_classification.py#L533)

( entities: typing.List\[dict] )

Parameters

* **entities** (`dict`) — The entities predicted by the pipeline.

Find and group together the adjacent tokens with the same entity predicted.

**group\_sub\_entities**

[\<source>](https://github.com/huggingface/transformers/blob/v4.34.1/src/transformers/pipelines/token_classification.py#L498)

( entities: typing.List\[dict] )

Parameters

* **entities** (`dict`) — The entities predicted by the pipeline.

Group together the adjacent tokens with the same entity predicted.

#### TranslationPipeline

#### class transformers.TranslationPipeline

[\<source>](https://github.com/huggingface/transformers/blob/v4.34.1/src/transformers/pipelines/text2text_generation.py#L287)

( \*args\*\*kwargs )

Parameters

* **model** ([PreTrainedModel](https://huggingface.co/docs/transformers/v4.34.1/en/main_classes/model#transformers.PreTrainedModel) or [TFPreTrainedModel](https://huggingface.co/docs/transformers/v4.34.1/en/main_classes/model#transformers.TFPreTrainedModel)) — The model that will be used by the pipeline to make predictions. This needs to be a model inheriting from [PreTrainedModel](https://huggingface.co/docs/transformers/v4.34.1/en/main_classes/model#transformers.PreTrainedModel) for PyTorch and [TFPreTrainedModel](https://huggingface.co/docs/transformers/v4.34.1/en/main_classes/model#transformers.TFPreTrainedModel) for TensorFlow.
* **tokenizer** ([PreTrainedTokenizer](https://huggingface.co/docs/transformers/v4.34.1/en/main_classes/tokenizer#transformers.PreTrainedTokenizer)) — The tokenizer that will be used by the pipeline to encode data for the model. This object inherits from [PreTrainedTokenizer](https://huggingface.co/docs/transformers/v4.34.1/en/main_classes/tokenizer#transformers.PreTrainedTokenizer).
* **modelcard** (`str` or `ModelCard`, *optional*) — Model card attributed to the model for this pipeline.
* **framework** (`str`, *optional*) — The framework to use, either `"pt"` for PyTorch or `"tf"` for TensorFlow. The specified framework must be installed.

  If no framework is specified, will default to the one currently installed. If no framework is specified and both frameworks are installed, will default to the framework of the `model`, or to PyTorch if no model is provided.
* **task** (`str`, defaults to `""`) — A task-identifier for the pipeline.
* **num\_workers** (`int`, *optional*, defaults to 8) — When the pipeline will use *DataLoader* (when passing a dataset, on GPU for a Pytorch model), the number of workers to be used.
* **batch\_size** (`int`, *optional*, defaults to 1) — When the pipeline will use *DataLoader* (when passing a dataset, on GPU for a Pytorch model), the size of the batch to use, for inference this is not always beneficial, please read [Batching with pipelines](https://huggingface.co/transformers/main_classes/pipelines.html#pipeline-batching) .
* **args\_parser** ([ArgumentHandler](https://huggingface.co/docs/transformers/v4.34.1/en/internal/pipelines_utils#transformers.pipelines.ArgumentHandler), *optional*) — Reference to the object in charge of parsing supplied pipeline parameters.
* **device** (`int`, *optional*, defaults to -1) — Device ordinal for CPU/GPU supports. Setting this to -1 will leverage CPU, a positive will run the model on the associated CUDA device id. You can pass native `torch.device` or a `str` too.
* **binary\_output** (`bool`, *optional*, defaults to `False`) — Flag indicating if the output the pipeline should happen in a binary format (i.e., pickle) or as raw text.

Translates from one language to another.

This translation pipeline can currently be loaded from [pipeline()](https://huggingface.co/docs/transformers/v4.34.1/en/main_classes/pipelines#transformers.pipeline) using the following task identifier: `"translation_xx_to_yy"`.

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 [boincai.com/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.GenerationMixin.generate)

Usage:

Copied

```
en_fr_translator = pipeline("translation_en_to_fr")
en_fr_translator("How old are you?")
```

**\_\_call\_\_**

[\<source>](https://github.com/huggingface/transformers/blob/v4.34.1/src/transformers/pipelines/text2text_generation.py#L341)

( \*args\*\*kwargs ) → A list or a list of list of `dict`

Parameters

* **args** (`str` or `List[str]`) — Texts to be translated.
* **return\_tensors** (`bool`, *optional*, defaults to `False`) — Whether or not to include the tensors of predictions (as token indices) in the outputs.
* **return\_text** (`bool`, *optional*, defaults to `True`) — Whether or not to include the decoded texts in the outputs.
* **clean\_up\_tokenization\_spaces** (`bool`, *optional*, defaults to `False`) — Whether or not to clean up the potential extra spaces in the text output.
* **src\_lang** (`str`, *optional*) — The language of the input. Might be required for multilingual models. Will not have any effect for single pair translation models
* **tgt\_lang** (`str`, *optional*) — The language of the desired output. Might be required for multilingual models. Will not have any effect for single pair translation models generate\_kwargs — Additional keyword arguments to pass along to the generate method of the model (see the generate method corresponding to your framework [here](https://huggingface.co/docs/transformers/main_classes/model#generative-models)).

Returns

A list or a list of list of `dict`

Each result comes as a dictionary with the following keys:

* **translation\_text** (`str`, present when `return_text=True`) — The translation.
* **translation\_token\_ids** (`torch.Tensor` or `tf.Tensor`, present when `return_tensors=True`) — The token ids of the translation.

Translate the text(s) given as inputs.

#### ZeroShotClassificationPipeline

#### class transformers.ZeroShotClassificationPipeline

[\<source>](https://github.com/huggingface/transformers/blob/v4.34.1/src/transformers/pipelines/zero_shot_classification.py#L47)

( args\_parser = \<transformers.pipelines.zero\_shot\_classification.ZeroShotClassificationArgumentHandler object at 0x7f8de59f6670>\*args\*\*kwargs )

Parameters

* **model** ([PreTrainedModel](https://huggingface.co/docs/transformers/v4.34.1/en/main_classes/model#transformers.PreTrainedModel) or [TFPreTrainedModel](https://huggingface.co/docs/transformers/v4.34.1/en/main_classes/model#transformers.TFPreTrainedModel)) — The model that will be used by the pipeline to make predictions. This needs to be a model inheriting from [PreTrainedModel](https://huggingface.co/docs/transformers/v4.34.1/en/main_classes/model#transformers.PreTrainedModel) for PyTorch and [TFPreTrainedModel](https://huggingface.co/docs/transformers/v4.34.1/en/main_classes/model#transformers.TFPreTrainedModel) for TensorFlow.
* **tokenizer** ([PreTrainedTokenizer](https://huggingface.co/docs/transformers/v4.34.1/en/main_classes/tokenizer#transformers.PreTrainedTokenizer)) — The tokenizer that will be used by the pipeline to encode data for the model. This object inherits from [PreTrainedTokenizer](https://huggingface.co/docs/transformers/v4.34.1/en/main_classes/tokenizer#transformers.PreTrainedTokenizer).
* **modelcard** (`str` or `ModelCard`, *optional*) — Model card attributed to the model for this pipeline.
* **framework** (`str`, *optional*) — The framework to use, either `"pt"` for PyTorch or `"tf"` for TensorFlow. The specified framework must be installed.

  If no framework is specified, will default to the one currently installed. If no framework is specified and both frameworks are installed, will default to the framework of the `model`, or to PyTorch if no model is provided.
* **task** (`str`, defaults to `""`) — A task-identifier for the pipeline.
* **num\_workers** (`int`, *optional*, defaults to 8) — When the pipeline will use *DataLoader* (when passing a dataset, on GPU for a Pytorch model), the number of workers to be used.
* **batch\_size** (`int`, *optional*, defaults to 1) — When the pipeline will use *DataLoader* (when passing a dataset, on GPU for a Pytorch model), the size of the batch to use, for inference this is not always beneficial, please read [Batching with pipelines](https://huggingface.co/transformers/main_classes/pipelines.html#pipeline-batching) .
* **args\_parser** ([ArgumentHandler](https://huggingface.co/docs/transformers/v4.34.1/en/internal/pipelines_utils#transformers.pipelines.ArgumentHandler), *optional*) — Reference to the object in charge of parsing supplied pipeline parameters.
* **device** (`int`, *optional*, defaults to -1) — Device ordinal for CPU/GPU supports. Setting this to -1 will leverage CPU, a positive will run the model on the associated CUDA device id. You can pass native `torch.device` or a `str` too.
* **binary\_output** (`bool`, *optional*, defaults to `False`) — Flag indicating if the output the pipeline should happen in a binary format (i.e., pickle) or as raw text.

NLI-based zero-shot classification pipeline using a `ModelForSequenceClassification` trained on NLI (natural language inference) tasks. Equivalent of `text-classification` pipelines, but these models don’t require a hardcoded number of potential classes, they can be chosen at runtime. It usually means it’s slower but it is **much** more flexible.

Any combination of sequences and labels can be passed and each combination will be posed as a premise/hypothesis pair and passed to the pretrained model. Then, the logit for *entailment* is taken as the logit for the candidate label being valid. Any NLI model can be used, but the id of the *entailment* label must be included in the model config’s :attr:*\~transformers.PretrainedConfig.label2id*.

Example:

Copied

```
>>> from transformers import pipeline

>>> oracle = pipeline(model="facebook/bart-large-mnli")
>>> oracle(
...     "I have a problem with my iphone that needs to be resolved asap!!",
...     candidate_labels=["urgent", "not urgent", "phone", "tablet", "computer"],
... )
{'sequence': 'I have a problem with my iphone that needs to be resolved asap!!', 'labels': ['urgent', 'phone', 'computer', 'not urgent', 'tablet'], 'scores': [0.504, 0.479, 0.013, 0.003, 0.002]}

>>> oracle(
...     "I have a problem with my iphone that needs to be resolved asap!!",
...     candidate_labels=["english", "german"],
... )
{'sequence': 'I have a problem with my iphone that needs to be resolved asap!!', 'labels': ['english', 'german'], 'scores': [0.814, 0.186]}
```

Learn more about the basics of using a pipeline in the [pipeline tutorial](https://huggingface.co/docs/transformers/pipeline_tutorial)

This NLI pipeline can currently be loaded from [pipeline()](https://huggingface.co/docs/transformers/v4.34.1/en/main_classes/pipelines#transformers.pipeline) using the following task identifier: `"zero-shot-classification"`.

The models that this pipeline can use are models that have been fine-tuned on an NLI task. See the up-to-date list of available models on [boincai.com/models](https://huggingface.co/models?search=nli).

**\_\_call\_\_**

[\<source>](https://github.com/huggingface/transformers/blob/v4.34.1/src/transformers/pipelines/zero_shot_classification.py#L163)

( sequences: typing.Union\[str, typing.List\[str]]\*args\*\*kwargs ) → A `dict` or a list of `dict`

Parameters

* **sequences** (`str` or `List[str]`) — The sequence(s) to classify, will be truncated if the model input is too large.
* **candidate\_labels** (`str` or `List[str]`) — The set of possible class labels to classify each sequence into. Can be a single label, a string of comma-separated labels, or a list of labels.
* **hypothesis\_template** (`str`, *optional*, defaults to `"This example is {}."`) — The template used to turn each label into an NLI-style hypothesis. This template must include a {} or similar syntax for the candidate label to be inserted into the template. For example, the default template is `"This example is {}."` With the candidate label `"sports"`, this would be fed into the model like `"<cls> sequence to classify <sep> This example is sports . <sep>"`. The default template works well in many cases, but it may be worthwhile to experiment with different templates depending on the task setting.
* **multi\_label** (`bool`, *optional*, defaults to `False`) — Whether or not multiple candidate labels can be true. If `False`, the scores are normalized such that the sum of the label likelihoods for each sequence is 1. If `True`, the labels are considered independent and probabilities are normalized for each candidate by doing a softmax of the entailment score vs. the contradiction score.

Returns

A `dict` or a list of `dict`

Each result comes as a dictionary with the following keys:

* **sequence** (`str`) — The sequence for which this is the output.
* **labels** (`List[str]`) — The labels sorted by order of likelihood.
* **scores** (`List[float]`) — The probabilities for each of the labels.

Classify the sequence(s) given as inputs. See the [ZeroShotClassificationPipeline](https://huggingface.co/docs/transformers/v4.34.1/en/main_classes/pipelines#transformers.ZeroShotClassificationPipeline) documentation for more information.

### Multimodal

Pipelines available for multimodal tasks include the following.

#### DocumentQuestionAnsweringPipeline

#### class transformers.DocumentQuestionAnsweringPipeline

[\<source>](https://github.com/huggingface/transformers/blob/v4.34.1/src/transformers/pipelines/document_question_answering.py#L102)

( \*args\*\*kwargs )

Parameters

* **model** ([PreTrainedModel](https://huggingface.co/docs/transformers/v4.34.1/en/main_classes/model#transformers.PreTrainedModel) or [TFPreTrainedModel](https://huggingface.co/docs/transformers/v4.34.1/en/main_classes/model#transformers.TFPreTrainedModel)) — The model that will be used by the pipeline to make predictions. This needs to be a model inheriting from [PreTrainedModel](https://huggingface.co/docs/transformers/v4.34.1/en/main_classes/model#transformers.PreTrainedModel) for PyTorch and [TFPreTrainedModel](https://huggingface.co/docs/transformers/v4.34.1/en/main_classes/model#transformers.TFPreTrainedModel) for TensorFlow.
* **tokenizer** ([PreTrainedTokenizer](https://huggingface.co/docs/transformers/v4.34.1/en/main_classes/tokenizer#transformers.PreTrainedTokenizer)) — The tokenizer that will be used by the pipeline to encode data for the model. This object inherits from [PreTrainedTokenizer](https://huggingface.co/docs/transformers/v4.34.1/en/main_classes/tokenizer#transformers.PreTrainedTokenizer).
* **modelcard** (`str` or `ModelCard`, *optional*) — Model card attributed to the model for this pipeline.
* **framework** (`str`, *optional*) — The framework to use, either `"pt"` for PyTorch or `"tf"` for TensorFlow. The specified framework must be installed.

  If no framework is specified, will default to the one currently installed. If no framework is specified and both frameworks are installed, will default to the framework of the `model`, or to PyTorch if no model is provided.
* **task** (`str`, defaults to `""`) — A task-identifier for the pipeline.
* **num\_workers** (`int`, *optional*, defaults to 8) — When the pipeline will use *DataLoader* (when passing a dataset, on GPU for a Pytorch model), the number of workers to be used.
* **batch\_size** (`int`, *optional*, defaults to 1) — When the pipeline will use *DataLoader* (when passing a dataset, on GPU for a Pytorch model), the size of the batch to use, for inference this is not always beneficial, please read [Batching with pipelines](https://huggingface.co/transformers/main_classes/pipelines.html#pipeline-batching) .
* **args\_parser** ([ArgumentHandler](https://huggingface.co/docs/transformers/v4.34.1/en/internal/pipelines_utils#transformers.pipelines.ArgumentHandler), *optional*) — Reference to the object in charge of parsing supplied pipeline parameters.
* **device** (`int`, *optional*, defaults to -1) — Device ordinal for CPU/GPU supports. Setting this to -1 will leverage CPU, a positive will run the model on the associated CUDA device id. You can pass native `torch.device` or a `str` too.
* **binary\_output** (`bool`, *optional*, defaults to `False`) — Flag indicating if the output the pipeline should happen in a binary format (i.e., pickle) or as raw text.

Document Question Answering pipeline using any `AutoModelForDocumentQuestionAnswering`. The inputs/outputs are similar to the (extractive) question answering pipeline; however, the pipeline takes an image (and optional OCR’d words/boxes) as input instead of text context.

Example:

Copied

```
>>> from transformers import pipeline

>>> document_qa = pipeline(model="impira/layoutlm-document-qa")
>>> document_qa(
...     image="https://boincai.com/spaces/impira/docquery/resolve/2359223c1837a7587402bda0f2643382a6eefeab/invoice.png",
...     question="What is the invoice number?",
... )
[{'score': 0.425, 'answer': 'us-001', 'start': 16, 'end': 16}]
```

Learn more about the basics of using a pipeline in the [pipeline tutorial](https://huggingface.co/docs/transformers/pipeline_tutorial)

This document question answering pipeline can currently be loaded from [pipeline()](https://huggingface.co/docs/transformers/v4.34.1/en/main_classes/pipelines#transformers.pipeline) using the following task identifier: `"document-question-answering"`.

The models that this pipeline can use are models that have been fine-tuned on a document question answering task. See the up-to-date list of available models on [boincai.com/models](https://huggingface.co/models?filter=document-question-answering).

**\_\_call\_\_**

[\<source>](https://github.com/huggingface/transformers/blob/v4.34.1/src/transformers/pipelines/document_question_answering.py#L194)

( image: typing.Union\[ForwardRef('Image.Image'), str]question: typing.Optional\[str] = Noneword\_boxes: typing.Tuple\[str, typing.List\[float]] = None\*\*kwargs ) → A `dict` or a list of `dict`

Parameters

* **image** (`str` or `PIL.Image`) — The pipeline handles three types of images:

  * A string containing a http link pointing to an image
  * A string containing a local path to an image
  * An image loaded in PIL directly

  The pipeline accepts either a single image or a batch of images. If given a single image, it can be broadcasted to multiple questions.
* **question** (`str`) — A question to ask of the document.
* **word\_boxes** (`List[str, Tuple[float, float, float, float]]`, *optional*) — A list of words and bounding boxes (normalized 0->1000). If you provide this optional input, then the pipeline will use these words and boxes instead of running OCR on the image to derive them for models that need them (e.g. LayoutLM). This allows you to reuse OCR’d results across many invocations of the pipeline without having to re-run it each time.
* **top\_k** (`int`, *optional*, defaults to 1) — The number of answers to return (will be chosen by order of likelihood). Note that we return less than top\_k answers if there are not enough options available within the context.
* **doc\_stride** (`int`, *optional*, defaults to 128) — If the words in the document are too long to fit with the question for the model, it will be split in several chunks with some overlap. This argument controls the size of that overlap.
* **max\_answer\_len** (`int`, *optional*, defaults to 15) — The maximum length of predicted answers (e.g., only answers with a shorter length are considered).
* **max\_seq\_len** (`int`, *optional*, defaults to 384) — The maximum length of the total sentence (context + question) in tokens of each chunk passed to the model. The context will be split in several chunks (using `doc_stride` as overlap) if needed.
* **max\_question\_len** (`int`, *optional*, defaults to 64) — The maximum length of the question after tokenization. It will be truncated if needed.
* **handle\_impossible\_answer** (`bool`, *optional*, defaults to `False`) — Whether or not we accept impossible as an answer.
* **lang** (`str`, *optional*) — Language to use while running OCR. Defaults to english.
* **tesseract\_config** (`str`, *optional*) — Additional flags to pass to tesseract while running OCR.
* **timeout** (`float`, *optional*, defaults to None) — The maximum time in seconds to wait for fetching images from the web. If None, no timeout is set and the call may block forever.

Returns

A `dict` or a list of `dict`

Each result comes as a dictionary with the following keys:

* **score** (`float`) — The probability associated to the answer.
* **start** (`int`) — The start word index of the answer (in the OCR’d version of the input or provided `word_boxes`).
* **end** (`int`) — The end word index of the answer (in the OCR’d version of the input or provided `word_boxes`).
* **answer** (`str`) — The answer to the question.
* **words** (`list[int]`) — The index of each word/box pair that is in the answer

Answer the question(s) given as inputs by using the document(s). A document is defined as an image and an optional list of (word, box) tuples which represent the text in the document. If the `word_boxes` are not provided, it will use the Tesseract OCR engine (if available) to extract the words and boxes automatically for LayoutLM-like models which require them as input. For Donut, no OCR is run.

You can invoke the pipeline several ways:

* `pipeline(image=image, question=question)`
* `pipeline(image=image, question=question, word_boxes=word_boxes)`
* `pipeline([{"image": image, "question": question}])`
* `pipeline([{"image": image, "question": question, "word_boxes": word_boxes}])`

#### FeatureExtractionPipeline

#### class transformers.FeatureExtractionPipeline

[\<source>](https://github.com/huggingface/transformers/blob/v4.34.1/src/transformers/pipelines/feature_extraction.py#L7)

( model: typing.Union\[ForwardRef('PreTrainedModel'), ForwardRef('TFPreTrainedModel')]tokenizer: typing.Optional\[transformers.tokenization\_utils.PreTrainedTokenizer] = Nonefeature\_extractor: typing.Optional\[ForwardRef('SequenceFeatureExtractor')] = Noneimage\_processor: typing.Optional\[transformers.image\_processing\_utils.BaseImageProcessor] = Nonemodelcard: typing.Optional\[transformers.modelcard.ModelCard] = Noneframework: typing.Optional\[str] = Nonetask: str = ''args\_parser: ArgumentHandler = Nonedevice: typing.Union\[int, ForwardRef('torch.device')] = Nonetorch\_dtype: typing.Union\[str, ForwardRef('torch.dtype'), NoneType] = Nonebinary\_output: bool = False\*\*kwargs )

Parameters

* **model** ([PreTrainedModel](https://huggingface.co/docs/transformers/v4.34.1/en/main_classes/model#transformers.PreTrainedModel) or [TFPreTrainedModel](https://huggingface.co/docs/transformers/v4.34.1/en/main_classes/model#transformers.TFPreTrainedModel)) — The model that will be used by the pipeline to make predictions. This needs to be a model inheriting from [PreTrainedModel](https://huggingface.co/docs/transformers/v4.34.1/en/main_classes/model#transformers.PreTrainedModel) for PyTorch and [TFPreTrainedModel](https://huggingface.co/docs/transformers/v4.34.1/en/main_classes/model#transformers.TFPreTrainedModel) for TensorFlow.
* **tokenizer** ([PreTrainedTokenizer](https://huggingface.co/docs/transformers/v4.34.1/en/main_classes/tokenizer#transformers.PreTrainedTokenizer)) — The tokenizer that will be used by the pipeline to encode data for the model. This object inherits from [PreTrainedTokenizer](https://huggingface.co/docs/transformers/v4.34.1/en/main_classes/tokenizer#transformers.PreTrainedTokenizer).
* **modelcard** (`str` or `ModelCard`, *optional*) — Model card attributed to the model for this pipeline.
* **framework** (`str`, *optional*) — The framework to use, either `"pt"` for PyTorch or `"tf"` for TensorFlow. The specified framework must be installed.

  If no framework is specified, will default to the one currently installed. If no framework is specified and both frameworks are installed, will default to the framework of the `model`, or to PyTorch if no model is provided.
* **return\_tensors** (`bool`, *optional*) — If `True`, returns a tensor according to the specified framework, otherwise returns a list.
* **task** (`str`, defaults to `""`) — A task-identifier for the pipeline.
* **args\_parser** ([ArgumentHandler](https://huggingface.co/docs/transformers/v4.34.1/en/internal/pipelines_utils#transformers.pipelines.ArgumentHandler), *optional*) — Reference to the object in charge of parsing supplied pipeline parameters.
* **device** (`int`, *optional*, defaults to -1) — Device ordinal for CPU/GPU supports. Setting this to -1 will leverage CPU, a positive will run the model on the associated CUDA device id.
* **tokenize\_kwargs** (`dict`, *optional*) — Additional dictionary of keyword arguments passed along to the tokenizer.

Feature extraction pipeline using no model head. This pipeline extracts the hidden states from the base transformer, which can be used as features in downstream tasks.

Example:

Copied

```
>>> from transformers import pipeline

>>> extractor = pipeline(model="bert-base-uncased", task="feature-extraction")
>>> result = extractor("This is a simple test.", return_tensors=True)
>>> result.shape  # This is a tensor of shape [1, sequence_lenth, hidden_dimension] representing the input string.
torch.Size([1, 8, 768])
```

Learn more about the basics of using a pipeline in the [pipeline tutorial](https://huggingface.co/docs/transformers/pipeline_tutorial)

This feature extraction pipeline can currently be loaded from [pipeline()](https://huggingface.co/docs/transformers/v4.34.1/en/main_classes/pipelines#transformers.pipeline) using the task identifier: `"feature-extraction"`.

All models may be used for this pipeline. See a list of all models, including community-contributed models on [boincai.com/models](https://huggingface.co/models).

**\_\_call\_\_**

[\<source>](https://github.com/huggingface/transformers/blob/v4.34.1/src/transformers/pipelines/feature_extraction.py#L97)

( \*args\*\*kwargs ) → A nested list of `float`

Parameters

* **args** (`str` or `List[str]`) — One or several texts (or one list of texts) to get the features of.

Returns

A nested list of `float`

The features computed by the model.

Extract the features of the input(s).

#### ImageToTextPipeline

#### class transformers.ImageToTextPipeline

[\<source>](https://github.com/huggingface/transformers/blob/v4.34.1/src/transformers/pipelines/image_to_text.py#L31)

( \*args\*\*kwargs )

Parameters

* **model** ([PreTrainedModel](https://huggingface.co/docs/transformers/v4.34.1/en/main_classes/model#transformers.PreTrainedModel) or [TFPreTrainedModel](https://huggingface.co/docs/transformers/v4.34.1/en/main_classes/model#transformers.TFPreTrainedModel)) — The model that will be used by the pipeline to make predictions. This needs to be a model inheriting from [PreTrainedModel](https://huggingface.co/docs/transformers/v4.34.1/en/main_classes/model#transformers.PreTrainedModel) for PyTorch and [TFPreTrainedModel](https://huggingface.co/docs/transformers/v4.34.1/en/main_classes/model#transformers.TFPreTrainedModel) for TensorFlow.
* **tokenizer** ([PreTrainedTokenizer](https://huggingface.co/docs/transformers/v4.34.1/en/main_classes/tokenizer#transformers.PreTrainedTokenizer)) — The tokenizer that will be used by the pipeline to encode data for the model. This object inherits from [PreTrainedTokenizer](https://huggingface.co/docs/transformers/v4.34.1/en/main_classes/tokenizer#transformers.PreTrainedTokenizer).
* **modelcard** (`str` or `ModelCard`, *optional*) — Model card attributed to the model for this pipeline.
* **framework** (`str`, *optional*) — The framework to use, either `"pt"` for PyTorch or `"tf"` for TensorFlow. The specified framework must be installed.

  If no framework is specified, will default to the one currently installed. If no framework is specified and both frameworks are installed, will default to the framework of the `model`, or to PyTorch if no model is provided.
* **task** (`str`, defaults to `""`) — A task-identifier for the pipeline.
* **num\_workers** (`int`, *optional*, defaults to 8) — When the pipeline will use *DataLoader* (when passing a dataset, on GPU for a Pytorch model), the number of workers to be used.
* **batch\_size** (`int`, *optional*, defaults to 1) — When the pipeline will use *DataLoader* (when passing a dataset, on GPU for a Pytorch model), the size of the batch to use, for inference this is not always beneficial, please read [Batching with pipelines](https://huggingface.co/transformers/main_classes/pipelines.html#pipeline-batching) .
* **args\_parser** ([ArgumentHandler](https://huggingface.co/docs/transformers/v4.34.1/en/internal/pipelines_utils#transformers.pipelines.ArgumentHandler), *optional*) — Reference to the object in charge of parsing supplied pipeline parameters.
* **device** (`int`, *optional*, defaults to -1) — Device ordinal for CPU/GPU supports. Setting this to -1 will leverage CPU, a positive will run the model on the associated CUDA device id. You can pass native `torch.device` or a `str` too.
* **binary\_output** (`bool`, *optional*, defaults to `False`) — Flag indicating if the output the pipeline should happen in a binary format (i.e., pickle) or as raw text.

Image To Text pipeline using a `AutoModelForVision2Seq`. This pipeline predicts a caption for a given image.

Example:

Copied

```
>>> from transformers import pipeline

>>> captioner = pipeline(model="ydshieh/vit-gpt2-coco-en")
>>> captioner("https://boincai.com/datasets/Narsil/image_dummy/raw/main/parrots.png")
[{'generated_text': 'two birds are standing next to each other '}]
```

Learn more about the basics of using a pipeline in the [pipeline tutorial](https://huggingface.co/docs/transformers/pipeline_tutorial)

This image to text pipeline can currently be loaded from pipeline() using the following task identifier: “image-to-text”.

See the list of available models on [boincai.com/models](https://huggingface.co/models?pipeline_tag=image-to-text).

**\_\_call\_\_**

[\<source>](https://github.com/huggingface/transformers/blob/v4.34.1/src/transformers/pipelines/image_to_text.py#L83)

( images: typing.Union\[str, typing.List\[str], ForwardRef('Image.Image'), typing.List\[ForwardRef('Image.Image')]]\*\*kwargs ) → A list or a list of list of `dict`

Parameters

* **images** (`str`, `List[str]`, `PIL.Image` or `List[PIL.Image]`) — The pipeline handles three types of images:

  * A string containing a HTTP(s) link pointing to an image
  * A string containing a local path to an image
  * An image loaded in PIL directly

  The pipeline accepts either a single image or a batch of images.
* **max\_new\_tokens** (`int`, *optional*) — The amount of maximum tokens to generate. By default it will use `generate` default.
* **generate\_kwargs** (`Dict`, *optional*) — Pass it to send all of these arguments directly to `generate` allowing full control of this function.
* **timeout** (`float`, *optional*, defaults to None) — The maximum time in seconds to wait for fetching images from the web. If None, no timeout is set and the call may block forever.

Returns

A list or a list of list of `dict`

Each result comes as a dictionary with the following key:

* **generated\_text** (`str`) — The generated text.

Assign labels to the image(s) passed as inputs.

#### VisualQuestionAnsweringPipeline

#### class transformers.VisualQuestionAnsweringPipeline

[\<source>](https://github.com/huggingface/transformers/blob/v4.34.1/src/transformers/pipelines/visual_question_answering.py#L19)

( \*args\*\*kwargs )

Parameters

* **model** ([PreTrainedModel](https://huggingface.co/docs/transformers/v4.34.1/en/main_classes/model#transformers.PreTrainedModel) or [TFPreTrainedModel](https://huggingface.co/docs/transformers/v4.34.1/en/main_classes/model#transformers.TFPreTrainedModel)) — The model that will be used by the pipeline to make predictions. This needs to be a model inheriting from [PreTrainedModel](https://huggingface.co/docs/transformers/v4.34.1/en/main_classes/model#transformers.PreTrainedModel) for PyTorch and [TFPreTrainedModel](https://huggingface.co/docs/transformers/v4.34.1/en/main_classes/model#transformers.TFPreTrainedModel) for TensorFlow.
* **tokenizer** ([PreTrainedTokenizer](https://huggingface.co/docs/transformers/v4.34.1/en/main_classes/tokenizer#transformers.PreTrainedTokenizer)) — The tokenizer that will be used by the pipeline to encode data for the model. This object inherits from [PreTrainedTokenizer](https://huggingface.co/docs/transformers/v4.34.1/en/main_classes/tokenizer#transformers.PreTrainedTokenizer).
* **modelcard** (`str` or `ModelCard`, *optional*) — Model card attributed to the model for this pipeline.
* **framework** (`str`, *optional*) — The framework to use, either `"pt"` for PyTorch or `"tf"` for TensorFlow. The specified framework must be installed.

  If no framework is specified, will default to the one currently installed. If no framework is specified and both frameworks are installed, will default to the framework of the `model`, or to PyTorch if no model is provided.
* **task** (`str`, defaults to `""`) — A task-identifier for the pipeline.
* **num\_workers** (`int`, *optional*, defaults to 8) — When the pipeline will use *DataLoader* (when passing a dataset, on GPU for a Pytorch model), the number of workers to be used.
* **batch\_size** (`int`, *optional*, defaults to 1) — When the pipeline will use *DataLoader* (when passing a dataset, on GPU for a Pytorch model), the size of the batch to use, for inference this is not always beneficial, please read [Batching with pipelines](https://huggingface.co/transformers/main_classes/pipelines.html#pipeline-batching) .
* **args\_parser** ([ArgumentHandler](https://huggingface.co/docs/transformers/v4.34.1/en/internal/pipelines_utils#transformers.pipelines.ArgumentHandler), *optional*) — Reference to the object in charge of parsing supplied pipeline parameters.
* **device** (`int`, *optional*, defaults to -1) — Device ordinal for CPU/GPU supports. Setting this to -1 will leverage CPU, a positive will run the model on the associated CUDA device id. You can pass native `torch.device` or a `str` too.
* **binary\_output** (`bool`, *optional*, defaults to `False`) — Flag indicating if the output the pipeline should happen in a binary format (i.e., pickle) or as raw text.

Visual Question Answering pipeline using a `AutoModelForVisualQuestionAnswering`. This pipeline is currently only available in PyTorch.

Example:

Copied

```
>>> from transformers import pipeline

>>> oracle = pipeline(model="dandelin/vilt-b32-finetuned-vqa")
>>> image_url = "https://boincai.com/datasets/Narsil/image_dummy/raw/main/lena.png"
>>> oracle(question="What is she wearing ?", image=image_url)
[{'score': 0.948, 'answer': 'hat'}, {'score': 0.009, 'answer': 'fedora'}, {'score': 0.003, 'answer': 'clothes'}, {'score': 0.003, 'answer': 'sun hat'}, {'score': 0.002, 'answer': 'nothing'}]

>>> oracle(question="What is she wearing ?", image=image_url, top_k=1)
[{'score': 0.948, 'answer': 'hat'}]

>>> oracle(question="Is this a person ?", image=image_url, top_k=1)
[{'score': 0.993, 'answer': 'yes'}]

>>> oracle(question="Is this a man ?", image=image_url, top_k=1)
[{'score': 0.996, 'answer': 'no'}]
```

Learn more about the basics of using a pipeline in the [pipeline tutorial](https://huggingface.co/docs/transformers/pipeline_tutorial)

This visual question answering pipeline can currently be loaded from [pipeline()](https://huggingface.co/docs/transformers/v4.34.1/en/main_classes/pipelines#transformers.pipeline) using the following task identifiers: `"visual-question-answering", "vqa"`.

The models that this pipeline can use are models that have been fine-tuned on a visual question answering task. See the up-to-date list of available models on [boincai](https://huggingface.co/models?filter=visual-question-answering)[.com/models](https://huggingface.co/models?filter=visual-question-answering).

**\_\_call\_\_**

[\<source>](https://github.com/huggingface/transformers/blob/v4.34.1/src/transformers/pipelines/visual_question_answering.py#L70)

( image: typing.Union\[ForwardRef('Image.Image'), str]question: str = None\*\*kwargs ) → A dictionary or a list of dictionaries containing the result. The dictionaries contain the following keys

Parameters

* **image** (`str`, `List[str]`, `PIL.Image` or `List[PIL.Image]`) — The pipeline handles three types of images:

  * A string containing a http link pointing to an image
  * A string containing a local path to an image
  * An image loaded in PIL directly

  The pipeline accepts either a single image or a batch of images. If given a single image, it can be broadcasted to multiple questions.
* **question** (`str`, `List[str]`) — The question(s) asked. If given a single question, it can be broadcasted to multiple images.
* **top\_k** (`int`, *optional*, defaults to 5) — The number of top labels that will be returned by the pipeline. If the provided number is higher than the number of labels available in the model configuration, it will default to the number of labels.
* **timeout** (`float`, *optional*, defaults to None) — The maximum time in seconds to wait for fetching images from the web. If None, no timeout is set and the call may block forever.

Returns

A dictionary or a list of dictionaries containing the result. The dictionaries contain the following keys

* **label** (`str`) — The label identified by the model.
* **score** (`int`) — The score attributed by the model for that label.

Answers open-ended questions about images. The pipeline accepts several types of inputs which are detailed below:

* `pipeline(image=image, question=question)`
* `pipeline({"image": image, "question": question})`
* `pipeline([{"image": image, "question": question}])`
* `pipeline([{"image": image, "question": question}, {"image": image, "question": question}])`

### Parent class: Pipeline

#### class transformers.Pipeline

[\<source>](https://github.com/huggingface/transformers/blob/v4.34.1/src/transformers/pipelines/base.py#L741)

( model: typing.Union\[ForwardRef('PreTrainedModel'), ForwardRef('TFPreTrainedModel')]tokenizer: typing.Optional\[transformers.tokenization\_utils.PreTrainedTokenizer] = Nonefeature\_extractor: typing.Optional\[ForwardRef('SequenceFeatureExtractor')] = Noneimage\_processor: typing.Optional\[transformers.image\_processing\_utils.BaseImageProcessor] = Nonemodelcard: typing.Optional\[transformers.modelcard.ModelCard] = Noneframework: typing.Optional\[str] = Nonetask: str = ''args\_parser: ArgumentHandler = Nonedevice: typing.Union\[int, ForwardRef('torch.device')] = Nonetorch\_dtype: typing.Union\[str, ForwardRef('torch.dtype'), NoneType] = Nonebinary\_output: bool = False\*\*kwargs )

Parameters

* **model** ([PreTrainedModel](https://huggingface.co/docs/transformers/v4.34.1/en/main_classes/model#transformers.PreTrainedModel) or [TFPreTrainedModel](https://huggingface.co/docs/transformers/v4.34.1/en/main_classes/model#transformers.TFPreTrainedModel)) — The model that will be used by the pipeline to make predictions. This needs to be a model inheriting from [PreTrainedModel](https://huggingface.co/docs/transformers/v4.34.1/en/main_classes/model#transformers.PreTrainedModel) for PyTorch and [TFPreTrainedModel](https://huggingface.co/docs/transformers/v4.34.1/en/main_classes/model#transformers.TFPreTrainedModel) for TensorFlow.
* **tokenizer** ([PreTrainedTokenizer](https://huggingface.co/docs/transformers/v4.34.1/en/main_classes/tokenizer#transformers.PreTrainedTokenizer)) — The tokenizer that will be used by the pipeline to encode data for the model. This object inherits from [PreTrainedTokenizer](https://huggingface.co/docs/transformers/v4.34.1/en/main_classes/tokenizer#transformers.PreTrainedTokenizer).
* **modelcard** (`str` or `ModelCard`, *optional*) — Model card attributed to the model for this pipeline.
* **framework** (`str`, *optional*) — The framework to use, either `"pt"` for PyTorch or `"tf"` for TensorFlow. The specified framework must be installed.

  If no framework is specified, will default to the one currently installed. If no framework is specified and both frameworks are installed, will default to the framework of the `model`, or to PyTorch if no model is provided.
* **task** (`str`, defaults to `""`) — A task-identifier for the pipeline.
* **num\_workers** (`int`, *optional*, defaults to 8) — When the pipeline will use *DataLoader* (when passing a dataset, on GPU for a Pytorch model), the number of workers to be used.
* **batch\_size** (`int`, *optional*, defaults to 1) — When the pipeline will use *DataLoader* (when passing a dataset, on GPU for a Pytorch model), the size of the batch to use, for inference this is not always beneficial, please read [Batching with pipelines](https://huggingface.co/transformers/main_classes/pipelines.html#pipeline-batching) .
* **args\_parser** ([ArgumentHandler](https://huggingface.co/docs/transformers/v4.34.1/en/internal/pipelines_utils#transformers.pipelines.ArgumentHandler), *optional*) — Reference to the object in charge of parsing supplied pipeline parameters.
* **device** (`int`, *optional*, defaults to -1) — Device ordinal for CPU/GPU supports. Setting this to -1 will leverage CPU, a positive will run the model on the associated CUDA device id. You can pass native `torch.device` or a `str` too.
* **binary\_output** (`bool`, *optional*, defaults to `False`) — Flag indicating if the output the pipeline should happen in a binary format (i.e., pickle) or as raw text.

The Pipeline class is the class from which all pipelines inherit. Refer to this class for methods shared across different pipelines.

Base class implementing pipelined operations. Pipeline workflow is defined as a sequence of the following operations:

Input -> Tokenization -> Model Inference -> Post-Processing (task dependent) -> Output

Pipeline supports running on CPU or GPU through the device argument (see below).

Some pipeline, like for instance [FeatureExtractionPipeline](https://huggingface.co/docs/transformers/v4.34.1/en/main_classes/pipelines#transformers.FeatureExtractionPipeline) (`'feature-extraction'`) output large tensor object as nested-lists. In order to avoid dumping such large structure as textual data we provide the `binary_output` constructor argument. If set to `True`, the output will be stored in the pickle format.

**check\_model\_type**

[\<source>](https://github.com/huggingface/transformers/blob/v4.34.1/src/transformers/pipelines/base.py#L962)

( supported\_models: typing.Union\[typing.List\[str], dict] )

Parameters

* **supported\_models** (`List[str]` or `dict`) — The list of models supported by the pipeline, or a dictionary with model class values.

Check if the model class is in supported by the pipeline.

**device\_placement**

[\<source>](https://github.com/huggingface/transformers/blob/v4.34.1/src/transformers/pipelines/base.py#L901)

( )

Context Manager allowing tensor allocation on the user-specified device in framework agnostic way.

Examples:

Copied

```
# Explicitly ask for tensor allocation on CUDA device :0
pipe = pipeline(..., device=0)
with pipe.device_placement():
    # Every framework specific tensor allocation will be done on the request device
    output = pipe(...)
```

**ensure\_tensor\_on\_device**

[\<source>](https://github.com/huggingface/transformers/blob/v4.34.1/src/transformers/pipelines/base.py#L928)

( \*\*inputs ) → `Dict[str, torch.Tensor]`

Parameters

* **inputs** (keyword arguments that should be `torch.Tensor`, the rest is ignored) — The tensors to place on `self.device`.
* **Recursive** on lists **only**. —

Returns

`Dict[str, torch.Tensor]`

The same as `inputs` but on the proper device.

Ensure PyTorch tensors are on the specified device.

**postprocess**

[\<source>](https://github.com/huggingface/transformers/blob/v4.34.1/src/transformers/pipelines/base.py#L1025)

( model\_outputs: ModelOutput\*\*postprocess\_parameters: typing.Dict )

Postprocess will receive the raw outputs of the `_forward` method, generally tensors, and reformat them into something more friendly. Generally it will output a list or a dict or results (containing just strings and numbers).

**predict**

[\<source>](https://github.com/huggingface/transformers/blob/v4.34.1/src/transformers/pipelines/base.py#L895)

( X )

Scikit / Keras interface to transformers’ pipelines. This method will forward to **call**().

**preprocess**

[\<source>](https://github.com/huggingface/transformers/blob/v4.34.1/src/transformers/pipelines/base.py#L1004)

( input\_: typing.Any\*\*preprocess\_parameters: typing.Dict )

Preprocess will take the `input_` of a specific pipeline and return a dictionary of everything necessary for `_forward` to run properly. It should contain at least one tensor, but might have arbitrary other items.

**save\_pretrained**

[\<source>](https://github.com/huggingface/transformers/blob/v4.34.1/src/transformers/pipelines/base.py#L839)

( save\_directory: strsafe\_serialization: bool = False )

Parameters

* **save\_directory** (`str`) — A path to the directory where to saved. It will be created if it doesn’t exist.
* **safe\_serialization** (`str`) — Whether to save the model using `safetensors` or the traditional way for PyTorch or Tensorflow

Save the pipeline’s model and tokenizer.

**transform**

[\<source>](https://github.com/huggingface/transformers/blob/v4.34.1/src/transformers/pipelines/base.py#L889)

( X )

Scikit / Keras interface to transformers’ pipelines. This method will forward to **call**().


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://boinc-ai.gitbook.io/transformers/api/main-classes/pipelines.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
