-
Notifications
You must be signed in to change notification settings - Fork 2
/
template.protocol
55 lines (55 loc) · 1.37 KB
/
template.protocol
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
44
45
46
47
48
49
50
51
52
53
54
55
# HASTEN Protocol for running simulation mode in parallel using hand-operated
#
# dock_split
# how many compounds per dock chunk
dock_split=500
# pred_split: number of machines (defines on how many pieces data is splitted)
#
pred_split=16
#
# confgen: Script for generating confs
#
confgen=/data/programs/hasten/glide_confgen.sh
#
# docking: Script for docking
#
docking=/data/programs/hasten/glide_docking.sh
#
# ml_train: Script for machine learning [training]
#
ml_train=/data/programs/hasten/ml_chemprop_train.sh
#
# ml_pred: Script for machine learning [predicting]
ml_pred=/data/programs/hasten/ml_chemprop_pred.sh
#
# dataset_size: this is the fraction (example 0.01 is 1%)
# default: 0.01
#
# This is the amount of compounds selected after each iteration
#
dataset_size=STEPSIZE
#
# dataset_split: training, validation and test set fractions
# default: 0.8 0.1 0.1
#
dataset_split=0.8 0.1 0.1
#
# train_mode: "scratch"
# scratch: after every iteration, every set is again randomized
#
train_mode=scratch
#
# random_seed: an integer number for the random number generator
# default: 1909
#
random_seed=1909
#
# pred_size: max. number of compounds used in predictions.
# default: 123456
#
pred_size=123456
#
# stop_criteria: simply the number of iterations
# default: 10
#
stop_criteria=10