Text Classification
Transformers
Safetensors
English
llama
feature-extraction
llama3
reward-model
preference-modeling
rlhf
multi-domain
coherence
commonsense
empathy
multicultural
shared-prompt-gating
custom_code
text-embeddings-inference
Instructions to use mario-rc/multi-domain-rm-fsfairx-llama-3-8b-it with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use mario-rc/multi-domain-rm-fsfairx-llama-3-8b-it with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-classification", model="mario-rc/multi-domain-rm-fsfairx-llama-3-8b-it", trust_remote_code=True)# Load model directly from transformers import AutoTokenizer, AutoModel tokenizer = AutoTokenizer.from_pretrained("mario-rc/multi-domain-rm-fsfairx-llama-3-8b-it", trust_remote_code=True) model = AutoModel.from_pretrained("mario-rc/multi-domain-rm-fsfairx-llama-3-8b-it", trust_remote_code=True, device_map="auto") - Notebooks
- Google Colab
- Kaggle
File size: 17,227 Bytes
8a9bc4a 8cf8659 8a9bc4a 8cf8659 8a9bc4a 8cf8659 8a9bc4a | 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 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 | # utils.py — Shared utility functions for the multidomain_model pipeline.
import json
import os
import importlib.util
from typing import Optional, Sequence
import torch
from transformers import AutoTokenizer
# ---------------------------------------------------------------------------
# Remote-code detection
# ---------------------------------------------------------------------------
def _requires_remote_code(model_path: str) -> bool:
"""Return True when the model needs trust_remote_code=True."""
model_path_l = str(model_path).lower()
return "qwen3" in model_path_l
def _attention_implementation(device: str) -> str | None:
"""Use FlashAttention on CUDA when installed; otherwise use Transformers defaults."""
if str(device).startswith("cuda") and importlib.util.find_spec("flash_attn") is not None:
return "flash_attention_2"
return None
def _stable_int64_id(value) -> int:
"""Return a deterministic non-negative signed-int64 identifier."""
import hashlib
if not isinstance(value, str):
value = json.dumps(value, ensure_ascii=False, sort_keys=True, separators=(",", ":"))
digest = hashlib.blake2b(value.encode("utf-8"), digest_size=8).digest()
return int.from_bytes(digest, "big", signed=False) & ((1 << 63) - 1)
def debiasing_checkpoint_suffix(debiasing_dims, corr_threshold: float) -> str:
"""Encode reward-transform settings in a stable checkpoint suffix."""
dims = sorted({int(dimension) for dimension in (debiasing_dims or ()) if int(dimension) >= 0})
if not dims:
return "_dbnone"
threshold = format(float(corr_threshold), ".12g").replace("-", "m").replace(".", "p")
dimension_text = "-".join(map(str, dims))
return f"_db{dimension_text}_ct{threshold}"
def validate_shared_routing_config(routing_config) -> dict:
"""Validate the metadata contract required by packaged shared-gate checkpoints."""
if not isinstance(routing_config, dict):
raise ValueError("Stage 2 checkpoint is missing its training_config mapping.")
if routing_config.get("format_version") != 2 or not routing_config.get("shared_prompt_gating", False):
raise ValueError(
"Stage 2 checkpoint must declare format_version=2 and "
"shared_prompt_gating=true; legacy checkpoints are not packageable."
)
return routing_config
def score_shared_gate_candidates(
candidate_attribute_rewards: torch.Tensor,
shared_gate_weights: torch.Tensor,
) -> torch.Tensor:
"""Combine per-candidate attribute rewards with one gate per prompt pair."""
if candidate_attribute_rewards.ndim != 3 or shared_gate_weights.ndim != 2:
raise ValueError(
"Shared-gate scoring expects candidate rewards shaped "
"[pairs, candidates, attributes] and gate weights shaped "
"[pairs, attributes]."
)
if (
candidate_attribute_rewards.shape[0] != shared_gate_weights.shape[0]
or candidate_attribute_rewards.shape[-1] != shared_gate_weights.shape[-1]
):
raise ValueError(
"Candidate rewards and shared gate weights have incompatible "
"pair or attribute dimensions."
)
return torch.sum(
candidate_attribute_rewards * shared_gate_weights.unsqueeze(1), dim=-1
)
def shared_gate_checkpoint_filename(args, model_name: str, preference_name: str, reference_name: str) -> str:
"""Build the canonical Shared-Gate V2 checkpoint filename."""
from attributes import attribute_selection_suffix
defaults = {
"learning_rate": 0.0005, "weight_decay": 0.0, "n_hidden": 1,
"hidden_size": 64, "dropout": 0.1, "batch_size": 2048,
"logit_scale": 2.0, "domain_loss_weight": 0.25,
"entropy_weight": 0.02, "load_balance_weight": 0.05,
}
hyperparameters = "".join(
f"_{key[:2]}{getattr(args, key, default)}"
for key, default in defaults.items()
)
debiasing_dims = (
[-1] if str(reference_name).lower() == "null"
else getattr(args, "debiasing_dims", [-1])
)
suffix = debiasing_checkpoint_suffix(
debiasing_dims, getattr(args, "corr_threshold", 0.04)
)
suffix += "_cv" if getattr(args, "curriculum", False) else ""
suffix += "_bd" if getattr(args, "balance_difficulties", False) else ""
suffix += "" if getattr(args, "balance_domains", True) else "_ubd"
suffix += "_lgs" if getattr(args, "learnable_logit_scale", False) else ""
entropy_floor = getattr(args, "entropy_floor_fraction", 0.35)
suffix += "" if entropy_floor == 0.35 else f"_ef{entropy_floor}"
suffix += attribute_selection_suffix(
getattr(args, "attribute_subset", "full"),
getattr(args, "exclude_attributes", []),
)
gate_input_mode = getattr(args, "gate_input_mode", "prompt")
gate_mode_codes = {
"prompt": "prompt",
"global": "global",
"shuffled_prompt": "shuffle",
"candidate_conditioned": "candidate",
}
if gate_input_mode not in gate_mode_codes:
raise ValueError(f"Unknown gate_input_mode: {gate_input_mode}")
if gate_input_mode != "prompt":
suffix += f"_gim-{gate_mode_codes[gate_input_mode]}"
held_out_domain = getattr(args, "held_out_domain", None)
if held_out_domain:
suffix += f"_holdout-{held_out_domain}"
checkpoint_tag = getattr(args, "checkpoint_tag", None)
suffix += f"_tag-{checkpoint_tag}" if checkpoint_tag else ""
validation_manifest = getattr(args, "validation_group_ids_path", None)
if validation_manifest:
import hashlib
with open(validation_manifest, "rb") as stream:
suffix += "_vs-" + hashlib.sha256(stream.read()).hexdigest()[:16]
suffix += "_refit" if getattr(args, "train_on_all", False) else ""
filename = (
f"gating_network_sgv2_{model_name}_mo_{args.multi_objective_dataset_name}_"
f"pref_{preference_name}_ref_{reference_name}"
f"_t{getattr(args, 'temperature', 2.0):.1f}"
f"_n{getattr(args, 'n_steps', 30000)}"
f"_seed{getattr(args, 'seed', 0)}{hyperparameters}{suffix}.pt"
)
# Linux filesystems normally limit a single path component to 255 bytes.
# Keep short legacy names unchanged, but make long ablation names portable
# and collision resistant for both Stage 2 saving and Stage 3 lookup.
max_filename_bytes = 240
if len(filename.encode("utf-8")) > max_filename_bytes:
import hashlib
digest = hashlib.sha256(filename.encode("utf-8")).hexdigest()[:16]
extension = ".pt"
budget = max_filename_bytes - len(f"_h{digest}{extension}")
filename = f"{filename[:-len(extension)][:budget]}_h{digest}{extension}"
return filename
# ---------------------------------------------------------------------------
# Tokenizer loading
# ---------------------------------------------------------------------------
def _load_tokenizer_robust(model_path: str):
"""Load tokenizer with fallback to slow tokenizer when fast conversion deps are missing."""
trust_remote_code = _requires_remote_code(model_path)
try:
return AutoTokenizer.from_pretrained(model_path, trust_remote_code=trust_remote_code)
except (ValueError, ImportError) as e:
print(f"Warning: Fast tokenizer load failed ({e}). Retrying with use_fast=False...")
return AutoTokenizer.from_pretrained(model_path, use_fast=False, trust_remote_code=trust_remote_code)
# ---------------------------------------------------------------------------
# Dataset / file resolution
# ---------------------------------------------------------------------------
def _resolve_local_dataset_file(dataset_path: str):
"""Resolve local JSON/JSONL path, accepting optional missing extension."""
candidate_paths = [dataset_path]
if not dataset_path.endswith(".jsonl") and not dataset_path.endswith(".json"):
candidate_paths.extend([f"{dataset_path}.jsonl", f"{dataset_path}.json"])
for candidate in candidate_paths:
if os.path.isfile(candidate):
return candidate
return None
def _resolve_jsonl_path(path: str) -> str:
"""Return *path* if it exists, otherwise try appending .jsonl."""
if os.path.isfile(path):
return path
candidate = path + ".jsonl"
if os.path.isfile(candidate):
return candidate
raise FileNotFoundError(f"Dataset not found: {path} (also tried {candidate})")
def load_cultural_test(data_dir: str) -> list[dict]:
"""Load all JSON/JSONL cultural test files from *data_dir* and return a flat list of records."""
records: list[dict] = []
if not os.path.isdir(data_dir):
return records
for fname in sorted(os.listdir(data_dir)):
fpath = os.path.join(data_dir, fname)
if fname.endswith(".jsonl"):
with open(fpath, "r", encoding="utf-8") as f:
for line in f:
line = line.strip()
if line:
records.append(json.loads(line))
elif fname.endswith(".json"):
with open(fpath, "r", encoding="utf-8") as f:
rows = json.load(f)
if isinstance(rows, list):
records.extend(rows)
else:
records.append(rows)
return records
def parse_cultural_conversation(record: dict) -> list[dict]:
"""Parse a cultural test record's conversation field into chat messages.
Maps the first speaker to 'user', the second to 'assistant', and merges
consecutive turns from the same speaker.
"""
conv = record.get("conversation", "")
lines = conv.split("\n")
messages: list[dict] = []
speakers: dict[str, str] = {}
for line in lines:
line = line.strip()
if not line:
continue
idx = line.find(": ")
if idx <= 0:
continue
speaker_id = line[:idx]
text = line[idx + 2:]
if speaker_id not in speakers:
speakers[speaker_id] = "user" if len(speakers) == 0 else "assistant"
role = speakers[speaker_id]
if messages and messages[-1]["role"] == role:
messages[-1]["content"] += "\n" + text
else:
messages.append({"role": role, "content": text})
return messages
def load_jsonl_test(path: str) -> list[dict]:
"""Load all records whose split == 'test' from a JSONL file."""
path = _resolve_jsonl_path(path)
records: list[dict] = []
with open(path, "r", encoding="utf-8") as f:
for line in f:
line = line.strip()
if not line:
continue
record = json.loads(line)
split = record.get("split") or record.get("metadata", {}).get("split")
if split == "test":
records.append(record)
return records
# ---------------------------------------------------------------------------
# Save-path construction (stages 1 & 2)
# ---------------------------------------------------------------------------
def _build_save_paths(base_data_dir: str, model_name: str, dataset_folder: str, base_file_stem: str, n_shards: int, shard_idx: int):
"""Construct output dir and filename consistently across stages."""
final_dir = os.path.join(base_data_dir, "embeddings", model_name, dataset_folder)
os.makedirs(final_dir, exist_ok=True)
if n_shards > 1:
file_name = f"{base_file_stem}-{shard_idx:05d}-of-{n_shards:05d}.safetensors"
else:
file_name = f"{base_file_stem}.safetensors"
return final_dir, os.path.join(final_dir, file_name)
# ---------------------------------------------------------------------------
# Inference model path resolution
# ---------------------------------------------------------------------------
def _resolve_inference_model_path(
config: dict,
cli_model_path: str | None,
cli_model_parent_dir: str | None,
cli_model_name: str | None,
) -> str:
if cli_model_path:
return cli_model_path
inference_cfg = config.get("inference", {}) if isinstance(config, dict) else {}
if not isinstance(inference_cfg, dict):
inference_cfg = {}
if cli_model_parent_dir or cli_model_name:
model_parent_dir = str(cli_model_parent_dir or inference_cfg.get("model_parent_dir", "model"))
model_name = cli_model_name or inference_cfg.get("model_name")
if not model_name:
raise ValueError("model_name must be provided via --model_name or config.yaml inference.model_name")
return os.path.join(model_parent_dir, str(model_name))
explicit_model_path = inference_cfg.get("model_path")
if explicit_model_path:
return str(explicit_model_path)
model_name = inference_cfg.get("model_name")
if not model_name:
raise ValueError("model_name must be provided via --model_name or config.yaml inference.model_name")
model_parent_dir = str(inference_cfg.get("model_parent_dir", "model"))
return os.path.join(model_parent_dir, str(model_name))
# ---------------------------------------------------------------------------
# Token patterns and gating-position lookup
# ---------------------------------------------------------------------------
# Canonical mapping uses "llama3" (stage-2 convention); "llama" is an alias
# so that modeling_custom / stage-3 lookups also resolve correctly.
TOKEN_PATTERNS_BY_MODEL_TYPE = {
# Llama3: "<|eot_id|><|start_header_id|>assistant<|end_header_id|>\n\n"
"llama3": [128009, 128006, 78191, 128007, 271],
"llama": [128009, 128006, 78191, 128007, 271],
# Gemma2: "<end_of_turn>\n<start_of_turn>model\n"
"gemma2": [107, 108, 106, 2516, 108],
# Mistral Instruct: "[/INST]" marks the start of the assistant response.
"mistral": [733, 28748, 16289, 28793],
}
def find_token_for_gating(tokens: Sequence[int], model_type: Optional[str]) -> int:
"""Return the start index of the last model-specific token pattern.
For Qwen3/auto (and any model_type without an explicit pattern), falls back
to the last token position.
"""
if model_type == "qwen3":
return max(len(tokens) - 1, 0)
token_pattern = TOKEN_PATTERNS_BY_MODEL_TYPE.get(model_type)
if not token_pattern:
return max(len(tokens) - 1, 0)
token_pattern_len = len(token_pattern)
search_end = len(tokens)
for j in range(search_end - token_pattern_len, -1, -1):
if list(tokens[j:j + token_pattern_len]) == token_pattern:
return j
# Fallback if exact marker pattern is not present in rendered prompt.
return max(len(tokens) - 1, 0)
# ---------------------------------------------------------------------------
# Inference scoring helper
# ---------------------------------------------------------------------------
def _tokenize_chat(tokenizer, messages, device, max_length, *, add_generation_prompt=False):
"""Render then tokenize a chat consistently across preparation and inference."""
text = tokenizer.apply_chat_template(
messages, tokenize=False, add_generation_prompt=add_generation_prompt,
)
encoding = tokenizer(
text, return_tensors="pt", padding=True, truncation=True, max_length=max_length,
)
return {
key: value.to(device) if isinstance(value, torch.Tensor) else value
for key, value in encoding.items()
}
@torch.no_grad()
def _score_messages(model, tokenizer, messages, device, max_length, gating_output_override=None):
"""Tokenize chat messages and run one model forward pass."""
if (
gating_output_override is None
and getattr(model.config, "shared_prompt_gating", False)
and messages
and messages[-1].get("role") == "assistant"
and len(messages) > 1
):
prompt_encoding = _tokenize_chat(
tokenizer, messages[:-1], device, max_length,
add_generation_prompt=True,
)
gating_output_override = model.compute_gating(
input_ids=prompt_encoding["input_ids"],
attention_mask=prompt_encoding.get("attention_mask"),
)
encoding = _tokenize_chat(tokenizer, messages, device, max_length)
return model(
input_ids=encoding["input_ids"],
attention_mask=encoding.get("attention_mask"),
gating_output_override=gating_output_override,
)
@torch.no_grad()
def _score_pair_shared_gate(
model, tokenizer, prompt_messages, chosen_messages, rejected_messages,
device, max_length,
):
"""Score a preference pair with one prompt-only gate shared by both candidates."""
prompt_encoding = _tokenize_chat(
tokenizer,
prompt_messages,
device,
max_length,
add_generation_prompt=True,
)
gating_output = model.compute_gating(
input_ids=prompt_encoding["input_ids"],
attention_mask=prompt_encoding.get("attention_mask"),
)
chosen = _score_messages(
model, tokenizer, chosen_messages, device, max_length, gating_output,
)
rejected = _score_messages(
model, tokenizer, rejected_messages, device, max_length, gating_output,
)
return chosen, rejected, gating_output
|