π EnΒΆ
cards.rag.benchmark.clap_nq.en
type: TaskCard
loader:
type: LoadCSV
sep:
files:
train: https://raw.githubusercontent.com/primeqa/clapnq/main/retrieval/train/question_train_answerable.tsv
test: https://raw.githubusercontent.com/primeqa/clapnq/main/retrieval/dev/question_dev_answerable.tsv
preprocess_steps:
- type: Copy
field_to_field:
question: question
id: question_id
- type: Set
fields:
reference_contexts: []
is_answerable_label: True
metadata_field:
- type: ListFieldValues
fields:
- doc-id-list
to_field: reference_context_ids
- type: ListFieldValues
fields:
- answers
to_field: reference_answers
task: tasks.rag.end_to_end
templates:
default: templates.rag.end_to_end.json_predictions
[source]Explanation about TaskCardΒΆ
TaskCard delineates the phases in transforming the source dataset into model input, and specifies the metrics for evaluation of model output.
- Attributes:
loader: specifies the source address and the loading operator that can access that source and transform it into a unitxt multistream.
preprocess_steps: list of unitxt operators to process the data source into model input.
task: specifies the fields (of the already (pre)processed instance) making the inputs, the fields making the outputs, and the metrics to be used for evaluating the model output.
templates: format strings to be applied on the input fields (specified by the task) and the output fields. The template also carries the instructions and the list of postprocessing steps, to be applied to the model output.
Explanation about CopyΒΆ
Copies values from specified fields to specified fields.
- Args (of parent class):
field_to_field (Union[List[List], Dict[str, str]]): A list of lists, where each sublist contains the source field and the destination field, or a dictionary mapping source fields to destination fields.
- Examples:
An input instance {βaβ: 2, βbβ: 3}, when processed by Copy(field_to_field={βaβ: βbβ} would yield {βaβ: 2, βbβ: 2}, and when processed by Copy(field_to_field={βaβ: βcβ} would yield {βaβ: 2, βbβ: 3, βcβ: 2}
with field names containing / , we can also copy inside the field: Copy(field=βa/0β,to_field=βaβ) would process instance {βaβ: [1, 3]} into {βaβ: 1}
Explanation about SetΒΆ
Adds specified fields to each instance in a given stream or all streams (default) If fields exist, updates them.
- Args:
- fields (Dict[str, object]): The fields to add to each instance.
Use β/β to access inner fields
use_deepcopy (bool) : Deep copy the input value to avoid later modifications
- Examples:
# Add a βclassesβ field with a value of a list βpositiveβ and βnegativeβ to all streams Set(fields={βclassesβ: [βpositiveβ,βnegativesβ]})
# Add a βstartβ field under the βspanβ field with a value of 0 to all streams Set(fields={βspan/startβ: 0}
# Add a βclassesβ field with a value of a list βpositiveβ and βnegativeβ to βtrainβ stream Set(fields={βclassesβ: [βpositiveβ,βnegativesβ], apply_to_stream=[βtrainβ]})
# Add a βclassesβ field on a given list, prevent modification of original list # from changing the instance. Set(fields={βclassesβ: alist}), use_deepcopy=True) # if now alist is modified, still the instances remain intact.
Explanation about LoadCSVΒΆ
Loads data from CSV files.
Supports streaming and can handle large files by loading them in chunks.
- Args:
files (Dict[str, str]): A dictionary mapping names to file paths. chunksize : Size of the chunks to load at a time. loader_limit: Optional integer to specify a limit on the number of records to load. streaming: Bool indicating if streaming should be used. sep: String specifying the separator used in the CSV files.
- Example:
Loading csv
load_csv = LoadCSV(files={'train': 'path/to/train.csv'}, chunksize=100)
Explanation about ListFieldValuesΒΆ
Concatenates values of multiple fields into a list, and assigns it to a new field.
References: templates.rag.end_to_end.json_predictions, tasks.rag.end_to_end
Read more about catalog usage here.