[8956d4]: / test.sh

Download this file

15 lines (13 with data), 618 Bytes

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
results_path="./test" # replace to your results path
batch_size=8
weight_path="checkpoint_best.pt"
TASK="PCBA" # DUDE or PCBA
CUDA_VISIBLE_DEVICES="1" python ./unimol/test.py --user-dir ./unimol $data_path "./data" --valid-subset test \
--results-path $results_path \
--num-workers 8 --ddp-backend=c10d --batch-size $batch_size \
--task drugclip --loss in_batch_softmax --arch drugclip \
--fp16 --fp16-init-scale 4 --fp16-scale-window 256 --seed 1 \
--path $weight_path \
--log-interval 100 --log-format simple \
--max-pocket-atoms 511 \
--test-task $TASK \