File size: 1,131 Bytes
0161e74
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
#!/bin/bash
# Evaluate all perturbation conditions and aggregate results.
# Run on login node (no GPU needed).

source /home/hp250092/ku50001222/qian/aivc/lfj/stack_env/bin/activate
cd /home/hp250092/ku50001222/qian/aivc/lfj/transfer

PERTURBATIONS=(
    "Belinostat"
    "CHIR-99021"
    "Crizotinib"
    "Dabrafenib"
    "Dactolisib"
    "Foretinib"
    "Idelalisib"
    "LDN 193189"
    "Linagliptin"
    "O-Demethylated Adapalene"
    "Palbociclib"
    "Penfluridol"
    "Porcn Inhibitor III"
    "R428"
)

echo "=========================================="
echo "Evaluating all perturbation conditions"
echo "Start: $(date)"
echo "=========================================="

for PERT in "${PERTURBATIONS[@]}"; do
    echo ""
    echo "--- Evaluating: $PERT ---"
    python code/prompt_selection/evaluate_results.py --perturbation "$PERT" || echo "WARNING: Evaluation failed for $PERT"
done

echo ""
echo "--- Aggregating results ---"
python code/prompt_selection/aggregate_results.py

echo "=========================================="
echo "All evaluations complete: $(date)"
echo "=========================================="