File size: 12,180 Bytes
fc329a3 | 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 | """Run conformal benchmark on SemEval-2007 Affective Text emotion compositions."""
from __future__ import annotations
import argparse
import json
import logging
import time
from pathlib import Path
import numpy as np
import sys
sys.path.insert(0, str(Path(__file__).resolve().parent.parent))
from src.data import build_prediction_matrix, load_affective_text
from src.methods import (
full_conformal,
global_split_conformal,
jackknife_plus_conformal,
oneshot_conformal,
partition_conformal,
trainres_conformal,
twostage_conformal,
weighted_conformal,
)
from src.methods._knn_sigma import knn_sigma_hat, knn_sigma_leave_one_out
from src.metrics.coverage import (
coverage_variance,
marginal_coverage,
max_disparity,
stratified_coverage,
worst_stratum_coverage,
)
from src.metrics.setsize import mean_radius, mean_volume_ratio, volume_ratio_by_strata
from src.metrics.sscv import size_stratified_coverage_violation
from src.utils.seed import get_rng
from src.utils.simplex import aitchison_dist
from src.utils.strata import (
precompute_fixed_strata,
stratify_by_boundary,
stratify_by_entropy,
)
logging.basicConfig(level=logging.INFO, format="%(asctime)s %(levelname)s %(message)s")
log = logging.getLogger(__name__)
DEFAULT_METHODS = [
"global",
"partition",
"twostage",
"jackknife_plus",
"weighted",
"oneshot",
"trainres",
"fullcp",
]
def compute_weight_vectors(R_cal, U_cal, U_test, k=20):
sigma_cal = knn_sigma_leave_one_out(U_cal, R_cal, k=k)
sigma_test = knn_sigma_hat(U_cal, R_cal, U_test, k=k)
weights_cal = 1.0 / np.maximum(sigma_cal, 1e-8)
weights_test = 1.0 / np.maximum(sigma_test, 1e-8)
weights_cal /= np.mean(weights_cal)
weights_test /= np.mean(weights_test)
return weights_cal, weights_test
def macro_pearson(a: np.ndarray, b: np.ndarray) -> float:
vals = []
for j in range(a.shape[1]):
aj = a[:, j]
bj = b[:, j]
if np.std(aj) <= 1e-12 or np.std(bj) <= 1e-12:
continue
vals.append(float(np.corrcoef(aj, bj)[0, 1]))
return float(np.mean(vals)) if vals else float("nan")
def run_experiment(
Y,
U,
alpha,
n_rep,
cal_frac,
n_strata,
rng,
methods,
strata_mode,
compute_volume=False,
volume_score="aitchison",
volume_n_mc=50000,
volume_max_points=None,
fixed_strata=True,
strata_seed=2026,
):
R = aitchison_dist(Y, U)
n = len(R)
n_cal = int(n * cal_frac)
all_results = {m: [] for m in methods}
fixed_labels = None
if fixed_strata:
fixed_labels = precompute_fixed_strata(U, strata_mode, n_strata, seed=strata_seed)
elif strata_mode not in {"boundary", "entropy"}:
raise ValueError("Non-fixed AffectiveText strata must be 'boundary' or 'entropy'.")
else:
strata_fn = stratify_by_boundary if strata_mode == "boundary" else stratify_by_entropy
for rep in range(n_rep):
perm = rng.permutation(n)
idx_cal, idx_test = perm[:n_cal], perm[n_cal:]
R_cal, R_test = R[idx_cal], R[idx_test]
U_cal, U_test = U[idx_cal], U[idx_test]
if fixed_labels is not None:
strata_cal = fixed_labels[idx_cal]
strata_test = fixed_labels[idx_test]
else:
strata_cal = strata_fn(U_cal, n_strata)
strata_test = strata_fn(U_test, n_strata)
weights_cal, weights_test = compute_weight_vectors(R_cal, U_cal, U_test)
for m in methods:
start = time.perf_counter()
if m == "global":
res = global_split_conformal(R_cal, R_test, alpha)
elif m == "partition":
res = partition_conformal(R_cal, R_test, alpha, strata_cal, strata_test)
elif m == "twostage":
res = twostage_conformal(R_cal, R_test, alpha, U_cal, U_test)
elif m == "jackknife_plus":
res = jackknife_plus_conformal(R_cal, R_test, alpha, U_cal=U_cal, U_test=U_test)
elif m == "weighted":
res = weighted_conformal(R_cal, R_test, alpha, weights_cal, weights_test)
elif m == "oneshot":
res = oneshot_conformal(R_cal, R_test, alpha, U_cal, U_test)
elif m == "trainres":
train_perm = rng.permutation(n)
idx_train = train_perm[:n_cal]
res = trainres_conformal(R_cal, R_test, alpha, U_cal, U_test, R[idx_train], U[idx_train])
elif m == "fullcp":
res = full_conformal(R_cal, R_test, alpha, U_cal, U_test)
else:
continue
runtime_sec = time.perf_counter() - start
all_results[m].append(dict(
marginal_coverage=float(marginal_coverage(res.covered)),
max_disparity=float(max_disparity(res.covered, strata_test, alpha)),
worst_stratum_coverage=float(worst_stratum_coverage(res.covered, strata_test)),
mean_radius=float(mean_radius(res.radius)),
sscv=float(size_stratified_coverage_violation(res.covered, res.radius, alpha)),
coverage_variance=float(coverage_variance(res.covered, strata_test)),
runtime_sec=float(runtime_sec),
stratified_coverage={str(k): float(v) for k, v in stratified_coverage(res.covered, strata_test).items()},
))
if compute_volume:
all_results[m][-1]["mean_volume_ratio"] = float(
mean_volume_ratio(
U_test,
res.radius,
score=volume_score,
n_mc=volume_n_mc,
max_points=volume_max_points,
rng=np.random.default_rng(rep),
)
)
all_results[m][-1]["volume_ratio_by_strata"] = {
str(k): float(v)
for k, v in volume_ratio_by_strata(
U_test,
res.radius,
strata_test,
score=volume_score,
n_mc=volume_n_mc,
max_points=volume_max_points,
rng=np.random.default_rng(rep),
).items()
}
if (rep + 1) % 50 == 0:
log.info(f" Rep {rep + 1}/{n_rep}")
return all_results
def summarize_results(all_results: dict, methods: list[str]) -> dict:
summary = {}
scalar_keys = [
"marginal_coverage",
"max_disparity",
"worst_stratum_coverage",
"mean_radius",
"sscv",
"coverage_variance",
"runtime_sec",
"mean_volume_ratio",
]
for m in methods:
reps = all_results.get(m, [])
if not reps:
continue
s = {}
for key in scalar_keys:
if key in reps[0]:
vals = [r[key] for r in reps]
s[key] = {"mean": float(np.mean(vals)), "std": float(np.std(vals))}
strata_keys = set()
for r in reps:
strata_keys.update(r["stratified_coverage"].keys())
s["stratified_coverage"] = {
k: {
"mean": float(np.mean([r["stratified_coverage"][k] for r in reps if k in r["stratified_coverage"]])),
"std": float(np.std([r["stratified_coverage"][k] for r in reps if k in r["stratified_coverage"]])),
"n_reps": int(sum(k in r["stratified_coverage"] for r in reps)),
}
for k in sorted(strata_keys, key=int)
}
if "volume_ratio_by_strata" in reps[0]:
vol_keys = set()
for r in reps:
vol_keys.update(r["volume_ratio_by_strata"].keys())
s["volume_ratio_by_strata"] = {
k: {
"mean": float(np.mean([r["volume_ratio_by_strata"][k] for r in reps if k in r["volume_ratio_by_strata"]])),
"std": float(np.std([r["volume_ratio_by_strata"][k] for r in reps if k in r["volume_ratio_by_strata"]])),
"n_reps": int(sum(k in r["volume_ratio_by_strata"] for r in reps)),
}
for k in sorted(vol_keys, key=int)
}
summary[m] = s
return summary
def main():
parser = argparse.ArgumentParser()
parser.add_argument("--data-dir", default="data/raw/AffectiveText.Semeval.2007")
parser.add_argument("--prediction-cache", default="data/processed/affective_text_predictions.jsonl")
parser.add_argument("--alpha", type=float, default=0.1)
parser.add_argument("--n_rep", type=int, default=200)
parser.add_argument("--cal_frac", type=float, default=0.4)
parser.add_argument("--n_strata", type=int, default=5)
parser.add_argument(
"--strata",
choices=["boundary", "entropy", "dominant", "kmeans", "random"],
default="boundary",
)
parser.add_argument("--fixed-strata", dest="fixed_strata", action="store_true")
parser.add_argument(
"--separate-strata",
dest="fixed_strata",
action="store_false",
help="Diagnostic only: fit calibration/test strata separately.",
)
parser.set_defaults(fixed_strata=True)
parser.add_argument("--seed", type=int, default=2026)
parser.add_argument("--tag", default=None)
parser.add_argument("--output-dir", default="results")
parser.add_argument("--methods", nargs="+", default=DEFAULT_METHODS, choices=DEFAULT_METHODS)
parser.add_argument("--compute-volume", action="store_true")
parser.add_argument("--volume-score", choices=["aitchison", "tv"], default="aitchison")
parser.add_argument("--volume-n-mc", type=int, default=50000)
parser.add_argument("--volume-max-points", type=int, default=None)
args = parser.parse_args()
data = load_affective_text(args.data_dir)
pred_raw, U = build_prediction_matrix(data["ids"], args.prediction_cache)
Y = data["Y"]
gold_raw = data["raw_scores"]
rng = get_rng(args.seed)
R = aitchison_dist(Y, U)
macro_r = macro_pearson(gold_raw, pred_raw)
flat_r = float(np.corrcoef(gold_raw.reshape(-1), pred_raw.reshape(-1))[0, 1])
log.info(f"Loaded {len(Y)} headlines with cached predictions")
log.info(f"Predictor quality: macro Pearson={macro_r:.3f}, flattened Pearson={flat_r:.3f}")
log.info(f"Residuals: mean={R.mean():.4f}, std={R.std():.4f}")
all_results = run_experiment(
Y,
U,
args.alpha,
args.n_rep,
args.cal_frac,
args.n_strata,
rng,
args.methods,
args.strata,
fixed_strata=args.fixed_strata,
compute_volume=args.compute_volume,
volume_score=args.volume_score,
volume_n_mc=args.volume_n_mc,
volume_max_points=args.volume_max_points,
strata_seed=args.seed,
)
summary = summarize_results(all_results, args.methods)
log.info("\n" + "=" * 60)
log.info("RESULTS — SemEval-2007 Affective Text")
log.info("=" * 60)
for m in args.methods:
if m not in summary:
continue
s = summary[m]
log.info(
f" {m:12s} cov={s['marginal_coverage']['mean']:.3f}±{s['marginal_coverage']['std']:.3f} "
f"disp={s['max_disparity']['mean']:.3f}±{s['max_disparity']['std']:.3f}"
)
out_dir = Path(args.output_dir) / "tables"
out_dir.mkdir(parents=True, exist_ok=True)
suffix = f"_{args.tag}" if args.tag else ""
out_file = out_dir / f"exp2_6_affective_text{suffix}.json"
with open(out_file, "w", encoding="utf-8") as f:
json.dump(
dict(
summary=summary,
n=len(Y),
K=Y.shape[1],
emotions=data["emotions"],
predictor_quality=dict(macro_pearson=macro_r, flattened_pearson=flat_r),
config=vars(args),
raw=all_results,
),
f,
indent=2,
)
log.info(f"Saved to {out_file}")
if __name__ == "__main__":
main()
|