-
Notifications
You must be signed in to change notification settings - Fork 126
/
Copy pathrun_config.json
51 lines (51 loc) · 875 Bytes
/
run_config.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
45
46
47
48
49
50
51
{
"output": ".",
"video": {
"path": "demo.mp4",
"pre_load": true,
"fps": null
},
"cutter": {
"threshold": 0.95,
"frame_count": 3,
"offset": 3,
"limit": null,
"block": 3,
"compress_rate": 0.2,
"target_size": [
600,
800
]
},
"classifier": {
"classifier_type": "svm",
"model": null,
"boost_mode": true,
"compress_rate": 0.2,
"target_size": [
600,
800
]
},
"extras": {
"save_train_set": "./trainset_run_config"
},
"calc": {
"output": "some2.json",
"ignore_error": false,
"operators": [
{
"name": "calc_between_0_1",
"calc_type": "between",
"args": {
"from_stage": "0",
"to_stage": "1"
}
},
{
"name": "display everything",
"calc_type": "display"
}
]
}
}