cmevs-code / metadata_examples /per_step_log.schema.json
anon-cmevs-2026's picture
Initial code release for NeurIPS 2026 D&B reviewer reference
5c1bb37 verified
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"title": "CM-EVS per-step selection log",
"type": "object",
"required": ["step", "candidate_id", "score", "marginal_gain", "coverage_after"],
"properties": {
"step": {"type": "integer"},
"candidate_id": {"type": "string"},
"score": {"type": "number"},
"marginal_gain": {"type": "number"},
"coverage_after": {"type": "number"},
"conflict_prior": {"type": "number"}
}
}