- Archive: 85 agent .txt files → docs/archive/agents/legacy_txt/ - Scripts: Move 110 shell scripts → scripts/ (keep deploy.sh in root) - Models: Move 18 .safetensors → ml/models/checkpoints/training_artifacts/ - Delete: 34 directories (~33GB freed) - target/, coverage_*, test artifacts - Build: Clean 14 build artifacts (.rlib, .o, .pid, binaries) - Tests: Move 14 .rs files → tests/standalone/ - SQL: Move 5 files → sql/ (keep init-db*.sql for Docker) - Wave 153: Archive to docs/archive/historical/wave153/ - Docs: Archive 9 markdown files to wave_d/reports/ and historical/ Total impact: ~34GB freed (both waves), root directory cleaned from 583 to ~40 essential files Directory count reduced from 65 to 31 (52% reduction) All historical data preserved in organized archive structure
23 lines
690 B
Bash
Executable File
23 lines
690 B
Bash
Executable File
#!/bin/bash
|
|
# Agent 43: PPO Checkpoint Validation Script
|
|
# Direct compilation and execution to avoid workspace build issues
|
|
|
|
set -e
|
|
|
|
echo "=== PPO Checkpoint Validation (Agent 43) ==="
|
|
echo ""
|
|
echo "Testing PPO checkpoint save/load functionality..."
|
|
echo ""
|
|
|
|
# Compile only the PPO checkpoint test
|
|
echo "Step 1: Compiling test..."
|
|
cd /home/jgrusewski/Work/foxhunt
|
|
cargo test -p ml --lib ppo_checkpoint_validation_test --no-run 2>&1 | tail -20
|
|
|
|
echo ""
|
|
echo "Step 2: Running tests..."
|
|
cargo test -p ml --lib ppo_checkpoint_validation_test -- --test-threads=1 --nocapture 2>&1 | grep -E "(test_ppo|running|Result|PASSED|✅|Step|bytes)"
|
|
|
|
echo ""
|
|
echo "=== Checkpoint Validation Complete ==="
|