-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathconfig.json
55 lines (55 loc) · 1.33 KB
/
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
52
53
54
55
{
"cnn": {
"api": {
"server": "",
"port": 1234
},
"core": [
"Server",
"Client",
"Classify"
],
"data": {
"dim": 100,
"file_type": ".jpg",
"labels": [0, 1],
"test": "Model/Data/Test",
"test_data": [
"im006_1.jpg",
"im020_1.jpg",
"im024_1.jpg",
"im026_1.jpg",
"im028_1.jpg",
"im031_1.jpg",
"im035_0.jpg",
"im041_0.jpg",
"im047_0.jpg",
"im053_1.jpg",
"im057_1.jpg",
"im060_1.jpg",
"im063_1.jpg",
"im069_0.jpg",
"im074_0.jpg",
"im088_0.jpg",
"im095_0.jpg",
"im099_0.jpg",
"im101_0.jpg",
"im106_0.jpg"
],
"valid_types": [
".JPG",
".JPEG",
".PNG",
".GIF",
".jpg",
".jpeg",
".png",
".gif"
]
},
"model": {
"model": "Model/model.json",
"weights": "Model/weights.h5"
}
}
}