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