πŸ“„ Infer Logprobs To Yes No ProbsΒΆ

Note

ID: processors.infer_logprobs_to_yes_no_probs | Type: SequentialOperator

{
    "__type__": "sequential_operator",
    "steps": [
        {
            "__type__": "infer_dicts_to_binary_logprobs",
            "field": "prediction",
            "neg_class_name": "No",
            "num_logprobs_to_take": 3,
            "pos_class_name": "Yes",
            "process_every_value": false
        }
    ]
}

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.