-
Notifications
You must be signed in to change notification settings - Fork 4
/
intermediate.schema.json
166 lines (166 loc) · 9.45 KB
/
intermediate.schema.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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
{
"definitions": {},
"$schema": "http://json-schema.org/draft-07/schema#",
"$id": "http://example.com/root.json",
"type": "object",
"title": "The Root Schema",
"required": [
"class_name",
"config"
],
"additionalProperties": false,
"properties": {
"class_name": {
"$id": "#/properties/class_name",
"type": "string",
"title": "The Class_name Schema"
},
"config": {
"$id": "#/properties/config",
"type": "object",
"title": "The Config Schema",
"required": [
"name",
"layers"
],
"properties": {
"name": {
"$id": "#/properties/config/properties/name",
"type": "string",
"title": "The Name Schema"
},
"layers": {
"$id": "#/properties/config/properties/layers",
"type": "array",
"title": "The Layers Schema",
"items": {
"$id": "#/properties/config/properties/layers/items",
"type": "object",
"title": "The Items Schema",
"required": [
"class_name",
"config"
],
"properties": {
"class_name": {
"$id": "#/properties/config/properties/layers/items/properties/class_name",
"type": "string",
"title": "The Class_name Schema"
},
"config": {
"$id": "#/properties/config/properties/layers/items/properties/config",
"type": "object",
"title": "The Config Schema",
"properties": {
"name": {
"$id": "#/properties/config/properties/layers/items/properties/config/properties/name",
"type": "string",
"title": "The Name Schema"
},
"batch_input_shape": {
"$id": "#/properties/config/properties/layers/items/properties/config/properties/batch_input_shape",
"type": "array",
"title": "The Batch_input_shape Schema",
"items": {
"$id": "#/properties/config/properties/layers/items/properties/config/properties/batch_input_shape/items",
"type": [
"null",
"integer"
],
"title": "The Items Schema"
}
},
"dtype": {
"$id": "#/properties/config/properties/layers/items/properties/config/properties/dtype",
"type": "string",
"title": "The Dtype Schema"
},
"filters": {
"$id": "#/properties/config/properties/layers/items/properties/config/properties/filters",
"type": "integer",
"title": "The Filters Schema"
},
"kernel_size": {
"$id": "#/properties/config/properties/layers/items/properties/config/properties/kernel_size",
"type": "array",
"title": "The Kernel_size Schema",
"items": {
"$id": "#/properties/config/properties/layers/items/properties/config/properties/kernel_size/items",
"type": "integer",
"title": "The Items Schema"
}
},
"kernel_values": {
"$id": "#/properties/config/properties/layers/items/properties/config/properties/kernel_values",
"type": "array",
"title": "The kernel_values Schema",
"items": {
"$id": "#/properties/config/properties/layers/items/properties/config/properties/kernel_values/items",
"type": "array",
"title": "The kernel_values_items Schema",
"items": {
"$id": "#/properties/config/properties/layers/items/properties/config/properties/kernel_values/items/items",
"type": "number",
"title": "The kernel_values_items_items Schema"
}
}
},
"strides": {
"$id": "#/properties/config/properties/layers/items/properties/config/properties/strides",
"type": "array",
"title": "The Strides Schema",
"items": {
"$id": "#/properties/config/properties/layers/items/properties/config/properties/strides/items",
"type": "integer",
"title": "The Items Schema"
}
},
"padding": {
"$id": "#/properties/config/properties/layers/items/properties/config/properties/padding",
"type": "string",
"title": "The Padding Schema"
},
"data_format": {
"$id": "#/properties/config/properties/layers/items/properties/config/properties/data_format",
"type": "string",
"title": "The Data_format Schema"
},
"dilation_rate": {
"$id": "#/properties/config/properties/layers/items/properties/config/properties/dilation_rate",
"type": "array",
"title": "The Dilation_rate Schema",
"items": {
"$id": "#/properties/config/properties/layers/items/properties/config/properties/dilation_rate/items",
"type": "integer",
"title": "The Items Schema"
}
},
"activation": {
"$id": "#/properties/config/properties/layers/items/properties/config/properties/activation",
"type": "string",
"title": "The Activation Schema"
},
"use_bias": {
"$id": "#/properties/config/properties/layers/items/properties/config/properties/use_bias",
"type": "boolean",
"title": "The Use_bias Schema"
},
"bias_values": {
"$id": "#/properties/config/properties/layers/items/properties/config/properties/bias_values",
"type": "array",
"title": "The bias_values Schema",
"items": {
"$id": "#/properties/config/properties/layers/items/properties/config/properties/bias_values/items",
"type": "number",
"title": "The Items Schema"
}
}
}
}
}
}
}
}
}
}
}