forked from rdk/p2rank
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnew.groovy
69 lines (42 loc) · 1.46 KB
/
new.groovy
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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
import cz.siret.prank.program.params.Params
(params as Params).with {
/**
* define this if you want dataset program parameters to be evaluated relative to this directory
* (set absolute path or path relative to install dir, null defaults to working dir)
*/
dataset_base_dir = "../../p2rank-datasets"
/**
* all output of the prorgam will be stored in subdirectores of this directory
* (set absolute path or path relative to install dir, null defaults to working dir)
*/
output_base_dir = "../../p2rank-results/2.0-rc.2"
visualizations = false
delete_models = true
delete_vectors = true
cache_eval_dataset = true
max_train_instances = 0
/**
* stop processing a datsaset on the first unrecoverable error with a dataset item
*/
fail_fast = true
classifier="FastRandomForest"
seed = 42
loop = 10
predictions = true
out_prefix_date = false
crossval_threads = 5
cache_eval_dataset = true
cache_datasets = true
log_cases = true
/**
* calculate feature importance
* available only for some classifiers
*/
feature_importances = false
// new optimizations in smichov project:
//residue_table_features = ["RAx"]
//atom_table_feat_pow = 8
atom_table_feat_keep_sgn = true
neighbourhood_radius = 8
atom_table_features = ["ap5sasaValids","ap5sasaInvalids"] // "apRawValids","apRawInvalids","atomicHydrophobicity"
}