@epfml/discojs 2.0.0 → 2.1.2-p20240506085037.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (334) hide show
  1. package/dist/aggregator/base.d.ts +180 -0
  2. package/dist/aggregator/base.js +236 -0
  3. package/dist/aggregator/get.d.ts +16 -0
  4. package/dist/aggregator/get.js +31 -0
  5. package/dist/aggregator/index.d.ts +7 -0
  6. package/dist/aggregator/index.js +4 -0
  7. package/dist/aggregator/mean.d.ts +23 -0
  8. package/dist/aggregator/mean.js +69 -0
  9. package/dist/aggregator/secure.d.ts +27 -0
  10. package/dist/aggregator/secure.js +91 -0
  11. package/dist/async_informant.d.ts +15 -0
  12. package/dist/async_informant.js +42 -0
  13. package/dist/client/base.d.ts +76 -0
  14. package/dist/client/base.js +88 -0
  15. package/dist/client/decentralized/base.d.ts +32 -0
  16. package/dist/client/decentralized/base.js +192 -0
  17. package/dist/client/decentralized/index.d.ts +2 -0
  18. package/dist/client/decentralized/index.js +2 -0
  19. package/dist/client/decentralized/messages.d.ts +28 -0
  20. package/dist/client/decentralized/messages.js +44 -0
  21. package/dist/client/decentralized/peer.d.ts +40 -0
  22. package/dist/client/decentralized/peer.js +189 -0
  23. package/dist/client/decentralized/peer_pool.d.ts +12 -0
  24. package/dist/client/decentralized/peer_pool.js +44 -0
  25. package/dist/client/event_connection.d.ts +34 -0
  26. package/dist/client/event_connection.js +105 -0
  27. package/dist/client/federated/base.d.ts +54 -0
  28. package/dist/client/federated/base.js +151 -0
  29. package/dist/client/federated/index.d.ts +2 -0
  30. package/dist/client/federated/index.js +2 -0
  31. package/dist/client/federated/messages.d.ts +30 -0
  32. package/dist/client/federated/messages.js +24 -0
  33. package/dist/client/index.d.ts +8 -0
  34. package/dist/client/index.js +8 -0
  35. package/dist/client/local.d.ts +3 -0
  36. package/dist/client/local.js +3 -0
  37. package/dist/client/messages.d.ts +30 -0
  38. package/dist/client/messages.js +26 -0
  39. package/dist/client/types.d.ts +2 -0
  40. package/dist/client/types.js +4 -0
  41. package/dist/client/utils.d.ts +2 -0
  42. package/dist/client/utils.js +7 -0
  43. package/dist/dataset/data/data.d.ts +48 -0
  44. package/dist/dataset/data/data.js +72 -0
  45. package/dist/dataset/data/data_split.d.ts +8 -0
  46. package/dist/dataset/data/data_split.js +1 -0
  47. package/dist/dataset/data/image_data.d.ts +11 -0
  48. package/dist/dataset/data/image_data.js +38 -0
  49. package/dist/dataset/data/index.d.ts +6 -0
  50. package/dist/dataset/data/index.js +5 -0
  51. package/dist/dataset/data/preprocessing/base.d.ts +16 -0
  52. package/dist/dataset/data/preprocessing/base.js +1 -0
  53. package/dist/dataset/data/preprocessing/image_preprocessing.d.ts +13 -0
  54. package/dist/dataset/data/preprocessing/image_preprocessing.js +40 -0
  55. package/dist/dataset/data/preprocessing/index.d.ts +4 -0
  56. package/dist/dataset/data/preprocessing/index.js +3 -0
  57. package/dist/dataset/data/preprocessing/tabular_preprocessing.d.ts +13 -0
  58. package/dist/dataset/data/preprocessing/tabular_preprocessing.js +45 -0
  59. package/dist/dataset/data/preprocessing/text_preprocessing.d.ts +13 -0
  60. package/dist/dataset/data/preprocessing/text_preprocessing.js +85 -0
  61. package/dist/dataset/data/tabular_data.d.ts +11 -0
  62. package/dist/dataset/data/tabular_data.js +25 -0
  63. package/dist/dataset/data/text_data.d.ts +11 -0
  64. package/dist/dataset/data/text_data.js +14 -0
  65. package/dist/{core/dataset → dataset}/data_loader/data_loader.d.ts +3 -5
  66. package/dist/dataset/data_loader/data_loader.js +2 -0
  67. package/dist/dataset/data_loader/image_loader.d.ts +20 -3
  68. package/dist/dataset/data_loader/image_loader.js +98 -23
  69. package/dist/dataset/data_loader/index.d.ts +5 -2
  70. package/dist/dataset/data_loader/index.js +4 -7
  71. package/dist/dataset/data_loader/tabular_loader.d.ts +34 -3
  72. package/dist/dataset/data_loader/tabular_loader.js +75 -15
  73. package/dist/dataset/data_loader/text_loader.d.ts +14 -0
  74. package/dist/dataset/data_loader/text_loader.js +25 -0
  75. package/dist/dataset/dataset.d.ts +5 -0
  76. package/dist/dataset/dataset.js +1 -0
  77. package/dist/dataset/dataset_builder.d.ts +60 -0
  78. package/dist/dataset/dataset_builder.js +142 -0
  79. package/dist/dataset/index.d.ts +5 -0
  80. package/dist/dataset/index.js +3 -0
  81. package/dist/default_tasks/cifar10/index.d.ts +2 -0
  82. package/dist/default_tasks/cifar10/index.js +60 -0
  83. package/dist/default_tasks/cifar10/model.d.ts +434 -0
  84. package/dist/default_tasks/cifar10/model.js +2385 -0
  85. package/dist/default_tasks/geotags/index.d.ts +2 -0
  86. package/dist/default_tasks/geotags/index.js +65 -0
  87. package/dist/default_tasks/geotags/model.d.ts +593 -0
  88. package/dist/default_tasks/geotags/model.js +4715 -0
  89. package/dist/default_tasks/index.d.ts +8 -0
  90. package/dist/default_tasks/index.js +8 -0
  91. package/dist/default_tasks/lus_covid.d.ts +2 -0
  92. package/dist/default_tasks/lus_covid.js +89 -0
  93. package/dist/default_tasks/mnist.d.ts +2 -0
  94. package/dist/default_tasks/mnist.js +61 -0
  95. package/dist/default_tasks/simple_face/index.d.ts +2 -0
  96. package/dist/default_tasks/simple_face/index.js +48 -0
  97. package/dist/default_tasks/simple_face/model.d.ts +513 -0
  98. package/dist/default_tasks/simple_face/model.js +4301 -0
  99. package/dist/default_tasks/skin_mnist.d.ts +2 -0
  100. package/dist/default_tasks/skin_mnist.js +80 -0
  101. package/dist/default_tasks/titanic.d.ts +2 -0
  102. package/dist/default_tasks/titanic.js +88 -0
  103. package/dist/default_tasks/wikitext.d.ts +2 -0
  104. package/dist/default_tasks/wikitext.js +38 -0
  105. package/dist/index.d.ts +18 -2
  106. package/dist/index.js +18 -6
  107. package/dist/{core/informant → informant}/graph_informant.d.ts +1 -1
  108. package/dist/informant/graph_informant.js +20 -0
  109. package/dist/informant/index.d.ts +1 -0
  110. package/dist/informant/index.js +1 -0
  111. package/dist/{core/logging → logging}/console_logger.d.ts +2 -2
  112. package/dist/logging/console_logger.js +22 -0
  113. package/dist/logging/index.d.ts +2 -0
  114. package/dist/logging/index.js +1 -0
  115. package/dist/{core/logging → logging}/logger.d.ts +3 -3
  116. package/dist/logging/logger.js +1 -0
  117. package/dist/memory/base.d.ts +119 -0
  118. package/dist/memory/base.js +9 -0
  119. package/dist/memory/empty.d.ts +20 -0
  120. package/dist/memory/empty.js +43 -0
  121. package/dist/memory/index.d.ts +3 -1
  122. package/dist/memory/index.js +3 -5
  123. package/dist/memory/model_type.d.ts +9 -0
  124. package/dist/memory/model_type.js +10 -0
  125. package/dist/{core/privacy.d.ts → privacy.d.ts} +1 -1
  126. package/dist/{core/privacy.js → privacy.js} +11 -16
  127. package/dist/serialization/index.d.ts +2 -0
  128. package/dist/serialization/index.js +2 -0
  129. package/dist/serialization/model.d.ts +5 -0
  130. package/dist/serialization/model.js +67 -0
  131. package/dist/{core/serialization → serialization}/weights.d.ts +2 -2
  132. package/dist/serialization/weights.js +37 -0
  133. package/dist/task/data_example.js +14 -0
  134. package/dist/task/digest.d.ts +5 -0
  135. package/dist/task/digest.js +14 -0
  136. package/dist/{core/task → task}/display_information.d.ts +5 -3
  137. package/dist/task/display_information.js +46 -0
  138. package/dist/task/index.d.ts +7 -0
  139. package/dist/task/index.js +5 -0
  140. package/dist/task/label_type.d.ts +9 -0
  141. package/dist/task/label_type.js +28 -0
  142. package/dist/task/summary.js +13 -0
  143. package/dist/task/task.d.ts +12 -0
  144. package/dist/task/task.js +22 -0
  145. package/dist/task/task_handler.d.ts +5 -0
  146. package/dist/task/task_handler.js +20 -0
  147. package/dist/task/task_provider.d.ts +5 -0
  148. package/dist/task/task_provider.js +1 -0
  149. package/dist/{core/task → task}/training_information.d.ts +9 -10
  150. package/dist/task/training_information.js +88 -0
  151. package/dist/training/disco.d.ts +40 -0
  152. package/dist/training/disco.js +107 -0
  153. package/dist/training/index.d.ts +2 -0
  154. package/dist/training/index.js +1 -0
  155. package/dist/training/trainer/distributed_trainer.d.ts +20 -0
  156. package/dist/training/trainer/distributed_trainer.js +36 -0
  157. package/dist/training/trainer/local_trainer.d.ts +12 -0
  158. package/dist/training/trainer/local_trainer.js +19 -0
  159. package/dist/training/trainer/trainer.d.ts +33 -0
  160. package/dist/training/trainer/trainer.js +52 -0
  161. package/dist/{core/training → training}/trainer/trainer_builder.d.ts +5 -7
  162. package/dist/training/trainer/trainer_builder.js +43 -0
  163. package/dist/types.d.ts +8 -0
  164. package/dist/types.js +1 -0
  165. package/dist/utils/event_emitter.d.ts +40 -0
  166. package/dist/utils/event_emitter.js +57 -0
  167. package/dist/validation/index.d.ts +1 -0
  168. package/dist/validation/index.js +1 -0
  169. package/dist/validation/validator.d.ts +28 -0
  170. package/dist/validation/validator.js +132 -0
  171. package/dist/weights/aggregation.d.ts +21 -0
  172. package/dist/weights/aggregation.js +44 -0
  173. package/dist/weights/index.d.ts +2 -0
  174. package/dist/weights/index.js +2 -0
  175. package/dist/weights/weights_container.d.ts +68 -0
  176. package/dist/weights/weights_container.js +96 -0
  177. package/package.json +25 -16
  178. package/README.md +0 -53
  179. package/dist/core/async_buffer.d.ts +0 -41
  180. package/dist/core/async_buffer.js +0 -97
  181. package/dist/core/async_informant.d.ts +0 -20
  182. package/dist/core/async_informant.js +0 -69
  183. package/dist/core/client/base.d.ts +0 -33
  184. package/dist/core/client/base.js +0 -35
  185. package/dist/core/client/decentralized/base.d.ts +0 -32
  186. package/dist/core/client/decentralized/base.js +0 -212
  187. package/dist/core/client/decentralized/clear_text.d.ts +0 -14
  188. package/dist/core/client/decentralized/clear_text.js +0 -96
  189. package/dist/core/client/decentralized/index.d.ts +0 -4
  190. package/dist/core/client/decentralized/index.js +0 -9
  191. package/dist/core/client/decentralized/messages.d.ts +0 -41
  192. package/dist/core/client/decentralized/messages.js +0 -54
  193. package/dist/core/client/decentralized/peer.d.ts +0 -26
  194. package/dist/core/client/decentralized/peer.js +0 -210
  195. package/dist/core/client/decentralized/peer_pool.d.ts +0 -14
  196. package/dist/core/client/decentralized/peer_pool.js +0 -92
  197. package/dist/core/client/decentralized/sec_agg.d.ts +0 -22
  198. package/dist/core/client/decentralized/sec_agg.js +0 -190
  199. package/dist/core/client/decentralized/secret_shares.d.ts +0 -3
  200. package/dist/core/client/decentralized/secret_shares.js +0 -39
  201. package/dist/core/client/decentralized/types.d.ts +0 -2
  202. package/dist/core/client/decentralized/types.js +0 -7
  203. package/dist/core/client/event_connection.d.ts +0 -37
  204. package/dist/core/client/event_connection.js +0 -158
  205. package/dist/core/client/federated/client.d.ts +0 -37
  206. package/dist/core/client/federated/client.js +0 -273
  207. package/dist/core/client/federated/index.d.ts +0 -2
  208. package/dist/core/client/federated/index.js +0 -7
  209. package/dist/core/client/federated/messages.d.ts +0 -38
  210. package/dist/core/client/federated/messages.js +0 -25
  211. package/dist/core/client/index.d.ts +0 -5
  212. package/dist/core/client/index.js +0 -11
  213. package/dist/core/client/local.d.ts +0 -8
  214. package/dist/core/client/local.js +0 -36
  215. package/dist/core/client/messages.d.ts +0 -28
  216. package/dist/core/client/messages.js +0 -33
  217. package/dist/core/client/utils.d.ts +0 -2
  218. package/dist/core/client/utils.js +0 -19
  219. package/dist/core/dataset/data/data.d.ts +0 -11
  220. package/dist/core/dataset/data/data.js +0 -20
  221. package/dist/core/dataset/data/data_split.d.ts +0 -5
  222. package/dist/core/dataset/data/data_split.js +0 -2
  223. package/dist/core/dataset/data/image_data.d.ts +0 -8
  224. package/dist/core/dataset/data/image_data.js +0 -64
  225. package/dist/core/dataset/data/index.d.ts +0 -5
  226. package/dist/core/dataset/data/index.js +0 -11
  227. package/dist/core/dataset/data/preprocessing.d.ts +0 -13
  228. package/dist/core/dataset/data/preprocessing.js +0 -33
  229. package/dist/core/dataset/data/tabular_data.d.ts +0 -8
  230. package/dist/core/dataset/data/tabular_data.js +0 -40
  231. package/dist/core/dataset/data_loader/data_loader.js +0 -10
  232. package/dist/core/dataset/data_loader/image_loader.d.ts +0 -17
  233. package/dist/core/dataset/data_loader/image_loader.js +0 -141
  234. package/dist/core/dataset/data_loader/index.d.ts +0 -3
  235. package/dist/core/dataset/data_loader/index.js +0 -9
  236. package/dist/core/dataset/data_loader/tabular_loader.d.ts +0 -29
  237. package/dist/core/dataset/data_loader/tabular_loader.js +0 -101
  238. package/dist/core/dataset/dataset.d.ts +0 -2
  239. package/dist/core/dataset/dataset.js +0 -2
  240. package/dist/core/dataset/dataset_builder.d.ts +0 -18
  241. package/dist/core/dataset/dataset_builder.js +0 -96
  242. package/dist/core/dataset/index.d.ts +0 -4
  243. package/dist/core/dataset/index.js +0 -14
  244. package/dist/core/index.d.ts +0 -18
  245. package/dist/core/index.js +0 -41
  246. package/dist/core/informant/graph_informant.js +0 -23
  247. package/dist/core/informant/index.d.ts +0 -3
  248. package/dist/core/informant/index.js +0 -9
  249. package/dist/core/informant/training_informant/base.d.ts +0 -31
  250. package/dist/core/informant/training_informant/base.js +0 -83
  251. package/dist/core/informant/training_informant/decentralized.d.ts +0 -5
  252. package/dist/core/informant/training_informant/decentralized.js +0 -22
  253. package/dist/core/informant/training_informant/federated.d.ts +0 -14
  254. package/dist/core/informant/training_informant/federated.js +0 -32
  255. package/dist/core/informant/training_informant/index.d.ts +0 -4
  256. package/dist/core/informant/training_informant/index.js +0 -11
  257. package/dist/core/informant/training_informant/local.d.ts +0 -6
  258. package/dist/core/informant/training_informant/local.js +0 -20
  259. package/dist/core/logging/console_logger.js +0 -33
  260. package/dist/core/logging/index.d.ts +0 -3
  261. package/dist/core/logging/index.js +0 -9
  262. package/dist/core/logging/logger.js +0 -9
  263. package/dist/core/logging/trainer_logger.d.ts +0 -24
  264. package/dist/core/logging/trainer_logger.js +0 -59
  265. package/dist/core/memory/base.d.ts +0 -22
  266. package/dist/core/memory/base.js +0 -9
  267. package/dist/core/memory/empty.d.ts +0 -14
  268. package/dist/core/memory/empty.js +0 -75
  269. package/dist/core/memory/index.d.ts +0 -3
  270. package/dist/core/memory/index.js +0 -9
  271. package/dist/core/memory/model_type.d.ts +0 -4
  272. package/dist/core/memory/model_type.js +0 -9
  273. package/dist/core/serialization/index.d.ts +0 -2
  274. package/dist/core/serialization/index.js +0 -6
  275. package/dist/core/serialization/model.d.ts +0 -5
  276. package/dist/core/serialization/model.js +0 -55
  277. package/dist/core/serialization/weights.js +0 -64
  278. package/dist/core/task/data_example.js +0 -24
  279. package/dist/core/task/display_information.js +0 -49
  280. package/dist/core/task/index.d.ts +0 -3
  281. package/dist/core/task/index.js +0 -8
  282. package/dist/core/task/model_compile_data.d.ts +0 -6
  283. package/dist/core/task/model_compile_data.js +0 -22
  284. package/dist/core/task/summary.js +0 -19
  285. package/dist/core/task/task.d.ts +0 -10
  286. package/dist/core/task/task.js +0 -31
  287. package/dist/core/task/training_information.js +0 -66
  288. package/dist/core/tasks/cifar10.d.ts +0 -3
  289. package/dist/core/tasks/cifar10.js +0 -65
  290. package/dist/core/tasks/geotags.d.ts +0 -3
  291. package/dist/core/tasks/geotags.js +0 -67
  292. package/dist/core/tasks/index.d.ts +0 -6
  293. package/dist/core/tasks/index.js +0 -10
  294. package/dist/core/tasks/lus_covid.d.ts +0 -3
  295. package/dist/core/tasks/lus_covid.js +0 -87
  296. package/dist/core/tasks/mnist.d.ts +0 -3
  297. package/dist/core/tasks/mnist.js +0 -60
  298. package/dist/core/tasks/simple_face.d.ts +0 -2
  299. package/dist/core/tasks/simple_face.js +0 -41
  300. package/dist/core/tasks/titanic.d.ts +0 -3
  301. package/dist/core/tasks/titanic.js +0 -88
  302. package/dist/core/training/disco.d.ts +0 -23
  303. package/dist/core/training/disco.js +0 -130
  304. package/dist/core/training/index.d.ts +0 -2
  305. package/dist/core/training/index.js +0 -7
  306. package/dist/core/training/trainer/distributed_trainer.d.ts +0 -20
  307. package/dist/core/training/trainer/distributed_trainer.js +0 -65
  308. package/dist/core/training/trainer/local_trainer.d.ts +0 -11
  309. package/dist/core/training/trainer/local_trainer.js +0 -34
  310. package/dist/core/training/trainer/round_tracker.d.ts +0 -30
  311. package/dist/core/training/trainer/round_tracker.js +0 -47
  312. package/dist/core/training/trainer/trainer.d.ts +0 -65
  313. package/dist/core/training/trainer/trainer.js +0 -160
  314. package/dist/core/training/trainer/trainer_builder.js +0 -95
  315. package/dist/core/training/training_schemes.d.ts +0 -5
  316. package/dist/core/training/training_schemes.js +0 -10
  317. package/dist/core/types.d.ts +0 -4
  318. package/dist/core/types.js +0 -2
  319. package/dist/core/validation/index.d.ts +0 -1
  320. package/dist/core/validation/index.js +0 -5
  321. package/dist/core/validation/validator.d.ts +0 -17
  322. package/dist/core/validation/validator.js +0 -104
  323. package/dist/core/weights/aggregation.d.ts +0 -8
  324. package/dist/core/weights/aggregation.js +0 -96
  325. package/dist/core/weights/index.d.ts +0 -2
  326. package/dist/core/weights/index.js +0 -7
  327. package/dist/core/weights/weights_container.d.ts +0 -19
  328. package/dist/core/weights/weights_container.js +0 -64
  329. package/dist/imports.d.ts +0 -2
  330. package/dist/imports.js +0 -7
  331. package/dist/memory/memory.d.ts +0 -26
  332. package/dist/memory/memory.js +0 -160
  333. package/dist/{core/task → task}/data_example.d.ts +1 -1
  334. package/dist/{core/task → task}/summary.d.ts +1 -1
@@ -0,0 +1,4715 @@
1
+ export default {
2
+ format: "layers-model",
3
+ generatedBy: "keras v2.11.0",
4
+ convertedBy: "TensorFlow.js Converter v4.1.0",
5
+ modelTopology: {
6
+ keras_version: "2.11.0",
7
+ backend: "tensorflow",
8
+ model_config: {
9
+ class_name: "Functional",
10
+ config: {
11
+ name: "model",
12
+ layers: [
13
+ {
14
+ class_name: "InputLayer",
15
+ config: {
16
+ batch_input_shape: [null, 224, 224, 3],
17
+ dtype: "float32",
18
+ sparse: false,
19
+ ragged: false,
20
+ name: "input_1",
21
+ },
22
+ name: "input_1",
23
+ inbound_nodes: [],
24
+ },
25
+ {
26
+ class_name: "Functional",
27
+ config: {
28
+ name: "mobilenetv2_1.00_224",
29
+ layers: [
30
+ {
31
+ class_name: "InputLayer",
32
+ config: {
33
+ batch_input_shape: [null, 224, 224, 3],
34
+ dtype: "float32",
35
+ sparse: false,
36
+ ragged: false,
37
+ name: "input_2",
38
+ },
39
+ name: "input_2",
40
+ inbound_nodes: [],
41
+ },
42
+ {
43
+ class_name: "Conv2D",
44
+ config: {
45
+ name: "Conv1",
46
+ trainable: true,
47
+ dtype: "float32",
48
+ filters: 32,
49
+ kernel_size: [3, 3],
50
+ strides: [2, 2],
51
+ padding: "same",
52
+ data_format: "channels_last",
53
+ dilation_rate: [1, 1],
54
+ groups: 1,
55
+ activation: "linear",
56
+ use_bias: false,
57
+ kernel_initializer: {
58
+ class_name: "GlorotUniform",
59
+ config: { seed: null },
60
+ },
61
+ bias_initializer: { class_name: "Zeros", config: {} },
62
+ kernel_regularizer: null,
63
+ bias_regularizer: null,
64
+ activity_regularizer: null,
65
+ kernel_constraint: null,
66
+ bias_constraint: null,
67
+ },
68
+ name: "Conv1",
69
+ inbound_nodes: [[["input_2", 0, 0, {}]]],
70
+ },
71
+ {
72
+ class_name: "BatchNormalization",
73
+ config: {
74
+ name: "bn_Conv1",
75
+ trainable: true,
76
+ dtype: "float32",
77
+ axis: [3],
78
+ momentum: 0.999,
79
+ epsilon: 0.001,
80
+ center: true,
81
+ scale: true,
82
+ beta_initializer: { class_name: "Zeros", config: {} },
83
+ gamma_initializer: { class_name: "Ones", config: {} },
84
+ moving_mean_initializer: {
85
+ class_name: "Zeros",
86
+ config: {},
87
+ },
88
+ moving_variance_initializer: {
89
+ class_name: "Ones",
90
+ config: {},
91
+ },
92
+ beta_regularizer: null,
93
+ gamma_regularizer: null,
94
+ beta_constraint: null,
95
+ gamma_constraint: null,
96
+ },
97
+ name: "bn_Conv1",
98
+ inbound_nodes: [[["Conv1", 0, 0, {}]]],
99
+ },
100
+ {
101
+ class_name: "ReLU",
102
+ config: {
103
+ name: "Conv1_relu",
104
+ trainable: true,
105
+ dtype: "float32",
106
+ max_value: 6.0,
107
+ negative_slope: 0.0,
108
+ threshold: 0.0,
109
+ },
110
+ name: "Conv1_relu",
111
+ inbound_nodes: [[["bn_Conv1", 0, 0, {}]]],
112
+ },
113
+ {
114
+ class_name: "DepthwiseConv2D",
115
+ config: {
116
+ name: "expanded_conv_depthwise",
117
+ trainable: true,
118
+ dtype: "float32",
119
+ kernel_size: [3, 3],
120
+ strides: [1, 1],
121
+ padding: "same",
122
+ data_format: "channels_last",
123
+ dilation_rate: [1, 1],
124
+ groups: 1,
125
+ activation: "linear",
126
+ use_bias: false,
127
+ bias_initializer: { class_name: "Zeros", config: {} },
128
+ bias_regularizer: null,
129
+ activity_regularizer: null,
130
+ bias_constraint: null,
131
+ depth_multiplier: 1,
132
+ depthwise_initializer: {
133
+ class_name: "GlorotUniform",
134
+ config: { seed: null },
135
+ },
136
+ depthwise_regularizer: null,
137
+ depthwise_constraint: null,
138
+ },
139
+ name: "expanded_conv_depthwise",
140
+ inbound_nodes: [[["Conv1_relu", 0, 0, {}]]],
141
+ },
142
+ {
143
+ class_name: "BatchNormalization",
144
+ config: {
145
+ name: "expanded_conv_depthwise_BN",
146
+ trainable: true,
147
+ dtype: "float32",
148
+ axis: [3],
149
+ momentum: 0.999,
150
+ epsilon: 0.001,
151
+ center: true,
152
+ scale: true,
153
+ beta_initializer: { class_name: "Zeros", config: {} },
154
+ gamma_initializer: { class_name: "Ones", config: {} },
155
+ moving_mean_initializer: {
156
+ class_name: "Zeros",
157
+ config: {},
158
+ },
159
+ moving_variance_initializer: {
160
+ class_name: "Ones",
161
+ config: {},
162
+ },
163
+ beta_regularizer: null,
164
+ gamma_regularizer: null,
165
+ beta_constraint: null,
166
+ gamma_constraint: null,
167
+ },
168
+ name: "expanded_conv_depthwise_BN",
169
+ inbound_nodes: [[["expanded_conv_depthwise", 0, 0, {}]]],
170
+ },
171
+ {
172
+ class_name: "ReLU",
173
+ config: {
174
+ name: "expanded_conv_depthwise_relu",
175
+ trainable: true,
176
+ dtype: "float32",
177
+ max_value: 6.0,
178
+ negative_slope: 0.0,
179
+ threshold: 0.0,
180
+ },
181
+ name: "expanded_conv_depthwise_relu",
182
+ inbound_nodes: [[["expanded_conv_depthwise_BN", 0, 0, {}]]],
183
+ },
184
+ {
185
+ class_name: "Conv2D",
186
+ config: {
187
+ name: "expanded_conv_project",
188
+ trainable: true,
189
+ dtype: "float32",
190
+ filters: 16,
191
+ kernel_size: [1, 1],
192
+ strides: [1, 1],
193
+ padding: "same",
194
+ data_format: "channels_last",
195
+ dilation_rate: [1, 1],
196
+ groups: 1,
197
+ activation: "linear",
198
+ use_bias: false,
199
+ kernel_initializer: {
200
+ class_name: "GlorotUniform",
201
+ config: { seed: null },
202
+ },
203
+ bias_initializer: { class_name: "Zeros", config: {} },
204
+ kernel_regularizer: null,
205
+ bias_regularizer: null,
206
+ activity_regularizer: null,
207
+ kernel_constraint: null,
208
+ bias_constraint: null,
209
+ },
210
+ name: "expanded_conv_project",
211
+ inbound_nodes: [[["expanded_conv_depthwise_relu", 0, 0, {}]]],
212
+ },
213
+ {
214
+ class_name: "BatchNormalization",
215
+ config: {
216
+ name: "expanded_conv_project_BN",
217
+ trainable: true,
218
+ dtype: "float32",
219
+ axis: [3],
220
+ momentum: 0.999,
221
+ epsilon: 0.001,
222
+ center: true,
223
+ scale: true,
224
+ beta_initializer: { class_name: "Zeros", config: {} },
225
+ gamma_initializer: { class_name: "Ones", config: {} },
226
+ moving_mean_initializer: {
227
+ class_name: "Zeros",
228
+ config: {},
229
+ },
230
+ moving_variance_initializer: {
231
+ class_name: "Ones",
232
+ config: {},
233
+ },
234
+ beta_regularizer: null,
235
+ gamma_regularizer: null,
236
+ beta_constraint: null,
237
+ gamma_constraint: null,
238
+ },
239
+ name: "expanded_conv_project_BN",
240
+ inbound_nodes: [[["expanded_conv_project", 0, 0, {}]]],
241
+ },
242
+ {
243
+ class_name: "Conv2D",
244
+ config: {
245
+ name: "block_1_expand",
246
+ trainable: true,
247
+ dtype: "float32",
248
+ filters: 96,
249
+ kernel_size: [1, 1],
250
+ strides: [1, 1],
251
+ padding: "same",
252
+ data_format: "channels_last",
253
+ dilation_rate: [1, 1],
254
+ groups: 1,
255
+ activation: "linear",
256
+ use_bias: false,
257
+ kernel_initializer: {
258
+ class_name: "GlorotUniform",
259
+ config: { seed: null },
260
+ },
261
+ bias_initializer: { class_name: "Zeros", config: {} },
262
+ kernel_regularizer: null,
263
+ bias_regularizer: null,
264
+ activity_regularizer: null,
265
+ kernel_constraint: null,
266
+ bias_constraint: null,
267
+ },
268
+ name: "block_1_expand",
269
+ inbound_nodes: [[["expanded_conv_project_BN", 0, 0, {}]]],
270
+ },
271
+ {
272
+ class_name: "BatchNormalization",
273
+ config: {
274
+ name: "block_1_expand_BN",
275
+ trainable: true,
276
+ dtype: "float32",
277
+ axis: [3],
278
+ momentum: 0.999,
279
+ epsilon: 0.001,
280
+ center: true,
281
+ scale: true,
282
+ beta_initializer: { class_name: "Zeros", config: {} },
283
+ gamma_initializer: { class_name: "Ones", config: {} },
284
+ moving_mean_initializer: {
285
+ class_name: "Zeros",
286
+ config: {},
287
+ },
288
+ moving_variance_initializer: {
289
+ class_name: "Ones",
290
+ config: {},
291
+ },
292
+ beta_regularizer: null,
293
+ gamma_regularizer: null,
294
+ beta_constraint: null,
295
+ gamma_constraint: null,
296
+ },
297
+ name: "block_1_expand_BN",
298
+ inbound_nodes: [[["block_1_expand", 0, 0, {}]]],
299
+ },
300
+ {
301
+ class_name: "ReLU",
302
+ config: {
303
+ name: "block_1_expand_relu",
304
+ trainable: true,
305
+ dtype: "float32",
306
+ max_value: 6.0,
307
+ negative_slope: 0.0,
308
+ threshold: 0.0,
309
+ },
310
+ name: "block_1_expand_relu",
311
+ inbound_nodes: [[["block_1_expand_BN", 0, 0, {}]]],
312
+ },
313
+ {
314
+ class_name: "ZeroPadding2D",
315
+ config: {
316
+ name: "block_1_pad",
317
+ trainable: true,
318
+ dtype: "float32",
319
+ padding: [
320
+ [0, 1],
321
+ [0, 1],
322
+ ],
323
+ data_format: "channels_last",
324
+ },
325
+ name: "block_1_pad",
326
+ inbound_nodes: [[["block_1_expand_relu", 0, 0, {}]]],
327
+ },
328
+ {
329
+ class_name: "DepthwiseConv2D",
330
+ config: {
331
+ name: "block_1_depthwise",
332
+ trainable: true,
333
+ dtype: "float32",
334
+ kernel_size: [3, 3],
335
+ strides: [2, 2],
336
+ padding: "valid",
337
+ data_format: "channels_last",
338
+ dilation_rate: [1, 1],
339
+ groups: 1,
340
+ activation: "linear",
341
+ use_bias: false,
342
+ bias_initializer: { class_name: "Zeros", config: {} },
343
+ bias_regularizer: null,
344
+ activity_regularizer: null,
345
+ bias_constraint: null,
346
+ depth_multiplier: 1,
347
+ depthwise_initializer: {
348
+ class_name: "GlorotUniform",
349
+ config: { seed: null },
350
+ },
351
+ depthwise_regularizer: null,
352
+ depthwise_constraint: null,
353
+ },
354
+ name: "block_1_depthwise",
355
+ inbound_nodes: [[["block_1_pad", 0, 0, {}]]],
356
+ },
357
+ {
358
+ class_name: "BatchNormalization",
359
+ config: {
360
+ name: "block_1_depthwise_BN",
361
+ trainable: true,
362
+ dtype: "float32",
363
+ axis: [3],
364
+ momentum: 0.999,
365
+ epsilon: 0.001,
366
+ center: true,
367
+ scale: true,
368
+ beta_initializer: { class_name: "Zeros", config: {} },
369
+ gamma_initializer: { class_name: "Ones", config: {} },
370
+ moving_mean_initializer: {
371
+ class_name: "Zeros",
372
+ config: {},
373
+ },
374
+ moving_variance_initializer: {
375
+ class_name: "Ones",
376
+ config: {},
377
+ },
378
+ beta_regularizer: null,
379
+ gamma_regularizer: null,
380
+ beta_constraint: null,
381
+ gamma_constraint: null,
382
+ },
383
+ name: "block_1_depthwise_BN",
384
+ inbound_nodes: [[["block_1_depthwise", 0, 0, {}]]],
385
+ },
386
+ {
387
+ class_name: "ReLU",
388
+ config: {
389
+ name: "block_1_depthwise_relu",
390
+ trainable: true,
391
+ dtype: "float32",
392
+ max_value: 6.0,
393
+ negative_slope: 0.0,
394
+ threshold: 0.0,
395
+ },
396
+ name: "block_1_depthwise_relu",
397
+ inbound_nodes: [[["block_1_depthwise_BN", 0, 0, {}]]],
398
+ },
399
+ {
400
+ class_name: "Conv2D",
401
+ config: {
402
+ name: "block_1_project",
403
+ trainable: true,
404
+ dtype: "float32",
405
+ filters: 24,
406
+ kernel_size: [1, 1],
407
+ strides: [1, 1],
408
+ padding: "same",
409
+ data_format: "channels_last",
410
+ dilation_rate: [1, 1],
411
+ groups: 1,
412
+ activation: "linear",
413
+ use_bias: false,
414
+ kernel_initializer: {
415
+ class_name: "GlorotUniform",
416
+ config: { seed: null },
417
+ },
418
+ bias_initializer: { class_name: "Zeros", config: {} },
419
+ kernel_regularizer: null,
420
+ bias_regularizer: null,
421
+ activity_regularizer: null,
422
+ kernel_constraint: null,
423
+ bias_constraint: null,
424
+ },
425
+ name: "block_1_project",
426
+ inbound_nodes: [[["block_1_depthwise_relu", 0, 0, {}]]],
427
+ },
428
+ {
429
+ class_name: "BatchNormalization",
430
+ config: {
431
+ name: "block_1_project_BN",
432
+ trainable: true,
433
+ dtype: "float32",
434
+ axis: [3],
435
+ momentum: 0.999,
436
+ epsilon: 0.001,
437
+ center: true,
438
+ scale: true,
439
+ beta_initializer: { class_name: "Zeros", config: {} },
440
+ gamma_initializer: { class_name: "Ones", config: {} },
441
+ moving_mean_initializer: {
442
+ class_name: "Zeros",
443
+ config: {},
444
+ },
445
+ moving_variance_initializer: {
446
+ class_name: "Ones",
447
+ config: {},
448
+ },
449
+ beta_regularizer: null,
450
+ gamma_regularizer: null,
451
+ beta_constraint: null,
452
+ gamma_constraint: null,
453
+ },
454
+ name: "block_1_project_BN",
455
+ inbound_nodes: [[["block_1_project", 0, 0, {}]]],
456
+ },
457
+ {
458
+ class_name: "Conv2D",
459
+ config: {
460
+ name: "block_2_expand",
461
+ trainable: true,
462
+ dtype: "float32",
463
+ filters: 144,
464
+ kernel_size: [1, 1],
465
+ strides: [1, 1],
466
+ padding: "same",
467
+ data_format: "channels_last",
468
+ dilation_rate: [1, 1],
469
+ groups: 1,
470
+ activation: "linear",
471
+ use_bias: false,
472
+ kernel_initializer: {
473
+ class_name: "GlorotUniform",
474
+ config: { seed: null },
475
+ },
476
+ bias_initializer: { class_name: "Zeros", config: {} },
477
+ kernel_regularizer: null,
478
+ bias_regularizer: null,
479
+ activity_regularizer: null,
480
+ kernel_constraint: null,
481
+ bias_constraint: null,
482
+ },
483
+ name: "block_2_expand",
484
+ inbound_nodes: [[["block_1_project_BN", 0, 0, {}]]],
485
+ },
486
+ {
487
+ class_name: "BatchNormalization",
488
+ config: {
489
+ name: "block_2_expand_BN",
490
+ trainable: true,
491
+ dtype: "float32",
492
+ axis: [3],
493
+ momentum: 0.999,
494
+ epsilon: 0.001,
495
+ center: true,
496
+ scale: true,
497
+ beta_initializer: { class_name: "Zeros", config: {} },
498
+ gamma_initializer: { class_name: "Ones", config: {} },
499
+ moving_mean_initializer: {
500
+ class_name: "Zeros",
501
+ config: {},
502
+ },
503
+ moving_variance_initializer: {
504
+ class_name: "Ones",
505
+ config: {},
506
+ },
507
+ beta_regularizer: null,
508
+ gamma_regularizer: null,
509
+ beta_constraint: null,
510
+ gamma_constraint: null,
511
+ },
512
+ name: "block_2_expand_BN",
513
+ inbound_nodes: [[["block_2_expand", 0, 0, {}]]],
514
+ },
515
+ {
516
+ class_name: "ReLU",
517
+ config: {
518
+ name: "block_2_expand_relu",
519
+ trainable: true,
520
+ dtype: "float32",
521
+ max_value: 6.0,
522
+ negative_slope: 0.0,
523
+ threshold: 0.0,
524
+ },
525
+ name: "block_2_expand_relu",
526
+ inbound_nodes: [[["block_2_expand_BN", 0, 0, {}]]],
527
+ },
528
+ {
529
+ class_name: "DepthwiseConv2D",
530
+ config: {
531
+ name: "block_2_depthwise",
532
+ trainable: true,
533
+ dtype: "float32",
534
+ kernel_size: [3, 3],
535
+ strides: [1, 1],
536
+ padding: "same",
537
+ data_format: "channels_last",
538
+ dilation_rate: [1, 1],
539
+ groups: 1,
540
+ activation: "linear",
541
+ use_bias: false,
542
+ bias_initializer: { class_name: "Zeros", config: {} },
543
+ bias_regularizer: null,
544
+ activity_regularizer: null,
545
+ bias_constraint: null,
546
+ depth_multiplier: 1,
547
+ depthwise_initializer: {
548
+ class_name: "GlorotUniform",
549
+ config: { seed: null },
550
+ },
551
+ depthwise_regularizer: null,
552
+ depthwise_constraint: null,
553
+ },
554
+ name: "block_2_depthwise",
555
+ inbound_nodes: [[["block_2_expand_relu", 0, 0, {}]]],
556
+ },
557
+ {
558
+ class_name: "BatchNormalization",
559
+ config: {
560
+ name: "block_2_depthwise_BN",
561
+ trainable: true,
562
+ dtype: "float32",
563
+ axis: [3],
564
+ momentum: 0.999,
565
+ epsilon: 0.001,
566
+ center: true,
567
+ scale: true,
568
+ beta_initializer: { class_name: "Zeros", config: {} },
569
+ gamma_initializer: { class_name: "Ones", config: {} },
570
+ moving_mean_initializer: {
571
+ class_name: "Zeros",
572
+ config: {},
573
+ },
574
+ moving_variance_initializer: {
575
+ class_name: "Ones",
576
+ config: {},
577
+ },
578
+ beta_regularizer: null,
579
+ gamma_regularizer: null,
580
+ beta_constraint: null,
581
+ gamma_constraint: null,
582
+ },
583
+ name: "block_2_depthwise_BN",
584
+ inbound_nodes: [[["block_2_depthwise", 0, 0, {}]]],
585
+ },
586
+ {
587
+ class_name: "ReLU",
588
+ config: {
589
+ name: "block_2_depthwise_relu",
590
+ trainable: true,
591
+ dtype: "float32",
592
+ max_value: 6.0,
593
+ negative_slope: 0.0,
594
+ threshold: 0.0,
595
+ },
596
+ name: "block_2_depthwise_relu",
597
+ inbound_nodes: [[["block_2_depthwise_BN", 0, 0, {}]]],
598
+ },
599
+ {
600
+ class_name: "Conv2D",
601
+ config: {
602
+ name: "block_2_project",
603
+ trainable: true,
604
+ dtype: "float32",
605
+ filters: 24,
606
+ kernel_size: [1, 1],
607
+ strides: [1, 1],
608
+ padding: "same",
609
+ data_format: "channels_last",
610
+ dilation_rate: [1, 1],
611
+ groups: 1,
612
+ activation: "linear",
613
+ use_bias: false,
614
+ kernel_initializer: {
615
+ class_name: "GlorotUniform",
616
+ config: { seed: null },
617
+ },
618
+ bias_initializer: { class_name: "Zeros", config: {} },
619
+ kernel_regularizer: null,
620
+ bias_regularizer: null,
621
+ activity_regularizer: null,
622
+ kernel_constraint: null,
623
+ bias_constraint: null,
624
+ },
625
+ name: "block_2_project",
626
+ inbound_nodes: [[["block_2_depthwise_relu", 0, 0, {}]]],
627
+ },
628
+ {
629
+ class_name: "BatchNormalization",
630
+ config: {
631
+ name: "block_2_project_BN",
632
+ trainable: true,
633
+ dtype: "float32",
634
+ axis: [3],
635
+ momentum: 0.999,
636
+ epsilon: 0.001,
637
+ center: true,
638
+ scale: true,
639
+ beta_initializer: { class_name: "Zeros", config: {} },
640
+ gamma_initializer: { class_name: "Ones", config: {} },
641
+ moving_mean_initializer: {
642
+ class_name: "Zeros",
643
+ config: {},
644
+ },
645
+ moving_variance_initializer: {
646
+ class_name: "Ones",
647
+ config: {},
648
+ },
649
+ beta_regularizer: null,
650
+ gamma_regularizer: null,
651
+ beta_constraint: null,
652
+ gamma_constraint: null,
653
+ },
654
+ name: "block_2_project_BN",
655
+ inbound_nodes: [[["block_2_project", 0, 0, {}]]],
656
+ },
657
+ {
658
+ class_name: "Add",
659
+ config: {
660
+ name: "block_2_add",
661
+ trainable: true,
662
+ dtype: "float32",
663
+ },
664
+ name: "block_2_add",
665
+ inbound_nodes: [
666
+ [
667
+ ["block_1_project_BN", 0, 0, {}],
668
+ ["block_2_project_BN", 0, 0, {}],
669
+ ],
670
+ ],
671
+ },
672
+ {
673
+ class_name: "Conv2D",
674
+ config: {
675
+ name: "block_3_expand",
676
+ trainable: true,
677
+ dtype: "float32",
678
+ filters: 144,
679
+ kernel_size: [1, 1],
680
+ strides: [1, 1],
681
+ padding: "same",
682
+ data_format: "channels_last",
683
+ dilation_rate: [1, 1],
684
+ groups: 1,
685
+ activation: "linear",
686
+ use_bias: false,
687
+ kernel_initializer: {
688
+ class_name: "GlorotUniform",
689
+ config: { seed: null },
690
+ },
691
+ bias_initializer: { class_name: "Zeros", config: {} },
692
+ kernel_regularizer: null,
693
+ bias_regularizer: null,
694
+ activity_regularizer: null,
695
+ kernel_constraint: null,
696
+ bias_constraint: null,
697
+ },
698
+ name: "block_3_expand",
699
+ inbound_nodes: [[["block_2_add", 0, 0, {}]]],
700
+ },
701
+ {
702
+ class_name: "BatchNormalization",
703
+ config: {
704
+ name: "block_3_expand_BN",
705
+ trainable: true,
706
+ dtype: "float32",
707
+ axis: [3],
708
+ momentum: 0.999,
709
+ epsilon: 0.001,
710
+ center: true,
711
+ scale: true,
712
+ beta_initializer: { class_name: "Zeros", config: {} },
713
+ gamma_initializer: { class_name: "Ones", config: {} },
714
+ moving_mean_initializer: {
715
+ class_name: "Zeros",
716
+ config: {},
717
+ },
718
+ moving_variance_initializer: {
719
+ class_name: "Ones",
720
+ config: {},
721
+ },
722
+ beta_regularizer: null,
723
+ gamma_regularizer: null,
724
+ beta_constraint: null,
725
+ gamma_constraint: null,
726
+ },
727
+ name: "block_3_expand_BN",
728
+ inbound_nodes: [[["block_3_expand", 0, 0, {}]]],
729
+ },
730
+ {
731
+ class_name: "ReLU",
732
+ config: {
733
+ name: "block_3_expand_relu",
734
+ trainable: true,
735
+ dtype: "float32",
736
+ max_value: 6.0,
737
+ negative_slope: 0.0,
738
+ threshold: 0.0,
739
+ },
740
+ name: "block_3_expand_relu",
741
+ inbound_nodes: [[["block_3_expand_BN", 0, 0, {}]]],
742
+ },
743
+ {
744
+ class_name: "ZeroPadding2D",
745
+ config: {
746
+ name: "block_3_pad",
747
+ trainable: true,
748
+ dtype: "float32",
749
+ padding: [
750
+ [0, 1],
751
+ [0, 1],
752
+ ],
753
+ data_format: "channels_last",
754
+ },
755
+ name: "block_3_pad",
756
+ inbound_nodes: [[["block_3_expand_relu", 0, 0, {}]]],
757
+ },
758
+ {
759
+ class_name: "DepthwiseConv2D",
760
+ config: {
761
+ name: "block_3_depthwise",
762
+ trainable: true,
763
+ dtype: "float32",
764
+ kernel_size: [3, 3],
765
+ strides: [2, 2],
766
+ padding: "valid",
767
+ data_format: "channels_last",
768
+ dilation_rate: [1, 1],
769
+ groups: 1,
770
+ activation: "linear",
771
+ use_bias: false,
772
+ bias_initializer: { class_name: "Zeros", config: {} },
773
+ bias_regularizer: null,
774
+ activity_regularizer: null,
775
+ bias_constraint: null,
776
+ depth_multiplier: 1,
777
+ depthwise_initializer: {
778
+ class_name: "GlorotUniform",
779
+ config: { seed: null },
780
+ },
781
+ depthwise_regularizer: null,
782
+ depthwise_constraint: null,
783
+ },
784
+ name: "block_3_depthwise",
785
+ inbound_nodes: [[["block_3_pad", 0, 0, {}]]],
786
+ },
787
+ {
788
+ class_name: "BatchNormalization",
789
+ config: {
790
+ name: "block_3_depthwise_BN",
791
+ trainable: true,
792
+ dtype: "float32",
793
+ axis: [3],
794
+ momentum: 0.999,
795
+ epsilon: 0.001,
796
+ center: true,
797
+ scale: true,
798
+ beta_initializer: { class_name: "Zeros", config: {} },
799
+ gamma_initializer: { class_name: "Ones", config: {} },
800
+ moving_mean_initializer: {
801
+ class_name: "Zeros",
802
+ config: {},
803
+ },
804
+ moving_variance_initializer: {
805
+ class_name: "Ones",
806
+ config: {},
807
+ },
808
+ beta_regularizer: null,
809
+ gamma_regularizer: null,
810
+ beta_constraint: null,
811
+ gamma_constraint: null,
812
+ },
813
+ name: "block_3_depthwise_BN",
814
+ inbound_nodes: [[["block_3_depthwise", 0, 0, {}]]],
815
+ },
816
+ {
817
+ class_name: "ReLU",
818
+ config: {
819
+ name: "block_3_depthwise_relu",
820
+ trainable: true,
821
+ dtype: "float32",
822
+ max_value: 6.0,
823
+ negative_slope: 0.0,
824
+ threshold: 0.0,
825
+ },
826
+ name: "block_3_depthwise_relu",
827
+ inbound_nodes: [[["block_3_depthwise_BN", 0, 0, {}]]],
828
+ },
829
+ {
830
+ class_name: "Conv2D",
831
+ config: {
832
+ name: "block_3_project",
833
+ trainable: true,
834
+ dtype: "float32",
835
+ filters: 32,
836
+ kernel_size: [1, 1],
837
+ strides: [1, 1],
838
+ padding: "same",
839
+ data_format: "channels_last",
840
+ dilation_rate: [1, 1],
841
+ groups: 1,
842
+ activation: "linear",
843
+ use_bias: false,
844
+ kernel_initializer: {
845
+ class_name: "GlorotUniform",
846
+ config: { seed: null },
847
+ },
848
+ bias_initializer: { class_name: "Zeros", config: {} },
849
+ kernel_regularizer: null,
850
+ bias_regularizer: null,
851
+ activity_regularizer: null,
852
+ kernel_constraint: null,
853
+ bias_constraint: null,
854
+ },
855
+ name: "block_3_project",
856
+ inbound_nodes: [[["block_3_depthwise_relu", 0, 0, {}]]],
857
+ },
858
+ {
859
+ class_name: "BatchNormalization",
860
+ config: {
861
+ name: "block_3_project_BN",
862
+ trainable: true,
863
+ dtype: "float32",
864
+ axis: [3],
865
+ momentum: 0.999,
866
+ epsilon: 0.001,
867
+ center: true,
868
+ scale: true,
869
+ beta_initializer: { class_name: "Zeros", config: {} },
870
+ gamma_initializer: { class_name: "Ones", config: {} },
871
+ moving_mean_initializer: {
872
+ class_name: "Zeros",
873
+ config: {},
874
+ },
875
+ moving_variance_initializer: {
876
+ class_name: "Ones",
877
+ config: {},
878
+ },
879
+ beta_regularizer: null,
880
+ gamma_regularizer: null,
881
+ beta_constraint: null,
882
+ gamma_constraint: null,
883
+ },
884
+ name: "block_3_project_BN",
885
+ inbound_nodes: [[["block_3_project", 0, 0, {}]]],
886
+ },
887
+ {
888
+ class_name: "Conv2D",
889
+ config: {
890
+ name: "block_4_expand",
891
+ trainable: true,
892
+ dtype: "float32",
893
+ filters: 192,
894
+ kernel_size: [1, 1],
895
+ strides: [1, 1],
896
+ padding: "same",
897
+ data_format: "channels_last",
898
+ dilation_rate: [1, 1],
899
+ groups: 1,
900
+ activation: "linear",
901
+ use_bias: false,
902
+ kernel_initializer: {
903
+ class_name: "GlorotUniform",
904
+ config: { seed: null },
905
+ },
906
+ bias_initializer: { class_name: "Zeros", config: {} },
907
+ kernel_regularizer: null,
908
+ bias_regularizer: null,
909
+ activity_regularizer: null,
910
+ kernel_constraint: null,
911
+ bias_constraint: null,
912
+ },
913
+ name: "block_4_expand",
914
+ inbound_nodes: [[["block_3_project_BN", 0, 0, {}]]],
915
+ },
916
+ {
917
+ class_name: "BatchNormalization",
918
+ config: {
919
+ name: "block_4_expand_BN",
920
+ trainable: true,
921
+ dtype: "float32",
922
+ axis: [3],
923
+ momentum: 0.999,
924
+ epsilon: 0.001,
925
+ center: true,
926
+ scale: true,
927
+ beta_initializer: { class_name: "Zeros", config: {} },
928
+ gamma_initializer: { class_name: "Ones", config: {} },
929
+ moving_mean_initializer: {
930
+ class_name: "Zeros",
931
+ config: {},
932
+ },
933
+ moving_variance_initializer: {
934
+ class_name: "Ones",
935
+ config: {},
936
+ },
937
+ beta_regularizer: null,
938
+ gamma_regularizer: null,
939
+ beta_constraint: null,
940
+ gamma_constraint: null,
941
+ },
942
+ name: "block_4_expand_BN",
943
+ inbound_nodes: [[["block_4_expand", 0, 0, {}]]],
944
+ },
945
+ {
946
+ class_name: "ReLU",
947
+ config: {
948
+ name: "block_4_expand_relu",
949
+ trainable: true,
950
+ dtype: "float32",
951
+ max_value: 6.0,
952
+ negative_slope: 0.0,
953
+ threshold: 0.0,
954
+ },
955
+ name: "block_4_expand_relu",
956
+ inbound_nodes: [[["block_4_expand_BN", 0, 0, {}]]],
957
+ },
958
+ {
959
+ class_name: "DepthwiseConv2D",
960
+ config: {
961
+ name: "block_4_depthwise",
962
+ trainable: true,
963
+ dtype: "float32",
964
+ kernel_size: [3, 3],
965
+ strides: [1, 1],
966
+ padding: "same",
967
+ data_format: "channels_last",
968
+ dilation_rate: [1, 1],
969
+ groups: 1,
970
+ activation: "linear",
971
+ use_bias: false,
972
+ bias_initializer: { class_name: "Zeros", config: {} },
973
+ bias_regularizer: null,
974
+ activity_regularizer: null,
975
+ bias_constraint: null,
976
+ depth_multiplier: 1,
977
+ depthwise_initializer: {
978
+ class_name: "GlorotUniform",
979
+ config: { seed: null },
980
+ },
981
+ depthwise_regularizer: null,
982
+ depthwise_constraint: null,
983
+ },
984
+ name: "block_4_depthwise",
985
+ inbound_nodes: [[["block_4_expand_relu", 0, 0, {}]]],
986
+ },
987
+ {
988
+ class_name: "BatchNormalization",
989
+ config: {
990
+ name: "block_4_depthwise_BN",
991
+ trainable: true,
992
+ dtype: "float32",
993
+ axis: [3],
994
+ momentum: 0.999,
995
+ epsilon: 0.001,
996
+ center: true,
997
+ scale: true,
998
+ beta_initializer: { class_name: "Zeros", config: {} },
999
+ gamma_initializer: { class_name: "Ones", config: {} },
1000
+ moving_mean_initializer: {
1001
+ class_name: "Zeros",
1002
+ config: {},
1003
+ },
1004
+ moving_variance_initializer: {
1005
+ class_name: "Ones",
1006
+ config: {},
1007
+ },
1008
+ beta_regularizer: null,
1009
+ gamma_regularizer: null,
1010
+ beta_constraint: null,
1011
+ gamma_constraint: null,
1012
+ },
1013
+ name: "block_4_depthwise_BN",
1014
+ inbound_nodes: [[["block_4_depthwise", 0, 0, {}]]],
1015
+ },
1016
+ {
1017
+ class_name: "ReLU",
1018
+ config: {
1019
+ name: "block_4_depthwise_relu",
1020
+ trainable: true,
1021
+ dtype: "float32",
1022
+ max_value: 6.0,
1023
+ negative_slope: 0.0,
1024
+ threshold: 0.0,
1025
+ },
1026
+ name: "block_4_depthwise_relu",
1027
+ inbound_nodes: [[["block_4_depthwise_BN", 0, 0, {}]]],
1028
+ },
1029
+ {
1030
+ class_name: "Conv2D",
1031
+ config: {
1032
+ name: "block_4_project",
1033
+ trainable: true,
1034
+ dtype: "float32",
1035
+ filters: 32,
1036
+ kernel_size: [1, 1],
1037
+ strides: [1, 1],
1038
+ padding: "same",
1039
+ data_format: "channels_last",
1040
+ dilation_rate: [1, 1],
1041
+ groups: 1,
1042
+ activation: "linear",
1043
+ use_bias: false,
1044
+ kernel_initializer: {
1045
+ class_name: "GlorotUniform",
1046
+ config: { seed: null },
1047
+ },
1048
+ bias_initializer: { class_name: "Zeros", config: {} },
1049
+ kernel_regularizer: null,
1050
+ bias_regularizer: null,
1051
+ activity_regularizer: null,
1052
+ kernel_constraint: null,
1053
+ bias_constraint: null,
1054
+ },
1055
+ name: "block_4_project",
1056
+ inbound_nodes: [[["block_4_depthwise_relu", 0, 0, {}]]],
1057
+ },
1058
+ {
1059
+ class_name: "BatchNormalization",
1060
+ config: {
1061
+ name: "block_4_project_BN",
1062
+ trainable: true,
1063
+ dtype: "float32",
1064
+ axis: [3],
1065
+ momentum: 0.999,
1066
+ epsilon: 0.001,
1067
+ center: true,
1068
+ scale: true,
1069
+ beta_initializer: { class_name: "Zeros", config: {} },
1070
+ gamma_initializer: { class_name: "Ones", config: {} },
1071
+ moving_mean_initializer: {
1072
+ class_name: "Zeros",
1073
+ config: {},
1074
+ },
1075
+ moving_variance_initializer: {
1076
+ class_name: "Ones",
1077
+ config: {},
1078
+ },
1079
+ beta_regularizer: null,
1080
+ gamma_regularizer: null,
1081
+ beta_constraint: null,
1082
+ gamma_constraint: null,
1083
+ },
1084
+ name: "block_4_project_BN",
1085
+ inbound_nodes: [[["block_4_project", 0, 0, {}]]],
1086
+ },
1087
+ {
1088
+ class_name: "Add",
1089
+ config: {
1090
+ name: "block_4_add",
1091
+ trainable: true,
1092
+ dtype: "float32",
1093
+ },
1094
+ name: "block_4_add",
1095
+ inbound_nodes: [
1096
+ [
1097
+ ["block_3_project_BN", 0, 0, {}],
1098
+ ["block_4_project_BN", 0, 0, {}],
1099
+ ],
1100
+ ],
1101
+ },
1102
+ {
1103
+ class_name: "Conv2D",
1104
+ config: {
1105
+ name: "block_5_expand",
1106
+ trainable: true,
1107
+ dtype: "float32",
1108
+ filters: 192,
1109
+ kernel_size: [1, 1],
1110
+ strides: [1, 1],
1111
+ padding: "same",
1112
+ data_format: "channels_last",
1113
+ dilation_rate: [1, 1],
1114
+ groups: 1,
1115
+ activation: "linear",
1116
+ use_bias: false,
1117
+ kernel_initializer: {
1118
+ class_name: "GlorotUniform",
1119
+ config: { seed: null },
1120
+ },
1121
+ bias_initializer: { class_name: "Zeros", config: {} },
1122
+ kernel_regularizer: null,
1123
+ bias_regularizer: null,
1124
+ activity_regularizer: null,
1125
+ kernel_constraint: null,
1126
+ bias_constraint: null,
1127
+ },
1128
+ name: "block_5_expand",
1129
+ inbound_nodes: [[["block_4_add", 0, 0, {}]]],
1130
+ },
1131
+ {
1132
+ class_name: "BatchNormalization",
1133
+ config: {
1134
+ name: "block_5_expand_BN",
1135
+ trainable: true,
1136
+ dtype: "float32",
1137
+ axis: [3],
1138
+ momentum: 0.999,
1139
+ epsilon: 0.001,
1140
+ center: true,
1141
+ scale: true,
1142
+ beta_initializer: { class_name: "Zeros", config: {} },
1143
+ gamma_initializer: { class_name: "Ones", config: {} },
1144
+ moving_mean_initializer: {
1145
+ class_name: "Zeros",
1146
+ config: {},
1147
+ },
1148
+ moving_variance_initializer: {
1149
+ class_name: "Ones",
1150
+ config: {},
1151
+ },
1152
+ beta_regularizer: null,
1153
+ gamma_regularizer: null,
1154
+ beta_constraint: null,
1155
+ gamma_constraint: null,
1156
+ },
1157
+ name: "block_5_expand_BN",
1158
+ inbound_nodes: [[["block_5_expand", 0, 0, {}]]],
1159
+ },
1160
+ {
1161
+ class_name: "ReLU",
1162
+ config: {
1163
+ name: "block_5_expand_relu",
1164
+ trainable: true,
1165
+ dtype: "float32",
1166
+ max_value: 6.0,
1167
+ negative_slope: 0.0,
1168
+ threshold: 0.0,
1169
+ },
1170
+ name: "block_5_expand_relu",
1171
+ inbound_nodes: [[["block_5_expand_BN", 0, 0, {}]]],
1172
+ },
1173
+ {
1174
+ class_name: "DepthwiseConv2D",
1175
+ config: {
1176
+ name: "block_5_depthwise",
1177
+ trainable: true,
1178
+ dtype: "float32",
1179
+ kernel_size: [3, 3],
1180
+ strides: [1, 1],
1181
+ padding: "same",
1182
+ data_format: "channels_last",
1183
+ dilation_rate: [1, 1],
1184
+ groups: 1,
1185
+ activation: "linear",
1186
+ use_bias: false,
1187
+ bias_initializer: { class_name: "Zeros", config: {} },
1188
+ bias_regularizer: null,
1189
+ activity_regularizer: null,
1190
+ bias_constraint: null,
1191
+ depth_multiplier: 1,
1192
+ depthwise_initializer: {
1193
+ class_name: "GlorotUniform",
1194
+ config: { seed: null },
1195
+ },
1196
+ depthwise_regularizer: null,
1197
+ depthwise_constraint: null,
1198
+ },
1199
+ name: "block_5_depthwise",
1200
+ inbound_nodes: [[["block_5_expand_relu", 0, 0, {}]]],
1201
+ },
1202
+ {
1203
+ class_name: "BatchNormalization",
1204
+ config: {
1205
+ name: "block_5_depthwise_BN",
1206
+ trainable: true,
1207
+ dtype: "float32",
1208
+ axis: [3],
1209
+ momentum: 0.999,
1210
+ epsilon: 0.001,
1211
+ center: true,
1212
+ scale: true,
1213
+ beta_initializer: { class_name: "Zeros", config: {} },
1214
+ gamma_initializer: { class_name: "Ones", config: {} },
1215
+ moving_mean_initializer: {
1216
+ class_name: "Zeros",
1217
+ config: {},
1218
+ },
1219
+ moving_variance_initializer: {
1220
+ class_name: "Ones",
1221
+ config: {},
1222
+ },
1223
+ beta_regularizer: null,
1224
+ gamma_regularizer: null,
1225
+ beta_constraint: null,
1226
+ gamma_constraint: null,
1227
+ },
1228
+ name: "block_5_depthwise_BN",
1229
+ inbound_nodes: [[["block_5_depthwise", 0, 0, {}]]],
1230
+ },
1231
+ {
1232
+ class_name: "ReLU",
1233
+ config: {
1234
+ name: "block_5_depthwise_relu",
1235
+ trainable: true,
1236
+ dtype: "float32",
1237
+ max_value: 6.0,
1238
+ negative_slope: 0.0,
1239
+ threshold: 0.0,
1240
+ },
1241
+ name: "block_5_depthwise_relu",
1242
+ inbound_nodes: [[["block_5_depthwise_BN", 0, 0, {}]]],
1243
+ },
1244
+ {
1245
+ class_name: "Conv2D",
1246
+ config: {
1247
+ name: "block_5_project",
1248
+ trainable: true,
1249
+ dtype: "float32",
1250
+ filters: 32,
1251
+ kernel_size: [1, 1],
1252
+ strides: [1, 1],
1253
+ padding: "same",
1254
+ data_format: "channels_last",
1255
+ dilation_rate: [1, 1],
1256
+ groups: 1,
1257
+ activation: "linear",
1258
+ use_bias: false,
1259
+ kernel_initializer: {
1260
+ class_name: "GlorotUniform",
1261
+ config: { seed: null },
1262
+ },
1263
+ bias_initializer: { class_name: "Zeros", config: {} },
1264
+ kernel_regularizer: null,
1265
+ bias_regularizer: null,
1266
+ activity_regularizer: null,
1267
+ kernel_constraint: null,
1268
+ bias_constraint: null,
1269
+ },
1270
+ name: "block_5_project",
1271
+ inbound_nodes: [[["block_5_depthwise_relu", 0, 0, {}]]],
1272
+ },
1273
+ {
1274
+ class_name: "BatchNormalization",
1275
+ config: {
1276
+ name: "block_5_project_BN",
1277
+ trainable: true,
1278
+ dtype: "float32",
1279
+ axis: [3],
1280
+ momentum: 0.999,
1281
+ epsilon: 0.001,
1282
+ center: true,
1283
+ scale: true,
1284
+ beta_initializer: { class_name: "Zeros", config: {} },
1285
+ gamma_initializer: { class_name: "Ones", config: {} },
1286
+ moving_mean_initializer: {
1287
+ class_name: "Zeros",
1288
+ config: {},
1289
+ },
1290
+ moving_variance_initializer: {
1291
+ class_name: "Ones",
1292
+ config: {},
1293
+ },
1294
+ beta_regularizer: null,
1295
+ gamma_regularizer: null,
1296
+ beta_constraint: null,
1297
+ gamma_constraint: null,
1298
+ },
1299
+ name: "block_5_project_BN",
1300
+ inbound_nodes: [[["block_5_project", 0, 0, {}]]],
1301
+ },
1302
+ {
1303
+ class_name: "Add",
1304
+ config: {
1305
+ name: "block_5_add",
1306
+ trainable: true,
1307
+ dtype: "float32",
1308
+ },
1309
+ name: "block_5_add",
1310
+ inbound_nodes: [
1311
+ [
1312
+ ["block_4_add", 0, 0, {}],
1313
+ ["block_5_project_BN", 0, 0, {}],
1314
+ ],
1315
+ ],
1316
+ },
1317
+ {
1318
+ class_name: "Conv2D",
1319
+ config: {
1320
+ name: "block_6_expand",
1321
+ trainable: true,
1322
+ dtype: "float32",
1323
+ filters: 192,
1324
+ kernel_size: [1, 1],
1325
+ strides: [1, 1],
1326
+ padding: "same",
1327
+ data_format: "channels_last",
1328
+ dilation_rate: [1, 1],
1329
+ groups: 1,
1330
+ activation: "linear",
1331
+ use_bias: false,
1332
+ kernel_initializer: {
1333
+ class_name: "GlorotUniform",
1334
+ config: { seed: null },
1335
+ },
1336
+ bias_initializer: { class_name: "Zeros", config: {} },
1337
+ kernel_regularizer: null,
1338
+ bias_regularizer: null,
1339
+ activity_regularizer: null,
1340
+ kernel_constraint: null,
1341
+ bias_constraint: null,
1342
+ },
1343
+ name: "block_6_expand",
1344
+ inbound_nodes: [[["block_5_add", 0, 0, {}]]],
1345
+ },
1346
+ {
1347
+ class_name: "BatchNormalization",
1348
+ config: {
1349
+ name: "block_6_expand_BN",
1350
+ trainable: true,
1351
+ dtype: "float32",
1352
+ axis: [3],
1353
+ momentum: 0.999,
1354
+ epsilon: 0.001,
1355
+ center: true,
1356
+ scale: true,
1357
+ beta_initializer: { class_name: "Zeros", config: {} },
1358
+ gamma_initializer: { class_name: "Ones", config: {} },
1359
+ moving_mean_initializer: {
1360
+ class_name: "Zeros",
1361
+ config: {},
1362
+ },
1363
+ moving_variance_initializer: {
1364
+ class_name: "Ones",
1365
+ config: {},
1366
+ },
1367
+ beta_regularizer: null,
1368
+ gamma_regularizer: null,
1369
+ beta_constraint: null,
1370
+ gamma_constraint: null,
1371
+ },
1372
+ name: "block_6_expand_BN",
1373
+ inbound_nodes: [[["block_6_expand", 0, 0, {}]]],
1374
+ },
1375
+ {
1376
+ class_name: "ReLU",
1377
+ config: {
1378
+ name: "block_6_expand_relu",
1379
+ trainable: true,
1380
+ dtype: "float32",
1381
+ max_value: 6.0,
1382
+ negative_slope: 0.0,
1383
+ threshold: 0.0,
1384
+ },
1385
+ name: "block_6_expand_relu",
1386
+ inbound_nodes: [[["block_6_expand_BN", 0, 0, {}]]],
1387
+ },
1388
+ {
1389
+ class_name: "ZeroPadding2D",
1390
+ config: {
1391
+ name: "block_6_pad",
1392
+ trainable: true,
1393
+ dtype: "float32",
1394
+ padding: [
1395
+ [0, 1],
1396
+ [0, 1],
1397
+ ],
1398
+ data_format: "channels_last",
1399
+ },
1400
+ name: "block_6_pad",
1401
+ inbound_nodes: [[["block_6_expand_relu", 0, 0, {}]]],
1402
+ },
1403
+ {
1404
+ class_name: "DepthwiseConv2D",
1405
+ config: {
1406
+ name: "block_6_depthwise",
1407
+ trainable: true,
1408
+ dtype: "float32",
1409
+ kernel_size: [3, 3],
1410
+ strides: [2, 2],
1411
+ padding: "valid",
1412
+ data_format: "channels_last",
1413
+ dilation_rate: [1, 1],
1414
+ groups: 1,
1415
+ activation: "linear",
1416
+ use_bias: false,
1417
+ bias_initializer: { class_name: "Zeros", config: {} },
1418
+ bias_regularizer: null,
1419
+ activity_regularizer: null,
1420
+ bias_constraint: null,
1421
+ depth_multiplier: 1,
1422
+ depthwise_initializer: {
1423
+ class_name: "GlorotUniform",
1424
+ config: { seed: null },
1425
+ },
1426
+ depthwise_regularizer: null,
1427
+ depthwise_constraint: null,
1428
+ },
1429
+ name: "block_6_depthwise",
1430
+ inbound_nodes: [[["block_6_pad", 0, 0, {}]]],
1431
+ },
1432
+ {
1433
+ class_name: "BatchNormalization",
1434
+ config: {
1435
+ name: "block_6_depthwise_BN",
1436
+ trainable: true,
1437
+ dtype: "float32",
1438
+ axis: [3],
1439
+ momentum: 0.999,
1440
+ epsilon: 0.001,
1441
+ center: true,
1442
+ scale: true,
1443
+ beta_initializer: { class_name: "Zeros", config: {} },
1444
+ gamma_initializer: { class_name: "Ones", config: {} },
1445
+ moving_mean_initializer: {
1446
+ class_name: "Zeros",
1447
+ config: {},
1448
+ },
1449
+ moving_variance_initializer: {
1450
+ class_name: "Ones",
1451
+ config: {},
1452
+ },
1453
+ beta_regularizer: null,
1454
+ gamma_regularizer: null,
1455
+ beta_constraint: null,
1456
+ gamma_constraint: null,
1457
+ },
1458
+ name: "block_6_depthwise_BN",
1459
+ inbound_nodes: [[["block_6_depthwise", 0, 0, {}]]],
1460
+ },
1461
+ {
1462
+ class_name: "ReLU",
1463
+ config: {
1464
+ name: "block_6_depthwise_relu",
1465
+ trainable: true,
1466
+ dtype: "float32",
1467
+ max_value: 6.0,
1468
+ negative_slope: 0.0,
1469
+ threshold: 0.0,
1470
+ },
1471
+ name: "block_6_depthwise_relu",
1472
+ inbound_nodes: [[["block_6_depthwise_BN", 0, 0, {}]]],
1473
+ },
1474
+ {
1475
+ class_name: "Conv2D",
1476
+ config: {
1477
+ name: "block_6_project",
1478
+ trainable: true,
1479
+ dtype: "float32",
1480
+ filters: 64,
1481
+ kernel_size: [1, 1],
1482
+ strides: [1, 1],
1483
+ padding: "same",
1484
+ data_format: "channels_last",
1485
+ dilation_rate: [1, 1],
1486
+ groups: 1,
1487
+ activation: "linear",
1488
+ use_bias: false,
1489
+ kernel_initializer: {
1490
+ class_name: "GlorotUniform",
1491
+ config: { seed: null },
1492
+ },
1493
+ bias_initializer: { class_name: "Zeros", config: {} },
1494
+ kernel_regularizer: null,
1495
+ bias_regularizer: null,
1496
+ activity_regularizer: null,
1497
+ kernel_constraint: null,
1498
+ bias_constraint: null,
1499
+ },
1500
+ name: "block_6_project",
1501
+ inbound_nodes: [[["block_6_depthwise_relu", 0, 0, {}]]],
1502
+ },
1503
+ {
1504
+ class_name: "BatchNormalization",
1505
+ config: {
1506
+ name: "block_6_project_BN",
1507
+ trainable: true,
1508
+ dtype: "float32",
1509
+ axis: [3],
1510
+ momentum: 0.999,
1511
+ epsilon: 0.001,
1512
+ center: true,
1513
+ scale: true,
1514
+ beta_initializer: { class_name: "Zeros", config: {} },
1515
+ gamma_initializer: { class_name: "Ones", config: {} },
1516
+ moving_mean_initializer: {
1517
+ class_name: "Zeros",
1518
+ config: {},
1519
+ },
1520
+ moving_variance_initializer: {
1521
+ class_name: "Ones",
1522
+ config: {},
1523
+ },
1524
+ beta_regularizer: null,
1525
+ gamma_regularizer: null,
1526
+ beta_constraint: null,
1527
+ gamma_constraint: null,
1528
+ },
1529
+ name: "block_6_project_BN",
1530
+ inbound_nodes: [[["block_6_project", 0, 0, {}]]],
1531
+ },
1532
+ {
1533
+ class_name: "Conv2D",
1534
+ config: {
1535
+ name: "block_7_expand",
1536
+ trainable: true,
1537
+ dtype: "float32",
1538
+ filters: 384,
1539
+ kernel_size: [1, 1],
1540
+ strides: [1, 1],
1541
+ padding: "same",
1542
+ data_format: "channels_last",
1543
+ dilation_rate: [1, 1],
1544
+ groups: 1,
1545
+ activation: "linear",
1546
+ use_bias: false,
1547
+ kernel_initializer: {
1548
+ class_name: "GlorotUniform",
1549
+ config: { seed: null },
1550
+ },
1551
+ bias_initializer: { class_name: "Zeros", config: {} },
1552
+ kernel_regularizer: null,
1553
+ bias_regularizer: null,
1554
+ activity_regularizer: null,
1555
+ kernel_constraint: null,
1556
+ bias_constraint: null,
1557
+ },
1558
+ name: "block_7_expand",
1559
+ inbound_nodes: [[["block_6_project_BN", 0, 0, {}]]],
1560
+ },
1561
+ {
1562
+ class_name: "BatchNormalization",
1563
+ config: {
1564
+ name: "block_7_expand_BN",
1565
+ trainable: true,
1566
+ dtype: "float32",
1567
+ axis: [3],
1568
+ momentum: 0.999,
1569
+ epsilon: 0.001,
1570
+ center: true,
1571
+ scale: true,
1572
+ beta_initializer: { class_name: "Zeros", config: {} },
1573
+ gamma_initializer: { class_name: "Ones", config: {} },
1574
+ moving_mean_initializer: {
1575
+ class_name: "Zeros",
1576
+ config: {},
1577
+ },
1578
+ moving_variance_initializer: {
1579
+ class_name: "Ones",
1580
+ config: {},
1581
+ },
1582
+ beta_regularizer: null,
1583
+ gamma_regularizer: null,
1584
+ beta_constraint: null,
1585
+ gamma_constraint: null,
1586
+ },
1587
+ name: "block_7_expand_BN",
1588
+ inbound_nodes: [[["block_7_expand", 0, 0, {}]]],
1589
+ },
1590
+ {
1591
+ class_name: "ReLU",
1592
+ config: {
1593
+ name: "block_7_expand_relu",
1594
+ trainable: true,
1595
+ dtype: "float32",
1596
+ max_value: 6.0,
1597
+ negative_slope: 0.0,
1598
+ threshold: 0.0,
1599
+ },
1600
+ name: "block_7_expand_relu",
1601
+ inbound_nodes: [[["block_7_expand_BN", 0, 0, {}]]],
1602
+ },
1603
+ {
1604
+ class_name: "DepthwiseConv2D",
1605
+ config: {
1606
+ name: "block_7_depthwise",
1607
+ trainable: true,
1608
+ dtype: "float32",
1609
+ kernel_size: [3, 3],
1610
+ strides: [1, 1],
1611
+ padding: "same",
1612
+ data_format: "channels_last",
1613
+ dilation_rate: [1, 1],
1614
+ groups: 1,
1615
+ activation: "linear",
1616
+ use_bias: false,
1617
+ bias_initializer: { class_name: "Zeros", config: {} },
1618
+ bias_regularizer: null,
1619
+ activity_regularizer: null,
1620
+ bias_constraint: null,
1621
+ depth_multiplier: 1,
1622
+ depthwise_initializer: {
1623
+ class_name: "GlorotUniform",
1624
+ config: { seed: null },
1625
+ },
1626
+ depthwise_regularizer: null,
1627
+ depthwise_constraint: null,
1628
+ },
1629
+ name: "block_7_depthwise",
1630
+ inbound_nodes: [[["block_7_expand_relu", 0, 0, {}]]],
1631
+ },
1632
+ {
1633
+ class_name: "BatchNormalization",
1634
+ config: {
1635
+ name: "block_7_depthwise_BN",
1636
+ trainable: true,
1637
+ dtype: "float32",
1638
+ axis: [3],
1639
+ momentum: 0.999,
1640
+ epsilon: 0.001,
1641
+ center: true,
1642
+ scale: true,
1643
+ beta_initializer: { class_name: "Zeros", config: {} },
1644
+ gamma_initializer: { class_name: "Ones", config: {} },
1645
+ moving_mean_initializer: {
1646
+ class_name: "Zeros",
1647
+ config: {},
1648
+ },
1649
+ moving_variance_initializer: {
1650
+ class_name: "Ones",
1651
+ config: {},
1652
+ },
1653
+ beta_regularizer: null,
1654
+ gamma_regularizer: null,
1655
+ beta_constraint: null,
1656
+ gamma_constraint: null,
1657
+ },
1658
+ name: "block_7_depthwise_BN",
1659
+ inbound_nodes: [[["block_7_depthwise", 0, 0, {}]]],
1660
+ },
1661
+ {
1662
+ class_name: "ReLU",
1663
+ config: {
1664
+ name: "block_7_depthwise_relu",
1665
+ trainable: true,
1666
+ dtype: "float32",
1667
+ max_value: 6.0,
1668
+ negative_slope: 0.0,
1669
+ threshold: 0.0,
1670
+ },
1671
+ name: "block_7_depthwise_relu",
1672
+ inbound_nodes: [[["block_7_depthwise_BN", 0, 0, {}]]],
1673
+ },
1674
+ {
1675
+ class_name: "Conv2D",
1676
+ config: {
1677
+ name: "block_7_project",
1678
+ trainable: true,
1679
+ dtype: "float32",
1680
+ filters: 64,
1681
+ kernel_size: [1, 1],
1682
+ strides: [1, 1],
1683
+ padding: "same",
1684
+ data_format: "channels_last",
1685
+ dilation_rate: [1, 1],
1686
+ groups: 1,
1687
+ activation: "linear",
1688
+ use_bias: false,
1689
+ kernel_initializer: {
1690
+ class_name: "GlorotUniform",
1691
+ config: { seed: null },
1692
+ },
1693
+ bias_initializer: { class_name: "Zeros", config: {} },
1694
+ kernel_regularizer: null,
1695
+ bias_regularizer: null,
1696
+ activity_regularizer: null,
1697
+ kernel_constraint: null,
1698
+ bias_constraint: null,
1699
+ },
1700
+ name: "block_7_project",
1701
+ inbound_nodes: [[["block_7_depthwise_relu", 0, 0, {}]]],
1702
+ },
1703
+ {
1704
+ class_name: "BatchNormalization",
1705
+ config: {
1706
+ name: "block_7_project_BN",
1707
+ trainable: true,
1708
+ dtype: "float32",
1709
+ axis: [3],
1710
+ momentum: 0.999,
1711
+ epsilon: 0.001,
1712
+ center: true,
1713
+ scale: true,
1714
+ beta_initializer: { class_name: "Zeros", config: {} },
1715
+ gamma_initializer: { class_name: "Ones", config: {} },
1716
+ moving_mean_initializer: {
1717
+ class_name: "Zeros",
1718
+ config: {},
1719
+ },
1720
+ moving_variance_initializer: {
1721
+ class_name: "Ones",
1722
+ config: {},
1723
+ },
1724
+ beta_regularizer: null,
1725
+ gamma_regularizer: null,
1726
+ beta_constraint: null,
1727
+ gamma_constraint: null,
1728
+ },
1729
+ name: "block_7_project_BN",
1730
+ inbound_nodes: [[["block_7_project", 0, 0, {}]]],
1731
+ },
1732
+ {
1733
+ class_name: "Add",
1734
+ config: {
1735
+ name: "block_7_add",
1736
+ trainable: true,
1737
+ dtype: "float32",
1738
+ },
1739
+ name: "block_7_add",
1740
+ inbound_nodes: [
1741
+ [
1742
+ ["block_6_project_BN", 0, 0, {}],
1743
+ ["block_7_project_BN", 0, 0, {}],
1744
+ ],
1745
+ ],
1746
+ },
1747
+ {
1748
+ class_name: "Conv2D",
1749
+ config: {
1750
+ name: "block_8_expand",
1751
+ trainable: true,
1752
+ dtype: "float32",
1753
+ filters: 384,
1754
+ kernel_size: [1, 1],
1755
+ strides: [1, 1],
1756
+ padding: "same",
1757
+ data_format: "channels_last",
1758
+ dilation_rate: [1, 1],
1759
+ groups: 1,
1760
+ activation: "linear",
1761
+ use_bias: false,
1762
+ kernel_initializer: {
1763
+ class_name: "GlorotUniform",
1764
+ config: { seed: null },
1765
+ },
1766
+ bias_initializer: { class_name: "Zeros", config: {} },
1767
+ kernel_regularizer: null,
1768
+ bias_regularizer: null,
1769
+ activity_regularizer: null,
1770
+ kernel_constraint: null,
1771
+ bias_constraint: null,
1772
+ },
1773
+ name: "block_8_expand",
1774
+ inbound_nodes: [[["block_7_add", 0, 0, {}]]],
1775
+ },
1776
+ {
1777
+ class_name: "BatchNormalization",
1778
+ config: {
1779
+ name: "block_8_expand_BN",
1780
+ trainable: true,
1781
+ dtype: "float32",
1782
+ axis: [3],
1783
+ momentum: 0.999,
1784
+ epsilon: 0.001,
1785
+ center: true,
1786
+ scale: true,
1787
+ beta_initializer: { class_name: "Zeros", config: {} },
1788
+ gamma_initializer: { class_name: "Ones", config: {} },
1789
+ moving_mean_initializer: {
1790
+ class_name: "Zeros",
1791
+ config: {},
1792
+ },
1793
+ moving_variance_initializer: {
1794
+ class_name: "Ones",
1795
+ config: {},
1796
+ },
1797
+ beta_regularizer: null,
1798
+ gamma_regularizer: null,
1799
+ beta_constraint: null,
1800
+ gamma_constraint: null,
1801
+ },
1802
+ name: "block_8_expand_BN",
1803
+ inbound_nodes: [[["block_8_expand", 0, 0, {}]]],
1804
+ },
1805
+ {
1806
+ class_name: "ReLU",
1807
+ config: {
1808
+ name: "block_8_expand_relu",
1809
+ trainable: true,
1810
+ dtype: "float32",
1811
+ max_value: 6.0,
1812
+ negative_slope: 0.0,
1813
+ threshold: 0.0,
1814
+ },
1815
+ name: "block_8_expand_relu",
1816
+ inbound_nodes: [[["block_8_expand_BN", 0, 0, {}]]],
1817
+ },
1818
+ {
1819
+ class_name: "DepthwiseConv2D",
1820
+ config: {
1821
+ name: "block_8_depthwise",
1822
+ trainable: true,
1823
+ dtype: "float32",
1824
+ kernel_size: [3, 3],
1825
+ strides: [1, 1],
1826
+ padding: "same",
1827
+ data_format: "channels_last",
1828
+ dilation_rate: [1, 1],
1829
+ groups: 1,
1830
+ activation: "linear",
1831
+ use_bias: false,
1832
+ bias_initializer: { class_name: "Zeros", config: {} },
1833
+ bias_regularizer: null,
1834
+ activity_regularizer: null,
1835
+ bias_constraint: null,
1836
+ depth_multiplier: 1,
1837
+ depthwise_initializer: {
1838
+ class_name: "GlorotUniform",
1839
+ config: { seed: null },
1840
+ },
1841
+ depthwise_regularizer: null,
1842
+ depthwise_constraint: null,
1843
+ },
1844
+ name: "block_8_depthwise",
1845
+ inbound_nodes: [[["block_8_expand_relu", 0, 0, {}]]],
1846
+ },
1847
+ {
1848
+ class_name: "BatchNormalization",
1849
+ config: {
1850
+ name: "block_8_depthwise_BN",
1851
+ trainable: true,
1852
+ dtype: "float32",
1853
+ axis: [3],
1854
+ momentum: 0.999,
1855
+ epsilon: 0.001,
1856
+ center: true,
1857
+ scale: true,
1858
+ beta_initializer: { class_name: "Zeros", config: {} },
1859
+ gamma_initializer: { class_name: "Ones", config: {} },
1860
+ moving_mean_initializer: {
1861
+ class_name: "Zeros",
1862
+ config: {},
1863
+ },
1864
+ moving_variance_initializer: {
1865
+ class_name: "Ones",
1866
+ config: {},
1867
+ },
1868
+ beta_regularizer: null,
1869
+ gamma_regularizer: null,
1870
+ beta_constraint: null,
1871
+ gamma_constraint: null,
1872
+ },
1873
+ name: "block_8_depthwise_BN",
1874
+ inbound_nodes: [[["block_8_depthwise", 0, 0, {}]]],
1875
+ },
1876
+ {
1877
+ class_name: "ReLU",
1878
+ config: {
1879
+ name: "block_8_depthwise_relu",
1880
+ trainable: true,
1881
+ dtype: "float32",
1882
+ max_value: 6.0,
1883
+ negative_slope: 0.0,
1884
+ threshold: 0.0,
1885
+ },
1886
+ name: "block_8_depthwise_relu",
1887
+ inbound_nodes: [[["block_8_depthwise_BN", 0, 0, {}]]],
1888
+ },
1889
+ {
1890
+ class_name: "Conv2D",
1891
+ config: {
1892
+ name: "block_8_project",
1893
+ trainable: true,
1894
+ dtype: "float32",
1895
+ filters: 64,
1896
+ kernel_size: [1, 1],
1897
+ strides: [1, 1],
1898
+ padding: "same",
1899
+ data_format: "channels_last",
1900
+ dilation_rate: [1, 1],
1901
+ groups: 1,
1902
+ activation: "linear",
1903
+ use_bias: false,
1904
+ kernel_initializer: {
1905
+ class_name: "GlorotUniform",
1906
+ config: { seed: null },
1907
+ },
1908
+ bias_initializer: { class_name: "Zeros", config: {} },
1909
+ kernel_regularizer: null,
1910
+ bias_regularizer: null,
1911
+ activity_regularizer: null,
1912
+ kernel_constraint: null,
1913
+ bias_constraint: null,
1914
+ },
1915
+ name: "block_8_project",
1916
+ inbound_nodes: [[["block_8_depthwise_relu", 0, 0, {}]]],
1917
+ },
1918
+ {
1919
+ class_name: "BatchNormalization",
1920
+ config: {
1921
+ name: "block_8_project_BN",
1922
+ trainable: true,
1923
+ dtype: "float32",
1924
+ axis: [3],
1925
+ momentum: 0.999,
1926
+ epsilon: 0.001,
1927
+ center: true,
1928
+ scale: true,
1929
+ beta_initializer: { class_name: "Zeros", config: {} },
1930
+ gamma_initializer: { class_name: "Ones", config: {} },
1931
+ moving_mean_initializer: {
1932
+ class_name: "Zeros",
1933
+ config: {},
1934
+ },
1935
+ moving_variance_initializer: {
1936
+ class_name: "Ones",
1937
+ config: {},
1938
+ },
1939
+ beta_regularizer: null,
1940
+ gamma_regularizer: null,
1941
+ beta_constraint: null,
1942
+ gamma_constraint: null,
1943
+ },
1944
+ name: "block_8_project_BN",
1945
+ inbound_nodes: [[["block_8_project", 0, 0, {}]]],
1946
+ },
1947
+ {
1948
+ class_name: "Add",
1949
+ config: {
1950
+ name: "block_8_add",
1951
+ trainable: true,
1952
+ dtype: "float32",
1953
+ },
1954
+ name: "block_8_add",
1955
+ inbound_nodes: [
1956
+ [
1957
+ ["block_7_add", 0, 0, {}],
1958
+ ["block_8_project_BN", 0, 0, {}],
1959
+ ],
1960
+ ],
1961
+ },
1962
+ {
1963
+ class_name: "Conv2D",
1964
+ config: {
1965
+ name: "block_9_expand",
1966
+ trainable: true,
1967
+ dtype: "float32",
1968
+ filters: 384,
1969
+ kernel_size: [1, 1],
1970
+ strides: [1, 1],
1971
+ padding: "same",
1972
+ data_format: "channels_last",
1973
+ dilation_rate: [1, 1],
1974
+ groups: 1,
1975
+ activation: "linear",
1976
+ use_bias: false,
1977
+ kernel_initializer: {
1978
+ class_name: "GlorotUniform",
1979
+ config: { seed: null },
1980
+ },
1981
+ bias_initializer: { class_name: "Zeros", config: {} },
1982
+ kernel_regularizer: null,
1983
+ bias_regularizer: null,
1984
+ activity_regularizer: null,
1985
+ kernel_constraint: null,
1986
+ bias_constraint: null,
1987
+ },
1988
+ name: "block_9_expand",
1989
+ inbound_nodes: [[["block_8_add", 0, 0, {}]]],
1990
+ },
1991
+ {
1992
+ class_name: "BatchNormalization",
1993
+ config: {
1994
+ name: "block_9_expand_BN",
1995
+ trainable: true,
1996
+ dtype: "float32",
1997
+ axis: [3],
1998
+ momentum: 0.999,
1999
+ epsilon: 0.001,
2000
+ center: true,
2001
+ scale: true,
2002
+ beta_initializer: { class_name: "Zeros", config: {} },
2003
+ gamma_initializer: { class_name: "Ones", config: {} },
2004
+ moving_mean_initializer: {
2005
+ class_name: "Zeros",
2006
+ config: {},
2007
+ },
2008
+ moving_variance_initializer: {
2009
+ class_name: "Ones",
2010
+ config: {},
2011
+ },
2012
+ beta_regularizer: null,
2013
+ gamma_regularizer: null,
2014
+ beta_constraint: null,
2015
+ gamma_constraint: null,
2016
+ },
2017
+ name: "block_9_expand_BN",
2018
+ inbound_nodes: [[["block_9_expand", 0, 0, {}]]],
2019
+ },
2020
+ {
2021
+ class_name: "ReLU",
2022
+ config: {
2023
+ name: "block_9_expand_relu",
2024
+ trainable: true,
2025
+ dtype: "float32",
2026
+ max_value: 6.0,
2027
+ negative_slope: 0.0,
2028
+ threshold: 0.0,
2029
+ },
2030
+ name: "block_9_expand_relu",
2031
+ inbound_nodes: [[["block_9_expand_BN", 0, 0, {}]]],
2032
+ },
2033
+ {
2034
+ class_name: "DepthwiseConv2D",
2035
+ config: {
2036
+ name: "block_9_depthwise",
2037
+ trainable: true,
2038
+ dtype: "float32",
2039
+ kernel_size: [3, 3],
2040
+ strides: [1, 1],
2041
+ padding: "same",
2042
+ data_format: "channels_last",
2043
+ dilation_rate: [1, 1],
2044
+ groups: 1,
2045
+ activation: "linear",
2046
+ use_bias: false,
2047
+ bias_initializer: { class_name: "Zeros", config: {} },
2048
+ bias_regularizer: null,
2049
+ activity_regularizer: null,
2050
+ bias_constraint: null,
2051
+ depth_multiplier: 1,
2052
+ depthwise_initializer: {
2053
+ class_name: "GlorotUniform",
2054
+ config: { seed: null },
2055
+ },
2056
+ depthwise_regularizer: null,
2057
+ depthwise_constraint: null,
2058
+ },
2059
+ name: "block_9_depthwise",
2060
+ inbound_nodes: [[["block_9_expand_relu", 0, 0, {}]]],
2061
+ },
2062
+ {
2063
+ class_name: "BatchNormalization",
2064
+ config: {
2065
+ name: "block_9_depthwise_BN",
2066
+ trainable: true,
2067
+ dtype: "float32",
2068
+ axis: [3],
2069
+ momentum: 0.999,
2070
+ epsilon: 0.001,
2071
+ center: true,
2072
+ scale: true,
2073
+ beta_initializer: { class_name: "Zeros", config: {} },
2074
+ gamma_initializer: { class_name: "Ones", config: {} },
2075
+ moving_mean_initializer: {
2076
+ class_name: "Zeros",
2077
+ config: {},
2078
+ },
2079
+ moving_variance_initializer: {
2080
+ class_name: "Ones",
2081
+ config: {},
2082
+ },
2083
+ beta_regularizer: null,
2084
+ gamma_regularizer: null,
2085
+ beta_constraint: null,
2086
+ gamma_constraint: null,
2087
+ },
2088
+ name: "block_9_depthwise_BN",
2089
+ inbound_nodes: [[["block_9_depthwise", 0, 0, {}]]],
2090
+ },
2091
+ {
2092
+ class_name: "ReLU",
2093
+ config: {
2094
+ name: "block_9_depthwise_relu",
2095
+ trainable: true,
2096
+ dtype: "float32",
2097
+ max_value: 6.0,
2098
+ negative_slope: 0.0,
2099
+ threshold: 0.0,
2100
+ },
2101
+ name: "block_9_depthwise_relu",
2102
+ inbound_nodes: [[["block_9_depthwise_BN", 0, 0, {}]]],
2103
+ },
2104
+ {
2105
+ class_name: "Conv2D",
2106
+ config: {
2107
+ name: "block_9_project",
2108
+ trainable: true,
2109
+ dtype: "float32",
2110
+ filters: 64,
2111
+ kernel_size: [1, 1],
2112
+ strides: [1, 1],
2113
+ padding: "same",
2114
+ data_format: "channels_last",
2115
+ dilation_rate: [1, 1],
2116
+ groups: 1,
2117
+ activation: "linear",
2118
+ use_bias: false,
2119
+ kernel_initializer: {
2120
+ class_name: "GlorotUniform",
2121
+ config: { seed: null },
2122
+ },
2123
+ bias_initializer: { class_name: "Zeros", config: {} },
2124
+ kernel_regularizer: null,
2125
+ bias_regularizer: null,
2126
+ activity_regularizer: null,
2127
+ kernel_constraint: null,
2128
+ bias_constraint: null,
2129
+ },
2130
+ name: "block_9_project",
2131
+ inbound_nodes: [[["block_9_depthwise_relu", 0, 0, {}]]],
2132
+ },
2133
+ {
2134
+ class_name: "BatchNormalization",
2135
+ config: {
2136
+ name: "block_9_project_BN",
2137
+ trainable: true,
2138
+ dtype: "float32",
2139
+ axis: [3],
2140
+ momentum: 0.999,
2141
+ epsilon: 0.001,
2142
+ center: true,
2143
+ scale: true,
2144
+ beta_initializer: { class_name: "Zeros", config: {} },
2145
+ gamma_initializer: { class_name: "Ones", config: {} },
2146
+ moving_mean_initializer: {
2147
+ class_name: "Zeros",
2148
+ config: {},
2149
+ },
2150
+ moving_variance_initializer: {
2151
+ class_name: "Ones",
2152
+ config: {},
2153
+ },
2154
+ beta_regularizer: null,
2155
+ gamma_regularizer: null,
2156
+ beta_constraint: null,
2157
+ gamma_constraint: null,
2158
+ },
2159
+ name: "block_9_project_BN",
2160
+ inbound_nodes: [[["block_9_project", 0, 0, {}]]],
2161
+ },
2162
+ {
2163
+ class_name: "Add",
2164
+ config: {
2165
+ name: "block_9_add",
2166
+ trainable: true,
2167
+ dtype: "float32",
2168
+ },
2169
+ name: "block_9_add",
2170
+ inbound_nodes: [
2171
+ [
2172
+ ["block_8_add", 0, 0, {}],
2173
+ ["block_9_project_BN", 0, 0, {}],
2174
+ ],
2175
+ ],
2176
+ },
2177
+ {
2178
+ class_name: "Conv2D",
2179
+ config: {
2180
+ name: "block_10_expand",
2181
+ trainable: true,
2182
+ dtype: "float32",
2183
+ filters: 384,
2184
+ kernel_size: [1, 1],
2185
+ strides: [1, 1],
2186
+ padding: "same",
2187
+ data_format: "channels_last",
2188
+ dilation_rate: [1, 1],
2189
+ groups: 1,
2190
+ activation: "linear",
2191
+ use_bias: false,
2192
+ kernel_initializer: {
2193
+ class_name: "GlorotUniform",
2194
+ config: { seed: null },
2195
+ },
2196
+ bias_initializer: { class_name: "Zeros", config: {} },
2197
+ kernel_regularizer: null,
2198
+ bias_regularizer: null,
2199
+ activity_regularizer: null,
2200
+ kernel_constraint: null,
2201
+ bias_constraint: null,
2202
+ },
2203
+ name: "block_10_expand",
2204
+ inbound_nodes: [[["block_9_add", 0, 0, {}]]],
2205
+ },
2206
+ {
2207
+ class_name: "BatchNormalization",
2208
+ config: {
2209
+ name: "block_10_expand_BN",
2210
+ trainable: true,
2211
+ dtype: "float32",
2212
+ axis: [3],
2213
+ momentum: 0.999,
2214
+ epsilon: 0.001,
2215
+ center: true,
2216
+ scale: true,
2217
+ beta_initializer: { class_name: "Zeros", config: {} },
2218
+ gamma_initializer: { class_name: "Ones", config: {} },
2219
+ moving_mean_initializer: {
2220
+ class_name: "Zeros",
2221
+ config: {},
2222
+ },
2223
+ moving_variance_initializer: {
2224
+ class_name: "Ones",
2225
+ config: {},
2226
+ },
2227
+ beta_regularizer: null,
2228
+ gamma_regularizer: null,
2229
+ beta_constraint: null,
2230
+ gamma_constraint: null,
2231
+ },
2232
+ name: "block_10_expand_BN",
2233
+ inbound_nodes: [[["block_10_expand", 0, 0, {}]]],
2234
+ },
2235
+ {
2236
+ class_name: "ReLU",
2237
+ config: {
2238
+ name: "block_10_expand_relu",
2239
+ trainable: true,
2240
+ dtype: "float32",
2241
+ max_value: 6.0,
2242
+ negative_slope: 0.0,
2243
+ threshold: 0.0,
2244
+ },
2245
+ name: "block_10_expand_relu",
2246
+ inbound_nodes: [[["block_10_expand_BN", 0, 0, {}]]],
2247
+ },
2248
+ {
2249
+ class_name: "DepthwiseConv2D",
2250
+ config: {
2251
+ name: "block_10_depthwise",
2252
+ trainable: true,
2253
+ dtype: "float32",
2254
+ kernel_size: [3, 3],
2255
+ strides: [1, 1],
2256
+ padding: "same",
2257
+ data_format: "channels_last",
2258
+ dilation_rate: [1, 1],
2259
+ groups: 1,
2260
+ activation: "linear",
2261
+ use_bias: false,
2262
+ bias_initializer: { class_name: "Zeros", config: {} },
2263
+ bias_regularizer: null,
2264
+ activity_regularizer: null,
2265
+ bias_constraint: null,
2266
+ depth_multiplier: 1,
2267
+ depthwise_initializer: {
2268
+ class_name: "GlorotUniform",
2269
+ config: { seed: null },
2270
+ },
2271
+ depthwise_regularizer: null,
2272
+ depthwise_constraint: null,
2273
+ },
2274
+ name: "block_10_depthwise",
2275
+ inbound_nodes: [[["block_10_expand_relu", 0, 0, {}]]],
2276
+ },
2277
+ {
2278
+ class_name: "BatchNormalization",
2279
+ config: {
2280
+ name: "block_10_depthwise_BN",
2281
+ trainable: true,
2282
+ dtype: "float32",
2283
+ axis: [3],
2284
+ momentum: 0.999,
2285
+ epsilon: 0.001,
2286
+ center: true,
2287
+ scale: true,
2288
+ beta_initializer: { class_name: "Zeros", config: {} },
2289
+ gamma_initializer: { class_name: "Ones", config: {} },
2290
+ moving_mean_initializer: {
2291
+ class_name: "Zeros",
2292
+ config: {},
2293
+ },
2294
+ moving_variance_initializer: {
2295
+ class_name: "Ones",
2296
+ config: {},
2297
+ },
2298
+ beta_regularizer: null,
2299
+ gamma_regularizer: null,
2300
+ beta_constraint: null,
2301
+ gamma_constraint: null,
2302
+ },
2303
+ name: "block_10_depthwise_BN",
2304
+ inbound_nodes: [[["block_10_depthwise", 0, 0, {}]]],
2305
+ },
2306
+ {
2307
+ class_name: "ReLU",
2308
+ config: {
2309
+ name: "block_10_depthwise_relu",
2310
+ trainable: true,
2311
+ dtype: "float32",
2312
+ max_value: 6.0,
2313
+ negative_slope: 0.0,
2314
+ threshold: 0.0,
2315
+ },
2316
+ name: "block_10_depthwise_relu",
2317
+ inbound_nodes: [[["block_10_depthwise_BN", 0, 0, {}]]],
2318
+ },
2319
+ {
2320
+ class_name: "Conv2D",
2321
+ config: {
2322
+ name: "block_10_project",
2323
+ trainable: true,
2324
+ dtype: "float32",
2325
+ filters: 96,
2326
+ kernel_size: [1, 1],
2327
+ strides: [1, 1],
2328
+ padding: "same",
2329
+ data_format: "channels_last",
2330
+ dilation_rate: [1, 1],
2331
+ groups: 1,
2332
+ activation: "linear",
2333
+ use_bias: false,
2334
+ kernel_initializer: {
2335
+ class_name: "GlorotUniform",
2336
+ config: { seed: null },
2337
+ },
2338
+ bias_initializer: { class_name: "Zeros", config: {} },
2339
+ kernel_regularizer: null,
2340
+ bias_regularizer: null,
2341
+ activity_regularizer: null,
2342
+ kernel_constraint: null,
2343
+ bias_constraint: null,
2344
+ },
2345
+ name: "block_10_project",
2346
+ inbound_nodes: [[["block_10_depthwise_relu", 0, 0, {}]]],
2347
+ },
2348
+ {
2349
+ class_name: "BatchNormalization",
2350
+ config: {
2351
+ name: "block_10_project_BN",
2352
+ trainable: true,
2353
+ dtype: "float32",
2354
+ axis: [3],
2355
+ momentum: 0.999,
2356
+ epsilon: 0.001,
2357
+ center: true,
2358
+ scale: true,
2359
+ beta_initializer: { class_name: "Zeros", config: {} },
2360
+ gamma_initializer: { class_name: "Ones", config: {} },
2361
+ moving_mean_initializer: {
2362
+ class_name: "Zeros",
2363
+ config: {},
2364
+ },
2365
+ moving_variance_initializer: {
2366
+ class_name: "Ones",
2367
+ config: {},
2368
+ },
2369
+ beta_regularizer: null,
2370
+ gamma_regularizer: null,
2371
+ beta_constraint: null,
2372
+ gamma_constraint: null,
2373
+ },
2374
+ name: "block_10_project_BN",
2375
+ inbound_nodes: [[["block_10_project", 0, 0, {}]]],
2376
+ },
2377
+ {
2378
+ class_name: "Conv2D",
2379
+ config: {
2380
+ name: "block_11_expand",
2381
+ trainable: true,
2382
+ dtype: "float32",
2383
+ filters: 576,
2384
+ kernel_size: [1, 1],
2385
+ strides: [1, 1],
2386
+ padding: "same",
2387
+ data_format: "channels_last",
2388
+ dilation_rate: [1, 1],
2389
+ groups: 1,
2390
+ activation: "linear",
2391
+ use_bias: false,
2392
+ kernel_initializer: {
2393
+ class_name: "GlorotUniform",
2394
+ config: { seed: null },
2395
+ },
2396
+ bias_initializer: { class_name: "Zeros", config: {} },
2397
+ kernel_regularizer: null,
2398
+ bias_regularizer: null,
2399
+ activity_regularizer: null,
2400
+ kernel_constraint: null,
2401
+ bias_constraint: null,
2402
+ },
2403
+ name: "block_11_expand",
2404
+ inbound_nodes: [[["block_10_project_BN", 0, 0, {}]]],
2405
+ },
2406
+ {
2407
+ class_name: "BatchNormalization",
2408
+ config: {
2409
+ name: "block_11_expand_BN",
2410
+ trainable: true,
2411
+ dtype: "float32",
2412
+ axis: [3],
2413
+ momentum: 0.999,
2414
+ epsilon: 0.001,
2415
+ center: true,
2416
+ scale: true,
2417
+ beta_initializer: { class_name: "Zeros", config: {} },
2418
+ gamma_initializer: { class_name: "Ones", config: {} },
2419
+ moving_mean_initializer: {
2420
+ class_name: "Zeros",
2421
+ config: {},
2422
+ },
2423
+ moving_variance_initializer: {
2424
+ class_name: "Ones",
2425
+ config: {},
2426
+ },
2427
+ beta_regularizer: null,
2428
+ gamma_regularizer: null,
2429
+ beta_constraint: null,
2430
+ gamma_constraint: null,
2431
+ },
2432
+ name: "block_11_expand_BN",
2433
+ inbound_nodes: [[["block_11_expand", 0, 0, {}]]],
2434
+ },
2435
+ {
2436
+ class_name: "ReLU",
2437
+ config: {
2438
+ name: "block_11_expand_relu",
2439
+ trainable: true,
2440
+ dtype: "float32",
2441
+ max_value: 6.0,
2442
+ negative_slope: 0.0,
2443
+ threshold: 0.0,
2444
+ },
2445
+ name: "block_11_expand_relu",
2446
+ inbound_nodes: [[["block_11_expand_BN", 0, 0, {}]]],
2447
+ },
2448
+ {
2449
+ class_name: "DepthwiseConv2D",
2450
+ config: {
2451
+ name: "block_11_depthwise",
2452
+ trainable: true,
2453
+ dtype: "float32",
2454
+ kernel_size: [3, 3],
2455
+ strides: [1, 1],
2456
+ padding: "same",
2457
+ data_format: "channels_last",
2458
+ dilation_rate: [1, 1],
2459
+ groups: 1,
2460
+ activation: "linear",
2461
+ use_bias: false,
2462
+ bias_initializer: { class_name: "Zeros", config: {} },
2463
+ bias_regularizer: null,
2464
+ activity_regularizer: null,
2465
+ bias_constraint: null,
2466
+ depth_multiplier: 1,
2467
+ depthwise_initializer: {
2468
+ class_name: "GlorotUniform",
2469
+ config: { seed: null },
2470
+ },
2471
+ depthwise_regularizer: null,
2472
+ depthwise_constraint: null,
2473
+ },
2474
+ name: "block_11_depthwise",
2475
+ inbound_nodes: [[["block_11_expand_relu", 0, 0, {}]]],
2476
+ },
2477
+ {
2478
+ class_name: "BatchNormalization",
2479
+ config: {
2480
+ name: "block_11_depthwise_BN",
2481
+ trainable: true,
2482
+ dtype: "float32",
2483
+ axis: [3],
2484
+ momentum: 0.999,
2485
+ epsilon: 0.001,
2486
+ center: true,
2487
+ scale: true,
2488
+ beta_initializer: { class_name: "Zeros", config: {} },
2489
+ gamma_initializer: { class_name: "Ones", config: {} },
2490
+ moving_mean_initializer: {
2491
+ class_name: "Zeros",
2492
+ config: {},
2493
+ },
2494
+ moving_variance_initializer: {
2495
+ class_name: "Ones",
2496
+ config: {},
2497
+ },
2498
+ beta_regularizer: null,
2499
+ gamma_regularizer: null,
2500
+ beta_constraint: null,
2501
+ gamma_constraint: null,
2502
+ },
2503
+ name: "block_11_depthwise_BN",
2504
+ inbound_nodes: [[["block_11_depthwise", 0, 0, {}]]],
2505
+ },
2506
+ {
2507
+ class_name: "ReLU",
2508
+ config: {
2509
+ name: "block_11_depthwise_relu",
2510
+ trainable: true,
2511
+ dtype: "float32",
2512
+ max_value: 6.0,
2513
+ negative_slope: 0.0,
2514
+ threshold: 0.0,
2515
+ },
2516
+ name: "block_11_depthwise_relu",
2517
+ inbound_nodes: [[["block_11_depthwise_BN", 0, 0, {}]]],
2518
+ },
2519
+ {
2520
+ class_name: "Conv2D",
2521
+ config: {
2522
+ name: "block_11_project",
2523
+ trainable: true,
2524
+ dtype: "float32",
2525
+ filters: 96,
2526
+ kernel_size: [1, 1],
2527
+ strides: [1, 1],
2528
+ padding: "same",
2529
+ data_format: "channels_last",
2530
+ dilation_rate: [1, 1],
2531
+ groups: 1,
2532
+ activation: "linear",
2533
+ use_bias: false,
2534
+ kernel_initializer: {
2535
+ class_name: "GlorotUniform",
2536
+ config: { seed: null },
2537
+ },
2538
+ bias_initializer: { class_name: "Zeros", config: {} },
2539
+ kernel_regularizer: null,
2540
+ bias_regularizer: null,
2541
+ activity_regularizer: null,
2542
+ kernel_constraint: null,
2543
+ bias_constraint: null,
2544
+ },
2545
+ name: "block_11_project",
2546
+ inbound_nodes: [[["block_11_depthwise_relu", 0, 0, {}]]],
2547
+ },
2548
+ {
2549
+ class_name: "BatchNormalization",
2550
+ config: {
2551
+ name: "block_11_project_BN",
2552
+ trainable: true,
2553
+ dtype: "float32",
2554
+ axis: [3],
2555
+ momentum: 0.999,
2556
+ epsilon: 0.001,
2557
+ center: true,
2558
+ scale: true,
2559
+ beta_initializer: { class_name: "Zeros", config: {} },
2560
+ gamma_initializer: { class_name: "Ones", config: {} },
2561
+ moving_mean_initializer: {
2562
+ class_name: "Zeros",
2563
+ config: {},
2564
+ },
2565
+ moving_variance_initializer: {
2566
+ class_name: "Ones",
2567
+ config: {},
2568
+ },
2569
+ beta_regularizer: null,
2570
+ gamma_regularizer: null,
2571
+ beta_constraint: null,
2572
+ gamma_constraint: null,
2573
+ },
2574
+ name: "block_11_project_BN",
2575
+ inbound_nodes: [[["block_11_project", 0, 0, {}]]],
2576
+ },
2577
+ {
2578
+ class_name: "Add",
2579
+ config: {
2580
+ name: "block_11_add",
2581
+ trainable: true,
2582
+ dtype: "float32",
2583
+ },
2584
+ name: "block_11_add",
2585
+ inbound_nodes: [
2586
+ [
2587
+ ["block_10_project_BN", 0, 0, {}],
2588
+ ["block_11_project_BN", 0, 0, {}],
2589
+ ],
2590
+ ],
2591
+ },
2592
+ {
2593
+ class_name: "Conv2D",
2594
+ config: {
2595
+ name: "block_12_expand",
2596
+ trainable: true,
2597
+ dtype: "float32",
2598
+ filters: 576,
2599
+ kernel_size: [1, 1],
2600
+ strides: [1, 1],
2601
+ padding: "same",
2602
+ data_format: "channels_last",
2603
+ dilation_rate: [1, 1],
2604
+ groups: 1,
2605
+ activation: "linear",
2606
+ use_bias: false,
2607
+ kernel_initializer: {
2608
+ class_name: "GlorotUniform",
2609
+ config: { seed: null },
2610
+ },
2611
+ bias_initializer: { class_name: "Zeros", config: {} },
2612
+ kernel_regularizer: null,
2613
+ bias_regularizer: null,
2614
+ activity_regularizer: null,
2615
+ kernel_constraint: null,
2616
+ bias_constraint: null,
2617
+ },
2618
+ name: "block_12_expand",
2619
+ inbound_nodes: [[["block_11_add", 0, 0, {}]]],
2620
+ },
2621
+ {
2622
+ class_name: "BatchNormalization",
2623
+ config: {
2624
+ name: "block_12_expand_BN",
2625
+ trainable: true,
2626
+ dtype: "float32",
2627
+ axis: [3],
2628
+ momentum: 0.999,
2629
+ epsilon: 0.001,
2630
+ center: true,
2631
+ scale: true,
2632
+ beta_initializer: { class_name: "Zeros", config: {} },
2633
+ gamma_initializer: { class_name: "Ones", config: {} },
2634
+ moving_mean_initializer: {
2635
+ class_name: "Zeros",
2636
+ config: {},
2637
+ },
2638
+ moving_variance_initializer: {
2639
+ class_name: "Ones",
2640
+ config: {},
2641
+ },
2642
+ beta_regularizer: null,
2643
+ gamma_regularizer: null,
2644
+ beta_constraint: null,
2645
+ gamma_constraint: null,
2646
+ },
2647
+ name: "block_12_expand_BN",
2648
+ inbound_nodes: [[["block_12_expand", 0, 0, {}]]],
2649
+ },
2650
+ {
2651
+ class_name: "ReLU",
2652
+ config: {
2653
+ name: "block_12_expand_relu",
2654
+ trainable: true,
2655
+ dtype: "float32",
2656
+ max_value: 6.0,
2657
+ negative_slope: 0.0,
2658
+ threshold: 0.0,
2659
+ },
2660
+ name: "block_12_expand_relu",
2661
+ inbound_nodes: [[["block_12_expand_BN", 0, 0, {}]]],
2662
+ },
2663
+ {
2664
+ class_name: "DepthwiseConv2D",
2665
+ config: {
2666
+ name: "block_12_depthwise",
2667
+ trainable: true,
2668
+ dtype: "float32",
2669
+ kernel_size: [3, 3],
2670
+ strides: [1, 1],
2671
+ padding: "same",
2672
+ data_format: "channels_last",
2673
+ dilation_rate: [1, 1],
2674
+ groups: 1,
2675
+ activation: "linear",
2676
+ use_bias: false,
2677
+ bias_initializer: { class_name: "Zeros", config: {} },
2678
+ bias_regularizer: null,
2679
+ activity_regularizer: null,
2680
+ bias_constraint: null,
2681
+ depth_multiplier: 1,
2682
+ depthwise_initializer: {
2683
+ class_name: "GlorotUniform",
2684
+ config: { seed: null },
2685
+ },
2686
+ depthwise_regularizer: null,
2687
+ depthwise_constraint: null,
2688
+ },
2689
+ name: "block_12_depthwise",
2690
+ inbound_nodes: [[["block_12_expand_relu", 0, 0, {}]]],
2691
+ },
2692
+ {
2693
+ class_name: "BatchNormalization",
2694
+ config: {
2695
+ name: "block_12_depthwise_BN",
2696
+ trainable: true,
2697
+ dtype: "float32",
2698
+ axis: [3],
2699
+ momentum: 0.999,
2700
+ epsilon: 0.001,
2701
+ center: true,
2702
+ scale: true,
2703
+ beta_initializer: { class_name: "Zeros", config: {} },
2704
+ gamma_initializer: { class_name: "Ones", config: {} },
2705
+ moving_mean_initializer: {
2706
+ class_name: "Zeros",
2707
+ config: {},
2708
+ },
2709
+ moving_variance_initializer: {
2710
+ class_name: "Ones",
2711
+ config: {},
2712
+ },
2713
+ beta_regularizer: null,
2714
+ gamma_regularizer: null,
2715
+ beta_constraint: null,
2716
+ gamma_constraint: null,
2717
+ },
2718
+ name: "block_12_depthwise_BN",
2719
+ inbound_nodes: [[["block_12_depthwise", 0, 0, {}]]],
2720
+ },
2721
+ {
2722
+ class_name: "ReLU",
2723
+ config: {
2724
+ name: "block_12_depthwise_relu",
2725
+ trainable: true,
2726
+ dtype: "float32",
2727
+ max_value: 6.0,
2728
+ negative_slope: 0.0,
2729
+ threshold: 0.0,
2730
+ },
2731
+ name: "block_12_depthwise_relu",
2732
+ inbound_nodes: [[["block_12_depthwise_BN", 0, 0, {}]]],
2733
+ },
2734
+ {
2735
+ class_name: "Conv2D",
2736
+ config: {
2737
+ name: "block_12_project",
2738
+ trainable: true,
2739
+ dtype: "float32",
2740
+ filters: 96,
2741
+ kernel_size: [1, 1],
2742
+ strides: [1, 1],
2743
+ padding: "same",
2744
+ data_format: "channels_last",
2745
+ dilation_rate: [1, 1],
2746
+ groups: 1,
2747
+ activation: "linear",
2748
+ use_bias: false,
2749
+ kernel_initializer: {
2750
+ class_name: "GlorotUniform",
2751
+ config: { seed: null },
2752
+ },
2753
+ bias_initializer: { class_name: "Zeros", config: {} },
2754
+ kernel_regularizer: null,
2755
+ bias_regularizer: null,
2756
+ activity_regularizer: null,
2757
+ kernel_constraint: null,
2758
+ bias_constraint: null,
2759
+ },
2760
+ name: "block_12_project",
2761
+ inbound_nodes: [[["block_12_depthwise_relu", 0, 0, {}]]],
2762
+ },
2763
+ {
2764
+ class_name: "BatchNormalization",
2765
+ config: {
2766
+ name: "block_12_project_BN",
2767
+ trainable: true,
2768
+ dtype: "float32",
2769
+ axis: [3],
2770
+ momentum: 0.999,
2771
+ epsilon: 0.001,
2772
+ center: true,
2773
+ scale: true,
2774
+ beta_initializer: { class_name: "Zeros", config: {} },
2775
+ gamma_initializer: { class_name: "Ones", config: {} },
2776
+ moving_mean_initializer: {
2777
+ class_name: "Zeros",
2778
+ config: {},
2779
+ },
2780
+ moving_variance_initializer: {
2781
+ class_name: "Ones",
2782
+ config: {},
2783
+ },
2784
+ beta_regularizer: null,
2785
+ gamma_regularizer: null,
2786
+ beta_constraint: null,
2787
+ gamma_constraint: null,
2788
+ },
2789
+ name: "block_12_project_BN",
2790
+ inbound_nodes: [[["block_12_project", 0, 0, {}]]],
2791
+ },
2792
+ {
2793
+ class_name: "Add",
2794
+ config: {
2795
+ name: "block_12_add",
2796
+ trainable: true,
2797
+ dtype: "float32",
2798
+ },
2799
+ name: "block_12_add",
2800
+ inbound_nodes: [
2801
+ [
2802
+ ["block_11_add", 0, 0, {}],
2803
+ ["block_12_project_BN", 0, 0, {}],
2804
+ ],
2805
+ ],
2806
+ },
2807
+ {
2808
+ class_name: "Conv2D",
2809
+ config: {
2810
+ name: "block_13_expand",
2811
+ trainable: true,
2812
+ dtype: "float32",
2813
+ filters: 576,
2814
+ kernel_size: [1, 1],
2815
+ strides: [1, 1],
2816
+ padding: "same",
2817
+ data_format: "channels_last",
2818
+ dilation_rate: [1, 1],
2819
+ groups: 1,
2820
+ activation: "linear",
2821
+ use_bias: false,
2822
+ kernel_initializer: {
2823
+ class_name: "GlorotUniform",
2824
+ config: { seed: null },
2825
+ },
2826
+ bias_initializer: { class_name: "Zeros", config: {} },
2827
+ kernel_regularizer: null,
2828
+ bias_regularizer: null,
2829
+ activity_regularizer: null,
2830
+ kernel_constraint: null,
2831
+ bias_constraint: null,
2832
+ },
2833
+ name: "block_13_expand",
2834
+ inbound_nodes: [[["block_12_add", 0, 0, {}]]],
2835
+ },
2836
+ {
2837
+ class_name: "BatchNormalization",
2838
+ config: {
2839
+ name: "block_13_expand_BN",
2840
+ trainable: true,
2841
+ dtype: "float32",
2842
+ axis: [3],
2843
+ momentum: 0.999,
2844
+ epsilon: 0.001,
2845
+ center: true,
2846
+ scale: true,
2847
+ beta_initializer: { class_name: "Zeros", config: {} },
2848
+ gamma_initializer: { class_name: "Ones", config: {} },
2849
+ moving_mean_initializer: {
2850
+ class_name: "Zeros",
2851
+ config: {},
2852
+ },
2853
+ moving_variance_initializer: {
2854
+ class_name: "Ones",
2855
+ config: {},
2856
+ },
2857
+ beta_regularizer: null,
2858
+ gamma_regularizer: null,
2859
+ beta_constraint: null,
2860
+ gamma_constraint: null,
2861
+ },
2862
+ name: "block_13_expand_BN",
2863
+ inbound_nodes: [[["block_13_expand", 0, 0, {}]]],
2864
+ },
2865
+ {
2866
+ class_name: "ReLU",
2867
+ config: {
2868
+ name: "block_13_expand_relu",
2869
+ trainable: true,
2870
+ dtype: "float32",
2871
+ max_value: 6.0,
2872
+ negative_slope: 0.0,
2873
+ threshold: 0.0,
2874
+ },
2875
+ name: "block_13_expand_relu",
2876
+ inbound_nodes: [[["block_13_expand_BN", 0, 0, {}]]],
2877
+ },
2878
+ {
2879
+ class_name: "ZeroPadding2D",
2880
+ config: {
2881
+ name: "block_13_pad",
2882
+ trainable: true,
2883
+ dtype: "float32",
2884
+ padding: [
2885
+ [0, 1],
2886
+ [0, 1],
2887
+ ],
2888
+ data_format: "channels_last",
2889
+ },
2890
+ name: "block_13_pad",
2891
+ inbound_nodes: [[["block_13_expand_relu", 0, 0, {}]]],
2892
+ },
2893
+ {
2894
+ class_name: "DepthwiseConv2D",
2895
+ config: {
2896
+ name: "block_13_depthwise",
2897
+ trainable: true,
2898
+ dtype: "float32",
2899
+ kernel_size: [3, 3],
2900
+ strides: [2, 2],
2901
+ padding: "valid",
2902
+ data_format: "channels_last",
2903
+ dilation_rate: [1, 1],
2904
+ groups: 1,
2905
+ activation: "linear",
2906
+ use_bias: false,
2907
+ bias_initializer: { class_name: "Zeros", config: {} },
2908
+ bias_regularizer: null,
2909
+ activity_regularizer: null,
2910
+ bias_constraint: null,
2911
+ depth_multiplier: 1,
2912
+ depthwise_initializer: {
2913
+ class_name: "GlorotUniform",
2914
+ config: { seed: null },
2915
+ },
2916
+ depthwise_regularizer: null,
2917
+ depthwise_constraint: null,
2918
+ },
2919
+ name: "block_13_depthwise",
2920
+ inbound_nodes: [[["block_13_pad", 0, 0, {}]]],
2921
+ },
2922
+ {
2923
+ class_name: "BatchNormalization",
2924
+ config: {
2925
+ name: "block_13_depthwise_BN",
2926
+ trainable: true,
2927
+ dtype: "float32",
2928
+ axis: [3],
2929
+ momentum: 0.999,
2930
+ epsilon: 0.001,
2931
+ center: true,
2932
+ scale: true,
2933
+ beta_initializer: { class_name: "Zeros", config: {} },
2934
+ gamma_initializer: { class_name: "Ones", config: {} },
2935
+ moving_mean_initializer: {
2936
+ class_name: "Zeros",
2937
+ config: {},
2938
+ },
2939
+ moving_variance_initializer: {
2940
+ class_name: "Ones",
2941
+ config: {},
2942
+ },
2943
+ beta_regularizer: null,
2944
+ gamma_regularizer: null,
2945
+ beta_constraint: null,
2946
+ gamma_constraint: null,
2947
+ },
2948
+ name: "block_13_depthwise_BN",
2949
+ inbound_nodes: [[["block_13_depthwise", 0, 0, {}]]],
2950
+ },
2951
+ {
2952
+ class_name: "ReLU",
2953
+ config: {
2954
+ name: "block_13_depthwise_relu",
2955
+ trainable: true,
2956
+ dtype: "float32",
2957
+ max_value: 6.0,
2958
+ negative_slope: 0.0,
2959
+ threshold: 0.0,
2960
+ },
2961
+ name: "block_13_depthwise_relu",
2962
+ inbound_nodes: [[["block_13_depthwise_BN", 0, 0, {}]]],
2963
+ },
2964
+ {
2965
+ class_name: "Conv2D",
2966
+ config: {
2967
+ name: "block_13_project",
2968
+ trainable: true,
2969
+ dtype: "float32",
2970
+ filters: 160,
2971
+ kernel_size: [1, 1],
2972
+ strides: [1, 1],
2973
+ padding: "same",
2974
+ data_format: "channels_last",
2975
+ dilation_rate: [1, 1],
2976
+ groups: 1,
2977
+ activation: "linear",
2978
+ use_bias: false,
2979
+ kernel_initializer: {
2980
+ class_name: "GlorotUniform",
2981
+ config: { seed: null },
2982
+ },
2983
+ bias_initializer: { class_name: "Zeros", config: {} },
2984
+ kernel_regularizer: null,
2985
+ bias_regularizer: null,
2986
+ activity_regularizer: null,
2987
+ kernel_constraint: null,
2988
+ bias_constraint: null,
2989
+ },
2990
+ name: "block_13_project",
2991
+ inbound_nodes: [[["block_13_depthwise_relu", 0, 0, {}]]],
2992
+ },
2993
+ {
2994
+ class_name: "BatchNormalization",
2995
+ config: {
2996
+ name: "block_13_project_BN",
2997
+ trainable: true,
2998
+ dtype: "float32",
2999
+ axis: [3],
3000
+ momentum: 0.999,
3001
+ epsilon: 0.001,
3002
+ center: true,
3003
+ scale: true,
3004
+ beta_initializer: { class_name: "Zeros", config: {} },
3005
+ gamma_initializer: { class_name: "Ones", config: {} },
3006
+ moving_mean_initializer: {
3007
+ class_name: "Zeros",
3008
+ config: {},
3009
+ },
3010
+ moving_variance_initializer: {
3011
+ class_name: "Ones",
3012
+ config: {},
3013
+ },
3014
+ beta_regularizer: null,
3015
+ gamma_regularizer: null,
3016
+ beta_constraint: null,
3017
+ gamma_constraint: null,
3018
+ },
3019
+ name: "block_13_project_BN",
3020
+ inbound_nodes: [[["block_13_project", 0, 0, {}]]],
3021
+ },
3022
+ {
3023
+ class_name: "Conv2D",
3024
+ config: {
3025
+ name: "block_14_expand",
3026
+ trainable: true,
3027
+ dtype: "float32",
3028
+ filters: 960,
3029
+ kernel_size: [1, 1],
3030
+ strides: [1, 1],
3031
+ padding: "same",
3032
+ data_format: "channels_last",
3033
+ dilation_rate: [1, 1],
3034
+ groups: 1,
3035
+ activation: "linear",
3036
+ use_bias: false,
3037
+ kernel_initializer: {
3038
+ class_name: "GlorotUniform",
3039
+ config: { seed: null },
3040
+ },
3041
+ bias_initializer: { class_name: "Zeros", config: {} },
3042
+ kernel_regularizer: null,
3043
+ bias_regularizer: null,
3044
+ activity_regularizer: null,
3045
+ kernel_constraint: null,
3046
+ bias_constraint: null,
3047
+ },
3048
+ name: "block_14_expand",
3049
+ inbound_nodes: [[["block_13_project_BN", 0, 0, {}]]],
3050
+ },
3051
+ {
3052
+ class_name: "BatchNormalization",
3053
+ config: {
3054
+ name: "block_14_expand_BN",
3055
+ trainable: true,
3056
+ dtype: "float32",
3057
+ axis: [3],
3058
+ momentum: 0.999,
3059
+ epsilon: 0.001,
3060
+ center: true,
3061
+ scale: true,
3062
+ beta_initializer: { class_name: "Zeros", config: {} },
3063
+ gamma_initializer: { class_name: "Ones", config: {} },
3064
+ moving_mean_initializer: {
3065
+ class_name: "Zeros",
3066
+ config: {},
3067
+ },
3068
+ moving_variance_initializer: {
3069
+ class_name: "Ones",
3070
+ config: {},
3071
+ },
3072
+ beta_regularizer: null,
3073
+ gamma_regularizer: null,
3074
+ beta_constraint: null,
3075
+ gamma_constraint: null,
3076
+ },
3077
+ name: "block_14_expand_BN",
3078
+ inbound_nodes: [[["block_14_expand", 0, 0, {}]]],
3079
+ },
3080
+ {
3081
+ class_name: "ReLU",
3082
+ config: {
3083
+ name: "block_14_expand_relu",
3084
+ trainable: true,
3085
+ dtype: "float32",
3086
+ max_value: 6.0,
3087
+ negative_slope: 0.0,
3088
+ threshold: 0.0,
3089
+ },
3090
+ name: "block_14_expand_relu",
3091
+ inbound_nodes: [[["block_14_expand_BN", 0, 0, {}]]],
3092
+ },
3093
+ {
3094
+ class_name: "DepthwiseConv2D",
3095
+ config: {
3096
+ name: "block_14_depthwise",
3097
+ trainable: true,
3098
+ dtype: "float32",
3099
+ kernel_size: [3, 3],
3100
+ strides: [1, 1],
3101
+ padding: "same",
3102
+ data_format: "channels_last",
3103
+ dilation_rate: [1, 1],
3104
+ groups: 1,
3105
+ activation: "linear",
3106
+ use_bias: false,
3107
+ bias_initializer: { class_name: "Zeros", config: {} },
3108
+ bias_regularizer: null,
3109
+ activity_regularizer: null,
3110
+ bias_constraint: null,
3111
+ depth_multiplier: 1,
3112
+ depthwise_initializer: {
3113
+ class_name: "GlorotUniform",
3114
+ config: { seed: null },
3115
+ },
3116
+ depthwise_regularizer: null,
3117
+ depthwise_constraint: null,
3118
+ },
3119
+ name: "block_14_depthwise",
3120
+ inbound_nodes: [[["block_14_expand_relu", 0, 0, {}]]],
3121
+ },
3122
+ {
3123
+ class_name: "BatchNormalization",
3124
+ config: {
3125
+ name: "block_14_depthwise_BN",
3126
+ trainable: true,
3127
+ dtype: "float32",
3128
+ axis: [3],
3129
+ momentum: 0.999,
3130
+ epsilon: 0.001,
3131
+ center: true,
3132
+ scale: true,
3133
+ beta_initializer: { class_name: "Zeros", config: {} },
3134
+ gamma_initializer: { class_name: "Ones", config: {} },
3135
+ moving_mean_initializer: {
3136
+ class_name: "Zeros",
3137
+ config: {},
3138
+ },
3139
+ moving_variance_initializer: {
3140
+ class_name: "Ones",
3141
+ config: {},
3142
+ },
3143
+ beta_regularizer: null,
3144
+ gamma_regularizer: null,
3145
+ beta_constraint: null,
3146
+ gamma_constraint: null,
3147
+ },
3148
+ name: "block_14_depthwise_BN",
3149
+ inbound_nodes: [[["block_14_depthwise", 0, 0, {}]]],
3150
+ },
3151
+ {
3152
+ class_name: "ReLU",
3153
+ config: {
3154
+ name: "block_14_depthwise_relu",
3155
+ trainable: true,
3156
+ dtype: "float32",
3157
+ max_value: 6.0,
3158
+ negative_slope: 0.0,
3159
+ threshold: 0.0,
3160
+ },
3161
+ name: "block_14_depthwise_relu",
3162
+ inbound_nodes: [[["block_14_depthwise_BN", 0, 0, {}]]],
3163
+ },
3164
+ {
3165
+ class_name: "Conv2D",
3166
+ config: {
3167
+ name: "block_14_project",
3168
+ trainable: true,
3169
+ dtype: "float32",
3170
+ filters: 160,
3171
+ kernel_size: [1, 1],
3172
+ strides: [1, 1],
3173
+ padding: "same",
3174
+ data_format: "channels_last",
3175
+ dilation_rate: [1, 1],
3176
+ groups: 1,
3177
+ activation: "linear",
3178
+ use_bias: false,
3179
+ kernel_initializer: {
3180
+ class_name: "GlorotUniform",
3181
+ config: { seed: null },
3182
+ },
3183
+ bias_initializer: { class_name: "Zeros", config: {} },
3184
+ kernel_regularizer: null,
3185
+ bias_regularizer: null,
3186
+ activity_regularizer: null,
3187
+ kernel_constraint: null,
3188
+ bias_constraint: null,
3189
+ },
3190
+ name: "block_14_project",
3191
+ inbound_nodes: [[["block_14_depthwise_relu", 0, 0, {}]]],
3192
+ },
3193
+ {
3194
+ class_name: "BatchNormalization",
3195
+ config: {
3196
+ name: "block_14_project_BN",
3197
+ trainable: true,
3198
+ dtype: "float32",
3199
+ axis: [3],
3200
+ momentum: 0.999,
3201
+ epsilon: 0.001,
3202
+ center: true,
3203
+ scale: true,
3204
+ beta_initializer: { class_name: "Zeros", config: {} },
3205
+ gamma_initializer: { class_name: "Ones", config: {} },
3206
+ moving_mean_initializer: {
3207
+ class_name: "Zeros",
3208
+ config: {},
3209
+ },
3210
+ moving_variance_initializer: {
3211
+ class_name: "Ones",
3212
+ config: {},
3213
+ },
3214
+ beta_regularizer: null,
3215
+ gamma_regularizer: null,
3216
+ beta_constraint: null,
3217
+ gamma_constraint: null,
3218
+ },
3219
+ name: "block_14_project_BN",
3220
+ inbound_nodes: [[["block_14_project", 0, 0, {}]]],
3221
+ },
3222
+ {
3223
+ class_name: "Add",
3224
+ config: {
3225
+ name: "block_14_add",
3226
+ trainable: true,
3227
+ dtype: "float32",
3228
+ },
3229
+ name: "block_14_add",
3230
+ inbound_nodes: [
3231
+ [
3232
+ ["block_13_project_BN", 0, 0, {}],
3233
+ ["block_14_project_BN", 0, 0, {}],
3234
+ ],
3235
+ ],
3236
+ },
3237
+ {
3238
+ class_name: "Conv2D",
3239
+ config: {
3240
+ name: "block_15_expand",
3241
+ trainable: true,
3242
+ dtype: "float32",
3243
+ filters: 960,
3244
+ kernel_size: [1, 1],
3245
+ strides: [1, 1],
3246
+ padding: "same",
3247
+ data_format: "channels_last",
3248
+ dilation_rate: [1, 1],
3249
+ groups: 1,
3250
+ activation: "linear",
3251
+ use_bias: false,
3252
+ kernel_initializer: {
3253
+ class_name: "GlorotUniform",
3254
+ config: { seed: null },
3255
+ },
3256
+ bias_initializer: { class_name: "Zeros", config: {} },
3257
+ kernel_regularizer: null,
3258
+ bias_regularizer: null,
3259
+ activity_regularizer: null,
3260
+ kernel_constraint: null,
3261
+ bias_constraint: null,
3262
+ },
3263
+ name: "block_15_expand",
3264
+ inbound_nodes: [[["block_14_add", 0, 0, {}]]],
3265
+ },
3266
+ {
3267
+ class_name: "BatchNormalization",
3268
+ config: {
3269
+ name: "block_15_expand_BN",
3270
+ trainable: true,
3271
+ dtype: "float32",
3272
+ axis: [3],
3273
+ momentum: 0.999,
3274
+ epsilon: 0.001,
3275
+ center: true,
3276
+ scale: true,
3277
+ beta_initializer: { class_name: "Zeros", config: {} },
3278
+ gamma_initializer: { class_name: "Ones", config: {} },
3279
+ moving_mean_initializer: {
3280
+ class_name: "Zeros",
3281
+ config: {},
3282
+ },
3283
+ moving_variance_initializer: {
3284
+ class_name: "Ones",
3285
+ config: {},
3286
+ },
3287
+ beta_regularizer: null,
3288
+ gamma_regularizer: null,
3289
+ beta_constraint: null,
3290
+ gamma_constraint: null,
3291
+ },
3292
+ name: "block_15_expand_BN",
3293
+ inbound_nodes: [[["block_15_expand", 0, 0, {}]]],
3294
+ },
3295
+ {
3296
+ class_name: "ReLU",
3297
+ config: {
3298
+ name: "block_15_expand_relu",
3299
+ trainable: true,
3300
+ dtype: "float32",
3301
+ max_value: 6.0,
3302
+ negative_slope: 0.0,
3303
+ threshold: 0.0,
3304
+ },
3305
+ name: "block_15_expand_relu",
3306
+ inbound_nodes: [[["block_15_expand_BN", 0, 0, {}]]],
3307
+ },
3308
+ {
3309
+ class_name: "DepthwiseConv2D",
3310
+ config: {
3311
+ name: "block_15_depthwise",
3312
+ trainable: true,
3313
+ dtype: "float32",
3314
+ kernel_size: [3, 3],
3315
+ strides: [1, 1],
3316
+ padding: "same",
3317
+ data_format: "channels_last",
3318
+ dilation_rate: [1, 1],
3319
+ groups: 1,
3320
+ activation: "linear",
3321
+ use_bias: false,
3322
+ bias_initializer: { class_name: "Zeros", config: {} },
3323
+ bias_regularizer: null,
3324
+ activity_regularizer: null,
3325
+ bias_constraint: null,
3326
+ depth_multiplier: 1,
3327
+ depthwise_initializer: {
3328
+ class_name: "GlorotUniform",
3329
+ config: { seed: null },
3330
+ },
3331
+ depthwise_regularizer: null,
3332
+ depthwise_constraint: null,
3333
+ },
3334
+ name: "block_15_depthwise",
3335
+ inbound_nodes: [[["block_15_expand_relu", 0, 0, {}]]],
3336
+ },
3337
+ {
3338
+ class_name: "BatchNormalization",
3339
+ config: {
3340
+ name: "block_15_depthwise_BN",
3341
+ trainable: true,
3342
+ dtype: "float32",
3343
+ axis: [3],
3344
+ momentum: 0.999,
3345
+ epsilon: 0.001,
3346
+ center: true,
3347
+ scale: true,
3348
+ beta_initializer: { class_name: "Zeros", config: {} },
3349
+ gamma_initializer: { class_name: "Ones", config: {} },
3350
+ moving_mean_initializer: {
3351
+ class_name: "Zeros",
3352
+ config: {},
3353
+ },
3354
+ moving_variance_initializer: {
3355
+ class_name: "Ones",
3356
+ config: {},
3357
+ },
3358
+ beta_regularizer: null,
3359
+ gamma_regularizer: null,
3360
+ beta_constraint: null,
3361
+ gamma_constraint: null,
3362
+ },
3363
+ name: "block_15_depthwise_BN",
3364
+ inbound_nodes: [[["block_15_depthwise", 0, 0, {}]]],
3365
+ },
3366
+ {
3367
+ class_name: "ReLU",
3368
+ config: {
3369
+ name: "block_15_depthwise_relu",
3370
+ trainable: true,
3371
+ dtype: "float32",
3372
+ max_value: 6.0,
3373
+ negative_slope: 0.0,
3374
+ threshold: 0.0,
3375
+ },
3376
+ name: "block_15_depthwise_relu",
3377
+ inbound_nodes: [[["block_15_depthwise_BN", 0, 0, {}]]],
3378
+ },
3379
+ {
3380
+ class_name: "Conv2D",
3381
+ config: {
3382
+ name: "block_15_project",
3383
+ trainable: true,
3384
+ dtype: "float32",
3385
+ filters: 160,
3386
+ kernel_size: [1, 1],
3387
+ strides: [1, 1],
3388
+ padding: "same",
3389
+ data_format: "channels_last",
3390
+ dilation_rate: [1, 1],
3391
+ groups: 1,
3392
+ activation: "linear",
3393
+ use_bias: false,
3394
+ kernel_initializer: {
3395
+ class_name: "GlorotUniform",
3396
+ config: { seed: null },
3397
+ },
3398
+ bias_initializer: { class_name: "Zeros", config: {} },
3399
+ kernel_regularizer: null,
3400
+ bias_regularizer: null,
3401
+ activity_regularizer: null,
3402
+ kernel_constraint: null,
3403
+ bias_constraint: null,
3404
+ },
3405
+ name: "block_15_project",
3406
+ inbound_nodes: [[["block_15_depthwise_relu", 0, 0, {}]]],
3407
+ },
3408
+ {
3409
+ class_name: "BatchNormalization",
3410
+ config: {
3411
+ name: "block_15_project_BN",
3412
+ trainable: true,
3413
+ dtype: "float32",
3414
+ axis: [3],
3415
+ momentum: 0.999,
3416
+ epsilon: 0.001,
3417
+ center: true,
3418
+ scale: true,
3419
+ beta_initializer: { class_name: "Zeros", config: {} },
3420
+ gamma_initializer: { class_name: "Ones", config: {} },
3421
+ moving_mean_initializer: {
3422
+ class_name: "Zeros",
3423
+ config: {},
3424
+ },
3425
+ moving_variance_initializer: {
3426
+ class_name: "Ones",
3427
+ config: {},
3428
+ },
3429
+ beta_regularizer: null,
3430
+ gamma_regularizer: null,
3431
+ beta_constraint: null,
3432
+ gamma_constraint: null,
3433
+ },
3434
+ name: "block_15_project_BN",
3435
+ inbound_nodes: [[["block_15_project", 0, 0, {}]]],
3436
+ },
3437
+ {
3438
+ class_name: "Add",
3439
+ config: {
3440
+ name: "block_15_add",
3441
+ trainable: true,
3442
+ dtype: "float32",
3443
+ },
3444
+ name: "block_15_add",
3445
+ inbound_nodes: [
3446
+ [
3447
+ ["block_14_add", 0, 0, {}],
3448
+ ["block_15_project_BN", 0, 0, {}],
3449
+ ],
3450
+ ],
3451
+ },
3452
+ {
3453
+ class_name: "Conv2D",
3454
+ config: {
3455
+ name: "block_16_expand",
3456
+ trainable: true,
3457
+ dtype: "float32",
3458
+ filters: 960,
3459
+ kernel_size: [1, 1],
3460
+ strides: [1, 1],
3461
+ padding: "same",
3462
+ data_format: "channels_last",
3463
+ dilation_rate: [1, 1],
3464
+ groups: 1,
3465
+ activation: "linear",
3466
+ use_bias: false,
3467
+ kernel_initializer: {
3468
+ class_name: "GlorotUniform",
3469
+ config: { seed: null },
3470
+ },
3471
+ bias_initializer: { class_name: "Zeros", config: {} },
3472
+ kernel_regularizer: null,
3473
+ bias_regularizer: null,
3474
+ activity_regularizer: null,
3475
+ kernel_constraint: null,
3476
+ bias_constraint: null,
3477
+ },
3478
+ name: "block_16_expand",
3479
+ inbound_nodes: [[["block_15_add", 0, 0, {}]]],
3480
+ },
3481
+ {
3482
+ class_name: "BatchNormalization",
3483
+ config: {
3484
+ name: "block_16_expand_BN",
3485
+ trainable: true,
3486
+ dtype: "float32",
3487
+ axis: [3],
3488
+ momentum: 0.999,
3489
+ epsilon: 0.001,
3490
+ center: true,
3491
+ scale: true,
3492
+ beta_initializer: { class_name: "Zeros", config: {} },
3493
+ gamma_initializer: { class_name: "Ones", config: {} },
3494
+ moving_mean_initializer: {
3495
+ class_name: "Zeros",
3496
+ config: {},
3497
+ },
3498
+ moving_variance_initializer: {
3499
+ class_name: "Ones",
3500
+ config: {},
3501
+ },
3502
+ beta_regularizer: null,
3503
+ gamma_regularizer: null,
3504
+ beta_constraint: null,
3505
+ gamma_constraint: null,
3506
+ },
3507
+ name: "block_16_expand_BN",
3508
+ inbound_nodes: [[["block_16_expand", 0, 0, {}]]],
3509
+ },
3510
+ {
3511
+ class_name: "ReLU",
3512
+ config: {
3513
+ name: "block_16_expand_relu",
3514
+ trainable: true,
3515
+ dtype: "float32",
3516
+ max_value: 6.0,
3517
+ negative_slope: 0.0,
3518
+ threshold: 0.0,
3519
+ },
3520
+ name: "block_16_expand_relu",
3521
+ inbound_nodes: [[["block_16_expand_BN", 0, 0, {}]]],
3522
+ },
3523
+ {
3524
+ class_name: "DepthwiseConv2D",
3525
+ config: {
3526
+ name: "block_16_depthwise",
3527
+ trainable: true,
3528
+ dtype: "float32",
3529
+ kernel_size: [3, 3],
3530
+ strides: [1, 1],
3531
+ padding: "same",
3532
+ data_format: "channels_last",
3533
+ dilation_rate: [1, 1],
3534
+ groups: 1,
3535
+ activation: "linear",
3536
+ use_bias: false,
3537
+ bias_initializer: { class_name: "Zeros", config: {} },
3538
+ bias_regularizer: null,
3539
+ activity_regularizer: null,
3540
+ bias_constraint: null,
3541
+ depth_multiplier: 1,
3542
+ depthwise_initializer: {
3543
+ class_name: "GlorotUniform",
3544
+ config: { seed: null },
3545
+ },
3546
+ depthwise_regularizer: null,
3547
+ depthwise_constraint: null,
3548
+ },
3549
+ name: "block_16_depthwise",
3550
+ inbound_nodes: [[["block_16_expand_relu", 0, 0, {}]]],
3551
+ },
3552
+ {
3553
+ class_name: "BatchNormalization",
3554
+ config: {
3555
+ name: "block_16_depthwise_BN",
3556
+ trainable: true,
3557
+ dtype: "float32",
3558
+ axis: [3],
3559
+ momentum: 0.999,
3560
+ epsilon: 0.001,
3561
+ center: true,
3562
+ scale: true,
3563
+ beta_initializer: { class_name: "Zeros", config: {} },
3564
+ gamma_initializer: { class_name: "Ones", config: {} },
3565
+ moving_mean_initializer: {
3566
+ class_name: "Zeros",
3567
+ config: {},
3568
+ },
3569
+ moving_variance_initializer: {
3570
+ class_name: "Ones",
3571
+ config: {},
3572
+ },
3573
+ beta_regularizer: null,
3574
+ gamma_regularizer: null,
3575
+ beta_constraint: null,
3576
+ gamma_constraint: null,
3577
+ },
3578
+ name: "block_16_depthwise_BN",
3579
+ inbound_nodes: [[["block_16_depthwise", 0, 0, {}]]],
3580
+ },
3581
+ {
3582
+ class_name: "ReLU",
3583
+ config: {
3584
+ name: "block_16_depthwise_relu",
3585
+ trainable: true,
3586
+ dtype: "float32",
3587
+ max_value: 6.0,
3588
+ negative_slope: 0.0,
3589
+ threshold: 0.0,
3590
+ },
3591
+ name: "block_16_depthwise_relu",
3592
+ inbound_nodes: [[["block_16_depthwise_BN", 0, 0, {}]]],
3593
+ },
3594
+ {
3595
+ class_name: "Conv2D",
3596
+ config: {
3597
+ name: "block_16_project",
3598
+ trainable: true,
3599
+ dtype: "float32",
3600
+ filters: 320,
3601
+ kernel_size: [1, 1],
3602
+ strides: [1, 1],
3603
+ padding: "same",
3604
+ data_format: "channels_last",
3605
+ dilation_rate: [1, 1],
3606
+ groups: 1,
3607
+ activation: "linear",
3608
+ use_bias: false,
3609
+ kernel_initializer: {
3610
+ class_name: "GlorotUniform",
3611
+ config: { seed: null },
3612
+ },
3613
+ bias_initializer: { class_name: "Zeros", config: {} },
3614
+ kernel_regularizer: null,
3615
+ bias_regularizer: null,
3616
+ activity_regularizer: null,
3617
+ kernel_constraint: null,
3618
+ bias_constraint: null,
3619
+ },
3620
+ name: "block_16_project",
3621
+ inbound_nodes: [[["block_16_depthwise_relu", 0, 0, {}]]],
3622
+ },
3623
+ {
3624
+ class_name: "BatchNormalization",
3625
+ config: {
3626
+ name: "block_16_project_BN",
3627
+ trainable: true,
3628
+ dtype: "float32",
3629
+ axis: [3],
3630
+ momentum: 0.999,
3631
+ epsilon: 0.001,
3632
+ center: true,
3633
+ scale: true,
3634
+ beta_initializer: { class_name: "Zeros", config: {} },
3635
+ gamma_initializer: { class_name: "Ones", config: {} },
3636
+ moving_mean_initializer: {
3637
+ class_name: "Zeros",
3638
+ config: {},
3639
+ },
3640
+ moving_variance_initializer: {
3641
+ class_name: "Ones",
3642
+ config: {},
3643
+ },
3644
+ beta_regularizer: null,
3645
+ gamma_regularizer: null,
3646
+ beta_constraint: null,
3647
+ gamma_constraint: null,
3648
+ },
3649
+ name: "block_16_project_BN",
3650
+ inbound_nodes: [[["block_16_project", 0, 0, {}]]],
3651
+ },
3652
+ {
3653
+ class_name: "Conv2D",
3654
+ config: {
3655
+ name: "Conv_1",
3656
+ trainable: true,
3657
+ dtype: "float32",
3658
+ filters: 1280,
3659
+ kernel_size: [1, 1],
3660
+ strides: [1, 1],
3661
+ padding: "valid",
3662
+ data_format: "channels_last",
3663
+ dilation_rate: [1, 1],
3664
+ groups: 1,
3665
+ activation: "linear",
3666
+ use_bias: false,
3667
+ kernel_initializer: {
3668
+ class_name: "GlorotUniform",
3669
+ config: { seed: null },
3670
+ },
3671
+ bias_initializer: { class_name: "Zeros", config: {} },
3672
+ kernel_regularizer: null,
3673
+ bias_regularizer: null,
3674
+ activity_regularizer: null,
3675
+ kernel_constraint: null,
3676
+ bias_constraint: null,
3677
+ },
3678
+ name: "Conv_1",
3679
+ inbound_nodes: [[["block_16_project_BN", 0, 0, {}]]],
3680
+ },
3681
+ {
3682
+ class_name: "BatchNormalization",
3683
+ config: {
3684
+ name: "Conv_1_bn",
3685
+ trainable: true,
3686
+ dtype: "float32",
3687
+ axis: [3],
3688
+ momentum: 0.999,
3689
+ epsilon: 0.001,
3690
+ center: true,
3691
+ scale: true,
3692
+ beta_initializer: { class_name: "Zeros", config: {} },
3693
+ gamma_initializer: { class_name: "Ones", config: {} },
3694
+ moving_mean_initializer: {
3695
+ class_name: "Zeros",
3696
+ config: {},
3697
+ },
3698
+ moving_variance_initializer: {
3699
+ class_name: "Ones",
3700
+ config: {},
3701
+ },
3702
+ beta_regularizer: null,
3703
+ gamma_regularizer: null,
3704
+ beta_constraint: null,
3705
+ gamma_constraint: null,
3706
+ },
3707
+ name: "Conv_1_bn",
3708
+ inbound_nodes: [[["Conv_1", 0, 0, {}]]],
3709
+ },
3710
+ {
3711
+ class_name: "ReLU",
3712
+ config: {
3713
+ name: "out_relu",
3714
+ trainable: true,
3715
+ dtype: "float32",
3716
+ max_value: 6.0,
3717
+ negative_slope: 0.0,
3718
+ threshold: 0.0,
3719
+ },
3720
+ name: "out_relu",
3721
+ inbound_nodes: [[["Conv_1_bn", 0, 0, {}]]],
3722
+ },
3723
+ ],
3724
+ input_layers: [["input_2", 0, 0]],
3725
+ output_layers: [["out_relu", 0, 0]],
3726
+ },
3727
+ name: "mobilenetv2_1.00_224",
3728
+ inbound_nodes: [[["input_1", 0, 0, { training: false }]]],
3729
+ },
3730
+ {
3731
+ class_name: "GlobalAveragePooling2D",
3732
+ config: {
3733
+ name: "global_average_pooling2d",
3734
+ trainable: true,
3735
+ dtype: "float32",
3736
+ data_format: "channels_last",
3737
+ keepdims: false,
3738
+ },
3739
+ name: "global_average_pooling2d",
3740
+ inbound_nodes: [[["mobilenetv2_1.00_224", 1, 0, {}]]],
3741
+ },
3742
+ {
3743
+ class_name: "Dropout",
3744
+ config: {
3745
+ name: "dropout",
3746
+ trainable: true,
3747
+ dtype: "float32",
3748
+ rate: 0.2,
3749
+ noise_shape: null,
3750
+ seed: null,
3751
+ },
3752
+ name: "dropout",
3753
+ inbound_nodes: [[["global_average_pooling2d", 0, 0, {}]]],
3754
+ },
3755
+ {
3756
+ class_name: "Dense",
3757
+ config: {
3758
+ name: "dense",
3759
+ trainable: true,
3760
+ dtype: "float32",
3761
+ units: 127,
3762
+ activation: "softmax",
3763
+ use_bias: true,
3764
+ kernel_initializer: {
3765
+ class_name: "GlorotUniform",
3766
+ config: { seed: null },
3767
+ },
3768
+ bias_initializer: { class_name: "Zeros", config: {} },
3769
+ kernel_regularizer: null,
3770
+ bias_regularizer: null,
3771
+ activity_regularizer: null,
3772
+ kernel_constraint: null,
3773
+ bias_constraint: null,
3774
+ },
3775
+ name: "dense",
3776
+ inbound_nodes: [[["dropout", 0, 0, {}]]],
3777
+ },
3778
+ ],
3779
+ input_layers: [["input_1", 0, 0]],
3780
+ output_layers: [["dense", 0, 0]],
3781
+ },
3782
+ },
3783
+ training_config: {
3784
+ loss: "categorical_crossentropy",
3785
+ metrics: [
3786
+ [
3787
+ {
3788
+ class_name: "MeanMetricWrapper",
3789
+ config: {
3790
+ name: "accuracy",
3791
+ dtype: "float32",
3792
+ fn: "categorical_accuracy",
3793
+ },
3794
+ },
3795
+ ],
3796
+ ],
3797
+ weighted_metrics: null,
3798
+ loss_weights: null,
3799
+ optimizer_config: {
3800
+ class_name: "Custom>Adam",
3801
+ config: {
3802
+ name: "Adam",
3803
+ weight_decay: null,
3804
+ clipnorm: null,
3805
+ global_clipnorm: null,
3806
+ clipvalue: null,
3807
+ use_ema: false,
3808
+ ema_momentum: 0.99,
3809
+ ema_overwrite_frequency: null,
3810
+ jit_compile: true,
3811
+ is_legacy_optimizer: false,
3812
+ learning_rate: {
3813
+ class_name: "ExponentialDecay",
3814
+ config: {
3815
+ initial_learning_rate: 1e-5,
3816
+ decay_steps: 500,
3817
+ decay_rate: 0.96,
3818
+ staircase: true,
3819
+ name: null,
3820
+ },
3821
+ },
3822
+ beta_1: 0.9,
3823
+ beta_2: 0.999,
3824
+ epsilon: 1e-7,
3825
+ amsgrad: false,
3826
+ },
3827
+ },
3828
+ },
3829
+ },
3830
+ weightsManifest: [
3831
+ {
3832
+ paths: ["group1-shard1of1.bin"],
3833
+ weights: [
3834
+ { name: "dense/kernel", shape: [1280, 127], dtype: "float32" },
3835
+ { name: "dense/bias", shape: [127], dtype: "float32" },
3836
+ { name: "Conv1/kernel", shape: [3, 3, 3, 32], dtype: "float32" },
3837
+ { name: "bn_Conv1/gamma", shape: [32], dtype: "float32" },
3838
+ { name: "bn_Conv1/beta", shape: [32], dtype: "float32" },
3839
+ {
3840
+ name: "expanded_conv_depthwise/depthwise_kernel",
3841
+ shape: [3, 3, 32, 1],
3842
+ dtype: "float32",
3843
+ },
3844
+ {
3845
+ name: "expanded_conv_depthwise_BN/gamma",
3846
+ shape: [32],
3847
+ dtype: "float32",
3848
+ },
3849
+ {
3850
+ name: "expanded_conv_depthwise_BN/beta",
3851
+ shape: [32],
3852
+ dtype: "float32",
3853
+ },
3854
+ {
3855
+ name: "expanded_conv_project/kernel",
3856
+ shape: [1, 1, 32, 16],
3857
+ dtype: "float32",
3858
+ },
3859
+ {
3860
+ name: "expanded_conv_project_BN/gamma",
3861
+ shape: [16],
3862
+ dtype: "float32",
3863
+ },
3864
+ {
3865
+ name: "expanded_conv_project_BN/beta",
3866
+ shape: [16],
3867
+ dtype: "float32",
3868
+ },
3869
+ {
3870
+ name: "block_1_expand/kernel",
3871
+ shape: [1, 1, 16, 96],
3872
+ dtype: "float32",
3873
+ },
3874
+ { name: "block_1_expand_BN/gamma", shape: [96], dtype: "float32" },
3875
+ { name: "block_1_expand_BN/beta", shape: [96], dtype: "float32" },
3876
+ {
3877
+ name: "block_1_depthwise/depthwise_kernel",
3878
+ shape: [3, 3, 96, 1],
3879
+ dtype: "float32",
3880
+ },
3881
+ { name: "block_1_depthwise_BN/gamma", shape: [96], dtype: "float32" },
3882
+ { name: "block_1_depthwise_BN/beta", shape: [96], dtype: "float32" },
3883
+ {
3884
+ name: "block_1_project/kernel",
3885
+ shape: [1, 1, 96, 24],
3886
+ dtype: "float32",
3887
+ },
3888
+ { name: "block_1_project_BN/gamma", shape: [24], dtype: "float32" },
3889
+ { name: "block_1_project_BN/beta", shape: [24], dtype: "float32" },
3890
+ {
3891
+ name: "block_2_expand/kernel",
3892
+ shape: [1, 1, 24, 144],
3893
+ dtype: "float32",
3894
+ },
3895
+ { name: "block_2_expand_BN/gamma", shape: [144], dtype: "float32" },
3896
+ { name: "block_2_expand_BN/beta", shape: [144], dtype: "float32" },
3897
+ {
3898
+ name: "block_2_depthwise/depthwise_kernel",
3899
+ shape: [3, 3, 144, 1],
3900
+ dtype: "float32",
3901
+ },
3902
+ { name: "block_2_depthwise_BN/gamma", shape: [144], dtype: "float32" },
3903
+ { name: "block_2_depthwise_BN/beta", shape: [144], dtype: "float32" },
3904
+ {
3905
+ name: "block_2_project/kernel",
3906
+ shape: [1, 1, 144, 24],
3907
+ dtype: "float32",
3908
+ },
3909
+ { name: "block_2_project_BN/gamma", shape: [24], dtype: "float32" },
3910
+ { name: "block_2_project_BN/beta", shape: [24], dtype: "float32" },
3911
+ {
3912
+ name: "block_3_expand/kernel",
3913
+ shape: [1, 1, 24, 144],
3914
+ dtype: "float32",
3915
+ },
3916
+ { name: "block_3_expand_BN/gamma", shape: [144], dtype: "float32" },
3917
+ { name: "block_3_expand_BN/beta", shape: [144], dtype: "float32" },
3918
+ {
3919
+ name: "block_3_depthwise/depthwise_kernel",
3920
+ shape: [3, 3, 144, 1],
3921
+ dtype: "float32",
3922
+ },
3923
+ { name: "block_3_depthwise_BN/gamma", shape: [144], dtype: "float32" },
3924
+ { name: "block_3_depthwise_BN/beta", shape: [144], dtype: "float32" },
3925
+ {
3926
+ name: "block_3_project/kernel",
3927
+ shape: [1, 1, 144, 32],
3928
+ dtype: "float32",
3929
+ },
3930
+ { name: "block_3_project_BN/gamma", shape: [32], dtype: "float32" },
3931
+ { name: "block_3_project_BN/beta", shape: [32], dtype: "float32" },
3932
+ {
3933
+ name: "block_4_expand/kernel",
3934
+ shape: [1, 1, 32, 192],
3935
+ dtype: "float32",
3936
+ },
3937
+ { name: "block_4_expand_BN/gamma", shape: [192], dtype: "float32" },
3938
+ { name: "block_4_expand_BN/beta", shape: [192], dtype: "float32" },
3939
+ {
3940
+ name: "block_4_depthwise/depthwise_kernel",
3941
+ shape: [3, 3, 192, 1],
3942
+ dtype: "float32",
3943
+ },
3944
+ { name: "block_4_depthwise_BN/gamma", shape: [192], dtype: "float32" },
3945
+ { name: "block_4_depthwise_BN/beta", shape: [192], dtype: "float32" },
3946
+ {
3947
+ name: "block_4_project/kernel",
3948
+ shape: [1, 1, 192, 32],
3949
+ dtype: "float32",
3950
+ },
3951
+ { name: "block_4_project_BN/gamma", shape: [32], dtype: "float32" },
3952
+ { name: "block_4_project_BN/beta", shape: [32], dtype: "float32" },
3953
+ {
3954
+ name: "block_5_expand/kernel",
3955
+ shape: [1, 1, 32, 192],
3956
+ dtype: "float32",
3957
+ },
3958
+ { name: "block_5_expand_BN/gamma", shape: [192], dtype: "float32" },
3959
+ { name: "block_5_expand_BN/beta", shape: [192], dtype: "float32" },
3960
+ {
3961
+ name: "block_5_depthwise/depthwise_kernel",
3962
+ shape: [3, 3, 192, 1],
3963
+ dtype: "float32",
3964
+ },
3965
+ { name: "block_5_depthwise_BN/gamma", shape: [192], dtype: "float32" },
3966
+ { name: "block_5_depthwise_BN/beta", shape: [192], dtype: "float32" },
3967
+ {
3968
+ name: "block_5_project/kernel",
3969
+ shape: [1, 1, 192, 32],
3970
+ dtype: "float32",
3971
+ },
3972
+ { name: "block_5_project_BN/gamma", shape: [32], dtype: "float32" },
3973
+ { name: "block_5_project_BN/beta", shape: [32], dtype: "float32" },
3974
+ {
3975
+ name: "block_6_expand/kernel",
3976
+ shape: [1, 1, 32, 192],
3977
+ dtype: "float32",
3978
+ },
3979
+ { name: "block_6_expand_BN/gamma", shape: [192], dtype: "float32" },
3980
+ { name: "block_6_expand_BN/beta", shape: [192], dtype: "float32" },
3981
+ {
3982
+ name: "block_6_depthwise/depthwise_kernel",
3983
+ shape: [3, 3, 192, 1],
3984
+ dtype: "float32",
3985
+ },
3986
+ { name: "block_6_depthwise_BN/gamma", shape: [192], dtype: "float32" },
3987
+ { name: "block_6_depthwise_BN/beta", shape: [192], dtype: "float32" },
3988
+ {
3989
+ name: "block_6_project/kernel",
3990
+ shape: [1, 1, 192, 64],
3991
+ dtype: "float32",
3992
+ },
3993
+ { name: "block_6_project_BN/gamma", shape: [64], dtype: "float32" },
3994
+ { name: "block_6_project_BN/beta", shape: [64], dtype: "float32" },
3995
+ {
3996
+ name: "block_7_expand/kernel",
3997
+ shape: [1, 1, 64, 384],
3998
+ dtype: "float32",
3999
+ },
4000
+ { name: "block_7_expand_BN/gamma", shape: [384], dtype: "float32" },
4001
+ { name: "block_7_expand_BN/beta", shape: [384], dtype: "float32" },
4002
+ {
4003
+ name: "block_7_depthwise/depthwise_kernel",
4004
+ shape: [3, 3, 384, 1],
4005
+ dtype: "float32",
4006
+ },
4007
+ { name: "block_7_depthwise_BN/gamma", shape: [384], dtype: "float32" },
4008
+ { name: "block_7_depthwise_BN/beta", shape: [384], dtype: "float32" },
4009
+ {
4010
+ name: "block_7_project/kernel",
4011
+ shape: [1, 1, 384, 64],
4012
+ dtype: "float32",
4013
+ },
4014
+ { name: "block_7_project_BN/gamma", shape: [64], dtype: "float32" },
4015
+ { name: "block_7_project_BN/beta", shape: [64], dtype: "float32" },
4016
+ {
4017
+ name: "block_8_expand/kernel",
4018
+ shape: [1, 1, 64, 384],
4019
+ dtype: "float32",
4020
+ },
4021
+ { name: "block_8_expand_BN/gamma", shape: [384], dtype: "float32" },
4022
+ { name: "block_8_expand_BN/beta", shape: [384], dtype: "float32" },
4023
+ {
4024
+ name: "block_8_depthwise/depthwise_kernel",
4025
+ shape: [3, 3, 384, 1],
4026
+ dtype: "float32",
4027
+ },
4028
+ { name: "block_8_depthwise_BN/gamma", shape: [384], dtype: "float32" },
4029
+ { name: "block_8_depthwise_BN/beta", shape: [384], dtype: "float32" },
4030
+ {
4031
+ name: "block_8_project/kernel",
4032
+ shape: [1, 1, 384, 64],
4033
+ dtype: "float32",
4034
+ },
4035
+ { name: "block_8_project_BN/gamma", shape: [64], dtype: "float32" },
4036
+ { name: "block_8_project_BN/beta", shape: [64], dtype: "float32" },
4037
+ {
4038
+ name: "block_9_expand/kernel",
4039
+ shape: [1, 1, 64, 384],
4040
+ dtype: "float32",
4041
+ },
4042
+ { name: "block_9_expand_BN/gamma", shape: [384], dtype: "float32" },
4043
+ { name: "block_9_expand_BN/beta", shape: [384], dtype: "float32" },
4044
+ {
4045
+ name: "block_9_depthwise/depthwise_kernel",
4046
+ shape: [3, 3, 384, 1],
4047
+ dtype: "float32",
4048
+ },
4049
+ { name: "block_9_depthwise_BN/gamma", shape: [384], dtype: "float32" },
4050
+ { name: "block_9_depthwise_BN/beta", shape: [384], dtype: "float32" },
4051
+ {
4052
+ name: "block_9_project/kernel",
4053
+ shape: [1, 1, 384, 64],
4054
+ dtype: "float32",
4055
+ },
4056
+ { name: "block_9_project_BN/gamma", shape: [64], dtype: "float32" },
4057
+ { name: "block_9_project_BN/beta", shape: [64], dtype: "float32" },
4058
+ {
4059
+ name: "block_10_expand/kernel",
4060
+ shape: [1, 1, 64, 384],
4061
+ dtype: "float32",
4062
+ },
4063
+ { name: "block_10_expand_BN/gamma", shape: [384], dtype: "float32" },
4064
+ { name: "block_10_expand_BN/beta", shape: [384], dtype: "float32" },
4065
+ {
4066
+ name: "block_10_depthwise/depthwise_kernel",
4067
+ shape: [3, 3, 384, 1],
4068
+ dtype: "float32",
4069
+ },
4070
+ { name: "block_10_depthwise_BN/gamma", shape: [384], dtype: "float32" },
4071
+ { name: "block_10_depthwise_BN/beta", shape: [384], dtype: "float32" },
4072
+ {
4073
+ name: "block_10_project/kernel",
4074
+ shape: [1, 1, 384, 96],
4075
+ dtype: "float32",
4076
+ },
4077
+ { name: "block_10_project_BN/gamma", shape: [96], dtype: "float32" },
4078
+ { name: "block_10_project_BN/beta", shape: [96], dtype: "float32" },
4079
+ {
4080
+ name: "block_11_expand/kernel",
4081
+ shape: [1, 1, 96, 576],
4082
+ dtype: "float32",
4083
+ },
4084
+ { name: "block_11_expand_BN/gamma", shape: [576], dtype: "float32" },
4085
+ { name: "block_11_expand_BN/beta", shape: [576], dtype: "float32" },
4086
+ {
4087
+ name: "block_11_depthwise/depthwise_kernel",
4088
+ shape: [3, 3, 576, 1],
4089
+ dtype: "float32",
4090
+ },
4091
+ { name: "block_11_depthwise_BN/gamma", shape: [576], dtype: "float32" },
4092
+ { name: "block_11_depthwise_BN/beta", shape: [576], dtype: "float32" },
4093
+ {
4094
+ name: "block_11_project/kernel",
4095
+ shape: [1, 1, 576, 96],
4096
+ dtype: "float32",
4097
+ },
4098
+ { name: "block_11_project_BN/gamma", shape: [96], dtype: "float32" },
4099
+ { name: "block_11_project_BN/beta", shape: [96], dtype: "float32" },
4100
+ {
4101
+ name: "block_12_expand/kernel",
4102
+ shape: [1, 1, 96, 576],
4103
+ dtype: "float32",
4104
+ },
4105
+ { name: "block_12_expand_BN/gamma", shape: [576], dtype: "float32" },
4106
+ { name: "block_12_expand_BN/beta", shape: [576], dtype: "float32" },
4107
+ {
4108
+ name: "block_12_depthwise/depthwise_kernel",
4109
+ shape: [3, 3, 576, 1],
4110
+ dtype: "float32",
4111
+ },
4112
+ { name: "block_12_depthwise_BN/gamma", shape: [576], dtype: "float32" },
4113
+ { name: "block_12_depthwise_BN/beta", shape: [576], dtype: "float32" },
4114
+ {
4115
+ name: "block_12_project/kernel",
4116
+ shape: [1, 1, 576, 96],
4117
+ dtype: "float32",
4118
+ },
4119
+ { name: "block_12_project_BN/gamma", shape: [96], dtype: "float32" },
4120
+ { name: "block_12_project_BN/beta", shape: [96], dtype: "float32" },
4121
+ {
4122
+ name: "block_13_expand/kernel",
4123
+ shape: [1, 1, 96, 576],
4124
+ dtype: "float32",
4125
+ },
4126
+ { name: "block_13_expand_BN/gamma", shape: [576], dtype: "float32" },
4127
+ { name: "block_13_expand_BN/beta", shape: [576], dtype: "float32" },
4128
+ {
4129
+ name: "block_13_depthwise/depthwise_kernel",
4130
+ shape: [3, 3, 576, 1],
4131
+ dtype: "float32",
4132
+ },
4133
+ { name: "block_13_depthwise_BN/gamma", shape: [576], dtype: "float32" },
4134
+ { name: "block_13_depthwise_BN/beta", shape: [576], dtype: "float32" },
4135
+ {
4136
+ name: "block_13_project/kernel",
4137
+ shape: [1, 1, 576, 160],
4138
+ dtype: "float32",
4139
+ },
4140
+ { name: "block_13_project_BN/gamma", shape: [160], dtype: "float32" },
4141
+ { name: "block_13_project_BN/beta", shape: [160], dtype: "float32" },
4142
+ {
4143
+ name: "block_14_expand/kernel",
4144
+ shape: [1, 1, 160, 960],
4145
+ dtype: "float32",
4146
+ },
4147
+ { name: "block_14_expand_BN/gamma", shape: [960], dtype: "float32" },
4148
+ { name: "block_14_expand_BN/beta", shape: [960], dtype: "float32" },
4149
+ {
4150
+ name: "block_14_depthwise/depthwise_kernel",
4151
+ shape: [3, 3, 960, 1],
4152
+ dtype: "float32",
4153
+ },
4154
+ { name: "block_14_depthwise_BN/gamma", shape: [960], dtype: "float32" },
4155
+ { name: "block_14_depthwise_BN/beta", shape: [960], dtype: "float32" },
4156
+ {
4157
+ name: "block_14_project/kernel",
4158
+ shape: [1, 1, 960, 160],
4159
+ dtype: "float32",
4160
+ },
4161
+ { name: "block_14_project_BN/gamma", shape: [160], dtype: "float32" },
4162
+ { name: "block_14_project_BN/beta", shape: [160], dtype: "float32" },
4163
+ {
4164
+ name: "block_15_expand/kernel",
4165
+ shape: [1, 1, 160, 960],
4166
+ dtype: "float32",
4167
+ },
4168
+ { name: "block_15_expand_BN/gamma", shape: [960], dtype: "float32" },
4169
+ { name: "block_15_expand_BN/beta", shape: [960], dtype: "float32" },
4170
+ {
4171
+ name: "block_15_depthwise/depthwise_kernel",
4172
+ shape: [3, 3, 960, 1],
4173
+ dtype: "float32",
4174
+ },
4175
+ { name: "block_15_depthwise_BN/gamma", shape: [960], dtype: "float32" },
4176
+ { name: "block_15_depthwise_BN/beta", shape: [960], dtype: "float32" },
4177
+ {
4178
+ name: "block_15_project/kernel",
4179
+ shape: [1, 1, 960, 160],
4180
+ dtype: "float32",
4181
+ },
4182
+ { name: "block_15_project_BN/gamma", shape: [160], dtype: "float32" },
4183
+ { name: "block_15_project_BN/beta", shape: [160], dtype: "float32" },
4184
+ {
4185
+ name: "block_16_expand/kernel",
4186
+ shape: [1, 1, 160, 960],
4187
+ dtype: "float32",
4188
+ },
4189
+ { name: "block_16_expand_BN/gamma", shape: [960], dtype: "float32" },
4190
+ { name: "block_16_expand_BN/beta", shape: [960], dtype: "float32" },
4191
+ {
4192
+ name: "block_16_depthwise/depthwise_kernel",
4193
+ shape: [3, 3, 960, 1],
4194
+ dtype: "float32",
4195
+ },
4196
+ { name: "block_16_depthwise_BN/gamma", shape: [960], dtype: "float32" },
4197
+ { name: "block_16_depthwise_BN/beta", shape: [960], dtype: "float32" },
4198
+ {
4199
+ name: "block_16_project/kernel",
4200
+ shape: [1, 1, 960, 320],
4201
+ dtype: "float32",
4202
+ },
4203
+ { name: "block_16_project_BN/gamma", shape: [320], dtype: "float32" },
4204
+ { name: "block_16_project_BN/beta", shape: [320], dtype: "float32" },
4205
+ { name: "Conv_1/kernel", shape: [1, 1, 320, 1280], dtype: "float32" },
4206
+ { name: "Conv_1_bn/gamma", shape: [1280], dtype: "float32" },
4207
+ { name: "Conv_1_bn/beta", shape: [1280], dtype: "float32" },
4208
+ { name: "bn_Conv1/moving_mean", shape: [32], dtype: "float32" },
4209
+ { name: "bn_Conv1/moving_variance", shape: [32], dtype: "float32" },
4210
+ {
4211
+ name: "expanded_conv_depthwise_BN/moving_mean",
4212
+ shape: [32],
4213
+ dtype: "float32",
4214
+ },
4215
+ {
4216
+ name: "expanded_conv_depthwise_BN/moving_variance",
4217
+ shape: [32],
4218
+ dtype: "float32",
4219
+ },
4220
+ {
4221
+ name: "expanded_conv_project_BN/moving_mean",
4222
+ shape: [16],
4223
+ dtype: "float32",
4224
+ },
4225
+ {
4226
+ name: "expanded_conv_project_BN/moving_variance",
4227
+ shape: [16],
4228
+ dtype: "float32",
4229
+ },
4230
+ {
4231
+ name: "block_1_expand_BN/moving_mean",
4232
+ shape: [96],
4233
+ dtype: "float32",
4234
+ },
4235
+ {
4236
+ name: "block_1_expand_BN/moving_variance",
4237
+ shape: [96],
4238
+ dtype: "float32",
4239
+ },
4240
+ {
4241
+ name: "block_1_depthwise_BN/moving_mean",
4242
+ shape: [96],
4243
+ dtype: "float32",
4244
+ },
4245
+ {
4246
+ name: "block_1_depthwise_BN/moving_variance",
4247
+ shape: [96],
4248
+ dtype: "float32",
4249
+ },
4250
+ {
4251
+ name: "block_1_project_BN/moving_mean",
4252
+ shape: [24],
4253
+ dtype: "float32",
4254
+ },
4255
+ {
4256
+ name: "block_1_project_BN/moving_variance",
4257
+ shape: [24],
4258
+ dtype: "float32",
4259
+ },
4260
+ {
4261
+ name: "block_2_expand_BN/moving_mean",
4262
+ shape: [144],
4263
+ dtype: "float32",
4264
+ },
4265
+ {
4266
+ name: "block_2_expand_BN/moving_variance",
4267
+ shape: [144],
4268
+ dtype: "float32",
4269
+ },
4270
+ {
4271
+ name: "block_2_depthwise_BN/moving_mean",
4272
+ shape: [144],
4273
+ dtype: "float32",
4274
+ },
4275
+ {
4276
+ name: "block_2_depthwise_BN/moving_variance",
4277
+ shape: [144],
4278
+ dtype: "float32",
4279
+ },
4280
+ {
4281
+ name: "block_2_project_BN/moving_mean",
4282
+ shape: [24],
4283
+ dtype: "float32",
4284
+ },
4285
+ {
4286
+ name: "block_2_project_BN/moving_variance",
4287
+ shape: [24],
4288
+ dtype: "float32",
4289
+ },
4290
+ {
4291
+ name: "block_3_expand_BN/moving_mean",
4292
+ shape: [144],
4293
+ dtype: "float32",
4294
+ },
4295
+ {
4296
+ name: "block_3_expand_BN/moving_variance",
4297
+ shape: [144],
4298
+ dtype: "float32",
4299
+ },
4300
+ {
4301
+ name: "block_3_depthwise_BN/moving_mean",
4302
+ shape: [144],
4303
+ dtype: "float32",
4304
+ },
4305
+ {
4306
+ name: "block_3_depthwise_BN/moving_variance",
4307
+ shape: [144],
4308
+ dtype: "float32",
4309
+ },
4310
+ {
4311
+ name: "block_3_project_BN/moving_mean",
4312
+ shape: [32],
4313
+ dtype: "float32",
4314
+ },
4315
+ {
4316
+ name: "block_3_project_BN/moving_variance",
4317
+ shape: [32],
4318
+ dtype: "float32",
4319
+ },
4320
+ {
4321
+ name: "block_4_expand_BN/moving_mean",
4322
+ shape: [192],
4323
+ dtype: "float32",
4324
+ },
4325
+ {
4326
+ name: "block_4_expand_BN/moving_variance",
4327
+ shape: [192],
4328
+ dtype: "float32",
4329
+ },
4330
+ {
4331
+ name: "block_4_depthwise_BN/moving_mean",
4332
+ shape: [192],
4333
+ dtype: "float32",
4334
+ },
4335
+ {
4336
+ name: "block_4_depthwise_BN/moving_variance",
4337
+ shape: [192],
4338
+ dtype: "float32",
4339
+ },
4340
+ {
4341
+ name: "block_4_project_BN/moving_mean",
4342
+ shape: [32],
4343
+ dtype: "float32",
4344
+ },
4345
+ {
4346
+ name: "block_4_project_BN/moving_variance",
4347
+ shape: [32],
4348
+ dtype: "float32",
4349
+ },
4350
+ {
4351
+ name: "block_5_expand_BN/moving_mean",
4352
+ shape: [192],
4353
+ dtype: "float32",
4354
+ },
4355
+ {
4356
+ name: "block_5_expand_BN/moving_variance",
4357
+ shape: [192],
4358
+ dtype: "float32",
4359
+ },
4360
+ {
4361
+ name: "block_5_depthwise_BN/moving_mean",
4362
+ shape: [192],
4363
+ dtype: "float32",
4364
+ },
4365
+ {
4366
+ name: "block_5_depthwise_BN/moving_variance",
4367
+ shape: [192],
4368
+ dtype: "float32",
4369
+ },
4370
+ {
4371
+ name: "block_5_project_BN/moving_mean",
4372
+ shape: [32],
4373
+ dtype: "float32",
4374
+ },
4375
+ {
4376
+ name: "block_5_project_BN/moving_variance",
4377
+ shape: [32],
4378
+ dtype: "float32",
4379
+ },
4380
+ {
4381
+ name: "block_6_expand_BN/moving_mean",
4382
+ shape: [192],
4383
+ dtype: "float32",
4384
+ },
4385
+ {
4386
+ name: "block_6_expand_BN/moving_variance",
4387
+ shape: [192],
4388
+ dtype: "float32",
4389
+ },
4390
+ {
4391
+ name: "block_6_depthwise_BN/moving_mean",
4392
+ shape: [192],
4393
+ dtype: "float32",
4394
+ },
4395
+ {
4396
+ name: "block_6_depthwise_BN/moving_variance",
4397
+ shape: [192],
4398
+ dtype: "float32",
4399
+ },
4400
+ {
4401
+ name: "block_6_project_BN/moving_mean",
4402
+ shape: [64],
4403
+ dtype: "float32",
4404
+ },
4405
+ {
4406
+ name: "block_6_project_BN/moving_variance",
4407
+ shape: [64],
4408
+ dtype: "float32",
4409
+ },
4410
+ {
4411
+ name: "block_7_expand_BN/moving_mean",
4412
+ shape: [384],
4413
+ dtype: "float32",
4414
+ },
4415
+ {
4416
+ name: "block_7_expand_BN/moving_variance",
4417
+ shape: [384],
4418
+ dtype: "float32",
4419
+ },
4420
+ {
4421
+ name: "block_7_depthwise_BN/moving_mean",
4422
+ shape: [384],
4423
+ dtype: "float32",
4424
+ },
4425
+ {
4426
+ name: "block_7_depthwise_BN/moving_variance",
4427
+ shape: [384],
4428
+ dtype: "float32",
4429
+ },
4430
+ {
4431
+ name: "block_7_project_BN/moving_mean",
4432
+ shape: [64],
4433
+ dtype: "float32",
4434
+ },
4435
+ {
4436
+ name: "block_7_project_BN/moving_variance",
4437
+ shape: [64],
4438
+ dtype: "float32",
4439
+ },
4440
+ {
4441
+ name: "block_8_expand_BN/moving_mean",
4442
+ shape: [384],
4443
+ dtype: "float32",
4444
+ },
4445
+ {
4446
+ name: "block_8_expand_BN/moving_variance",
4447
+ shape: [384],
4448
+ dtype: "float32",
4449
+ },
4450
+ {
4451
+ name: "block_8_depthwise_BN/moving_mean",
4452
+ shape: [384],
4453
+ dtype: "float32",
4454
+ },
4455
+ {
4456
+ name: "block_8_depthwise_BN/moving_variance",
4457
+ shape: [384],
4458
+ dtype: "float32",
4459
+ },
4460
+ {
4461
+ name: "block_8_project_BN/moving_mean",
4462
+ shape: [64],
4463
+ dtype: "float32",
4464
+ },
4465
+ {
4466
+ name: "block_8_project_BN/moving_variance",
4467
+ shape: [64],
4468
+ dtype: "float32",
4469
+ },
4470
+ {
4471
+ name: "block_9_expand_BN/moving_mean",
4472
+ shape: [384],
4473
+ dtype: "float32",
4474
+ },
4475
+ {
4476
+ name: "block_9_expand_BN/moving_variance",
4477
+ shape: [384],
4478
+ dtype: "float32",
4479
+ },
4480
+ {
4481
+ name: "block_9_depthwise_BN/moving_mean",
4482
+ shape: [384],
4483
+ dtype: "float32",
4484
+ },
4485
+ {
4486
+ name: "block_9_depthwise_BN/moving_variance",
4487
+ shape: [384],
4488
+ dtype: "float32",
4489
+ },
4490
+ {
4491
+ name: "block_9_project_BN/moving_mean",
4492
+ shape: [64],
4493
+ dtype: "float32",
4494
+ },
4495
+ {
4496
+ name: "block_9_project_BN/moving_variance",
4497
+ shape: [64],
4498
+ dtype: "float32",
4499
+ },
4500
+ {
4501
+ name: "block_10_expand_BN/moving_mean",
4502
+ shape: [384],
4503
+ dtype: "float32",
4504
+ },
4505
+ {
4506
+ name: "block_10_expand_BN/moving_variance",
4507
+ shape: [384],
4508
+ dtype: "float32",
4509
+ },
4510
+ {
4511
+ name: "block_10_depthwise_BN/moving_mean",
4512
+ shape: [384],
4513
+ dtype: "float32",
4514
+ },
4515
+ {
4516
+ name: "block_10_depthwise_BN/moving_variance",
4517
+ shape: [384],
4518
+ dtype: "float32",
4519
+ },
4520
+ {
4521
+ name: "block_10_project_BN/moving_mean",
4522
+ shape: [96],
4523
+ dtype: "float32",
4524
+ },
4525
+ {
4526
+ name: "block_10_project_BN/moving_variance",
4527
+ shape: [96],
4528
+ dtype: "float32",
4529
+ },
4530
+ {
4531
+ name: "block_11_expand_BN/moving_mean",
4532
+ shape: [576],
4533
+ dtype: "float32",
4534
+ },
4535
+ {
4536
+ name: "block_11_expand_BN/moving_variance",
4537
+ shape: [576],
4538
+ dtype: "float32",
4539
+ },
4540
+ {
4541
+ name: "block_11_depthwise_BN/moving_mean",
4542
+ shape: [576],
4543
+ dtype: "float32",
4544
+ },
4545
+ {
4546
+ name: "block_11_depthwise_BN/moving_variance",
4547
+ shape: [576],
4548
+ dtype: "float32",
4549
+ },
4550
+ {
4551
+ name: "block_11_project_BN/moving_mean",
4552
+ shape: [96],
4553
+ dtype: "float32",
4554
+ },
4555
+ {
4556
+ name: "block_11_project_BN/moving_variance",
4557
+ shape: [96],
4558
+ dtype: "float32",
4559
+ },
4560
+ {
4561
+ name: "block_12_expand_BN/moving_mean",
4562
+ shape: [576],
4563
+ dtype: "float32",
4564
+ },
4565
+ {
4566
+ name: "block_12_expand_BN/moving_variance",
4567
+ shape: [576],
4568
+ dtype: "float32",
4569
+ },
4570
+ {
4571
+ name: "block_12_depthwise_BN/moving_mean",
4572
+ shape: [576],
4573
+ dtype: "float32",
4574
+ },
4575
+ {
4576
+ name: "block_12_depthwise_BN/moving_variance",
4577
+ shape: [576],
4578
+ dtype: "float32",
4579
+ },
4580
+ {
4581
+ name: "block_12_project_BN/moving_mean",
4582
+ shape: [96],
4583
+ dtype: "float32",
4584
+ },
4585
+ {
4586
+ name: "block_12_project_BN/moving_variance",
4587
+ shape: [96],
4588
+ dtype: "float32",
4589
+ },
4590
+ {
4591
+ name: "block_13_expand_BN/moving_mean",
4592
+ shape: [576],
4593
+ dtype: "float32",
4594
+ },
4595
+ {
4596
+ name: "block_13_expand_BN/moving_variance",
4597
+ shape: [576],
4598
+ dtype: "float32",
4599
+ },
4600
+ {
4601
+ name: "block_13_depthwise_BN/moving_mean",
4602
+ shape: [576],
4603
+ dtype: "float32",
4604
+ },
4605
+ {
4606
+ name: "block_13_depthwise_BN/moving_variance",
4607
+ shape: [576],
4608
+ dtype: "float32",
4609
+ },
4610
+ {
4611
+ name: "block_13_project_BN/moving_mean",
4612
+ shape: [160],
4613
+ dtype: "float32",
4614
+ },
4615
+ {
4616
+ name: "block_13_project_BN/moving_variance",
4617
+ shape: [160],
4618
+ dtype: "float32",
4619
+ },
4620
+ {
4621
+ name: "block_14_expand_BN/moving_mean",
4622
+ shape: [960],
4623
+ dtype: "float32",
4624
+ },
4625
+ {
4626
+ name: "block_14_expand_BN/moving_variance",
4627
+ shape: [960],
4628
+ dtype: "float32",
4629
+ },
4630
+ {
4631
+ name: "block_14_depthwise_BN/moving_mean",
4632
+ shape: [960],
4633
+ dtype: "float32",
4634
+ },
4635
+ {
4636
+ name: "block_14_depthwise_BN/moving_variance",
4637
+ shape: [960],
4638
+ dtype: "float32",
4639
+ },
4640
+ {
4641
+ name: "block_14_project_BN/moving_mean",
4642
+ shape: [160],
4643
+ dtype: "float32",
4644
+ },
4645
+ {
4646
+ name: "block_14_project_BN/moving_variance",
4647
+ shape: [160],
4648
+ dtype: "float32",
4649
+ },
4650
+ {
4651
+ name: "block_15_expand_BN/moving_mean",
4652
+ shape: [960],
4653
+ dtype: "float32",
4654
+ },
4655
+ {
4656
+ name: "block_15_expand_BN/moving_variance",
4657
+ shape: [960],
4658
+ dtype: "float32",
4659
+ },
4660
+ {
4661
+ name: "block_15_depthwise_BN/moving_mean",
4662
+ shape: [960],
4663
+ dtype: "float32",
4664
+ },
4665
+ {
4666
+ name: "block_15_depthwise_BN/moving_variance",
4667
+ shape: [960],
4668
+ dtype: "float32",
4669
+ },
4670
+ {
4671
+ name: "block_15_project_BN/moving_mean",
4672
+ shape: [160],
4673
+ dtype: "float32",
4674
+ },
4675
+ {
4676
+ name: "block_15_project_BN/moving_variance",
4677
+ shape: [160],
4678
+ dtype: "float32",
4679
+ },
4680
+ {
4681
+ name: "block_16_expand_BN/moving_mean",
4682
+ shape: [960],
4683
+ dtype: "float32",
4684
+ },
4685
+ {
4686
+ name: "block_16_expand_BN/moving_variance",
4687
+ shape: [960],
4688
+ dtype: "float32",
4689
+ },
4690
+ {
4691
+ name: "block_16_depthwise_BN/moving_mean",
4692
+ shape: [960],
4693
+ dtype: "float32",
4694
+ },
4695
+ {
4696
+ name: "block_16_depthwise_BN/moving_variance",
4697
+ shape: [960],
4698
+ dtype: "float32",
4699
+ },
4700
+ {
4701
+ name: "block_16_project_BN/moving_mean",
4702
+ shape: [320],
4703
+ dtype: "float32",
4704
+ },
4705
+ {
4706
+ name: "block_16_project_BN/moving_variance",
4707
+ shape: [320],
4708
+ dtype: "float32",
4709
+ },
4710
+ { name: "Conv_1_bn/moving_mean", shape: [1280], dtype: "float32" },
4711
+ { name: "Conv_1_bn/moving_variance", shape: [1280], dtype: "float32" },
4712
+ ],
4713
+ },
4714
+ ],
4715
+ };