Text Classification
Transformers
ONNX
Safetensors
mojev-scorer
feature-extraction
calibration
structured-output
multiple-choice
preference-learning
multimodal
mojev
custom_code
Eval Results (legacy)
Instructions to use MoLeMo-Lab/mojev with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use MoLeMo-Lab/mojev with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-classification", model="MoLeMo-Lab/mojev", trust_remote_code=True)# Load model directly from transformers import AutoModel model = AutoModel.from_pretrained("MoLeMo-Lab/mojev", trust_remote_code=True, device_map="auto") - Notebooks
- Google Colab
- Kaggle
File size: 7,072 Bytes
0c8695b | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 | """Typed decision schemas.
A schema declares, in advance, every field a query returns and every value each
field may take. Type safety is therefore constructive: the model normalises only
over declared options, so a returned struct cannot name an option that does not
exist and cannot omit a declared field. Nothing is parsed or validated at
inference time.
Four field kinds cover the shapes decisions actually take:
- ``choice`` exactly one of N unordered options (softmax over N)
- ``bool`` a two-option choice, kept separate so it calibrates on its own
- ``multi`` any subset of N options (independent sigmoid per option)
- ``bucket`` one of N *ordered* options, scored with cumulative logits so that
the order is part of the model rather than an accident of labels
"""
from __future__ import annotations
from dataclasses import dataclass
from typing import Literal
Kind = Literal["choice", "bool", "multi", "bucket"]
KINDS: tuple[Kind, ...] = ("choice", "bool", "multi", "bucket")
BOOL_OPTIONS = ("false", "true")
@dataclass(frozen=True)
class Field:
"""One decision within a schema."""
name: str
kind: Kind = "choice"
options: tuple[str, ...] = BOOL_OPTIONS
description: str = ""
def __post_init__(self) -> None:
if not self.name:
raise ValueError("field name must not be empty")
if self.kind not in KINDS:
raise ValueError(f"{self.name}: unknown kind {self.kind!r}, expected one of {KINDS}")
if self.kind == "bool":
if self.options != BOOL_OPTIONS:
raise ValueError(f"{self.name}: bool options are fixed to {BOOL_OPTIONS}")
elif len(self.options) < 2:
raise ValueError(f"{self.name}: {self.kind} needs at least two options")
if len(set(self.options)) != len(self.options):
raise ValueError(f"{self.name}: options must be unique")
if any(not option for option in self.options):
raise ValueError(f"{self.name}: options must not be empty strings")
@property
def cardinality(self) -> int:
return len(self.options)
@property
def prompt(self) -> str:
"""The text the model reads to know what this field asks.
This is what makes a schema the model never trained on usable: the field
is identified by its words, not by a row index into a learned table. An
earlier version stored one trainable vector per field, which meant adding
a field to a schema raised a shape error and renaming one made the field
unrecognisable.
"""
parts = [self.name.replace("_", " ")]
if self.description:
parts.append(self.description)
parts.append(f"kind: {self.kind}")
if self.kind != "choice" or len(self.options) <= 8:
parts.append("options: " + ", ".join(self.options[:8]))
return " | ".join(parts)
@property
def single(self) -> bool:
"""True when exactly one option is correct, so the field owns a softmax."""
return self.kind in ("choice", "bool", "bucket")
def index(self, value: str) -> int:
try:
return self.options.index(value)
except ValueError:
raise ValueError(
f"{self.name}: {value!r} is not a declared option; expected one of {self.options}"
) from None
def encode(self, value) -> list[int] | int:
"""Label for one row: an option index, or a 0/1 vector for ``multi``."""
if self.kind == "bool":
if not isinstance(value, bool):
raise ValueError(f"{self.name}: expected a bool, got {value!r}")
return int(value)
if self.kind == "multi":
if isinstance(value, str) or not isinstance(value, (list, tuple, set)):
raise ValueError(f"{self.name}: multi expects a list of options, got {value!r}")
chosen = {self.index(item) for item in value}
return [int(index in chosen) for index in range(self.cardinality)]
if not isinstance(value, str):
raise ValueError(f"{self.name}: expected an option string, got {value!r}")
return self.index(value)
def decode(self, probabilities, threshold: float = 0.5):
"""Probabilities for this field -> the typed value plus its confidence."""
if len(probabilities) != self.cardinality:
raise ValueError(
f"{self.name}: expected {self.cardinality} probabilities, got {len(probabilities)}"
)
if self.kind == "multi":
selected = [option for option, p in zip(self.options, probabilities) if p >= threshold]
confidence = min((max(p, 1.0 - p) for p in probabilities), default=1.0)
return selected, float(confidence)
best = max(range(self.cardinality), key=probabilities.__getitem__)
value = bool(best) if self.kind == "bool" else self.options[best]
return value, float(probabilities[best])
@dataclass(frozen=True)
class Schema:
"""The full set of fields one query returns."""
fields: tuple[Field, ...]
def __post_init__(self) -> None:
if not self.fields:
raise ValueError("a schema needs at least one field")
names = [field.name for field in self.fields]
if len(set(names)) != len(names):
raise ValueError("field names must be unique")
def __len__(self) -> int:
return len(self.fields)
def __iter__(self):
return iter(self.fields)
def __getitem__(self, name: str) -> Field:
for field in self.fields:
if field.name == name:
return field
raise KeyError(name)
@property
def max_cardinality(self) -> int:
return max(field.cardinality for field in self.fields)
def encode(self, values: dict) -> list:
"""One row of labels, in field order. Every declared field must be present."""
missing = [field.name for field in self.fields if field.name not in values]
if missing:
raise ValueError(f"missing labels for fields: {missing}")
extra = set(values) - {field.name for field in self.fields}
if extra:
raise ValueError(f"labels for undeclared fields: {sorted(extra)}")
return [field.encode(values[field.name]) for field in self.fields]
@property
def prompts(self) -> tuple[str, ...]:
return tuple(field.prompt for field in self.fields)
def to_json(self) -> dict:
return {
"fields": [
{"name": f.name, "kind": f.kind, "options": list(f.options),
"description": f.description}
for f in self.fields
]
}
@classmethod
def from_json(cls, payload: dict) -> "Schema":
return cls(
tuple(
Field(item["name"], item.get("kind", "choice"), tuple(item["options"]),
item.get("description", ""))
for item in payload["fields"]
)
)
|