Initial release: code for WCL2026-1544 (context-aware embedding masking via DRL)
This commit is contained in:
Executable
+17
@@ -0,0 +1,17 @@
|
||||
#!/bin/bash
|
||||
set -e
|
||||
cd "/Users/kyo/Documents/AY/논문/5. WCL-DRL"
|
||||
EMB="bert_agnews_8000.pt"
|
||||
PY="/opt/anaconda3/bin/python"
|
||||
for U in 1 2 3 4 5 6; do
|
||||
echo ">>> MAML 200ep U=$U"
|
||||
$PY Code/drl_mask_policy.py \
|
||||
--mode maml --embed-file $EMB \
|
||||
--users $U --mux-factor 4 \
|
||||
--epochs 200 --steps-per-epoch 200 \
|
||||
--inner-lr 5e-4 --eval-inner-lr 5e-4 \
|
||||
--meta-batch 4 \
|
||||
--save-dir results_sweeps/maml_U${U}_200ep \
|
||||
2>&1 | tail -2
|
||||
done
|
||||
echo "=== MAML 200ep sweep done ==="
|
||||
Reference in New Issue
Block a user