mirror of
https://github.com/huggingface/transformers.git
synced 2025-07-05 13:50:13 +06:00

* Init work on pipelines doc * Work in progress * Work in progress * Doc pipelines * Rm unwanted default * Apply suggestions from code review Lysandre comments Co-authored-by: Lysandre Debut <lysandre@huggingface.co> Co-authored-by: Lysandre Debut <lysandre@huggingface.co>
41 lines
960 B
ReStructuredText
41 lines
960 B
ReStructuredText
Utilities for pipelines
|
|
-----------------------
|
|
|
|
This page lists all the utility functions the library provides for pipelines.
|
|
|
|
Most of those are only useful if you are studying the code of the models in the library.
|
|
|
|
|
|
Argument handling
|
|
~~~~~~~~~~~~~~~~~
|
|
|
|
.. autoclass:: transformers.pipelines.ArgumentHandler
|
|
|
|
.. autoclass:: transformers.pipelines.ZeroShotClassificationArgumentHandler
|
|
|
|
.. autoclass:: transformers.pipelines.QuestionAnsweringArgumentHandler
|
|
|
|
|
|
Data format
|
|
~~~~~~~~~~~
|
|
|
|
.. autoclass:: transformers.pipelines.PipelineDataFormat
|
|
:members:
|
|
|
|
.. autoclass:: transformers.pipelines.CsvPipelineDataFormat
|
|
:members:
|
|
|
|
.. autoclass:: transformers.pipelines.JsonPipelineDataFormat
|
|
:members:
|
|
|
|
.. autoclass:: transformers.pipelines.PipedPipelineDataFormat
|
|
:members:
|
|
|
|
|
|
Utilities
|
|
~~~~~~~~~
|
|
|
|
.. autofunction:: transformers.pipelines.get_framework
|
|
|
|
.. autoclass:: transformers.pipelines.PipelineException
|