to_span_label_pairs_surface_only
Note
ID: catalog.processors.to_span_label_pairs_surface_only | Type: SequentialOperator
{
"steps": [
{
"field": "prediction",
"process_every_value": false,
"regex": "\\s*((?:\\\\.|[^,])+?)\\s*(?:,|$)()",
"termination_regex": "^\\s*None\\s*$",
"type": "regex_parser"
},
{
"field": "references",
"process_every_value": true,
"regex": "\\s*((?:\\\\.|[^,])+?)\\s*(?:,|$)()",
"termination_regex": "^\\s*None\\s*$",
"type": "regex_parser"
}
],
"type": "sequential_operator"
}
Explanation about SequentialOperator
A class representing a sequential operator in the streaming system.
A sequential operator is a type of MultiStreamOperator that applies a sequence of other operators to a MultiStream. It maintains a list of StreamingOperator`s and applies them in order to the `MultiStream.