Rotate capped training samples across iterations
GeoIntel release gates / Compile, test, contracts and builds (push) Canceled after 0s
GeoIntel release gates / Python and npm vulnerability policy (push) Canceled after 0s
GeoIntel release gates / GIS image, SBOM and container scan (push) Canceled after 0s

This commit is contained in:
Jens
2026-07-29 20:59:03 +02:00
parent adff7e2284
commit bb3df850aa
5 changed files with 75 additions and 1 deletions
@@ -164,6 +164,7 @@ def failure_sampling_command(
corpus_manifest: Path,
assessment: Path,
output_dir: Path,
sampling_round: int = 0,
) -> list[str]:
return [
sys.executable,
@@ -172,6 +173,7 @@ def failure_sampling_command(
"--corpus-manifest", str(corpus_manifest),
"--assessment", str(assessment),
"--output-dir", str(output_dir),
"--sampling-round", str(sampling_round),
]
@@ -443,6 +445,7 @@ def main() -> int:
corpus_manifest=args.corpus_manifest,
assessment=assessment,
output_dir=sampling_dir,
sampling_round=index,
),
iteration_dir / "failure-driven-sampling.log",
)