blob: 661257c928391c1b02f1bf86661c0172f0cef6af (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
#!/usr/bin/env bash
# Strict accept-bar finalizer. It intentionally fails until the two frozen
# native author-code runs are complete, imported, and independently audited.
set -eu
cd "$(dirname "$0")/.."
experiments/finalize_claims.sh
/home/yurenh2/miniconda3/envs/ep_pascal/bin/python3 \
experiments/cifar_image_smoke.py
/home/yurenh2/miniconda3/envs/ep_pascal/bin/python3 \
experiments/conv_local_smoke.py
/home/yurenh2/miniconda3/envs/ep_pascal/bin/python3 \
experiments/audit_native_baselines.py \
--results results/native \
--output results/native_baseline_audit.md
git diff --check
echo "accept-bar mechanical audits passed"
|