dpsk-v4-flash-data / run_cap3.sh
simonycl's picture
Add files using upload-large-folder tool
51f74ff verified
Raw
History Blame Contribute Delete
408 Bytes
#!/bin/bash
PY=/var/lib/agentptb-cache/c/prime-rl/.venv/bin/python
cd /tmp/sft_shards
for f in swe_*.jsonl; do
$PY /mnt/pvc/users/simon/agentptb/runs/c/workspace/tools/cap_sft.py "$f" 21000 > "$f.cap.log" 2>&1 &
done
wait
echo "SWE SHARDS DONE"
OUT=/mnt/pvc/users/simon/agentptb/runs/c/workspace/sft_data/swesmith_sft_cap.jsonl
: > "$OUT"
for f in swe_*_cap.jsonl; do cat "$f" >> "$OUT"; done
wc -l "$OUT"