#!/bin/bash set -e cd "/Users/kyo/Documents/AY/논문/5. WCL-DRL" EMB="bert_agnews_8000.pt" PY="/opt/anaconda3/bin/python" for SEED in 42 123; do for U in 1 2 3 4 5 6; do echo ">>> Joint seed=$SEED U=$U" $PY Code/drl_mask_policy.py \ --mode joint --embed-file $EMB \ --users $U --mux-factor 4 \ --epochs 60 --steps-per-epoch 150 --seed $SEED \ --save-dir results_sweeps/joint_U${U}_s${SEED} \ 2>&1 | tail -2 done done echo "=== joint seeds done ==="