alifalhasan
commited on
Commit
•
510144f
1
Parent(s):
54362ec
Upload config.json
Browse files- config.json +58 -0
config.json
ADDED
@@ -0,0 +1,58 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"architectures": [
|
3 |
+
"sequential"
|
4 |
+
],
|
5 |
+
"task_type": "your_task_type",
|
6 |
+
"input_info": [
|
7 |
+
{
|
8 |
+
"name": "conv2d",
|
9 |
+
"shape": [
|
10 |
+
null,
|
11 |
+
224,
|
12 |
+
224,
|
13 |
+
3
|
14 |
+
]
|
15 |
+
},
|
16 |
+
{
|
17 |
+
"name": "max_pooling2d",
|
18 |
+
"shape": [
|
19 |
+
null,
|
20 |
+
222,
|
21 |
+
222,
|
22 |
+
32
|
23 |
+
]
|
24 |
+
},
|
25 |
+
{
|
26 |
+
"name": "flatten",
|
27 |
+
"shape": [
|
28 |
+
null,
|
29 |
+
111,
|
30 |
+
111,
|
31 |
+
32
|
32 |
+
]
|
33 |
+
},
|
34 |
+
{
|
35 |
+
"name": "dense",
|
36 |
+
"shape": [
|
37 |
+
null,
|
38 |
+
394272
|
39 |
+
]
|
40 |
+
},
|
41 |
+
{
|
42 |
+
"name": "dense_1",
|
43 |
+
"shape": [
|
44 |
+
null,
|
45 |
+
64
|
46 |
+
]
|
47 |
+
}
|
48 |
+
],
|
49 |
+
"output_info": [
|
50 |
+
{
|
51 |
+
"name": "dense_1/Softmax:0",
|
52 |
+
"shape": [
|
53 |
+
null,
|
54 |
+
5
|
55 |
+
]
|
56 |
+
}
|
57 |
+
]
|
58 |
+
}
|