Boolean
Use Boolean when your metric output is a binary decision (e.g., “toxic or not”, “adherent or not”). Set:-
training.metric.type: "boolean" - Your dataset label column should be a binary value.
- The training/evaluation pipeline converts labels to the correct target token.
Categorical (multi-class)
Use multi-class when exactly one class should be selected for each example. Set:training.metric.type: "multi_class"training.metric.classes: ordered list of class names
"0", "1", … corresponding to your classes ordering.
Example:
- Your dataset labels should be one of the class names (e.g.
"joy") - The pipeline maps those to integer indices using
training.metric.classes
Not Supported
These output types are not currently supported by the Luna Studio -- Count
- Discrete
- Percentage
- Multilabel