diff options
| author | YurenHao0426 <blackhao0426@gmail.com> | 2026-06-13 12:35:36 -0500 |
|---|---|---|
| committer | YurenHao0426 <blackhao0426@gmail.com> | 2026-06-13 12:35:36 -0500 |
| commit | 66e0d8b9fd4d0f7a2231d689c055e26fdf1cf04a (patch) | |
| tree | c29cba61124018755a19b02c9d33e3ad5f2e05cc /research/flossing/flossing_suite/status.sh | |
Curated export for clone-and-run Maze training (2x A6000) + diagnostics.
trm/hrm pretrain.py carry trajectory-augmentation code (backward-compatible).
Heavy artifacts (checkpoints/wandb/npz) gitignored; see PROVENANCE.md.
Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
Diffstat (limited to 'research/flossing/flossing_suite/status.sh')
| -rwxr-xr-x | research/flossing/flossing_suite/status.sh | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/research/flossing/flossing_suite/status.sh b/research/flossing/flossing_suite/status.sh new file mode 100755 index 0000000..39af2d6 --- /dev/null +++ b/research/flossing/flossing_suite/status.sh @@ -0,0 +1,33 @@ +#!/usr/bin/env bash +set -euo pipefail + +ROOT="/home/yurenh2/rrm" +cd "${ROOT}" + +echo "== GPU ==" +nvidia-smi --query-gpu=index,memory.used,memory.total,utilization.gpu --format=csv,noheader,nounits + +echo +echo "== Active flossing processes ==" +ps -eo pid,ppid,stat,etime,cmd | rg 'engelken_python_flossing.py|step7_interfloss.py' || true + +echo +echo "== Latest logs ==" +for dir in \ + research/flossing/flossing_suite/results/toy_rnn \ + research/flossing/flossing_suite/results/trm_faithful \ + research/flossing/flossing_suite/results/trm_variants \ + research/flossing/flossing_suite/results/smoke +do + [[ -d "${dir}" ]] || continue + for f in "${dir}"/*.log; do + [[ -f "${f}" ]] || continue + echo + echo "-- ${f} --" + tail -n 8 "${f}" + done +done + +echo +echo "== Summary files ==" +ls -lh research/flossing/flossing_suite/results/summary 2>/dev/null || true |
