Run isolated V111 fast residual screen #6
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Trace Ace V122 ID Morphology Audit | |
| on: | |
| push: | |
| branches: [agent/v111-runner] | |
| paths: | |
| - 'competitions/trace_the_ace/v122_id_morphology_regime_audit.py' | |
| - '.github/workflows/trace-ace-v122-id-morphology.yml' | |
| pull_request: | |
| branches: [agent/trace-ace-mastery-events] | |
| paths: | |
| - 'competitions/trace_the_ace/v122_id_morphology_regime_audit.py' | |
| - '.github/workflows/trace-ace-v122-id-morphology.yml' | |
| workflow_dispatch: | |
| jobs: | |
| audit: | |
| runs-on: ubuntu-24.04 | |
| timeout-minutes: 8 | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: actions/setup-python@v5 | |
| with: | |
| python-version: '3.12' | |
| cache: pip | |
| - name: Install dependencies | |
| run: python -m pip install --disable-pip-version-check numpy pandas scipy scikit-learn gdown | |
| - name: Download metadata only | |
| run: | | |
| gdown 1EpqoamY0vFI2qE57R6wdqU5HwuoVk3Zz -O metadata.zip | |
| mkdir -p data/meta | |
| unzip -q metadata.zip -d data/meta | |
| echo "FEATURES=$(find data/meta -type f -name 'train_features*.csv' -print -quit)" >> "$GITHUB_ENV" | |
| echo "LABELS=$(find data/meta -type f -name 'train_labels*.csv' -print -quit)" >> "$GITHUB_ENV" | |
| - name: Preflight | |
| run: python -m py_compile competitions/trace_the_ace/v122_id_morphology_regime_audit.py | |
| - name: Run V122 | |
| run: python competitions/trace_the_ace/v122_id_morphology_regime_audit.py --features "$FEATURES" --labels "$LABELS" --out v122_id_morphology_regime_audit.json | |
| - name: Show decision | |
| run: cat v122_id_morphology_regime_audit.json | |
| - uses: actions/upload-artifact@v4 | |
| with: | |
| name: trace-ace-v122-id-morphology-regime-audit | |
| path: v122_id_morphology_regime_audit.json | |
| retention-days: 14 |