๐ wiki_bioยถ
Note
ID: cards.wiki_bio | Type: TaskCard
{
"loader": {
"path": "wiki_bio",
"type": "load_hf"
},
"preprocess_steps": [
{
"mix": {
"test": "test",
"train": "train",
"validation": "val"
},
"type": "split_random_mix"
},
{
"fields": [
"input_text/table/column_header",
"input_text/table/content"
],
"to_field": "kvpairs",
"type": "list_to_key_val_pairs"
},
{
"field_to_field": [
[
"kvpairs",
"input"
]
],
"type": "serialize_key_val_pairs"
},
{
"field_to_field": {
"target_text": "output"
},
"type": "rename_fields"
},
{
"fields": {
"type_of_input": "Key-Value pairs",
"type_of_output": "Text"
},
"type": "add_fields"
}
],
"task": "tasks.generation",
"templates": "templates.generation.all",
"type": "task_card"
}
Explanation about TaskCardยถ
TaskCard delineates the phases in transforming the source dataset into a 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 a 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 ListToKeyValPairsยถ
Maps list of keys and values into key:value pairs.
Sample input in expected format: {โkeysโ: [โnameโ, โageโ, โsexโ], โvaluesโ: [โAlexโ, 31, โMโ]} Sample output: {โnameโ: โAlexโ, โageโ: 31, โsexโ: โMโ}
Explanation about RenameFieldsยถ
Renames fields.
Move value from one field to another, potentially, if field name contains a /, from one branch into another. Remove the from field, potentially part of it in case of / in from_field.
- Examples:
RenameFields(field_to_field={โbโ: โcโ}) will change inputs [{โaโ: 1, โbโ: 2}, {โaโ: 2, โbโ: 3}] to [{โaโ: 1, โcโ: 2}, {โaโ: 2, โcโ: 3}]
RenameFields(field_to_field={โbโ: โc/dโ}) will change inputs [{โaโ: 1, โbโ: 2}, {โaโ: 2, โbโ: 3}] to [{โaโ: 1, โcโ: {โdโ: 2}}, {โaโ: 2, โcโ: {โdโ: 3}}]
RenameFields(field_to_field={โbโ: โb/dโ}) will change inputs [{โaโ: 1, โbโ: 2}, {โaโ: 2, โbโ: 3}] to [{โaโ: 1, โbโ: {โdโ: 2}}, {โaโ: 2, โbโ: {โdโ: 3}}]
RenameFields(field_to_field={โb/c/eโ: โb/dโ}) will change inputs [{โaโ: 1, โbโ: {โcโ: {โeโ: 2, โfโ: 20}}}] to [{โaโ: 1, โbโ: {โcโ: {โfโ: 20}, โdโ: 2}}]
Explanation about AddFieldsยถ
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 AddFields(fields={โclassesโ: [โpositiveโ,โnegativesโ]})
# Add a โstartโ field under the โspanโ field with a value of 0 to all streams AddFields(fields={โspan/startโ: 0}
# Add a โclassesโ field with a value of a list โpositiveโ and โnegativeโ to โtrainโ stream AddFields(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. AddFields(fields={โclassesโ: alist}), use_deepcopy=True) # if now alist is modified, still the instances remain intact.
Explanation about SerializeKeyValPairsยถ
Serializes key, value pairs into a flat sequence.
Sample input in expected format: {โnameโ: โAlexโ, โageโ: 31, โsexโ: โMโ} Sample output: name is Alex, age is 31, sex is M
Explanation about SplitRandomMixยถ
Splits a multistream into new streams (splits), whose names, source input stream, and amount of instances, are specified by arg โmixโ.
The keys of arg โmixโ, are the names of the new streams, the values are of the form: โname-of-source-stream[percentage-of-source-stream]โ Each input instance, of any input stream, is selected exactly once for inclusion in any of the output streams.
Examples: When processing a multistream made of two streams whose names are โtrainโ and โtestโ, by SplitRandomMix(mix = { โtrainโ: โtrain[99%]โ, โvalidationโ: โtrain[1%]โ, โtestโ: โtestโ }) the output is a multistream, whose three streams are named โtrainโ, โvalidationโ, and โtestโ. Output stream โtrainโ is made of randomly selected 99% of the instances of input stream โtrainโ, output stream โvalidationโ is made of the remaining 1% instances of input โtrainโ, and output stream โtestโ is made of the whole of input stream โtestโ.
When processing the above input multistream by SplitRandomMix(mix = { โtrainโ: โtrain[50%]+test[0.1]โ, โvalidationโ: โtrain[50%]+test[0.2]โ, โtestโ: โtest[0.7]โ }) the output is a multistream, whose three streams are named โtrainโ, โvalidationโ, and โtestโ. Output stream โtrainโ is made of randomly selected 50% of the instances of input stream โtrainโ + randomly selected 0.1 (i.e., 10%) of the instances of input stream โtestโ. Output stream โvalidationโ is made of the remaining 50% instances of input โtrainโ+ randomly selected 0.2 (i.e., 20%) of the original instances of input โtestโ, that were not selected for output โtrainโ, and output stream โtestโ is made of the remaining instances of input โtestโ.
References: templates.generation.all, tasks.generation
Read more about catalog usage here.