Initial release: code for WCL2026-1544 (context-aware embedding masking via DRL)

This commit is contained in:
Ki-Ho Lee
2026-06-22 17:31:32 +09:00
commit 8b7f70d650
26 changed files with 3445 additions and 0 deletions
Executable
+17
View File
@@ -0,0 +1,17 @@
#!/bin/bash
# Add a second seed for DRL convergence points to smooth T90.
set -e
cd "/Users/kyo/Documents/AY/논문/5. WCL-DRL"
EMB="bert_agnews_8000.pt"
PY="/opt/anaconda3/bin/python"
for U in 2 3 5 6; do
echo ">>> DRL seed=42 U=$U"
$PY Code/drl_mask_policy.py \
--mode drl --embed-file $EMB \
--users $U --mux-factor 4 \
--epochs 60 --steps-per-epoch 150 --seed 42 \
--save-dir results_sweeps/drl_U${U}_s42 \
2>&1 | tail -3
done
echo "=== seed=42 sweep done ==="