-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpipeline.json
44 lines (44 loc) · 923 Bytes
/
pipeline.json
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
{
"Setup": {
"description": "",
"random_seed": null
},
"Dataset": {
"class": "modules.DataLoader",
"args": {
"path_to_data": "/home/slipnitskaya/PycharmProjects/piRNA-analysis/data/transposons_nunq5.pkl"
}
},
"Transforms": [
{
"class": "modules.Scaling",
"args": {
"new_min": 1e-16,
"new_max": 1.0,
"axis": -1
}
},
{
"class": "modules.HistBuilder",
"args": {"n_bins": 15}
}
],
"Model": {
"class": "modules.CorrelationModel",
"args": {"n_bins": 15}
},
"Metric": {
"class": "modules.DummyMetric",
"args": {}
},
"Saver": {
"class": "modules.PredictionHists",
"args": {
"use_raw": true,
"filename": "transposons_nunq5",
"n_bins": 15,
"path_to_orig": "/home/slipnitskaya/PycharmProjects/piRNA-analysis/data/transposons_nunq5.pkl",
"n_bm": null
}
}
}