File size: 632 Bytes
bc29ee3 | 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 | #!/usr/bin/env python3
"""Evaluate consecutive three-block Predictors with the FPPF protocol."""
from __future__ import annotations
import sys
from evaluate_two_block_fppf import main
DEFAULTS = {
"--architecture": "three_block",
"--sweep_dir": "outputs/three_block_consecutive_sweep",
"--output_dir": "outputs/three_block_fppf_eval",
"--reference_root": "outputs/single_block_fppf_eval",
"--schedule": "FPPF",
}
if __name__ == "__main__":
present = set(sys.argv[1:])
for option, value in DEFAULTS.items():
if option not in present:
sys.argv.extend([option, value])
main()
|