rl4phyx-backup / logs /get_error4.sh
YUNTA88's picture
Upload folder using huggingface_hub
3eee49d verified
#!/bin/bash
# Extract the actual full error from rank0 in v2 log
echo "=== rank0 error lines ==="
grep '\[rank0\]' /workspace/rl4phyx/sft_training_v2.log | grep -v 'WARNING\|warn\|UserWarning\|FutureWarning\|Loading\|OMP_NUM\|Loaded\|NCCL\|trainable' | tail -30
echo ""
echo "=== last 5 non-warning lines ==="
grep -v 'WARNING\|warn\|UserWarning\|FutureWarning' /workspace/rl4phyx/sft_training_v2.log | tail -10
echo "=== END ==="