π remove_none_from_listΒΆ
Note
ID: processors.remove_none_from_list | Type: SequentialOperator
{
"steps": [
{
"field": "prediction",
"process_every_value": false,
"type": "remove_values",
"unallowed_values": [
"none"
]
},
{
"field": "references/0",
"process_every_value": false,
"type": "remove_values",
"unallowed_values": [
"none"
]
}
],
"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.
Explanation about RemoveValuesΒΆ
Removes elements in a field, which must be a list, using a given list of unallowed.
- Args:
unallowed_values (list) - values to be removed.
Read more about catalog usage here.