πŸ“„ single_entity_typeΒΆ

Note

ID: tasks.ner.single_entity_type | Type: FormTask

{
    "augmentable_inputs": [
        "text"
    ],
    "inputs": [
        "text",
        "entity_type"
    ],
    "metrics": [
        "metrics.ner"
    ],
    "outputs": [
        "spans_starts",
        "spans_ends",
        "text",
        "labels"
    ],
    "type": "form_task"
}

Explanation about FormTaskΒΆ

FormTask packs the different instance fields into dictionaries by their roles in the task.

The output instance contains three fields:

β€œinputs” whose value is a sub-dictionary of the input instance, consisting of all the fields listed in Arg β€˜inputs’. β€œoutputs” – for the fields listed in Arg β€œoutputs”. β€œmetrics” – to contain the value of Arg β€˜metrics’

References: metrics.ner

Read more about catalog usage here.