This document covers long evaluation runs. Evaluation artifacts do not train models, modify weights, or promote cases automatically.
CAMPAIGN="oracle-exhaustive"
OUTPUT="quality-results/${CAMPAIGN}"
LOG="logs/${CAMPAIGN}.log"
PIDFILE="logs/${CAMPAIGN}.pid"
mkdir -p "$OUTPUT" logsnohup env PYTHONPATH=. python -u -m tests.quality.oracle_exhaustive_test \
--workers 4 \
--shard-size 250 \
--output-dir "$OUTPUT" \
> "$LOG" 2>&1 &
echo $! | tee "$PIDFILE"tail -f "$LOG"PID=$(cat "$PIDFILE")
kill -0 "$PID" 2>/dev/null && echo running || echo stoppedPYTHONPATH=. python -u -m tests.quality.oracle_exhaustive_test \
--workers 4 \
--shard-size 250 \
--output-dir "$OUTPUT" \
--resumetar -czf "${CAMPAIGN}.tar.gz" "$OUTPUT" "$LOG"
sha256sum "${CAMPAIGN}.tar.gz" > "${CAMPAIGN}.tar.gz.sha256"Use bounded parallelism. Start with four workers and reduce the value if the machine becomes memory-bound. Do not launch every shard simultaneously.
A harness PASS is not factual authority. Review premise validity, semantic contracts, evidence sufficiency, routing origin, and LLM-call counts.