πŸ“„ Hate Speech Or Not Hate SpeechΒΆ

Note

ID: processors.hate_speech_or_not_hate_speech | Type: SequentialOperator

{
    "__type__": "sequential_operator",
    "steps": [
        {
            "__type__": "string_or_not_string",
            "field": "prediction",
            "process_every_value": false,
            "string": "hate speech"
        },
        {
            "__type__": "string_or_not_string",
            "field": "references",
            "process_every_value": true,
            "string": "hate speech"
        }
    ]
}

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.

Read more about catalog usage here.