@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,2385 @@
1
+ export default {
2
+ modelTopology: {
3
+ keras_version: "2.1.4",
4
+ model_config: {
5
+ class_name: "Model",
6
+ config: {
7
+ layers: [
8
+ {
9
+ class_name: "InputLayer",
10
+ inbound_nodes: [],
11
+ config: {
12
+ dtype: "float32",
13
+ batch_input_shape: [null, 224, 224, 3],
14
+ name: "input_1",
15
+ sparse: false,
16
+ },
17
+ name: "input_1",
18
+ },
19
+ {
20
+ class_name: "Conv2D",
21
+ inbound_nodes: [[["input_1", 0, 0, {}]]],
22
+ config: {
23
+ kernel_initializer: {
24
+ class_name: "VarianceScaling",
25
+ config: {
26
+ distribution: "uniform",
27
+ scale: 1.0,
28
+ seed: null,
29
+ mode: "fan_avg",
30
+ },
31
+ },
32
+ name: "conv1",
33
+ kernel_constraint: null,
34
+ bias_regularizer: null,
35
+ bias_constraint: null,
36
+ activation: "linear",
37
+ trainable: true,
38
+ data_format: "channels_last",
39
+ padding: "same",
40
+ strides: [2, 2],
41
+ dilation_rate: [1, 1],
42
+ kernel_regularizer: null,
43
+ filters: 8,
44
+ bias_initializer: { class_name: "Zeros", config: {} },
45
+ use_bias: false,
46
+ activity_regularizer: null,
47
+ kernel_size: [3, 3],
48
+ },
49
+ name: "conv1",
50
+ },
51
+ {
52
+ class_name: "BatchNormalization",
53
+ inbound_nodes: [[["conv1", 0, 0, {}]]],
54
+ config: {
55
+ gamma_initializer: { class_name: "Ones", config: {} },
56
+ moving_mean_initializer: { class_name: "Zeros", config: {} },
57
+ name: "conv1_bn",
58
+ epsilon: 0.001,
59
+ trainable: true,
60
+ center: true,
61
+ moving_variance_initializer: { class_name: "Ones", config: {} },
62
+ beta_initializer: { class_name: "Zeros", config: {} },
63
+ scale: true,
64
+ gamma_regularizer: null,
65
+ gamma_constraint: null,
66
+ beta_constraint: null,
67
+ beta_regularizer: null,
68
+ momentum: 0.99,
69
+ axis: -1,
70
+ },
71
+ name: "conv1_bn",
72
+ },
73
+ {
74
+ class_name: "Activation",
75
+ inbound_nodes: [[["conv1_bn", 0, 0, {}]]],
76
+ config: {
77
+ activation: "relu6",
78
+ trainable: true,
79
+ name: "conv1_relu",
80
+ },
81
+ name: "conv1_relu",
82
+ },
83
+ {
84
+ class_name: "DepthwiseConv2D",
85
+ inbound_nodes: [[["conv1_relu", 0, 0, {}]]],
86
+ config: {
87
+ padding: "same",
88
+ depth_multiplier: 1,
89
+ name: "conv_dw_1",
90
+ bias_regularizer: null,
91
+ bias_constraint: null,
92
+ activation: "linear",
93
+ trainable: true,
94
+ data_format: "channels_last",
95
+ depthwise_constraint: null,
96
+ strides: [1, 1],
97
+ dilation_rate: [1, 1],
98
+ depthwise_initializer: {
99
+ class_name: "VarianceScaling",
100
+ config: {
101
+ distribution: "uniform",
102
+ scale: 1.0,
103
+ seed: null,
104
+ mode: "fan_avg",
105
+ },
106
+ },
107
+ bias_initializer: { class_name: "Zeros", config: {} },
108
+ depthwise_regularizer: null,
109
+ use_bias: false,
110
+ activity_regularizer: null,
111
+ kernel_size: [3, 3],
112
+ },
113
+ name: "conv_dw_1",
114
+ },
115
+ {
116
+ class_name: "BatchNormalization",
117
+ inbound_nodes: [[["conv_dw_1", 0, 0, {}]]],
118
+ config: {
119
+ gamma_initializer: { class_name: "Ones", config: {} },
120
+ moving_mean_initializer: { class_name: "Zeros", config: {} },
121
+ name: "conv_dw_1_bn",
122
+ epsilon: 0.001,
123
+ trainable: true,
124
+ center: true,
125
+ moving_variance_initializer: { class_name: "Ones", config: {} },
126
+ beta_initializer: { class_name: "Zeros", config: {} },
127
+ scale: true,
128
+ gamma_regularizer: null,
129
+ gamma_constraint: null,
130
+ beta_constraint: null,
131
+ beta_regularizer: null,
132
+ momentum: 0.99,
133
+ axis: -1,
134
+ },
135
+ name: "conv_dw_1_bn",
136
+ },
137
+ {
138
+ class_name: "Activation",
139
+ inbound_nodes: [[["conv_dw_1_bn", 0, 0, {}]]],
140
+ config: {
141
+ activation: "relu6",
142
+ trainable: true,
143
+ name: "conv_dw_1_relu",
144
+ },
145
+ name: "conv_dw_1_relu",
146
+ },
147
+ {
148
+ class_name: "Conv2D",
149
+ inbound_nodes: [[["conv_dw_1_relu", 0, 0, {}]]],
150
+ config: {
151
+ kernel_initializer: {
152
+ class_name: "VarianceScaling",
153
+ config: {
154
+ distribution: "uniform",
155
+ scale: 1.0,
156
+ seed: null,
157
+ mode: "fan_avg",
158
+ },
159
+ },
160
+ name: "conv_pw_1",
161
+ kernel_constraint: null,
162
+ bias_regularizer: null,
163
+ bias_constraint: null,
164
+ activation: "linear",
165
+ trainable: true,
166
+ data_format: "channels_last",
167
+ padding: "same",
168
+ strides: [1, 1],
169
+ dilation_rate: [1, 1],
170
+ kernel_regularizer: null,
171
+ filters: 16,
172
+ bias_initializer: { class_name: "Zeros", config: {} },
173
+ use_bias: false,
174
+ activity_regularizer: null,
175
+ kernel_size: [1, 1],
176
+ },
177
+ name: "conv_pw_1",
178
+ },
179
+ {
180
+ class_name: "BatchNormalization",
181
+ inbound_nodes: [[["conv_pw_1", 0, 0, {}]]],
182
+ config: {
183
+ gamma_initializer: { class_name: "Ones", config: {} },
184
+ moving_mean_initializer: { class_name: "Zeros", config: {} },
185
+ name: "conv_pw_1_bn",
186
+ epsilon: 0.001,
187
+ trainable: true,
188
+ center: true,
189
+ moving_variance_initializer: { class_name: "Ones", config: {} },
190
+ beta_initializer: { class_name: "Zeros", config: {} },
191
+ scale: true,
192
+ gamma_regularizer: null,
193
+ gamma_constraint: null,
194
+ beta_constraint: null,
195
+ beta_regularizer: null,
196
+ momentum: 0.99,
197
+ axis: -1,
198
+ },
199
+ name: "conv_pw_1_bn",
200
+ },
201
+ {
202
+ class_name: "Activation",
203
+ inbound_nodes: [[["conv_pw_1_bn", 0, 0, {}]]],
204
+ config: {
205
+ activation: "relu6",
206
+ trainable: true,
207
+ name: "conv_pw_1_relu",
208
+ },
209
+ name: "conv_pw_1_relu",
210
+ },
211
+ {
212
+ class_name: "DepthwiseConv2D",
213
+ inbound_nodes: [[["conv_pw_1_relu", 0, 0, {}]]],
214
+ config: {
215
+ padding: "same",
216
+ depth_multiplier: 1,
217
+ name: "conv_dw_2",
218
+ bias_regularizer: null,
219
+ bias_constraint: null,
220
+ activation: "linear",
221
+ trainable: true,
222
+ data_format: "channels_last",
223
+ depthwise_constraint: null,
224
+ strides: [2, 2],
225
+ dilation_rate: [1, 1],
226
+ depthwise_initializer: {
227
+ class_name: "VarianceScaling",
228
+ config: {
229
+ distribution: "uniform",
230
+ scale: 1.0,
231
+ seed: null,
232
+ mode: "fan_avg",
233
+ },
234
+ },
235
+ bias_initializer: { class_name: "Zeros", config: {} },
236
+ depthwise_regularizer: null,
237
+ use_bias: false,
238
+ activity_regularizer: null,
239
+ kernel_size: [3, 3],
240
+ },
241
+ name: "conv_dw_2",
242
+ },
243
+ {
244
+ class_name: "BatchNormalization",
245
+ inbound_nodes: [[["conv_dw_2", 0, 0, {}]]],
246
+ config: {
247
+ gamma_initializer: { class_name: "Ones", config: {} },
248
+ moving_mean_initializer: { class_name: "Zeros", config: {} },
249
+ name: "conv_dw_2_bn",
250
+ epsilon: 0.001,
251
+ trainable: true,
252
+ center: true,
253
+ moving_variance_initializer: { class_name: "Ones", config: {} },
254
+ beta_initializer: { class_name: "Zeros", config: {} },
255
+ scale: true,
256
+ gamma_regularizer: null,
257
+ gamma_constraint: null,
258
+ beta_constraint: null,
259
+ beta_regularizer: null,
260
+ momentum: 0.99,
261
+ axis: -1,
262
+ },
263
+ name: "conv_dw_2_bn",
264
+ },
265
+ {
266
+ class_name: "Activation",
267
+ inbound_nodes: [[["conv_dw_2_bn", 0, 0, {}]]],
268
+ config: {
269
+ activation: "relu6",
270
+ trainable: true,
271
+ name: "conv_dw_2_relu",
272
+ },
273
+ name: "conv_dw_2_relu",
274
+ },
275
+ {
276
+ class_name: "Conv2D",
277
+ inbound_nodes: [[["conv_dw_2_relu", 0, 0, {}]]],
278
+ config: {
279
+ kernel_initializer: {
280
+ class_name: "VarianceScaling",
281
+ config: {
282
+ distribution: "uniform",
283
+ scale: 1.0,
284
+ seed: null,
285
+ mode: "fan_avg",
286
+ },
287
+ },
288
+ name: "conv_pw_2",
289
+ kernel_constraint: null,
290
+ bias_regularizer: null,
291
+ bias_constraint: null,
292
+ activation: "linear",
293
+ trainable: true,
294
+ data_format: "channels_last",
295
+ padding: "same",
296
+ strides: [1, 1],
297
+ dilation_rate: [1, 1],
298
+ kernel_regularizer: null,
299
+ filters: 32,
300
+ bias_initializer: { class_name: "Zeros", config: {} },
301
+ use_bias: false,
302
+ activity_regularizer: null,
303
+ kernel_size: [1, 1],
304
+ },
305
+ name: "conv_pw_2",
306
+ },
307
+ {
308
+ class_name: "BatchNormalization",
309
+ inbound_nodes: [[["conv_pw_2", 0, 0, {}]]],
310
+ config: {
311
+ gamma_initializer: { class_name: "Ones", config: {} },
312
+ moving_mean_initializer: { class_name: "Zeros", config: {} },
313
+ name: "conv_pw_2_bn",
314
+ epsilon: 0.001,
315
+ trainable: true,
316
+ center: true,
317
+ moving_variance_initializer: { class_name: "Ones", config: {} },
318
+ beta_initializer: { class_name: "Zeros", config: {} },
319
+ scale: true,
320
+ gamma_regularizer: null,
321
+ gamma_constraint: null,
322
+ beta_constraint: null,
323
+ beta_regularizer: null,
324
+ momentum: 0.99,
325
+ axis: -1,
326
+ },
327
+ name: "conv_pw_2_bn",
328
+ },
329
+ {
330
+ class_name: "Activation",
331
+ inbound_nodes: [[["conv_pw_2_bn", 0, 0, {}]]],
332
+ config: {
333
+ activation: "relu6",
334
+ trainable: true,
335
+ name: "conv_pw_2_relu",
336
+ },
337
+ name: "conv_pw_2_relu",
338
+ },
339
+ {
340
+ class_name: "DepthwiseConv2D",
341
+ inbound_nodes: [[["conv_pw_2_relu", 0, 0, {}]]],
342
+ config: {
343
+ padding: "same",
344
+ depth_multiplier: 1,
345
+ name: "conv_dw_3",
346
+ bias_regularizer: null,
347
+ bias_constraint: null,
348
+ activation: "linear",
349
+ trainable: true,
350
+ data_format: "channels_last",
351
+ depthwise_constraint: null,
352
+ strides: [1, 1],
353
+ dilation_rate: [1, 1],
354
+ depthwise_initializer: {
355
+ class_name: "VarianceScaling",
356
+ config: {
357
+ distribution: "uniform",
358
+ scale: 1.0,
359
+ seed: null,
360
+ mode: "fan_avg",
361
+ },
362
+ },
363
+ bias_initializer: { class_name: "Zeros", config: {} },
364
+ depthwise_regularizer: null,
365
+ use_bias: false,
366
+ activity_regularizer: null,
367
+ kernel_size: [3, 3],
368
+ },
369
+ name: "conv_dw_3",
370
+ },
371
+ {
372
+ class_name: "BatchNormalization",
373
+ inbound_nodes: [[["conv_dw_3", 0, 0, {}]]],
374
+ config: {
375
+ gamma_initializer: { class_name: "Ones", config: {} },
376
+ moving_mean_initializer: { class_name: "Zeros", config: {} },
377
+ name: "conv_dw_3_bn",
378
+ epsilon: 0.001,
379
+ trainable: true,
380
+ center: true,
381
+ moving_variance_initializer: { class_name: "Ones", config: {} },
382
+ beta_initializer: { class_name: "Zeros", config: {} },
383
+ scale: true,
384
+ gamma_regularizer: null,
385
+ gamma_constraint: null,
386
+ beta_constraint: null,
387
+ beta_regularizer: null,
388
+ momentum: 0.99,
389
+ axis: -1,
390
+ },
391
+ name: "conv_dw_3_bn",
392
+ },
393
+ {
394
+ class_name: "Activation",
395
+ inbound_nodes: [[["conv_dw_3_bn", 0, 0, {}]]],
396
+ config: {
397
+ activation: "relu6",
398
+ trainable: true,
399
+ name: "conv_dw_3_relu",
400
+ },
401
+ name: "conv_dw_3_relu",
402
+ },
403
+ {
404
+ class_name: "Conv2D",
405
+ inbound_nodes: [[["conv_dw_3_relu", 0, 0, {}]]],
406
+ config: {
407
+ kernel_initializer: {
408
+ class_name: "VarianceScaling",
409
+ config: {
410
+ distribution: "uniform",
411
+ scale: 1.0,
412
+ seed: null,
413
+ mode: "fan_avg",
414
+ },
415
+ },
416
+ name: "conv_pw_3",
417
+ kernel_constraint: null,
418
+ bias_regularizer: null,
419
+ bias_constraint: null,
420
+ activation: "linear",
421
+ trainable: true,
422
+ data_format: "channels_last",
423
+ padding: "same",
424
+ strides: [1, 1],
425
+ dilation_rate: [1, 1],
426
+ kernel_regularizer: null,
427
+ filters: 32,
428
+ bias_initializer: { class_name: "Zeros", config: {} },
429
+ use_bias: false,
430
+ activity_regularizer: null,
431
+ kernel_size: [1, 1],
432
+ },
433
+ name: "conv_pw_3",
434
+ },
435
+ {
436
+ class_name: "BatchNormalization",
437
+ inbound_nodes: [[["conv_pw_3", 0, 0, {}]]],
438
+ config: {
439
+ gamma_initializer: { class_name: "Ones", config: {} },
440
+ moving_mean_initializer: { class_name: "Zeros", config: {} },
441
+ name: "conv_pw_3_bn",
442
+ epsilon: 0.001,
443
+ trainable: true,
444
+ center: true,
445
+ moving_variance_initializer: { class_name: "Ones", config: {} },
446
+ beta_initializer: { class_name: "Zeros", config: {} },
447
+ scale: true,
448
+ gamma_regularizer: null,
449
+ gamma_constraint: null,
450
+ beta_constraint: null,
451
+ beta_regularizer: null,
452
+ momentum: 0.99,
453
+ axis: -1,
454
+ },
455
+ name: "conv_pw_3_bn",
456
+ },
457
+ {
458
+ class_name: "Activation",
459
+ inbound_nodes: [[["conv_pw_3_bn", 0, 0, {}]]],
460
+ config: {
461
+ activation: "relu6",
462
+ trainable: true,
463
+ name: "conv_pw_3_relu",
464
+ },
465
+ name: "conv_pw_3_relu",
466
+ },
467
+ {
468
+ class_name: "DepthwiseConv2D",
469
+ inbound_nodes: [[["conv_pw_3_relu", 0, 0, {}]]],
470
+ config: {
471
+ padding: "same",
472
+ depth_multiplier: 1,
473
+ name: "conv_dw_4",
474
+ bias_regularizer: null,
475
+ bias_constraint: null,
476
+ activation: "linear",
477
+ trainable: true,
478
+ data_format: "channels_last",
479
+ depthwise_constraint: null,
480
+ strides: [2, 2],
481
+ dilation_rate: [1, 1],
482
+ depthwise_initializer: {
483
+ class_name: "VarianceScaling",
484
+ config: {
485
+ distribution: "uniform",
486
+ scale: 1.0,
487
+ seed: null,
488
+ mode: "fan_avg",
489
+ },
490
+ },
491
+ bias_initializer: { class_name: "Zeros", config: {} },
492
+ depthwise_regularizer: null,
493
+ use_bias: false,
494
+ activity_regularizer: null,
495
+ kernel_size: [3, 3],
496
+ },
497
+ name: "conv_dw_4",
498
+ },
499
+ {
500
+ class_name: "BatchNormalization",
501
+ inbound_nodes: [[["conv_dw_4", 0, 0, {}]]],
502
+ config: {
503
+ gamma_initializer: { class_name: "Ones", config: {} },
504
+ moving_mean_initializer: { class_name: "Zeros", config: {} },
505
+ name: "conv_dw_4_bn",
506
+ epsilon: 0.001,
507
+ trainable: true,
508
+ center: true,
509
+ moving_variance_initializer: { class_name: "Ones", config: {} },
510
+ beta_initializer: { class_name: "Zeros", config: {} },
511
+ scale: true,
512
+ gamma_regularizer: null,
513
+ gamma_constraint: null,
514
+ beta_constraint: null,
515
+ beta_regularizer: null,
516
+ momentum: 0.99,
517
+ axis: -1,
518
+ },
519
+ name: "conv_dw_4_bn",
520
+ },
521
+ {
522
+ class_name: "Activation",
523
+ inbound_nodes: [[["conv_dw_4_bn", 0, 0, {}]]],
524
+ config: {
525
+ activation: "relu6",
526
+ trainable: true,
527
+ name: "conv_dw_4_relu",
528
+ },
529
+ name: "conv_dw_4_relu",
530
+ },
531
+ {
532
+ class_name: "Conv2D",
533
+ inbound_nodes: [[["conv_dw_4_relu", 0, 0, {}]]],
534
+ config: {
535
+ kernel_initializer: {
536
+ class_name: "VarianceScaling",
537
+ config: {
538
+ distribution: "uniform",
539
+ scale: 1.0,
540
+ seed: null,
541
+ mode: "fan_avg",
542
+ },
543
+ },
544
+ name: "conv_pw_4",
545
+ kernel_constraint: null,
546
+ bias_regularizer: null,
547
+ bias_constraint: null,
548
+ activation: "linear",
549
+ trainable: true,
550
+ data_format: "channels_last",
551
+ padding: "same",
552
+ strides: [1, 1],
553
+ dilation_rate: [1, 1],
554
+ kernel_regularizer: null,
555
+ filters: 64,
556
+ bias_initializer: { class_name: "Zeros", config: {} },
557
+ use_bias: false,
558
+ activity_regularizer: null,
559
+ kernel_size: [1, 1],
560
+ },
561
+ name: "conv_pw_4",
562
+ },
563
+ {
564
+ class_name: "BatchNormalization",
565
+ inbound_nodes: [[["conv_pw_4", 0, 0, {}]]],
566
+ config: {
567
+ gamma_initializer: { class_name: "Ones", config: {} },
568
+ moving_mean_initializer: { class_name: "Zeros", config: {} },
569
+ name: "conv_pw_4_bn",
570
+ epsilon: 0.001,
571
+ trainable: true,
572
+ center: true,
573
+ moving_variance_initializer: { class_name: "Ones", config: {} },
574
+ beta_initializer: { class_name: "Zeros", config: {} },
575
+ scale: true,
576
+ gamma_regularizer: null,
577
+ gamma_constraint: null,
578
+ beta_constraint: null,
579
+ beta_regularizer: null,
580
+ momentum: 0.99,
581
+ axis: -1,
582
+ },
583
+ name: "conv_pw_4_bn",
584
+ },
585
+ {
586
+ class_name: "Activation",
587
+ inbound_nodes: [[["conv_pw_4_bn", 0, 0, {}]]],
588
+ config: {
589
+ activation: "relu6",
590
+ trainable: true,
591
+ name: "conv_pw_4_relu",
592
+ },
593
+ name: "conv_pw_4_relu",
594
+ },
595
+ {
596
+ class_name: "DepthwiseConv2D",
597
+ inbound_nodes: [[["conv_pw_4_relu", 0, 0, {}]]],
598
+ config: {
599
+ padding: "same",
600
+ depth_multiplier: 1,
601
+ name: "conv_dw_5",
602
+ bias_regularizer: null,
603
+ bias_constraint: null,
604
+ activation: "linear",
605
+ trainable: true,
606
+ data_format: "channels_last",
607
+ depthwise_constraint: null,
608
+ strides: [1, 1],
609
+ dilation_rate: [1, 1],
610
+ depthwise_initializer: {
611
+ class_name: "VarianceScaling",
612
+ config: {
613
+ distribution: "uniform",
614
+ scale: 1.0,
615
+ seed: null,
616
+ mode: "fan_avg",
617
+ },
618
+ },
619
+ bias_initializer: { class_name: "Zeros", config: {} },
620
+ depthwise_regularizer: null,
621
+ use_bias: false,
622
+ activity_regularizer: null,
623
+ kernel_size: [3, 3],
624
+ },
625
+ name: "conv_dw_5",
626
+ },
627
+ {
628
+ class_name: "BatchNormalization",
629
+ inbound_nodes: [[["conv_dw_5", 0, 0, {}]]],
630
+ config: {
631
+ gamma_initializer: { class_name: "Ones", config: {} },
632
+ moving_mean_initializer: { class_name: "Zeros", config: {} },
633
+ name: "conv_dw_5_bn",
634
+ epsilon: 0.001,
635
+ trainable: true,
636
+ center: true,
637
+ moving_variance_initializer: { class_name: "Ones", config: {} },
638
+ beta_initializer: { class_name: "Zeros", config: {} },
639
+ scale: true,
640
+ gamma_regularizer: null,
641
+ gamma_constraint: null,
642
+ beta_constraint: null,
643
+ beta_regularizer: null,
644
+ momentum: 0.99,
645
+ axis: -1,
646
+ },
647
+ name: "conv_dw_5_bn",
648
+ },
649
+ {
650
+ class_name: "Activation",
651
+ inbound_nodes: [[["conv_dw_5_bn", 0, 0, {}]]],
652
+ config: {
653
+ activation: "relu6",
654
+ trainable: true,
655
+ name: "conv_dw_5_relu",
656
+ },
657
+ name: "conv_dw_5_relu",
658
+ },
659
+ {
660
+ class_name: "Conv2D",
661
+ inbound_nodes: [[["conv_dw_5_relu", 0, 0, {}]]],
662
+ config: {
663
+ kernel_initializer: {
664
+ class_name: "VarianceScaling",
665
+ config: {
666
+ distribution: "uniform",
667
+ scale: 1.0,
668
+ seed: null,
669
+ mode: "fan_avg",
670
+ },
671
+ },
672
+ name: "conv_pw_5",
673
+ kernel_constraint: null,
674
+ bias_regularizer: null,
675
+ bias_constraint: null,
676
+ activation: "linear",
677
+ trainable: true,
678
+ data_format: "channels_last",
679
+ padding: "same",
680
+ strides: [1, 1],
681
+ dilation_rate: [1, 1],
682
+ kernel_regularizer: null,
683
+ filters: 64,
684
+ bias_initializer: { class_name: "Zeros", config: {} },
685
+ use_bias: false,
686
+ activity_regularizer: null,
687
+ kernel_size: [1, 1],
688
+ },
689
+ name: "conv_pw_5",
690
+ },
691
+ {
692
+ class_name: "BatchNormalization",
693
+ inbound_nodes: [[["conv_pw_5", 0, 0, {}]]],
694
+ config: {
695
+ gamma_initializer: { class_name: "Ones", config: {} },
696
+ moving_mean_initializer: { class_name: "Zeros", config: {} },
697
+ name: "conv_pw_5_bn",
698
+ epsilon: 0.001,
699
+ trainable: true,
700
+ center: true,
701
+ moving_variance_initializer: { class_name: "Ones", config: {} },
702
+ beta_initializer: { class_name: "Zeros", config: {} },
703
+ scale: true,
704
+ gamma_regularizer: null,
705
+ gamma_constraint: null,
706
+ beta_constraint: null,
707
+ beta_regularizer: null,
708
+ momentum: 0.99,
709
+ axis: -1,
710
+ },
711
+ name: "conv_pw_5_bn",
712
+ },
713
+ {
714
+ class_name: "Activation",
715
+ inbound_nodes: [[["conv_pw_5_bn", 0, 0, {}]]],
716
+ config: {
717
+ activation: "relu6",
718
+ trainable: true,
719
+ name: "conv_pw_5_relu",
720
+ },
721
+ name: "conv_pw_5_relu",
722
+ },
723
+ {
724
+ class_name: "DepthwiseConv2D",
725
+ inbound_nodes: [[["conv_pw_5_relu", 0, 0, {}]]],
726
+ config: {
727
+ padding: "same",
728
+ depth_multiplier: 1,
729
+ name: "conv_dw_6",
730
+ bias_regularizer: null,
731
+ bias_constraint: null,
732
+ activation: "linear",
733
+ trainable: true,
734
+ data_format: "channels_last",
735
+ depthwise_constraint: null,
736
+ strides: [2, 2],
737
+ dilation_rate: [1, 1],
738
+ depthwise_initializer: {
739
+ class_name: "VarianceScaling",
740
+ config: {
741
+ distribution: "uniform",
742
+ scale: 1.0,
743
+ seed: null,
744
+ mode: "fan_avg",
745
+ },
746
+ },
747
+ bias_initializer: { class_name: "Zeros", config: {} },
748
+ depthwise_regularizer: null,
749
+ use_bias: false,
750
+ activity_regularizer: null,
751
+ kernel_size: [3, 3],
752
+ },
753
+ name: "conv_dw_6",
754
+ },
755
+ {
756
+ class_name: "BatchNormalization",
757
+ inbound_nodes: [[["conv_dw_6", 0, 0, {}]]],
758
+ config: {
759
+ gamma_initializer: { class_name: "Ones", config: {} },
760
+ moving_mean_initializer: { class_name: "Zeros", config: {} },
761
+ name: "conv_dw_6_bn",
762
+ epsilon: 0.001,
763
+ trainable: true,
764
+ center: true,
765
+ moving_variance_initializer: { class_name: "Ones", config: {} },
766
+ beta_initializer: { class_name: "Zeros", config: {} },
767
+ scale: true,
768
+ gamma_regularizer: null,
769
+ gamma_constraint: null,
770
+ beta_constraint: null,
771
+ beta_regularizer: null,
772
+ momentum: 0.99,
773
+ axis: -1,
774
+ },
775
+ name: "conv_dw_6_bn",
776
+ },
777
+ {
778
+ class_name: "Activation",
779
+ inbound_nodes: [[["conv_dw_6_bn", 0, 0, {}]]],
780
+ config: {
781
+ activation: "relu6",
782
+ trainable: true,
783
+ name: "conv_dw_6_relu",
784
+ },
785
+ name: "conv_dw_6_relu",
786
+ },
787
+ {
788
+ class_name: "Conv2D",
789
+ inbound_nodes: [[["conv_dw_6_relu", 0, 0, {}]]],
790
+ config: {
791
+ kernel_initializer: {
792
+ class_name: "VarianceScaling",
793
+ config: {
794
+ distribution: "uniform",
795
+ scale: 1.0,
796
+ seed: null,
797
+ mode: "fan_avg",
798
+ },
799
+ },
800
+ name: "conv_pw_6",
801
+ kernel_constraint: null,
802
+ bias_regularizer: null,
803
+ bias_constraint: null,
804
+ activation: "linear",
805
+ trainable: true,
806
+ data_format: "channels_last",
807
+ padding: "same",
808
+ strides: [1, 1],
809
+ dilation_rate: [1, 1],
810
+ kernel_regularizer: null,
811
+ filters: 128,
812
+ bias_initializer: { class_name: "Zeros", config: {} },
813
+ use_bias: false,
814
+ activity_regularizer: null,
815
+ kernel_size: [1, 1],
816
+ },
817
+ name: "conv_pw_6",
818
+ },
819
+ {
820
+ class_name: "BatchNormalization",
821
+ inbound_nodes: [[["conv_pw_6", 0, 0, {}]]],
822
+ config: {
823
+ gamma_initializer: { class_name: "Ones", config: {} },
824
+ moving_mean_initializer: { class_name: "Zeros", config: {} },
825
+ name: "conv_pw_6_bn",
826
+ epsilon: 0.001,
827
+ trainable: true,
828
+ center: true,
829
+ moving_variance_initializer: { class_name: "Ones", config: {} },
830
+ beta_initializer: { class_name: "Zeros", config: {} },
831
+ scale: true,
832
+ gamma_regularizer: null,
833
+ gamma_constraint: null,
834
+ beta_constraint: null,
835
+ beta_regularizer: null,
836
+ momentum: 0.99,
837
+ axis: -1,
838
+ },
839
+ name: "conv_pw_6_bn",
840
+ },
841
+ {
842
+ class_name: "Activation",
843
+ inbound_nodes: [[["conv_pw_6_bn", 0, 0, {}]]],
844
+ config: {
845
+ activation: "relu6",
846
+ trainable: true,
847
+ name: "conv_pw_6_relu",
848
+ },
849
+ name: "conv_pw_6_relu",
850
+ },
851
+ {
852
+ class_name: "DepthwiseConv2D",
853
+ inbound_nodes: [[["conv_pw_6_relu", 0, 0, {}]]],
854
+ config: {
855
+ padding: "same",
856
+ depth_multiplier: 1,
857
+ name: "conv_dw_7",
858
+ bias_regularizer: null,
859
+ bias_constraint: null,
860
+ activation: "linear",
861
+ trainable: true,
862
+ data_format: "channels_last",
863
+ depthwise_constraint: null,
864
+ strides: [1, 1],
865
+ dilation_rate: [1, 1],
866
+ depthwise_initializer: {
867
+ class_name: "VarianceScaling",
868
+ config: {
869
+ distribution: "uniform",
870
+ scale: 1.0,
871
+ seed: null,
872
+ mode: "fan_avg",
873
+ },
874
+ },
875
+ bias_initializer: { class_name: "Zeros", config: {} },
876
+ depthwise_regularizer: null,
877
+ use_bias: false,
878
+ activity_regularizer: null,
879
+ kernel_size: [3, 3],
880
+ },
881
+ name: "conv_dw_7",
882
+ },
883
+ {
884
+ class_name: "BatchNormalization",
885
+ inbound_nodes: [[["conv_dw_7", 0, 0, {}]]],
886
+ config: {
887
+ gamma_initializer: { class_name: "Ones", config: {} },
888
+ moving_mean_initializer: { class_name: "Zeros", config: {} },
889
+ name: "conv_dw_7_bn",
890
+ epsilon: 0.001,
891
+ trainable: true,
892
+ center: true,
893
+ moving_variance_initializer: { class_name: "Ones", config: {} },
894
+ beta_initializer: { class_name: "Zeros", config: {} },
895
+ scale: true,
896
+ gamma_regularizer: null,
897
+ gamma_constraint: null,
898
+ beta_constraint: null,
899
+ beta_regularizer: null,
900
+ momentum: 0.99,
901
+ axis: -1,
902
+ },
903
+ name: "conv_dw_7_bn",
904
+ },
905
+ {
906
+ class_name: "Activation",
907
+ inbound_nodes: [[["conv_dw_7_bn", 0, 0, {}]]],
908
+ config: {
909
+ activation: "relu6",
910
+ trainable: true,
911
+ name: "conv_dw_7_relu",
912
+ },
913
+ name: "conv_dw_7_relu",
914
+ },
915
+ {
916
+ class_name: "Conv2D",
917
+ inbound_nodes: [[["conv_dw_7_relu", 0, 0, {}]]],
918
+ config: {
919
+ kernel_initializer: {
920
+ class_name: "VarianceScaling",
921
+ config: {
922
+ distribution: "uniform",
923
+ scale: 1.0,
924
+ seed: null,
925
+ mode: "fan_avg",
926
+ },
927
+ },
928
+ name: "conv_pw_7",
929
+ kernel_constraint: null,
930
+ bias_regularizer: null,
931
+ bias_constraint: null,
932
+ activation: "linear",
933
+ trainable: true,
934
+ data_format: "channels_last",
935
+ padding: "same",
936
+ strides: [1, 1],
937
+ dilation_rate: [1, 1],
938
+ kernel_regularizer: null,
939
+ filters: 128,
940
+ bias_initializer: { class_name: "Zeros", config: {} },
941
+ use_bias: false,
942
+ activity_regularizer: null,
943
+ kernel_size: [1, 1],
944
+ },
945
+ name: "conv_pw_7",
946
+ },
947
+ {
948
+ class_name: "BatchNormalization",
949
+ inbound_nodes: [[["conv_pw_7", 0, 0, {}]]],
950
+ config: {
951
+ gamma_initializer: { class_name: "Ones", config: {} },
952
+ moving_mean_initializer: { class_name: "Zeros", config: {} },
953
+ name: "conv_pw_7_bn",
954
+ epsilon: 0.001,
955
+ trainable: true,
956
+ center: true,
957
+ moving_variance_initializer: { class_name: "Ones", config: {} },
958
+ beta_initializer: { class_name: "Zeros", config: {} },
959
+ scale: true,
960
+ gamma_regularizer: null,
961
+ gamma_constraint: null,
962
+ beta_constraint: null,
963
+ beta_regularizer: null,
964
+ momentum: 0.99,
965
+ axis: -1,
966
+ },
967
+ name: "conv_pw_7_bn",
968
+ },
969
+ {
970
+ class_name: "Activation",
971
+ inbound_nodes: [[["conv_pw_7_bn", 0, 0, {}]]],
972
+ config: {
973
+ activation: "relu6",
974
+ trainable: true,
975
+ name: "conv_pw_7_relu",
976
+ },
977
+ name: "conv_pw_7_relu",
978
+ },
979
+ {
980
+ class_name: "DepthwiseConv2D",
981
+ inbound_nodes: [[["conv_pw_7_relu", 0, 0, {}]]],
982
+ config: {
983
+ padding: "same",
984
+ depth_multiplier: 1,
985
+ name: "conv_dw_8",
986
+ bias_regularizer: null,
987
+ bias_constraint: null,
988
+ activation: "linear",
989
+ trainable: true,
990
+ data_format: "channels_last",
991
+ depthwise_constraint: null,
992
+ strides: [1, 1],
993
+ dilation_rate: [1, 1],
994
+ depthwise_initializer: {
995
+ class_name: "VarianceScaling",
996
+ config: {
997
+ distribution: "uniform",
998
+ scale: 1.0,
999
+ seed: null,
1000
+ mode: "fan_avg",
1001
+ },
1002
+ },
1003
+ bias_initializer: { class_name: "Zeros", config: {} },
1004
+ depthwise_regularizer: null,
1005
+ use_bias: false,
1006
+ activity_regularizer: null,
1007
+ kernel_size: [3, 3],
1008
+ },
1009
+ name: "conv_dw_8",
1010
+ },
1011
+ {
1012
+ class_name: "BatchNormalization",
1013
+ inbound_nodes: [[["conv_dw_8", 0, 0, {}]]],
1014
+ config: {
1015
+ gamma_initializer: { class_name: "Ones", config: {} },
1016
+ moving_mean_initializer: { class_name: "Zeros", config: {} },
1017
+ name: "conv_dw_8_bn",
1018
+ epsilon: 0.001,
1019
+ trainable: true,
1020
+ center: true,
1021
+ moving_variance_initializer: { class_name: "Ones", config: {} },
1022
+ beta_initializer: { class_name: "Zeros", config: {} },
1023
+ scale: true,
1024
+ gamma_regularizer: null,
1025
+ gamma_constraint: null,
1026
+ beta_constraint: null,
1027
+ beta_regularizer: null,
1028
+ momentum: 0.99,
1029
+ axis: -1,
1030
+ },
1031
+ name: "conv_dw_8_bn",
1032
+ },
1033
+ {
1034
+ class_name: "Activation",
1035
+ inbound_nodes: [[["conv_dw_8_bn", 0, 0, {}]]],
1036
+ config: {
1037
+ activation: "relu6",
1038
+ trainable: true,
1039
+ name: "conv_dw_8_relu",
1040
+ },
1041
+ name: "conv_dw_8_relu",
1042
+ },
1043
+ {
1044
+ class_name: "Conv2D",
1045
+ inbound_nodes: [[["conv_dw_8_relu", 0, 0, {}]]],
1046
+ config: {
1047
+ kernel_initializer: {
1048
+ class_name: "VarianceScaling",
1049
+ config: {
1050
+ distribution: "uniform",
1051
+ scale: 1.0,
1052
+ seed: null,
1053
+ mode: "fan_avg",
1054
+ },
1055
+ },
1056
+ name: "conv_pw_8",
1057
+ kernel_constraint: null,
1058
+ bias_regularizer: null,
1059
+ bias_constraint: null,
1060
+ activation: "linear",
1061
+ trainable: true,
1062
+ data_format: "channels_last",
1063
+ padding: "same",
1064
+ strides: [1, 1],
1065
+ dilation_rate: [1, 1],
1066
+ kernel_regularizer: null,
1067
+ filters: 128,
1068
+ bias_initializer: { class_name: "Zeros", config: {} },
1069
+ use_bias: false,
1070
+ activity_regularizer: null,
1071
+ kernel_size: [1, 1],
1072
+ },
1073
+ name: "conv_pw_8",
1074
+ },
1075
+ {
1076
+ class_name: "BatchNormalization",
1077
+ inbound_nodes: [[["conv_pw_8", 0, 0, {}]]],
1078
+ config: {
1079
+ gamma_initializer: { class_name: "Ones", config: {} },
1080
+ moving_mean_initializer: { class_name: "Zeros", config: {} },
1081
+ name: "conv_pw_8_bn",
1082
+ epsilon: 0.001,
1083
+ trainable: true,
1084
+ center: true,
1085
+ moving_variance_initializer: { class_name: "Ones", config: {} },
1086
+ beta_initializer: { class_name: "Zeros", config: {} },
1087
+ scale: true,
1088
+ gamma_regularizer: null,
1089
+ gamma_constraint: null,
1090
+ beta_constraint: null,
1091
+ beta_regularizer: null,
1092
+ momentum: 0.99,
1093
+ axis: -1,
1094
+ },
1095
+ name: "conv_pw_8_bn",
1096
+ },
1097
+ {
1098
+ class_name: "Activation",
1099
+ inbound_nodes: [[["conv_pw_8_bn", 0, 0, {}]]],
1100
+ config: {
1101
+ activation: "relu6",
1102
+ trainable: true,
1103
+ name: "conv_pw_8_relu",
1104
+ },
1105
+ name: "conv_pw_8_relu",
1106
+ },
1107
+ {
1108
+ class_name: "DepthwiseConv2D",
1109
+ inbound_nodes: [[["conv_pw_8_relu", 0, 0, {}]]],
1110
+ config: {
1111
+ padding: "same",
1112
+ depth_multiplier: 1,
1113
+ name: "conv_dw_9",
1114
+ bias_regularizer: null,
1115
+ bias_constraint: null,
1116
+ activation: "linear",
1117
+ trainable: true,
1118
+ data_format: "channels_last",
1119
+ depthwise_constraint: null,
1120
+ strides: [1, 1],
1121
+ dilation_rate: [1, 1],
1122
+ depthwise_initializer: {
1123
+ class_name: "VarianceScaling",
1124
+ config: {
1125
+ distribution: "uniform",
1126
+ scale: 1.0,
1127
+ seed: null,
1128
+ mode: "fan_avg",
1129
+ },
1130
+ },
1131
+ bias_initializer: { class_name: "Zeros", config: {} },
1132
+ depthwise_regularizer: null,
1133
+ use_bias: false,
1134
+ activity_regularizer: null,
1135
+ kernel_size: [3, 3],
1136
+ },
1137
+ name: "conv_dw_9",
1138
+ },
1139
+ {
1140
+ class_name: "BatchNormalization",
1141
+ inbound_nodes: [[["conv_dw_9", 0, 0, {}]]],
1142
+ config: {
1143
+ gamma_initializer: { class_name: "Ones", config: {} },
1144
+ moving_mean_initializer: { class_name: "Zeros", config: {} },
1145
+ name: "conv_dw_9_bn",
1146
+ epsilon: 0.001,
1147
+ trainable: true,
1148
+ center: true,
1149
+ moving_variance_initializer: { class_name: "Ones", config: {} },
1150
+ beta_initializer: { class_name: "Zeros", config: {} },
1151
+ scale: true,
1152
+ gamma_regularizer: null,
1153
+ gamma_constraint: null,
1154
+ beta_constraint: null,
1155
+ beta_regularizer: null,
1156
+ momentum: 0.99,
1157
+ axis: -1,
1158
+ },
1159
+ name: "conv_dw_9_bn",
1160
+ },
1161
+ {
1162
+ class_name: "Activation",
1163
+ inbound_nodes: [[["conv_dw_9_bn", 0, 0, {}]]],
1164
+ config: {
1165
+ activation: "relu6",
1166
+ trainable: true,
1167
+ name: "conv_dw_9_relu",
1168
+ },
1169
+ name: "conv_dw_9_relu",
1170
+ },
1171
+ {
1172
+ class_name: "Conv2D",
1173
+ inbound_nodes: [[["conv_dw_9_relu", 0, 0, {}]]],
1174
+ config: {
1175
+ kernel_initializer: {
1176
+ class_name: "VarianceScaling",
1177
+ config: {
1178
+ distribution: "uniform",
1179
+ scale: 1.0,
1180
+ seed: null,
1181
+ mode: "fan_avg",
1182
+ },
1183
+ },
1184
+ name: "conv_pw_9",
1185
+ kernel_constraint: null,
1186
+ bias_regularizer: null,
1187
+ bias_constraint: null,
1188
+ activation: "linear",
1189
+ trainable: true,
1190
+ data_format: "channels_last",
1191
+ padding: "same",
1192
+ strides: [1, 1],
1193
+ dilation_rate: [1, 1],
1194
+ kernel_regularizer: null,
1195
+ filters: 128,
1196
+ bias_initializer: { class_name: "Zeros", config: {} },
1197
+ use_bias: false,
1198
+ activity_regularizer: null,
1199
+ kernel_size: [1, 1],
1200
+ },
1201
+ name: "conv_pw_9",
1202
+ },
1203
+ {
1204
+ class_name: "BatchNormalization",
1205
+ inbound_nodes: [[["conv_pw_9", 0, 0, {}]]],
1206
+ config: {
1207
+ gamma_initializer: { class_name: "Ones", config: {} },
1208
+ moving_mean_initializer: { class_name: "Zeros", config: {} },
1209
+ name: "conv_pw_9_bn",
1210
+ epsilon: 0.001,
1211
+ trainable: true,
1212
+ center: true,
1213
+ moving_variance_initializer: { class_name: "Ones", config: {} },
1214
+ beta_initializer: { class_name: "Zeros", config: {} },
1215
+ scale: true,
1216
+ gamma_regularizer: null,
1217
+ gamma_constraint: null,
1218
+ beta_constraint: null,
1219
+ beta_regularizer: null,
1220
+ momentum: 0.99,
1221
+ axis: -1,
1222
+ },
1223
+ name: "conv_pw_9_bn",
1224
+ },
1225
+ {
1226
+ class_name: "Activation",
1227
+ inbound_nodes: [[["conv_pw_9_bn", 0, 0, {}]]],
1228
+ config: {
1229
+ activation: "relu6",
1230
+ trainable: true,
1231
+ name: "conv_pw_9_relu",
1232
+ },
1233
+ name: "conv_pw_9_relu",
1234
+ },
1235
+ {
1236
+ class_name: "DepthwiseConv2D",
1237
+ inbound_nodes: [[["conv_pw_9_relu", 0, 0, {}]]],
1238
+ config: {
1239
+ padding: "same",
1240
+ depth_multiplier: 1,
1241
+ name: "conv_dw_10",
1242
+ bias_regularizer: null,
1243
+ bias_constraint: null,
1244
+ activation: "linear",
1245
+ trainable: true,
1246
+ data_format: "channels_last",
1247
+ depthwise_constraint: null,
1248
+ strides: [1, 1],
1249
+ dilation_rate: [1, 1],
1250
+ depthwise_initializer: {
1251
+ class_name: "VarianceScaling",
1252
+ config: {
1253
+ distribution: "uniform",
1254
+ scale: 1.0,
1255
+ seed: null,
1256
+ mode: "fan_avg",
1257
+ },
1258
+ },
1259
+ bias_initializer: { class_name: "Zeros", config: {} },
1260
+ depthwise_regularizer: null,
1261
+ use_bias: false,
1262
+ activity_regularizer: null,
1263
+ kernel_size: [3, 3],
1264
+ },
1265
+ name: "conv_dw_10",
1266
+ },
1267
+ {
1268
+ class_name: "BatchNormalization",
1269
+ inbound_nodes: [[["conv_dw_10", 0, 0, {}]]],
1270
+ config: {
1271
+ gamma_initializer: { class_name: "Ones", config: {} },
1272
+ moving_mean_initializer: { class_name: "Zeros", config: {} },
1273
+ name: "conv_dw_10_bn",
1274
+ epsilon: 0.001,
1275
+ trainable: true,
1276
+ center: true,
1277
+ moving_variance_initializer: { class_name: "Ones", config: {} },
1278
+ beta_initializer: { class_name: "Zeros", config: {} },
1279
+ scale: true,
1280
+ gamma_regularizer: null,
1281
+ gamma_constraint: null,
1282
+ beta_constraint: null,
1283
+ beta_regularizer: null,
1284
+ momentum: 0.99,
1285
+ axis: -1,
1286
+ },
1287
+ name: "conv_dw_10_bn",
1288
+ },
1289
+ {
1290
+ class_name: "Activation",
1291
+ inbound_nodes: [[["conv_dw_10_bn", 0, 0, {}]]],
1292
+ config: {
1293
+ activation: "relu6",
1294
+ trainable: true,
1295
+ name: "conv_dw_10_relu",
1296
+ },
1297
+ name: "conv_dw_10_relu",
1298
+ },
1299
+ {
1300
+ class_name: "Conv2D",
1301
+ inbound_nodes: [[["conv_dw_10_relu", 0, 0, {}]]],
1302
+ config: {
1303
+ kernel_initializer: {
1304
+ class_name: "VarianceScaling",
1305
+ config: {
1306
+ distribution: "uniform",
1307
+ scale: 1.0,
1308
+ seed: null,
1309
+ mode: "fan_avg",
1310
+ },
1311
+ },
1312
+ name: "conv_pw_10",
1313
+ kernel_constraint: null,
1314
+ bias_regularizer: null,
1315
+ bias_constraint: null,
1316
+ activation: "linear",
1317
+ trainable: true,
1318
+ data_format: "channels_last",
1319
+ padding: "same",
1320
+ strides: [1, 1],
1321
+ dilation_rate: [1, 1],
1322
+ kernel_regularizer: null,
1323
+ filters: 128,
1324
+ bias_initializer: { class_name: "Zeros", config: {} },
1325
+ use_bias: false,
1326
+ activity_regularizer: null,
1327
+ kernel_size: [1, 1],
1328
+ },
1329
+ name: "conv_pw_10",
1330
+ },
1331
+ {
1332
+ class_name: "BatchNormalization",
1333
+ inbound_nodes: [[["conv_pw_10", 0, 0, {}]]],
1334
+ config: {
1335
+ gamma_initializer: { class_name: "Ones", config: {} },
1336
+ moving_mean_initializer: { class_name: "Zeros", config: {} },
1337
+ name: "conv_pw_10_bn",
1338
+ epsilon: 0.001,
1339
+ trainable: true,
1340
+ center: true,
1341
+ moving_variance_initializer: { class_name: "Ones", config: {} },
1342
+ beta_initializer: { class_name: "Zeros", config: {} },
1343
+ scale: true,
1344
+ gamma_regularizer: null,
1345
+ gamma_constraint: null,
1346
+ beta_constraint: null,
1347
+ beta_regularizer: null,
1348
+ momentum: 0.99,
1349
+ axis: -1,
1350
+ },
1351
+ name: "conv_pw_10_bn",
1352
+ },
1353
+ {
1354
+ class_name: "Activation",
1355
+ inbound_nodes: [[["conv_pw_10_bn", 0, 0, {}]]],
1356
+ config: {
1357
+ activation: "relu6",
1358
+ trainable: true,
1359
+ name: "conv_pw_10_relu",
1360
+ },
1361
+ name: "conv_pw_10_relu",
1362
+ },
1363
+ {
1364
+ class_name: "DepthwiseConv2D",
1365
+ inbound_nodes: [[["conv_pw_10_relu", 0, 0, {}]]],
1366
+ config: {
1367
+ padding: "same",
1368
+ depth_multiplier: 1,
1369
+ name: "conv_dw_11",
1370
+ bias_regularizer: null,
1371
+ bias_constraint: null,
1372
+ activation: "linear",
1373
+ trainable: true,
1374
+ data_format: "channels_last",
1375
+ depthwise_constraint: null,
1376
+ strides: [1, 1],
1377
+ dilation_rate: [1, 1],
1378
+ depthwise_initializer: {
1379
+ class_name: "VarianceScaling",
1380
+ config: {
1381
+ distribution: "uniform",
1382
+ scale: 1.0,
1383
+ seed: null,
1384
+ mode: "fan_avg",
1385
+ },
1386
+ },
1387
+ bias_initializer: { class_name: "Zeros", config: {} },
1388
+ depthwise_regularizer: null,
1389
+ use_bias: false,
1390
+ activity_regularizer: null,
1391
+ kernel_size: [3, 3],
1392
+ },
1393
+ name: "conv_dw_11",
1394
+ },
1395
+ {
1396
+ class_name: "BatchNormalization",
1397
+ inbound_nodes: [[["conv_dw_11", 0, 0, {}]]],
1398
+ config: {
1399
+ gamma_initializer: { class_name: "Ones", config: {} },
1400
+ moving_mean_initializer: { class_name: "Zeros", config: {} },
1401
+ name: "conv_dw_11_bn",
1402
+ epsilon: 0.001,
1403
+ trainable: true,
1404
+ center: true,
1405
+ moving_variance_initializer: { class_name: "Ones", config: {} },
1406
+ beta_initializer: { class_name: "Zeros", config: {} },
1407
+ scale: true,
1408
+ gamma_regularizer: null,
1409
+ gamma_constraint: null,
1410
+ beta_constraint: null,
1411
+ beta_regularizer: null,
1412
+ momentum: 0.99,
1413
+ axis: -1,
1414
+ },
1415
+ name: "conv_dw_11_bn",
1416
+ },
1417
+ {
1418
+ class_name: "Activation",
1419
+ inbound_nodes: [[["conv_dw_11_bn", 0, 0, {}]]],
1420
+ config: {
1421
+ activation: "relu6",
1422
+ trainable: true,
1423
+ name: "conv_dw_11_relu",
1424
+ },
1425
+ name: "conv_dw_11_relu",
1426
+ },
1427
+ {
1428
+ class_name: "Conv2D",
1429
+ inbound_nodes: [[["conv_dw_11_relu", 0, 0, {}]]],
1430
+ config: {
1431
+ kernel_initializer: {
1432
+ class_name: "VarianceScaling",
1433
+ config: {
1434
+ distribution: "uniform",
1435
+ scale: 1.0,
1436
+ seed: null,
1437
+ mode: "fan_avg",
1438
+ },
1439
+ },
1440
+ name: "conv_pw_11",
1441
+ kernel_constraint: null,
1442
+ bias_regularizer: null,
1443
+ bias_constraint: null,
1444
+ activation: "linear",
1445
+ trainable: true,
1446
+ data_format: "channels_last",
1447
+ padding: "same",
1448
+ strides: [1, 1],
1449
+ dilation_rate: [1, 1],
1450
+ kernel_regularizer: null,
1451
+ filters: 128,
1452
+ bias_initializer: { class_name: "Zeros", config: {} },
1453
+ use_bias: false,
1454
+ activity_regularizer: null,
1455
+ kernel_size: [1, 1],
1456
+ },
1457
+ name: "conv_pw_11",
1458
+ },
1459
+ {
1460
+ class_name: "BatchNormalization",
1461
+ inbound_nodes: [[["conv_pw_11", 0, 0, {}]]],
1462
+ config: {
1463
+ gamma_initializer: { class_name: "Ones", config: {} },
1464
+ moving_mean_initializer: { class_name: "Zeros", config: {} },
1465
+ name: "conv_pw_11_bn",
1466
+ epsilon: 0.001,
1467
+ trainable: true,
1468
+ center: true,
1469
+ moving_variance_initializer: { class_name: "Ones", config: {} },
1470
+ beta_initializer: { class_name: "Zeros", config: {} },
1471
+ scale: true,
1472
+ gamma_regularizer: null,
1473
+ gamma_constraint: null,
1474
+ beta_constraint: null,
1475
+ beta_regularizer: null,
1476
+ momentum: 0.99,
1477
+ axis: -1,
1478
+ },
1479
+ name: "conv_pw_11_bn",
1480
+ },
1481
+ {
1482
+ class_name: "Activation",
1483
+ inbound_nodes: [[["conv_pw_11_bn", 0, 0, {}]]],
1484
+ config: {
1485
+ activation: "relu6",
1486
+ trainable: true,
1487
+ name: "conv_pw_11_relu",
1488
+ },
1489
+ name: "conv_pw_11_relu",
1490
+ },
1491
+ {
1492
+ class_name: "DepthwiseConv2D",
1493
+ inbound_nodes: [[["conv_pw_11_relu", 0, 0, {}]]],
1494
+ config: {
1495
+ padding: "same",
1496
+ depth_multiplier: 1,
1497
+ name: "conv_dw_12",
1498
+ bias_regularizer: null,
1499
+ bias_constraint: null,
1500
+ activation: "linear",
1501
+ trainable: true,
1502
+ data_format: "channels_last",
1503
+ depthwise_constraint: null,
1504
+ strides: [2, 2],
1505
+ dilation_rate: [1, 1],
1506
+ depthwise_initializer: {
1507
+ class_name: "VarianceScaling",
1508
+ config: {
1509
+ distribution: "uniform",
1510
+ scale: 1.0,
1511
+ seed: null,
1512
+ mode: "fan_avg",
1513
+ },
1514
+ },
1515
+ bias_initializer: { class_name: "Zeros", config: {} },
1516
+ depthwise_regularizer: null,
1517
+ use_bias: false,
1518
+ activity_regularizer: null,
1519
+ kernel_size: [3, 3],
1520
+ },
1521
+ name: "conv_dw_12",
1522
+ },
1523
+ {
1524
+ class_name: "BatchNormalization",
1525
+ inbound_nodes: [[["conv_dw_12", 0, 0, {}]]],
1526
+ config: {
1527
+ gamma_initializer: { class_name: "Ones", config: {} },
1528
+ moving_mean_initializer: { class_name: "Zeros", config: {} },
1529
+ name: "conv_dw_12_bn",
1530
+ epsilon: 0.001,
1531
+ trainable: true,
1532
+ center: true,
1533
+ moving_variance_initializer: { class_name: "Ones", config: {} },
1534
+ beta_initializer: { class_name: "Zeros", config: {} },
1535
+ scale: true,
1536
+ gamma_regularizer: null,
1537
+ gamma_constraint: null,
1538
+ beta_constraint: null,
1539
+ beta_regularizer: null,
1540
+ momentum: 0.99,
1541
+ axis: -1,
1542
+ },
1543
+ name: "conv_dw_12_bn",
1544
+ },
1545
+ {
1546
+ class_name: "Activation",
1547
+ inbound_nodes: [[["conv_dw_12_bn", 0, 0, {}]]],
1548
+ config: {
1549
+ activation: "relu6",
1550
+ trainable: true,
1551
+ name: "conv_dw_12_relu",
1552
+ },
1553
+ name: "conv_dw_12_relu",
1554
+ },
1555
+ {
1556
+ class_name: "Conv2D",
1557
+ inbound_nodes: [[["conv_dw_12_relu", 0, 0, {}]]],
1558
+ config: {
1559
+ kernel_initializer: {
1560
+ class_name: "VarianceScaling",
1561
+ config: {
1562
+ distribution: "uniform",
1563
+ scale: 1.0,
1564
+ seed: null,
1565
+ mode: "fan_avg",
1566
+ },
1567
+ },
1568
+ name: "conv_pw_12",
1569
+ kernel_constraint: null,
1570
+ bias_regularizer: null,
1571
+ bias_constraint: null,
1572
+ activation: "linear",
1573
+ trainable: true,
1574
+ data_format: "channels_last",
1575
+ padding: "same",
1576
+ strides: [1, 1],
1577
+ dilation_rate: [1, 1],
1578
+ kernel_regularizer: null,
1579
+ filters: 256,
1580
+ bias_initializer: { class_name: "Zeros", config: {} },
1581
+ use_bias: false,
1582
+ activity_regularizer: null,
1583
+ kernel_size: [1, 1],
1584
+ },
1585
+ name: "conv_pw_12",
1586
+ },
1587
+ {
1588
+ class_name: "BatchNormalization",
1589
+ inbound_nodes: [[["conv_pw_12", 0, 0, {}]]],
1590
+ config: {
1591
+ gamma_initializer: { class_name: "Ones", config: {} },
1592
+ moving_mean_initializer: { class_name: "Zeros", config: {} },
1593
+ name: "conv_pw_12_bn",
1594
+ epsilon: 0.001,
1595
+ trainable: true,
1596
+ center: true,
1597
+ moving_variance_initializer: { class_name: "Ones", config: {} },
1598
+ beta_initializer: { class_name: "Zeros", config: {} },
1599
+ scale: true,
1600
+ gamma_regularizer: null,
1601
+ gamma_constraint: null,
1602
+ beta_constraint: null,
1603
+ beta_regularizer: null,
1604
+ momentum: 0.99,
1605
+ axis: -1,
1606
+ },
1607
+ name: "conv_pw_12_bn",
1608
+ },
1609
+ {
1610
+ class_name: "Activation",
1611
+ inbound_nodes: [[["conv_pw_12_bn", 0, 0, {}]]],
1612
+ config: {
1613
+ activation: "relu6",
1614
+ trainable: true,
1615
+ name: "conv_pw_12_relu",
1616
+ },
1617
+ name: "conv_pw_12_relu",
1618
+ },
1619
+ {
1620
+ class_name: "DepthwiseConv2D",
1621
+ inbound_nodes: [[["conv_pw_12_relu", 0, 0, {}]]],
1622
+ config: {
1623
+ padding: "same",
1624
+ depth_multiplier: 1,
1625
+ name: "conv_dw_13",
1626
+ bias_regularizer: null,
1627
+ bias_constraint: null,
1628
+ activation: "linear",
1629
+ trainable: true,
1630
+ data_format: "channels_last",
1631
+ depthwise_constraint: null,
1632
+ strides: [1, 1],
1633
+ dilation_rate: [1, 1],
1634
+ depthwise_initializer: {
1635
+ class_name: "VarianceScaling",
1636
+ config: {
1637
+ distribution: "uniform",
1638
+ scale: 1.0,
1639
+ seed: null,
1640
+ mode: "fan_avg",
1641
+ },
1642
+ },
1643
+ bias_initializer: { class_name: "Zeros", config: {} },
1644
+ depthwise_regularizer: null,
1645
+ use_bias: false,
1646
+ activity_regularizer: null,
1647
+ kernel_size: [3, 3],
1648
+ },
1649
+ name: "conv_dw_13",
1650
+ },
1651
+ {
1652
+ class_name: "BatchNormalization",
1653
+ inbound_nodes: [[["conv_dw_13", 0, 0, {}]]],
1654
+ config: {
1655
+ gamma_initializer: { class_name: "Ones", config: {} },
1656
+ moving_mean_initializer: { class_name: "Zeros", config: {} },
1657
+ name: "conv_dw_13_bn",
1658
+ epsilon: 0.001,
1659
+ trainable: true,
1660
+ center: true,
1661
+ moving_variance_initializer: { class_name: "Ones", config: {} },
1662
+ beta_initializer: { class_name: "Zeros", config: {} },
1663
+ scale: true,
1664
+ gamma_regularizer: null,
1665
+ gamma_constraint: null,
1666
+ beta_constraint: null,
1667
+ beta_regularizer: null,
1668
+ momentum: 0.99,
1669
+ axis: -1,
1670
+ },
1671
+ name: "conv_dw_13_bn",
1672
+ },
1673
+ {
1674
+ class_name: "Activation",
1675
+ inbound_nodes: [[["conv_dw_13_bn", 0, 0, {}]]],
1676
+ config: {
1677
+ activation: "relu6",
1678
+ trainable: true,
1679
+ name: "conv_dw_13_relu",
1680
+ },
1681
+ name: "conv_dw_13_relu",
1682
+ },
1683
+ {
1684
+ class_name: "Conv2D",
1685
+ inbound_nodes: [[["conv_dw_13_relu", 0, 0, {}]]],
1686
+ config: {
1687
+ kernel_initializer: {
1688
+ class_name: "VarianceScaling",
1689
+ config: {
1690
+ distribution: "uniform",
1691
+ scale: 1.0,
1692
+ seed: null,
1693
+ mode: "fan_avg",
1694
+ },
1695
+ },
1696
+ name: "conv_pw_13",
1697
+ kernel_constraint: null,
1698
+ bias_regularizer: null,
1699
+ bias_constraint: null,
1700
+ activation: "linear",
1701
+ trainable: true,
1702
+ data_format: "channels_last",
1703
+ padding: "same",
1704
+ strides: [1, 1],
1705
+ dilation_rate: [1, 1],
1706
+ kernel_regularizer: null,
1707
+ filters: 256,
1708
+ bias_initializer: { class_name: "Zeros", config: {} },
1709
+ use_bias: false,
1710
+ activity_regularizer: null,
1711
+ kernel_size: [1, 1],
1712
+ },
1713
+ name: "conv_pw_13",
1714
+ },
1715
+ {
1716
+ class_name: "BatchNormalization",
1717
+ inbound_nodes: [[["conv_pw_13", 0, 0, {}]]],
1718
+ config: {
1719
+ gamma_initializer: { class_name: "Ones", config: {} },
1720
+ moving_mean_initializer: { class_name: "Zeros", config: {} },
1721
+ name: "conv_pw_13_bn",
1722
+ epsilon: 0.001,
1723
+ trainable: true,
1724
+ center: true,
1725
+ moving_variance_initializer: { class_name: "Ones", config: {} },
1726
+ beta_initializer: { class_name: "Zeros", config: {} },
1727
+ scale: true,
1728
+ gamma_regularizer: null,
1729
+ gamma_constraint: null,
1730
+ beta_constraint: null,
1731
+ beta_regularizer: null,
1732
+ momentum: 0.99,
1733
+ axis: -1,
1734
+ },
1735
+ name: "conv_pw_13_bn",
1736
+ },
1737
+ {
1738
+ class_name: "Activation",
1739
+ inbound_nodes: [[["conv_pw_13_bn", 0, 0, {}]]],
1740
+ config: {
1741
+ activation: "relu6",
1742
+ trainable: true,
1743
+ name: "conv_pw_13_relu",
1744
+ },
1745
+ name: "conv_pw_13_relu",
1746
+ },
1747
+ {
1748
+ class_name: "GlobalAveragePooling2D",
1749
+ inbound_nodes: [[["conv_pw_13_relu", 0, 0, {}]]],
1750
+ config: {
1751
+ trainable: true,
1752
+ name: "global_average_pooling2d_1",
1753
+ data_format: "channels_last",
1754
+ },
1755
+ name: "global_average_pooling2d_1",
1756
+ },
1757
+ {
1758
+ class_name: "Reshape",
1759
+ inbound_nodes: [[["global_average_pooling2d_1", 0, 0, {}]]],
1760
+ config: {
1761
+ target_shape: [1, 1, 256],
1762
+ trainable: true,
1763
+ name: "reshape_1",
1764
+ },
1765
+ name: "reshape_1",
1766
+ },
1767
+ {
1768
+ class_name: "Dropout",
1769
+ inbound_nodes: [[["reshape_1", 0, 0, {}]]],
1770
+ config: {
1771
+ rate: 0.001,
1772
+ noise_shape: null,
1773
+ trainable: true,
1774
+ seed: null,
1775
+ name: "dropout",
1776
+ },
1777
+ name: "dropout",
1778
+ },
1779
+ {
1780
+ class_name: "Conv2D",
1781
+ inbound_nodes: [[["dropout", 0, 0, {}]]],
1782
+ config: {
1783
+ kernel_initializer: {
1784
+ class_name: "VarianceScaling",
1785
+ config: {
1786
+ distribution: "uniform",
1787
+ scale: 1.0,
1788
+ seed: null,
1789
+ mode: "fan_avg",
1790
+ },
1791
+ },
1792
+ name: "conv_preds",
1793
+ kernel_constraint: null,
1794
+ bias_regularizer: null,
1795
+ bias_constraint: null,
1796
+ activation: "linear",
1797
+ trainable: true,
1798
+ data_format: "channels_last",
1799
+ padding: "same",
1800
+ strides: [1, 1],
1801
+ dilation_rate: [1, 1],
1802
+ kernel_regularizer: null,
1803
+ filters: 1000,
1804
+ bias_initializer: { class_name: "Zeros", config: {} },
1805
+ use_bias: true,
1806
+ activity_regularizer: null,
1807
+ kernel_size: [1, 1],
1808
+ },
1809
+ name: "conv_preds",
1810
+ },
1811
+ {
1812
+ class_name: "Activation",
1813
+ inbound_nodes: [[["conv_preds", 0, 0, {}]]],
1814
+ config: {
1815
+ activation: "softmax",
1816
+ trainable: true,
1817
+ name: "act_softmax",
1818
+ },
1819
+ name: "act_softmax",
1820
+ },
1821
+ {
1822
+ class_name: "Reshape",
1823
+ inbound_nodes: [[["act_softmax", 0, 0, {}]]],
1824
+ config: {
1825
+ target_shape: [1000],
1826
+ trainable: true,
1827
+ name: "reshape_2",
1828
+ },
1829
+ name: "reshape_2",
1830
+ },
1831
+ ],
1832
+ input_layers: [["input_1", 0, 0]],
1833
+ name: "mobilenet_0.25_224",
1834
+ output_layers: [["reshape_2", 0, 0]],
1835
+ },
1836
+ },
1837
+ backend: "tensorflow",
1838
+ },
1839
+ weightsManifest: [
1840
+ {
1841
+ paths: ["group1-shard1of1"],
1842
+ weights: [
1843
+ { dtype: "float32", shape: [3, 3, 3, 8], name: "conv1/kernel" },
1844
+ ],
1845
+ },
1846
+ {
1847
+ paths: ["group2-shard1of1"],
1848
+ weights: [
1849
+ { dtype: "float32", shape: [8], name: "conv1_bn/gamma" },
1850
+ { dtype: "float32", shape: [8], name: "conv1_bn/beta" },
1851
+ { dtype: "float32", shape: [8], name: "conv1_bn/moving_mean" },
1852
+ { dtype: "float32", shape: [8], name: "conv1_bn/moving_variance" },
1853
+ ],
1854
+ },
1855
+ {
1856
+ paths: ["group3-shard1of1"],
1857
+ weights: [
1858
+ {
1859
+ dtype: "float32",
1860
+ shape: [3, 3, 8, 1],
1861
+ name: "conv_dw_1/depthwise_kernel",
1862
+ },
1863
+ ],
1864
+ },
1865
+ {
1866
+ paths: ["group4-shard1of1"],
1867
+ weights: [
1868
+ {
1869
+ dtype: "float32",
1870
+ shape: [3, 3, 128, 1],
1871
+ name: "conv_dw_10/depthwise_kernel",
1872
+ },
1873
+ ],
1874
+ },
1875
+ {
1876
+ paths: ["group5-shard1of1"],
1877
+ weights: [
1878
+ { dtype: "float32", shape: [128], name: "conv_dw_10_bn/gamma" },
1879
+ { dtype: "float32", shape: [128], name: "conv_dw_10_bn/beta" },
1880
+ { dtype: "float32", shape: [128], name: "conv_dw_10_bn/moving_mean" },
1881
+ {
1882
+ dtype: "float32",
1883
+ shape: [128],
1884
+ name: "conv_dw_10_bn/moving_variance",
1885
+ },
1886
+ ],
1887
+ },
1888
+ {
1889
+ paths: ["group6-shard1of1"],
1890
+ weights: [
1891
+ {
1892
+ dtype: "float32",
1893
+ shape: [3, 3, 128, 1],
1894
+ name: "conv_dw_11/depthwise_kernel",
1895
+ },
1896
+ ],
1897
+ },
1898
+ {
1899
+ paths: ["group7-shard1of1"],
1900
+ weights: [
1901
+ { dtype: "float32", shape: [128], name: "conv_dw_11_bn/gamma" },
1902
+ { dtype: "float32", shape: [128], name: "conv_dw_11_bn/beta" },
1903
+ { dtype: "float32", shape: [128], name: "conv_dw_11_bn/moving_mean" },
1904
+ {
1905
+ dtype: "float32",
1906
+ shape: [128],
1907
+ name: "conv_dw_11_bn/moving_variance",
1908
+ },
1909
+ ],
1910
+ },
1911
+ {
1912
+ paths: ["group8-shard1of1"],
1913
+ weights: [
1914
+ {
1915
+ dtype: "float32",
1916
+ shape: [3, 3, 128, 1],
1917
+ name: "conv_dw_12/depthwise_kernel",
1918
+ },
1919
+ ],
1920
+ },
1921
+ {
1922
+ paths: ["group9-shard1of1"],
1923
+ weights: [
1924
+ { dtype: "float32", shape: [128], name: "conv_dw_12_bn/gamma" },
1925
+ { dtype: "float32", shape: [128], name: "conv_dw_12_bn/beta" },
1926
+ { dtype: "float32", shape: [128], name: "conv_dw_12_bn/moving_mean" },
1927
+ {
1928
+ dtype: "float32",
1929
+ shape: [128],
1930
+ name: "conv_dw_12_bn/moving_variance",
1931
+ },
1932
+ ],
1933
+ },
1934
+ {
1935
+ paths: ["group10-shard1of1"],
1936
+ weights: [
1937
+ {
1938
+ dtype: "float32",
1939
+ shape: [3, 3, 256, 1],
1940
+ name: "conv_dw_13/depthwise_kernel",
1941
+ },
1942
+ ],
1943
+ },
1944
+ {
1945
+ paths: ["group11-shard1of1"],
1946
+ weights: [
1947
+ { dtype: "float32", shape: [256], name: "conv_dw_13_bn/gamma" },
1948
+ { dtype: "float32", shape: [256], name: "conv_dw_13_bn/beta" },
1949
+ { dtype: "float32", shape: [256], name: "conv_dw_13_bn/moving_mean" },
1950
+ {
1951
+ dtype: "float32",
1952
+ shape: [256],
1953
+ name: "conv_dw_13_bn/moving_variance",
1954
+ },
1955
+ ],
1956
+ },
1957
+ {
1958
+ paths: ["group12-shard1of1"],
1959
+ weights: [
1960
+ { dtype: "float32", shape: [8], name: "conv_dw_1_bn/gamma" },
1961
+ { dtype: "float32", shape: [8], name: "conv_dw_1_bn/beta" },
1962
+ { dtype: "float32", shape: [8], name: "conv_dw_1_bn/moving_mean" },
1963
+ { dtype: "float32", shape: [8], name: "conv_dw_1_bn/moving_variance" },
1964
+ ],
1965
+ },
1966
+ {
1967
+ paths: ["group13-shard1of1"],
1968
+ weights: [
1969
+ {
1970
+ dtype: "float32",
1971
+ shape: [3, 3, 16, 1],
1972
+ name: "conv_dw_2/depthwise_kernel",
1973
+ },
1974
+ ],
1975
+ },
1976
+ {
1977
+ paths: ["group14-shard1of1"],
1978
+ weights: [
1979
+ { dtype: "float32", shape: [16], name: "conv_dw_2_bn/gamma" },
1980
+ { dtype: "float32", shape: [16], name: "conv_dw_2_bn/beta" },
1981
+ { dtype: "float32", shape: [16], name: "conv_dw_2_bn/moving_mean" },
1982
+ { dtype: "float32", shape: [16], name: "conv_dw_2_bn/moving_variance" },
1983
+ ],
1984
+ },
1985
+ {
1986
+ paths: ["group15-shard1of1"],
1987
+ weights: [
1988
+ {
1989
+ dtype: "float32",
1990
+ shape: [3, 3, 32, 1],
1991
+ name: "conv_dw_3/depthwise_kernel",
1992
+ },
1993
+ ],
1994
+ },
1995
+ {
1996
+ paths: ["group16-shard1of1"],
1997
+ weights: [
1998
+ { dtype: "float32", shape: [32], name: "conv_dw_3_bn/gamma" },
1999
+ { dtype: "float32", shape: [32], name: "conv_dw_3_bn/beta" },
2000
+ { dtype: "float32", shape: [32], name: "conv_dw_3_bn/moving_mean" },
2001
+ { dtype: "float32", shape: [32], name: "conv_dw_3_bn/moving_variance" },
2002
+ ],
2003
+ },
2004
+ {
2005
+ paths: ["group17-shard1of1"],
2006
+ weights: [
2007
+ {
2008
+ dtype: "float32",
2009
+ shape: [3, 3, 32, 1],
2010
+ name: "conv_dw_4/depthwise_kernel",
2011
+ },
2012
+ ],
2013
+ },
2014
+ {
2015
+ paths: ["group18-shard1of1"],
2016
+ weights: [
2017
+ { dtype: "float32", shape: [32], name: "conv_dw_4_bn/gamma" },
2018
+ { dtype: "float32", shape: [32], name: "conv_dw_4_bn/beta" },
2019
+ { dtype: "float32", shape: [32], name: "conv_dw_4_bn/moving_mean" },
2020
+ { dtype: "float32", shape: [32], name: "conv_dw_4_bn/moving_variance" },
2021
+ ],
2022
+ },
2023
+ {
2024
+ paths: ["group19-shard1of1"],
2025
+ weights: [
2026
+ {
2027
+ dtype: "float32",
2028
+ shape: [3, 3, 64, 1],
2029
+ name: "conv_dw_5/depthwise_kernel",
2030
+ },
2031
+ ],
2032
+ },
2033
+ {
2034
+ paths: ["group20-shard1of1"],
2035
+ weights: [
2036
+ { dtype: "float32", shape: [64], name: "conv_dw_5_bn/gamma" },
2037
+ { dtype: "float32", shape: [64], name: "conv_dw_5_bn/beta" },
2038
+ { dtype: "float32", shape: [64], name: "conv_dw_5_bn/moving_mean" },
2039
+ { dtype: "float32", shape: [64], name: "conv_dw_5_bn/moving_variance" },
2040
+ ],
2041
+ },
2042
+ {
2043
+ paths: ["group21-shard1of1"],
2044
+ weights: [
2045
+ {
2046
+ dtype: "float32",
2047
+ shape: [3, 3, 64, 1],
2048
+ name: "conv_dw_6/depthwise_kernel",
2049
+ },
2050
+ ],
2051
+ },
2052
+ {
2053
+ paths: ["group22-shard1of1"],
2054
+ weights: [
2055
+ { dtype: "float32", shape: [64], name: "conv_dw_6_bn/gamma" },
2056
+ { dtype: "float32", shape: [64], name: "conv_dw_6_bn/beta" },
2057
+ { dtype: "float32", shape: [64], name: "conv_dw_6_bn/moving_mean" },
2058
+ { dtype: "float32", shape: [64], name: "conv_dw_6_bn/moving_variance" },
2059
+ ],
2060
+ },
2061
+ {
2062
+ paths: ["group23-shard1of1"],
2063
+ weights: [
2064
+ {
2065
+ dtype: "float32",
2066
+ shape: [3, 3, 128, 1],
2067
+ name: "conv_dw_7/depthwise_kernel",
2068
+ },
2069
+ ],
2070
+ },
2071
+ {
2072
+ paths: ["group24-shard1of1"],
2073
+ weights: [
2074
+ { dtype: "float32", shape: [128], name: "conv_dw_7_bn/gamma" },
2075
+ { dtype: "float32", shape: [128], name: "conv_dw_7_bn/beta" },
2076
+ { dtype: "float32", shape: [128], name: "conv_dw_7_bn/moving_mean" },
2077
+ {
2078
+ dtype: "float32",
2079
+ shape: [128],
2080
+ name: "conv_dw_7_bn/moving_variance",
2081
+ },
2082
+ ],
2083
+ },
2084
+ {
2085
+ paths: ["group25-shard1of1"],
2086
+ weights: [
2087
+ {
2088
+ dtype: "float32",
2089
+ shape: [3, 3, 128, 1],
2090
+ name: "conv_dw_8/depthwise_kernel",
2091
+ },
2092
+ ],
2093
+ },
2094
+ {
2095
+ paths: ["group26-shard1of1"],
2096
+ weights: [
2097
+ { dtype: "float32", shape: [128], name: "conv_dw_8_bn/gamma" },
2098
+ { dtype: "float32", shape: [128], name: "conv_dw_8_bn/beta" },
2099
+ { dtype: "float32", shape: [128], name: "conv_dw_8_bn/moving_mean" },
2100
+ {
2101
+ dtype: "float32",
2102
+ shape: [128],
2103
+ name: "conv_dw_8_bn/moving_variance",
2104
+ },
2105
+ ],
2106
+ },
2107
+ {
2108
+ paths: ["group27-shard1of1"],
2109
+ weights: [
2110
+ {
2111
+ dtype: "float32",
2112
+ shape: [3, 3, 128, 1],
2113
+ name: "conv_dw_9/depthwise_kernel",
2114
+ },
2115
+ ],
2116
+ },
2117
+ {
2118
+ paths: ["group28-shard1of1"],
2119
+ weights: [
2120
+ { dtype: "float32", shape: [128], name: "conv_dw_9_bn/gamma" },
2121
+ { dtype: "float32", shape: [128], name: "conv_dw_9_bn/beta" },
2122
+ { dtype: "float32", shape: [128], name: "conv_dw_9_bn/moving_mean" },
2123
+ {
2124
+ dtype: "float32",
2125
+ shape: [128],
2126
+ name: "conv_dw_9_bn/moving_variance",
2127
+ },
2128
+ ],
2129
+ },
2130
+ {
2131
+ paths: ["group29-shard1of1"],
2132
+ weights: [
2133
+ {
2134
+ dtype: "float32",
2135
+ shape: [1, 1, 256, 1000],
2136
+ name: "conv_preds/kernel",
2137
+ },
2138
+ { dtype: "float32", shape: [1000], name: "conv_preds/bias" },
2139
+ ],
2140
+ },
2141
+ {
2142
+ paths: ["group30-shard1of1"],
2143
+ weights: [
2144
+ { dtype: "float32", shape: [1, 1, 8, 16], name: "conv_pw_1/kernel" },
2145
+ ],
2146
+ },
2147
+ {
2148
+ paths: ["group31-shard1of1"],
2149
+ weights: [
2150
+ {
2151
+ dtype: "float32",
2152
+ shape: [1, 1, 128, 128],
2153
+ name: "conv_pw_10/kernel",
2154
+ },
2155
+ ],
2156
+ },
2157
+ {
2158
+ paths: ["group32-shard1of1"],
2159
+ weights: [
2160
+ { dtype: "float32", shape: [128], name: "conv_pw_10_bn/gamma" },
2161
+ { dtype: "float32", shape: [128], name: "conv_pw_10_bn/beta" },
2162
+ { dtype: "float32", shape: [128], name: "conv_pw_10_bn/moving_mean" },
2163
+ {
2164
+ dtype: "float32",
2165
+ shape: [128],
2166
+ name: "conv_pw_10_bn/moving_variance",
2167
+ },
2168
+ ],
2169
+ },
2170
+ {
2171
+ paths: ["group33-shard1of1"],
2172
+ weights: [
2173
+ {
2174
+ dtype: "float32",
2175
+ shape: [1, 1, 128, 128],
2176
+ name: "conv_pw_11/kernel",
2177
+ },
2178
+ ],
2179
+ },
2180
+ {
2181
+ paths: ["group34-shard1of1"],
2182
+ weights: [
2183
+ { dtype: "float32", shape: [128], name: "conv_pw_11_bn/gamma" },
2184
+ { dtype: "float32", shape: [128], name: "conv_pw_11_bn/beta" },
2185
+ { dtype: "float32", shape: [128], name: "conv_pw_11_bn/moving_mean" },
2186
+ {
2187
+ dtype: "float32",
2188
+ shape: [128],
2189
+ name: "conv_pw_11_bn/moving_variance",
2190
+ },
2191
+ ],
2192
+ },
2193
+ {
2194
+ paths: ["group35-shard1of1"],
2195
+ weights: [
2196
+ {
2197
+ dtype: "float32",
2198
+ shape: [1, 1, 128, 256],
2199
+ name: "conv_pw_12/kernel",
2200
+ },
2201
+ ],
2202
+ },
2203
+ {
2204
+ paths: ["group36-shard1of1"],
2205
+ weights: [
2206
+ { dtype: "float32", shape: [256], name: "conv_pw_12_bn/gamma" },
2207
+ { dtype: "float32", shape: [256], name: "conv_pw_12_bn/beta" },
2208
+ { dtype: "float32", shape: [256], name: "conv_pw_12_bn/moving_mean" },
2209
+ {
2210
+ dtype: "float32",
2211
+ shape: [256],
2212
+ name: "conv_pw_12_bn/moving_variance",
2213
+ },
2214
+ ],
2215
+ },
2216
+ {
2217
+ paths: ["group37-shard1of1"],
2218
+ weights: [
2219
+ {
2220
+ dtype: "float32",
2221
+ shape: [1, 1, 256, 256],
2222
+ name: "conv_pw_13/kernel",
2223
+ },
2224
+ ],
2225
+ },
2226
+ {
2227
+ paths: ["group38-shard1of1"],
2228
+ weights: [
2229
+ { dtype: "float32", shape: [256], name: "conv_pw_13_bn/gamma" },
2230
+ { dtype: "float32", shape: [256], name: "conv_pw_13_bn/beta" },
2231
+ { dtype: "float32", shape: [256], name: "conv_pw_13_bn/moving_mean" },
2232
+ {
2233
+ dtype: "float32",
2234
+ shape: [256],
2235
+ name: "conv_pw_13_bn/moving_variance",
2236
+ },
2237
+ ],
2238
+ },
2239
+ {
2240
+ paths: ["group39-shard1of1"],
2241
+ weights: [
2242
+ { dtype: "float32", shape: [16], name: "conv_pw_1_bn/gamma" },
2243
+ { dtype: "float32", shape: [16], name: "conv_pw_1_bn/beta" },
2244
+ { dtype: "float32", shape: [16], name: "conv_pw_1_bn/moving_mean" },
2245
+ { dtype: "float32", shape: [16], name: "conv_pw_1_bn/moving_variance" },
2246
+ ],
2247
+ },
2248
+ {
2249
+ paths: ["group40-shard1of1"],
2250
+ weights: [
2251
+ { dtype: "float32", shape: [1, 1, 16, 32], name: "conv_pw_2/kernel" },
2252
+ ],
2253
+ },
2254
+ {
2255
+ paths: ["group41-shard1of1"],
2256
+ weights: [
2257
+ { dtype: "float32", shape: [32], name: "conv_pw_2_bn/gamma" },
2258
+ { dtype: "float32", shape: [32], name: "conv_pw_2_bn/beta" },
2259
+ { dtype: "float32", shape: [32], name: "conv_pw_2_bn/moving_mean" },
2260
+ { dtype: "float32", shape: [32], name: "conv_pw_2_bn/moving_variance" },
2261
+ ],
2262
+ },
2263
+ {
2264
+ paths: ["group42-shard1of1"],
2265
+ weights: [
2266
+ { dtype: "float32", shape: [1, 1, 32, 32], name: "conv_pw_3/kernel" },
2267
+ ],
2268
+ },
2269
+ {
2270
+ paths: ["group43-shard1of1"],
2271
+ weights: [
2272
+ { dtype: "float32", shape: [32], name: "conv_pw_3_bn/gamma" },
2273
+ { dtype: "float32", shape: [32], name: "conv_pw_3_bn/beta" },
2274
+ { dtype: "float32", shape: [32], name: "conv_pw_3_bn/moving_mean" },
2275
+ { dtype: "float32", shape: [32], name: "conv_pw_3_bn/moving_variance" },
2276
+ ],
2277
+ },
2278
+ {
2279
+ paths: ["group44-shard1of1"],
2280
+ weights: [
2281
+ { dtype: "float32", shape: [1, 1, 32, 64], name: "conv_pw_4/kernel" },
2282
+ ],
2283
+ },
2284
+ {
2285
+ paths: ["group45-shard1of1"],
2286
+ weights: [
2287
+ { dtype: "float32", shape: [64], name: "conv_pw_4_bn/gamma" },
2288
+ { dtype: "float32", shape: [64], name: "conv_pw_4_bn/beta" },
2289
+ { dtype: "float32", shape: [64], name: "conv_pw_4_bn/moving_mean" },
2290
+ { dtype: "float32", shape: [64], name: "conv_pw_4_bn/moving_variance" },
2291
+ ],
2292
+ },
2293
+ {
2294
+ paths: ["group46-shard1of1"],
2295
+ weights: [
2296
+ { dtype: "float32", shape: [1, 1, 64, 64], name: "conv_pw_5/kernel" },
2297
+ ],
2298
+ },
2299
+ {
2300
+ paths: ["group47-shard1of1"],
2301
+ weights: [
2302
+ { dtype: "float32", shape: [64], name: "conv_pw_5_bn/gamma" },
2303
+ { dtype: "float32", shape: [64], name: "conv_pw_5_bn/beta" },
2304
+ { dtype: "float32", shape: [64], name: "conv_pw_5_bn/moving_mean" },
2305
+ { dtype: "float32", shape: [64], name: "conv_pw_5_bn/moving_variance" },
2306
+ ],
2307
+ },
2308
+ {
2309
+ paths: ["group48-shard1of1"],
2310
+ weights: [
2311
+ { dtype: "float32", shape: [1, 1, 64, 128], name: "conv_pw_6/kernel" },
2312
+ ],
2313
+ },
2314
+ {
2315
+ paths: ["group49-shard1of1"],
2316
+ weights: [
2317
+ { dtype: "float32", shape: [128], name: "conv_pw_6_bn/gamma" },
2318
+ { dtype: "float32", shape: [128], name: "conv_pw_6_bn/beta" },
2319
+ { dtype: "float32", shape: [128], name: "conv_pw_6_bn/moving_mean" },
2320
+ {
2321
+ dtype: "float32",
2322
+ shape: [128],
2323
+ name: "conv_pw_6_bn/moving_variance",
2324
+ },
2325
+ ],
2326
+ },
2327
+ {
2328
+ paths: ["group50-shard1of1"],
2329
+ weights: [
2330
+ { dtype: "float32", shape: [1, 1, 128, 128], name: "conv_pw_7/kernel" },
2331
+ ],
2332
+ },
2333
+ {
2334
+ paths: ["group51-shard1of1"],
2335
+ weights: [
2336
+ { dtype: "float32", shape: [128], name: "conv_pw_7_bn/gamma" },
2337
+ { dtype: "float32", shape: [128], name: "conv_pw_7_bn/beta" },
2338
+ { dtype: "float32", shape: [128], name: "conv_pw_7_bn/moving_mean" },
2339
+ {
2340
+ dtype: "float32",
2341
+ shape: [128],
2342
+ name: "conv_pw_7_bn/moving_variance",
2343
+ },
2344
+ ],
2345
+ },
2346
+ {
2347
+ paths: ["group52-shard1of1"],
2348
+ weights: [
2349
+ { dtype: "float32", shape: [1, 1, 128, 128], name: "conv_pw_8/kernel" },
2350
+ ],
2351
+ },
2352
+ {
2353
+ paths: ["group53-shard1of1"],
2354
+ weights: [
2355
+ { dtype: "float32", shape: [128], name: "conv_pw_8_bn/gamma" },
2356
+ { dtype: "float32", shape: [128], name: "conv_pw_8_bn/beta" },
2357
+ { dtype: "float32", shape: [128], name: "conv_pw_8_bn/moving_mean" },
2358
+ {
2359
+ dtype: "float32",
2360
+ shape: [128],
2361
+ name: "conv_pw_8_bn/moving_variance",
2362
+ },
2363
+ ],
2364
+ },
2365
+ {
2366
+ paths: ["group54-shard1of1"],
2367
+ weights: [
2368
+ { dtype: "float32", shape: [1, 1, 128, 128], name: "conv_pw_9/kernel" },
2369
+ ],
2370
+ },
2371
+ {
2372
+ paths: ["group55-shard1of1"],
2373
+ weights: [
2374
+ { dtype: "float32", shape: [128], name: "conv_pw_9_bn/gamma" },
2375
+ { dtype: "float32", shape: [128], name: "conv_pw_9_bn/beta" },
2376
+ { dtype: "float32", shape: [128], name: "conv_pw_9_bn/moving_mean" },
2377
+ {
2378
+ dtype: "float32",
2379
+ shape: [128],
2380
+ name: "conv_pw_9_bn/moving_variance",
2381
+ },
2382
+ ],
2383
+ },
2384
+ ],
2385
+ };