17 lines
503 B
Bash
Executable File
17 lines
503 B
Bash
Executable File
#!/bin/bash
|
|
set -e
|
|
cd "/Users/kyo/Documents/AY/논문/5. WCL-DRL"
|
|
EMB="bert_agnews_8000.pt"
|
|
PY="/opt/anaconda3/bin/python"
|
|
# U=4 already covered by results_drl_long_joint/
|
|
for U in 1 2 3 5 6; do
|
|
echo ">>> Joint 200ep U=$U"
|
|
$PY Code/drl_mask_policy.py \
|
|
--mode joint --embed-file $EMB \
|
|
--users $U --mux-factor 4 \
|
|
--epochs 200 --steps-per-epoch 200 \
|
|
--save-dir results_sweeps/joint_U${U}_200ep \
|
|
2>&1 | tail -2
|
|
done
|
|
echo "=== Joint 200ep sweep done ==="
|