-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrun_diversity_experiments.sh
More file actions
33 lines (31 loc) · 1.35 KB
/
run_diversity_experiments.sh
File metadata and controls
33 lines (31 loc) · 1.35 KB
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
uv run src/condition_learning/evaluation/diversity.py \
--hte_dataset_path data/datasets/val_data_pfizer1_no_additive.h5 \
--reaction_type amide_coupling \
--method morgan \
--max_batch_size 32 \
--num_repeats 2048 \
--kernel_type gaussian \
--kernel_metric jaccard \
--kernel_length_scale 1 0.5 0.25 0.125 0.0625 0.030125 \
--output_path data/condition_diversity/morgan/param_screen/jaccard_distance.csv
uv run src/condition_learning/evaluation/diversity.py \
--hte_dataset_path data/datasets/val_data_pfizer1_no_additive.h5 \
--reaction_type amide_coupling \
--method mordred \
--max_batch_size 32 \
--num_repeats 2048 \
--kernel_type gaussian \
--kernel_metric cityblock \
--kernel_length_scale 8 16 32 64 128 256 \
--output_path data/condition_diversity/mordred/param_screen/manhattan_distance.csv
uv run src/condition_learning/evaluation/diversity.py \
--hte_dataset_path data/datasets/val_data_pfizer1_no_additive.h5 \
--precomputed_embeddings_path embeddings/evaluation/diversity.h5 \
--reaction_type amide_coupling \
--method learnt \
--max_batch_size 32 \
--num_repeats 2048 \
--kernel_type gaussian \
--kernel_metric eucldiean \
--kernel_length_scale 2 4 8 16 32 64 128 \
--output_path data/condition_diversity/mordred/param_screen/eucldiean_distance.csv