forked from rdk/p2rank
-
Notifications
You must be signed in to change notification settings - Fork 0
/
working.groovy
53 lines (34 loc) · 1.1 KB
/
working.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
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
max_train_instances = 0
/**
* stop processing a datsaset on the first unrecoverable error with a dataset item
*/
fail_fast = false
classifier="FastRandomForest"
seed = 42
loop = 10
predictions = true
out_prefix_date = false
crossval_threads = 5
cache_datasets = true
log_cases = true
/**
* calculate feature importance
* available only for some classifiers
*/
feature_importances = false
}