-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathconfig.R
35 lines (26 loc) · 1.07 KB
/
config.R
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
SEED = 1337
THREADS = 32
DEBUG = FALSE
TRAINING.SIZE = 200
PROBE.SIZE.NEGATIVE = 75
PROBE.SIZE.POSITIVE = 75
PROBE.SIZE = PROBE.SIZE.NEGATIVE + PROBE.SIZE.POSITIVE
OBSCURE.MAX = 0.5
OBSCURE.PERCENTAGES = c(seq(0.0, OBSCURE.MAX, 0.05))
OBSUCRE.REPEAT = 1000
BOOTSTRAP_R = 500
PERFORMANCE.MEASURE = "Cost matrix"
PERFORMANCE.MEASURE.DESC = FALSE
DATASETS.DIR = 'datasets'
DATABASE.FILE = 'db-2015-04-30.csv'
TRAINING.FILE = 'training.csv'
TEST.FILE = 'test.csv'
EVALUATION.OUTPUT.FILE = 'evaluation-output.RData'
DATABASE.LOCATION = paste(DATASETS.DIR, DATABASE.FILE, sep='/')
TRAINING.LOCATION = paste(DATASETS.DIR, TRAINING.FILE, sep='/')
TEST.LOCATION = paste(DATASETS.DIR, TEST.FILE, sep='/')
EVALUATION.OUTPUT.LOCATION = paste(DATASETS.DIR, EVALUATION.OUTPUT.FILE, sep='/')
GEN.DATA.URL = "http://min.wmi.amu.edu.pl/data/ovarian-tumor-aggregation"
set.seed(SEED)
if (file.exists("config.R.user"))
source("config.R.user")