๐Ÿ“„ ethos_binaryยถ

Note

ID: cards.ethos_binary | Type: TaskCard

{
    "loader": {
        "name": "binary",
        "path": "ethos",
        "type": "load_hf"
    },
    "preprocess_steps": [
        {
            "page_size": 1000000,
            "type": "shuffle"
        },
        {
            "mix": {
                "test": "train[80%]",
                "train": "train[20%]"
            },
            "type": "split_random_mix"
        },
        {
            "mappers": {
                "label": {
                    "0": "not hate speech",
                    "1": "hate speech"
                }
            },
            "type": "map_instance_values"
        },
        {
            "fields": {
                "classes": [
                    "not hate speech",
                    "hate speech"
                ],
                "text_type": "sentence",
                "type_of_class": "hate speech"
            },
            "type": "add_fields"
        }
    ],
    "task": "tasks.classification.multi_class",
    "templates": {
        "items": [
            {
                "input_format": "Given this {text_type}: {text}. Classify if it contains {type_of_class}. classes: {classes}.",
                "output_format": "{label}",
                "postprocessors": [
                    "processors.take_first_non_empty_line"
                ],
                "type": "input_output_template"
            },
            {
                "input_format": "Does the following {text_type} contains {type_of_class}? Answer only by choosing one of the options {classes}. {text_type}: {text}.",
                "output_format": "{label}",
                "postprocessors": [
                    "processors.take_first_non_empty_line"
                ],
                "type": "input_output_template"
            },
            {
                "input_format": "Given this {text_type}: {text}. Classify if it contains {type_of_class}. classes: {classes}. I would classify this {text_type} as: ",
                "output_format": "{label}",
                "postprocessors": [
                    "processors.take_first_non_empty_line",
                    "processors.lower_case_till_punc"
                ],
                "type": "input_output_template"
            },
            {
                "input_format": "Given this {text_type}: {text}. Classify if it contains {type_of_class}. classes: {classes}. I would classify this {text_type} as: ",
                "output_format": "{label}",
                "postprocessors": [
                    "processors.take_first_non_empty_line",
                    "processors.hate_speech_or_not_hate_speech"
                ],
                "type": "input_output_template"
            }
        ],
        "type": "templates_list"
    },
    "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 Shuffleยถ

Shuffles the order of instances in each page of a stream.

Args (of superclass):

page_size (int): The size of each page in the stream. Defaults to 1000.

Explanation about InputOutputTemplateยถ

Generate field โ€˜sourceโ€™ from fields designated as input, and fields โ€˜targetโ€™ and โ€˜referencesโ€™ from fields designated as output, of the processed instance.

Args specify the formatting strings with which to glue together the input and output designated fields of the processed instance into one string (โ€˜sourceโ€™ and โ€˜targetโ€™), and into a list of strings (โ€˜referencesโ€™).

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 MapInstanceValuesยถ

A class used to map instance values into other values.

This class is a type of StreamInstanceOperator, it maps values of instances in a stream using predefined mappers.

Attributes:
mappers (Dict[str, Dict[str, str]]): The mappers to use for mapping instance values.

Keys are the names of the fields to be mapped, and values are dictionaries that define the mapping from old values to new values.

strict (bool): If True, the mapping is applied strictly. That means if a value

does not exist in the mapper, it will raise a KeyError. If False, values that are not present in the mapper are kept as they are.

process_every_value (bool): If True, all fields to be mapped should be lists, and the mapping

is to be applied to their individual elements. If False, mapping is only applied to a field containing a single value.

Examples:

MapInstanceValues(mappers={โ€œaโ€: {โ€œ1โ€: โ€œhiโ€, โ€œ2โ€: โ€œbyeโ€}}) replaces โ€˜1โ€™ with โ€˜hiโ€™ and โ€˜2โ€™ with โ€˜byeโ€™ in field โ€˜aโ€™ in all instances of all streams: instance {โ€œaโ€:โ€1โ€, โ€œbโ€: 2} becomes {โ€œaโ€:โ€hiโ€, โ€œbโ€: 2}.

MapInstanceValues(mappers={โ€œaโ€: {โ€œ1โ€: โ€œhiโ€, โ€œ2โ€: โ€œbyeโ€}}, process_every_element=True) Assuming field โ€˜aโ€™ is a list of values, potentially including โ€œ1โ€-s and โ€œ2โ€-s, this replaces each such โ€œ1โ€ with โ€œhiโ€ and โ€œ2โ€ โ€“ with โ€œbyeโ€ in all instances of all streams: instance {โ€œaโ€: [โ€œ1โ€, โ€œ2โ€], โ€œbโ€: 2} becomes {โ€œaโ€: [โ€œhiโ€, โ€œbyeโ€], โ€œbโ€: 2}.

MapInstanceValues(mappers={โ€œaโ€: {โ€œ1โ€: โ€œhiโ€, โ€œ2โ€: โ€œbyeโ€}}, strict=True) To ensure that all values of field โ€˜aโ€™ are mapped in every instance, use strict=True. Input instance {โ€œaโ€:โ€3โ€, โ€œbโ€: 2} will raise an exception per the above call, because โ€œ3โ€ is not a key in the mapper of โ€œaโ€.

MapInstanceValues(mappers={โ€œaโ€: {str([1,2,3,4]): โ€˜Allโ€™, str([]): โ€˜Noneโ€™}}, strict=True) replaces a list [1,2,3,4] with the string โ€˜Allโ€™ and an empty list by string โ€˜Noneโ€™. Note that mapped values are defined by their string representation, so mapped values must be converted to strings.

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: processors.take_first_non_empty_line, tasks.classification.multi_class, processors.lower_case_till_punc, processors.hate_speech_or_not_hate_speech

Read more about catalog usage here.