Processors
Last updated
Last updated
Processors can mean two different things in the Transformers library:
the objects that pre-process inputs for multi-modal models such as (speech and text) or (text and vision)
deprecated objects that were used in older versions of the library to preprocess data for GLUE or SQUAD.
Any multi-modal model will require an object to encode or decode the data that groups several modalities (among text, vision and audio). This is handled by objects called processors, which group together two or more processing objects such as tokenizers (for the text modality), image processors (for vision) and feature extractors (for audio).
Those processors inherit from the following base class that implements the saving and loading functionality:
( *args**kwargs )
This is a mixin used to provide saving/loading functionality for all processor classes.
from_pretrained
( pretrained_model_name_or_path: typing.Union[str, os.PathLike]cache_dir: typing.Union[str, os.PathLike, NoneType] = Noneforce_download: bool = Falselocal_files_only: bool = Falsetoken: typing.Union[bool, str, NoneType] = Nonerevision: str = 'main'**kwargs )
Parameters
pretrained_model_name_or_path (str
or os.PathLike
) β This can be either:
a string, the model id of a pretrained feature_extractor hosted inside a model repo on boincai.com. Valid model ids can be located at the root-level, like bert-base-uncased
, or namespaced under a user or organization name, like dbmdz/bert-base-german-cased
.
Instantiate a processor associated with a pretrained model.
push_to_hub
( repo_id: struse_temp_dir: typing.Optional[bool] = Nonecommit_message: typing.Optional[str] = Noneprivate: typing.Optional[bool] = Nonetoken: typing.Union[bool, str, NoneType] = Nonemax_shard_size: typing.Union[int, str, NoneType] = '10GB'create_pr: bool = Falsesafe_serialization: bool = Falserevision: str = None**deprecated_kwargs )
Parameters
repo_id (str
) β The name of the repository you want to push your processor to. It should contain your organization name when pushing to a given organization.
use_temp_dir (bool
, optional) β Whether or not to use a temporary directory to store the files saved before they are pushed to the Hub. Will default to True
if there is no directory named like repo_id
, False
otherwise.
commit_message (str
, optional) β Message to commit while pushing. Will default to "Upload processor"
.
private (bool
, optional) β Whether or not the repository created should be private.
token (bool
or str
, 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
). Will default to True
if repo_url
is not specified.
max_shard_size (int
or str
, optional, defaults to "10GB"
) β Only applicable for models. The maximum size for a checkpoint before being sharded. Checkpoints shard will then be each of size lower than this size. If expressed as a string, needs to be digits followed by a unit (like "5MB"
).
create_pr (bool
, optional, defaults to False
) β Whether or not to create a PR with the uploaded files or directly commit.
safe_serialization (bool
, optional, defaults to False
) β Whether or not to convert the model weights in safetensors format for safer serialization.
revision (str
, optional) β Branch to push the uploaded files to.
Upload the processor files to the π Model Hub.
Examples:
Copied
register_for_auto_class
( auto_class = 'AutoProcessor' )
Parameters
auto_class (str
or type
, optional, defaults to "AutoProcessor"
) β The auto class to register this new feature extractor with.
Register this class with a given auto class. This should only be used for custom feature extractors as the ones in the library are already mapped with AutoProcessor
.
This API is experimental and may have some slight breaking changes in the next releases.
save_pretrained
( save_directorypush_to_hub: bool = False**kwargs )
Parameters
save_directory (str
or os.PathLike
) β Directory where the feature extractor JSON file and the tokenizer files will be saved (directory will be created if it does not exist).
push_to_hub (bool
, optional, defaults to False
) β Whether or not to push your model to the BOINC AI model hub after saving it. You can specify the repository you want to push to with repo_id
(will default to the name of save_directory
in your namespace).
( )
Base class for data converters for sequence classification data sets.
get_dev_examples
( data_dir )
get_example_from_tensor_dict
( tensor_dict )
Gets an example from a dict with tensorflow tensors.
get_labels
( )
Gets the list of labels for this data set.
get_test_examples
( data_dir )
get_train_examples
( data_dir )
tfds_map
( example )
Some tensorflow_datasets datasets are not formatted the same way the GLUE datasets are. This method converts examples to the correct format.
( guid: strtext_a: strtext_b: typing.Optional[str] = Nonelabel: typing.Optional[str] = None )
A single training/test example for simple sequence classification.
to_json_string
( )
Serializes this instance to a JSON string.
( input_ids: typing.List[int]attention_mask: typing.Optional[typing.List[int]] = Nonetoken_type_ids: typing.Optional[typing.List[int]] = Nonelabel: typing.Union[int, float, NoneType] = None )
A single set of features of data. Property names are the same names as the corresponding inputs to a model.
to_json_string
( )
Serializes this instance to a JSON string.
This library hosts a total of 10 processors for the following tasks: MRPC, MNLI, MNLI (mismatched), CoLA, SST2, STSB, QQP, QNLI, RTE and WNLI.
Those processors are:
~data.processors.utils.MrpcProcessor
~data.processors.utils.MnliProcessor
~data.processors.utils.MnliMismatchedProcessor
~data.processors.utils.Sst2Processor
~data.processors.utils.StsbProcessor
~data.processors.utils.QqpProcessor
~data.processors.utils.QnliProcessor
~data.processors.utils.RteProcessor
~data.processors.utils.WnliProcessor
transformers.glue_convert_examples_to_features
( examples: typing.Union[typing.List[transformers.data.processors.utils.InputExample], ForwardRef('tf.data.Dataset')]tokenizer: PreTrainedTokenizermax_length: typing.Optional[int] = Nonetask = Nonelabel_list = Noneoutput_mode = None )
Loads a data file into a list of InputFeatures
This library hosts the processor to load the XNLI data:
~data.processors.utils.XnliProcessor
Please note that since the gold labels are available on the test set, evaluation is performed on the test set.
This library hosts a processor for each of the two versions:
Those processors are:
~data.processors.utils.SquadV1Processor
~data.processors.utils.SquadV2Processor
They both inherit from the abstract class ~data.processors.utils.SquadProcessor
( )
Processor for the SQuAD data set. overridden by SquadV1Processor and SquadV2Processor, used by the version 1.1 and version 2.0 of SQuAD, respectively.
get_dev_examples
( data_dirfilename = None )
Returns the evaluation example from the data directory.
get_examples_from_dataset
( datasetevaluate = False )
Creates a list of SquadExample
using a TFDS dataset.
Examples:
Copied
get_train_examples
( data_dirfilename = None )
Returns the training examples from the data directory.
Additionally, the following method can be used to convert SQuAD examples into ~data.processors.utils.SquadFeatures
that can be used as model inputs.
transformers.squad_convert_examples_to_features
( examplestokenizermax_seq_lengthdoc_stridemax_query_lengthis_trainingpadding_strategy = 'max_length'return_dataset = Falsethreads = 1tqdm_enabled = True )
Converts a list of examples into a list of features that can be directly given as input to a model. It is model-dependant and takes advantage of many of the tokenizerβs features to create the modelβs inputs.
Example:
Copied
These processors as well as the aforementioned method can be used with files containing the data as well as with the tensorflow_datasets package. Examples are given below.
Here is an example using the processors as well as the conversion method using data files:
Copied
Using tensorflow_datasets is as easy as using a data file:
Copied
a path to a directory containing a feature extractor file saved using the method, e.g., ./my_model_directory/
.
a path or url to a saved feature extractor JSON file, e.g., ./my_model_directory/preprocessor_config.json
. **kwargs β Additional keyword arguments passed along to both and ~tokenization_utils_base.PreTrainedTokenizer.from_pretrained
.
This class method is simply calling the feature extractor , image processor and the tokenizer ~tokenization_utils_base.PreTrainedTokenizer.from_pretrained
methods. Please refer to the docstrings of the methods above for more information.
kwargs (Dict[str, Any]
, optional) β Additional key word arguments passed along to the method.
Saves the attributes of this processor (feature extractor, tokenizerβ¦) in the specified directory so that it can be reloaded using the method.
This class method is simply calling and . Please refer to the docstrings of the methods above for more information.
All processors follow the same architecture which is that of the . The processor returns a list of . These can be converted to in order to be fed to the model.
Gets a collection of for the dev set.
Gets a collection of for the test set.
Gets a collection of for the train set.
is a benchmark that evaluates the performance of models across a diverse set of existing NLU tasks. It was released together with the paper
Additionally, the following method can be used to load values from a data file and convert them to a list of .
is a benchmark that evaluates the quality of cross-lingual text representations. XNLI is crowd-sourced dataset based on : pairs of text are labeled with textual entailment annotations for 15 different languages (including both high-resource language such as English and low-resource languages such as Swahili).
It was released together with the paper
An example using these processors is given in the script.
is a benchmark that evaluates the performance of models on question answering. Two versions are available, v1.1 and v2.0. The first version (v1.1) was released together with the paper . The second version (v2.0) was released alongside the paper .
Another example using these processors is given in the script.