@naniteninja/dashboard-components-lib 1.0.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 (404) hide show
  1. package/esm2022/lib/components/auto-delegation/animations.mjs +20 -0
  2. package/esm2022/lib/components/auto-delegation/auto-delegation-modal.component.mjs +106 -0
  3. package/esm2022/lib/components/auto-delegation/enums/auto-delegation.event-type.enum.mjs +6 -0
  4. package/esm2022/lib/components/auto-delegation/enums/auto-delegation.event-value.enum.mjs +7 -0
  5. package/esm2022/lib/components/auto-delegation/interface/auto-delegation-data.interface.mjs +2 -0
  6. package/esm2022/lib/components/auto-delegation/interface/auto-delegation.event.interface.mjs +2 -0
  7. package/esm2022/lib/components/auto-delegation/interface/auto-delegation.modal-data.interface.mjs +2 -0
  8. package/esm2022/lib/components/auto-delegation/interface/preferences.interface.mjs +2 -0
  9. package/esm2022/lib/components/calendar/agenda/agenda-day-card/agenda-day-card.component.mjs +37 -0
  10. package/esm2022/lib/components/calendar/agenda/agenda.component.mjs +98 -0
  11. package/esm2022/lib/components/calendar/agenda/agenda.module.mjs +24 -0
  12. package/esm2022/lib/components/calendar/agenda/interfaces/agenda.day.interface.mjs +2 -0
  13. package/esm2022/lib/components/calendar/agenda/interfaces/agenda.event.inetrface.mjs +2 -0
  14. package/esm2022/lib/components/calendar/components/edit-recurring-event/edit-recurring-event.component.mjs +40 -0
  15. package/esm2022/lib/components/calendar/components/event-form/event-form.component.mjs +275 -0
  16. package/esm2022/lib/components/calendar/components/event-form/event-form.module.mjs +89 -0
  17. package/esm2022/lib/components/calendar/components/event-info/event-info.component.mjs +40 -0
  18. package/esm2022/lib/components/calendar/enums/calendar.account.enum.mjs +6 -0
  19. package/esm2022/lib/components/calendar/enums/calendar.account.icons.enum.mjs +6 -0
  20. package/esm2022/lib/components/calendar/enums/event-type.enum.mjs +10 -0
  21. package/esm2022/lib/components/calendar/enums/recurring.edit.options.enum.mjs +7 -0
  22. package/esm2022/lib/components/calendar/enums/recurring.type.enum.mjs +8 -0
  23. package/esm2022/lib/components/calendar/interfaces/calendar.account.interface.mjs +2 -0
  24. package/esm2022/lib/components/calendar/interfaces/calendar.account.theme.interface.mjs +2 -0
  25. package/esm2022/lib/components/calendar/interfaces/event.form.interface.mjs +2 -0
  26. package/esm2022/lib/components/calendar/interfaces/event.form.output.interface.mjs +2 -0
  27. package/esm2022/lib/components/calendar/interfaces/event.interface.mjs +2 -0
  28. package/esm2022/lib/components/calendar/interfaces/event.time.interface.mjs +2 -0
  29. package/esm2022/lib/components/calendar/interfaces/recurring.event.interface.mjs +2 -0
  30. package/esm2022/lib/components/calendar/interfaces/recurring.exception.interface.mjs +2 -0
  31. package/esm2022/lib/components/calendar/interfaces/recurring.pattern.interface.mjs +2 -0
  32. package/esm2022/lib/components/calendar/lookups/recurring.options.lookup.mjs +30 -0
  33. package/esm2022/lib/components/calendar/scheduler/enums/schedule-date-status.enum.mjs +7 -0
  34. package/esm2022/lib/components/calendar/scheduler/interfaces/scheduler.action.interface.mjs +2 -0
  35. package/esm2022/lib/components/calendar/scheduler/interfaces/scheduler.event.day.interface.mjs +2 -0
  36. package/esm2022/lib/components/calendar/scheduler/interfaces/scheduler.event.interface.mjs +2 -0
  37. package/esm2022/lib/components/calendar/scheduler/interfaces/scheduler.event.suggestion.interface.mjs +2 -0
  38. package/esm2022/lib/components/calendar/scheduler/interfaces/scheduler.slots.interface.mjs +2 -0
  39. package/esm2022/lib/components/calendar/scheduler/mock-schedule.mjs +80 -0
  40. package/esm2022/lib/components/calendar/scheduler/scheduler.component.mjs +144 -0
  41. package/esm2022/lib/components/calendar/services/calendar-utils.service.mjs +211 -0
  42. package/esm2022/lib/components/chat/chat.component.mjs +307 -0
  43. package/esm2022/lib/components/chat/chat.component.module.mjs +85 -0
  44. package/esm2022/lib/components/chat/chat.service.mjs +63 -0
  45. package/esm2022/lib/components/chat/enums/sender-types.enum.mjs +6 -0
  46. package/esm2022/lib/components/chat/gif-selector/gif-selector.component.mjs +77 -0
  47. package/esm2022/lib/components/chat/gif-selector/gif-selector.service.mjs +41 -0
  48. package/esm2022/lib/components/chat/gif-selector/tenor-media-format.interface.mjs +2 -0
  49. package/esm2022/lib/components/chat/gif-selector/tenor-object.interface.mjs +2 -0
  50. package/esm2022/lib/components/chat/gif-selector/tenor-result.interface.mjs +2 -0
  51. package/esm2022/lib/components/chat/interfaces/date-messages.interface.mjs +2 -0
  52. package/esm2022/lib/components/chat/interfaces/message-attachment.interface.mjs +2 -0
  53. package/esm2022/lib/components/chat/interfaces/message.interface.mjs +2 -0
  54. package/esm2022/lib/components/chat/interfaces/send-options-message.interface.mjs +2 -0
  55. package/esm2022/lib/components/chat/interfaces/type-send-message.enum.mjs +7 -0
  56. package/esm2022/lib/components/chat-suggestion/chat-suggestion.component.mjs +21 -0
  57. package/esm2022/lib/components/chat-suggestion/interfaces/chat-suggestion.interface.mjs +2 -0
  58. package/esm2022/lib/components/circle-progress/circle-progress.component.mjs +143 -0
  59. package/esm2022/lib/components/circle-progress/circle-progress.module.mjs +18 -0
  60. package/esm2022/lib/components/circle-progress/enums/circle-variable.enum.mjs +6 -0
  61. package/esm2022/lib/components/circle-progress/interfaces/circle-progress-config.interface.mjs +2 -0
  62. package/esm2022/lib/components/client-home/client-home.component.mjs +123 -0
  63. package/esm2022/lib/components/client-home/enums/client-home-component.enum.mjs +9 -0
  64. package/esm2022/lib/components/client-home/interfaces/chat-meta.interface.mjs +2 -0
  65. package/esm2022/lib/components/client-home/interfaces/home-dashboard-inputs.interface.mjs +2 -0
  66. package/esm2022/lib/components/client-home/interfaces/inner-partial-circle-progress-colors.interface.mjs +2 -0
  67. package/esm2022/lib/components/client-home/interfaces/partial-circle-progress-colors.interface.mjs +2 -0
  68. package/esm2022/lib/components/client-home/lookup/client-home.config.mjs +30 -0
  69. package/esm2022/lib/components/client-home/lookup/inner-progress-default-colors.config.mjs +6 -0
  70. package/esm2022/lib/components/client-home/lookup/inner-progress-pink-colors.config.mjs +6 -0
  71. package/esm2022/lib/components/client-home/lookup/inner-progress-purple-colors.config.mjs +6 -0
  72. package/esm2022/lib/components/client-home/lookup/inner-progress-teal-colors.config.mjs +6 -0
  73. package/esm2022/lib/components/client-home/lookup/inner-progress-white-colors.config.mjs +10 -0
  74. package/esm2022/lib/components/client-home/lookup/progress-default-colors.config.mjs +10 -0
  75. package/esm2022/lib/components/client-home/lookup/progress-white-colors.config.mjs +10 -0
  76. package/esm2022/lib/components/client-home/pipes/chat-meta.pipe.mjs +60 -0
  77. package/esm2022/lib/components/client-home/pipes/get-color-by-matcher.pipe.mjs +33 -0
  78. package/esm2022/lib/components/client-match-overview/client-match-overview.component.mjs +300 -0
  79. package/esm2022/lib/components/client-match-overview/enums/conversation-flag.enum.mjs +6 -0
  80. package/esm2022/lib/components/client-match-overview/enums/counter-flag-base.enum.mjs +6 -0
  81. package/esm2022/lib/components/client-match-overview/enums/inner-circle-state.enum.mjs +8 -0
  82. package/esm2022/lib/components/client-match-overview/interfaces/client-match-overview.interface.mjs +2 -0
  83. package/esm2022/lib/components/client-match-overview/interfaces/conversation-flag.interface.mjs +2 -0
  84. package/esm2022/lib/components/client-match-overview/interfaces/dashboard-match-request.interface.mjs +2 -0
  85. package/esm2022/lib/components/client-match-overview/interfaces/progress-decision.interface.mjs +2 -0
  86. package/esm2022/lib/components/client-match-overview/interfaces/progress-facts.interface.mjs +2 -0
  87. package/esm2022/lib/components/client-match-overview/lookups/computer-inner-state.lookup.mjs +81 -0
  88. package/esm2022/lib/components/client-match-overview/lookups/limit-dates-indicator.lookup.mjs +8 -0
  89. package/esm2022/lib/components/client-match-overview/progress-ticker/progress-gap.config.mjs +4 -0
  90. package/esm2022/lib/components/client-match-overview/progress-ticker/progress-ticker.config.mjs +3 -0
  91. package/esm2022/lib/components/client-match-overview/progress-ticker/progress-ticker.service.mjs +43 -0
  92. package/esm2022/lib/components/dashboard-swipeable-tabs/dashboard-swipeable-tabs.component.mjs +113 -0
  93. package/esm2022/lib/components/dashboard-swipeable-tabs/lookups/dashboard-main-swiper-options.mjs +11 -0
  94. package/esm2022/lib/components/dashboard-swipeable-tabs/lookups/dashboard-thumbs-swiper-options.mjs +27 -0
  95. package/esm2022/lib/components/dashboard-swipeable-tabs/lookups/main-swiper-default-options.mjs +19 -0
  96. package/esm2022/lib/components/dashboard-swipeable-tabs/lookups/thumbs-swiper-default-options.mjs +21 -0
  97. package/esm2022/lib/components/lib-client-dashboard/client-dashboard.component.mjs +170 -0
  98. package/esm2022/lib/components/lib-client-dashboard/enums/alert-status-fields.enum.mjs +11 -0
  99. package/esm2022/lib/components/lib-client-dashboard/enums/client-dashboard-component.enum.mjs +7 -0
  100. package/esm2022/lib/components/lib-client-dashboard/interfaces/client-dashboard-inputs.interface.mjs +2 -0
  101. package/esm2022/lib/components/lib-client-dashboard/lookups/client-dashboard.config.mjs +15 -0
  102. package/esm2022/lib/components/lib-compose-matcher-dash/compose-matcher-dash.component.mjs +146 -0
  103. package/esm2022/lib/components/lib-compose-matcher-dash/interfaces/chart-data.interface.mjs +2 -0
  104. package/esm2022/lib/components/lib-compose-matcher-dash/interfaces/chat-identifier.interface.mjs +2 -0
  105. package/esm2022/lib/components/lib-compose-matcher-dash/interfaces/matcher-dashboard-inputs.interface.mjs +2 -0
  106. package/esm2022/lib/components/lib-compose-matcher-dash/interfaces/matcher-profile.interface.mjs +2 -0
  107. package/esm2022/lib/components/lib-compose-matcher-dash/interfaces/prospect-data.interface.mjs +2 -0
  108. package/esm2022/lib/components/lib-compose-matcher-dash/pipes/get-profile-with-progress.pipe.mjs +21 -0
  109. package/esm2022/lib/components/matcher-statuses/enums/matcher-statuses.enum.mjs +15 -0
  110. package/esm2022/lib/components/matcher-statuses/interfaces/status.interface.mjs +2 -0
  111. package/esm2022/lib/components/matcher-statuses/lookups/matcher-statuses.lookup.mjs +54 -0
  112. package/esm2022/lib/components/matcher-statuses/matcher-statuses.component.mjs +58 -0
  113. package/esm2022/lib/components/matcher-statuses/pipes/is-status-included.pipe.mjs +19 -0
  114. package/esm2022/lib/components/profile-card/profile-card.component.mjs +35 -0
  115. package/esm2022/lib/components/profile-card/profile-card.module.mjs +19 -0
  116. package/esm2022/lib/components/spider-chart/interfaces/chart-data-circle.interface.mjs +2 -0
  117. package/esm2022/lib/components/spider-chart/interfaces/chart-data-defs-f.interface.mjs +2 -0
  118. package/esm2022/lib/components/spider-chart/interfaces/chart-data-defs-lg.interface.mjs +2 -0
  119. package/esm2022/lib/components/spider-chart/interfaces/chart-data-defs-rg.interface.mjs +2 -0
  120. package/esm2022/lib/components/spider-chart/interfaces/config.interface.mjs +2 -0
  121. package/esm2022/lib/components/spider-chart/interfaces/dataset.interface.mjs +2 -0
  122. package/esm2022/lib/components/spider-chart/interfaces/polygon-color.interface.mjs +2 -0
  123. package/esm2022/lib/components/spider-chart/interfaces/spider-chart-attribute.interface.mjs +2 -0
  124. package/esm2022/lib/components/spider-chart/lookup/default-spider-config.lookup.mjs +18 -0
  125. package/esm2022/lib/components/spider-chart/lookup/default-spider-config.mjs +67 -0
  126. package/esm2022/lib/components/spider-chart/lookup/demo-polygon-colors.lookup.mjs +11 -0
  127. package/esm2022/lib/components/spider-chart/lookup/svg-config.lookup.mjs +277 -0
  128. package/esm2022/lib/components/spider-chart/spider-chart.component.mjs +235 -0
  129. package/esm2022/lib/enums/direction.enum.mjs +6 -0
  130. package/esm2022/lib/enums/form-field-type.mjs +30 -0
  131. package/esm2022/lib/enums/local-storage-keys.enum.mjs +5 -0
  132. package/esm2022/lib/enums/status-types.mjs +8 -0
  133. package/esm2022/lib/model/select-option-template.mjs +2 -0
  134. package/esm2022/lib/operations/operations.mjs +19 -0
  135. package/esm2022/lib/pipes/array-sort/array.sort.pipe.mjs +49 -0
  136. package/esm2022/lib/pipes/count-non-empty-fields/count-non-empty-fields.pipe.mjs +17 -0
  137. package/esm2022/lib/pipes/date-localization/date-localization.pipe.mjs +31 -0
  138. package/esm2022/lib/pipes/fallback-translate/fallback-translate.pipe.mjs +28 -0
  139. package/esm2022/lib/pipes/get-display-value/get-display-value.pipe.mjs +59 -0
  140. package/esm2022/lib/pipes/get-multi-select-display-text/get-multi-select-display-text.pipe.mjs +22 -0
  141. package/esm2022/lib/pipes/initials/initials.pipe.mjs +25 -0
  142. package/esm2022/lib/pipes/round/round.pipe.mjs +17 -0
  143. package/esm2022/lib/pipes/update-llm-preference/update-llm-preference.pipe.mjs +25 -0
  144. package/esm2022/lib/services/abstract-cache.service.mjs +10 -0
  145. package/esm2022/lib/shared/shared/alert-popup/alert-popup.component.mjs +38 -0
  146. package/esm2022/lib/shared/shared/message-modal/message-modal.component.mjs +95 -0
  147. package/esm2022/lib/shared/shared/status-icon/status-icon.component.mjs +14 -0
  148. package/esm2022/lib/shared/shared.module.mjs +23 -0
  149. package/esm2022/naniteninja-dashboard-components-lib.mjs +5 -0
  150. package/esm2022/public-api.mjs +122 -0
  151. package/fesm2022/naniteninja-dashboard-components-lib.mjs +4334 -0
  152. package/fesm2022/naniteninja-dashboard-components-lib.mjs.map +1 -0
  153. package/index.d.ts +5 -0
  154. package/lib/components/auto-delegation/animations.d.ts +1 -0
  155. package/lib/components/auto-delegation/auto-delegation-modal.component.d.ts +29 -0
  156. package/lib/components/auto-delegation/enums/auto-delegation.event-type.enum.d.ts +4 -0
  157. package/lib/components/auto-delegation/enums/auto-delegation.event-value.enum.d.ts +5 -0
  158. package/lib/components/auto-delegation/interface/auto-delegation-data.interface.d.ts +31 -0
  159. package/lib/components/auto-delegation/interface/auto-delegation.event.interface.d.ts +6 -0
  160. package/lib/components/auto-delegation/interface/auto-delegation.modal-data.interface.d.ts +8 -0
  161. package/lib/components/auto-delegation/interface/preferences.interface.d.ts +17 -0
  162. package/lib/components/calendar/agenda/agenda-day-card/agenda-day-card.component.d.ts +12 -0
  163. package/lib/components/calendar/agenda/agenda.component.d.ts +22 -0
  164. package/lib/components/calendar/agenda/agenda.module.d.ts +12 -0
  165. package/lib/components/calendar/agenda/interfaces/agenda.day.interface.d.ts +7 -0
  166. package/lib/components/calendar/agenda/interfaces/agenda.event.inetrface.d.ts +9 -0
  167. package/lib/components/calendar/components/edit-recurring-event/edit-recurring-event.component.d.ts +19 -0
  168. package/lib/components/calendar/components/event-form/event-form.component.d.ts +67 -0
  169. package/lib/components/calendar/components/event-form/event-form.module.d.ts +20 -0
  170. package/lib/components/calendar/components/event-info/event-info.component.d.ts +24 -0
  171. package/lib/components/calendar/enums/calendar.account.enum.d.ts +4 -0
  172. package/lib/components/calendar/enums/calendar.account.icons.enum.d.ts +4 -0
  173. package/lib/components/calendar/enums/event-type.enum.d.ts +8 -0
  174. package/lib/components/calendar/enums/recurring.edit.options.enum.d.ts +5 -0
  175. package/lib/components/calendar/enums/recurring.type.enum.d.ts +6 -0
  176. package/lib/components/calendar/interfaces/calendar.account.interface.d.ts +14 -0
  177. package/lib/components/calendar/interfaces/calendar.account.theme.interface.d.ts +5 -0
  178. package/lib/components/calendar/interfaces/event.form.interface.d.ts +22 -0
  179. package/lib/components/calendar/interfaces/event.form.output.interface.d.ts +10 -0
  180. package/lib/components/calendar/interfaces/event.interface.d.ts +33 -0
  181. package/lib/components/calendar/interfaces/event.time.interface.d.ts +4 -0
  182. package/lib/components/calendar/interfaces/recurring.event.interface.d.ts +16 -0
  183. package/lib/components/calendar/interfaces/recurring.exception.interface.d.ts +14 -0
  184. package/lib/components/calendar/interfaces/recurring.pattern.interface.d.ts +16 -0
  185. package/lib/components/calendar/lookups/recurring.options.lookup.d.ts +2 -0
  186. package/lib/components/calendar/scheduler/enums/schedule-date-status.enum.d.ts +5 -0
  187. package/lib/components/calendar/scheduler/interfaces/scheduler.action.interface.d.ts +10 -0
  188. package/lib/components/calendar/scheduler/interfaces/scheduler.event.day.interface.d.ts +5 -0
  189. package/lib/components/calendar/scheduler/interfaces/scheduler.event.interface.d.ts +26 -0
  190. package/lib/components/calendar/scheduler/interfaces/scheduler.event.suggestion.interface.d.ts +13 -0
  191. package/lib/components/calendar/scheduler/interfaces/scheduler.slots.interface.d.ts +6 -0
  192. package/lib/components/calendar/scheduler/mock-schedule.d.ts +9 -0
  193. package/lib/components/calendar/scheduler/scheduler.component.d.ts +36 -0
  194. package/lib/components/calendar/services/calendar-utils.service.d.ts +39 -0
  195. package/lib/components/chat/chat.component.d.ts +70 -0
  196. package/lib/components/chat/chat.component.module.d.ts +22 -0
  197. package/lib/components/chat/chat.service.d.ts +15 -0
  198. package/lib/components/chat/enums/sender-types.enum.d.ts +4 -0
  199. package/lib/components/chat/gif-selector/gif-selector.component.d.ts +25 -0
  200. package/lib/components/chat/gif-selector/gif-selector.service.d.ts +15 -0
  201. package/lib/components/chat/gif-selector/tenor-media-format.interface.d.ts +7 -0
  202. package/lib/components/chat/gif-selector/tenor-object.interface.d.ts +5 -0
  203. package/lib/components/chat/gif-selector/tenor-result.interface.d.ts +16 -0
  204. package/lib/components/chat/interfaces/date-messages.interface.d.ts +6 -0
  205. package/lib/components/chat/interfaces/message-attachment.interface.d.ts +6 -0
  206. package/lib/components/chat/interfaces/message.interface.d.ts +11 -0
  207. package/lib/components/chat/interfaces/send-options-message.interface.d.ts +5 -0
  208. package/lib/components/chat/interfaces/type-send-message.enum.d.ts +5 -0
  209. package/lib/components/chat-suggestion/chat-suggestion.component.d.ts +9 -0
  210. package/lib/components/chat-suggestion/interfaces/chat-suggestion.interface.d.ts +4 -0
  211. package/lib/components/circle-progress/circle-progress.component.d.ts +31 -0
  212. package/lib/components/circle-progress/circle-progress.module.d.ts +8 -0
  213. package/lib/components/circle-progress/enums/circle-variable.enum.d.ts +4 -0
  214. package/lib/components/circle-progress/interfaces/circle-progress-config.interface.d.ts +29 -0
  215. package/lib/components/client-home/client-home.component.d.ts +44 -0
  216. package/lib/components/client-home/enums/client-home-component.enum.d.ts +7 -0
  217. package/lib/components/client-home/interfaces/chat-meta.interface.d.ts +7 -0
  218. package/lib/components/client-home/interfaces/home-dashboard-inputs.interface.d.ts +45 -0
  219. package/lib/components/client-home/interfaces/inner-partial-circle-progress-colors.interface.d.ts +5 -0
  220. package/lib/components/client-home/interfaces/partial-circle-progress-colors.interface.d.ts +9 -0
  221. package/lib/components/client-home/lookup/client-home.config.d.ts +2 -0
  222. package/lib/components/client-home/lookup/inner-progress-default-colors.config.d.ts +2 -0
  223. package/lib/components/client-home/lookup/inner-progress-pink-colors.config.d.ts +2 -0
  224. package/lib/components/client-home/lookup/inner-progress-purple-colors.config.d.ts +2 -0
  225. package/lib/components/client-home/lookup/inner-progress-teal-colors.config.d.ts +2 -0
  226. package/lib/components/client-home/lookup/inner-progress-white-colors.config.d.ts +2 -0
  227. package/lib/components/client-home/lookup/progress-default-colors.config.d.ts +2 -0
  228. package/lib/components/client-home/lookup/progress-white-colors.config.d.ts +2 -0
  229. package/lib/components/client-home/pipes/chat-meta.pipe.d.ts +10 -0
  230. package/lib/components/client-home/pipes/get-color-by-matcher.pipe.d.ts +10 -0
  231. package/lib/components/client-match-overview/client-match-overview.component.d.ts +55 -0
  232. package/lib/components/client-match-overview/enums/conversation-flag.enum.d.ts +4 -0
  233. package/lib/components/client-match-overview/enums/counter-flag-base.enum.d.ts +4 -0
  234. package/lib/components/client-match-overview/enums/inner-circle-state.enum.d.ts +6 -0
  235. package/lib/components/client-match-overview/interfaces/client-match-overview.interface.d.ts +19 -0
  236. package/lib/components/client-match-overview/interfaces/conversation-flag.interface.d.ts +8 -0
  237. package/lib/components/client-match-overview/interfaces/dashboard-match-request.interface.d.ts +7 -0
  238. package/lib/components/client-match-overview/interfaces/progress-decision.interface.d.ts +10 -0
  239. package/lib/components/client-match-overview/interfaces/progress-facts.interface.d.ts +11 -0
  240. package/lib/components/client-match-overview/lookups/computer-inner-state.lookup.d.ts +7 -0
  241. package/lib/components/client-match-overview/lookups/limit-dates-indicator.lookup.d.ts +5 -0
  242. package/lib/components/client-match-overview/progress-ticker/progress-gap.config.d.ts +2 -0
  243. package/lib/components/client-match-overview/progress-ticker/progress-ticker.config.d.ts +2 -0
  244. package/lib/components/client-match-overview/progress-ticker/progress-ticker.service.d.ts +11 -0
  245. package/lib/components/dashboard-swipeable-tabs/dashboard-swipeable-tabs.component.d.ts +29 -0
  246. package/lib/components/dashboard-swipeable-tabs/lookups/dashboard-main-swiper-options.d.ts +2 -0
  247. package/lib/components/dashboard-swipeable-tabs/lookups/dashboard-thumbs-swiper-options.d.ts +2 -0
  248. package/lib/components/dashboard-swipeable-tabs/lookups/main-swiper-default-options.d.ts +2 -0
  249. package/lib/components/dashboard-swipeable-tabs/lookups/thumbs-swiper-default-options.d.ts +2 -0
  250. package/lib/components/lib-client-dashboard/client-dashboard.component.d.ts +73 -0
  251. package/lib/components/lib-client-dashboard/enums/alert-status-fields.enum.d.ts +9 -0
  252. package/lib/components/lib-client-dashboard/enums/client-dashboard-component.enum.d.ts +5 -0
  253. package/lib/components/lib-client-dashboard/interfaces/client-dashboard-inputs.interface.d.ts +29 -0
  254. package/lib/components/lib-client-dashboard/lookups/client-dashboard.config.d.ts +2 -0
  255. package/lib/components/lib-compose-matcher-dash/compose-matcher-dash.component.d.ts +48 -0
  256. package/lib/components/lib-compose-matcher-dash/interfaces/chart-data.interface.d.ts +5 -0
  257. package/lib/components/lib-compose-matcher-dash/interfaces/chat-identifier.interface.d.ts +5 -0
  258. package/lib/components/lib-compose-matcher-dash/interfaces/matcher-dashboard-inputs.interface.d.ts +26 -0
  259. package/lib/components/lib-compose-matcher-dash/interfaces/matcher-profile.interface.d.ts +8 -0
  260. package/lib/components/lib-compose-matcher-dash/interfaces/prospect-data.interface.d.ts +24 -0
  261. package/lib/components/lib-compose-matcher-dash/pipes/get-profile-with-progress.pipe.d.ts +9 -0
  262. package/lib/components/matcher-statuses/enums/matcher-statuses.enum.d.ts +13 -0
  263. package/lib/components/matcher-statuses/interfaces/status.interface.d.ts +6 -0
  264. package/lib/components/matcher-statuses/lookups/matcher-statuses.lookup.d.ts +2 -0
  265. package/lib/components/matcher-statuses/matcher-statuses.component.d.ts +23 -0
  266. package/lib/components/matcher-statuses/pipes/is-status-included.pipe.d.ts +8 -0
  267. package/lib/components/profile-card/profile-card.component.d.ts +11 -0
  268. package/lib/components/profile-card/profile-card.module.d.ts +9 -0
  269. package/lib/components/spider-chart/interfaces/chart-data-circle.interface.d.ts +10 -0
  270. package/lib/components/spider-chart/interfaces/chart-data-defs-f.interface.d.ts +11 -0
  271. package/lib/components/spider-chart/interfaces/chart-data-defs-lg.interface.d.ts +11 -0
  272. package/lib/components/spider-chart/interfaces/chart-data-defs-rg.interface.d.ts +10 -0
  273. package/lib/components/spider-chart/interfaces/config.interface.d.ts +19 -0
  274. package/lib/components/spider-chart/interfaces/dataset.interface.d.ts +7 -0
  275. package/lib/components/spider-chart/interfaces/polygon-color.interface.d.ts +4 -0
  276. package/lib/components/spider-chart/interfaces/spider-chart-attribute.interface.d.ts +6 -0
  277. package/lib/components/spider-chart/lookup/default-spider-config.d.ts +2 -0
  278. package/lib/components/spider-chart/lookup/default-spider-config.lookup.d.ts +2 -0
  279. package/lib/components/spider-chart/lookup/demo-polygon-colors.lookup.d.ts +2 -0
  280. package/lib/components/spider-chart/lookup/svg-config.lookup.d.ts +8 -0
  281. package/lib/components/spider-chart/spider-chart.component.d.ts +52 -0
  282. package/lib/enums/direction.enum.d.ts +4 -0
  283. package/lib/enums/form-field-type.d.ts +28 -0
  284. package/lib/enums/local-storage-keys.enum.d.ts +3 -0
  285. package/lib/enums/status-types.d.ts +6 -0
  286. package/lib/model/select-option-template.d.ts +5 -0
  287. package/lib/operations/operations.d.ts +19 -0
  288. package/lib/pipes/array-sort/array.sort.pipe.d.ts +7 -0
  289. package/lib/pipes/count-non-empty-fields/count-non-empty-fields.pipe.d.ts +7 -0
  290. package/lib/pipes/date-localization/date-localization.pipe.d.ts +8 -0
  291. package/lib/pipes/fallback-translate/fallback-translate.pipe.d.ts +11 -0
  292. package/lib/pipes/get-display-value/get-display-value.pipe.d.ts +13 -0
  293. package/lib/pipes/get-multi-select-display-text/get-multi-select-display-text.pipe.d.ts +8 -0
  294. package/lib/pipes/initials/initials.pipe.d.ts +7 -0
  295. package/lib/pipes/round/round.pipe.d.ts +7 -0
  296. package/lib/pipes/update-llm-preference/update-llm-preference.pipe.d.ts +8 -0
  297. package/lib/services/abstract-cache.service.d.ts +9 -0
  298. package/lib/shared/shared/alert-popup/alert-popup.component.d.ts +14 -0
  299. package/lib/shared/shared/message-modal/message-modal.component.d.ts +29 -0
  300. package/lib/shared/shared/status-icon/status-icon.component.d.ts +7 -0
  301. package/lib/shared/shared.module.d.ts +13 -0
  302. package/naniteninja-dashboard-components-lib-1.0.0.tgz +0 -0
  303. package/package.json +69 -0
  304. package/public-api.d.ts +121 -0
  305. package/src/assets/auto-delegation-modal/cross.svg +17 -0
  306. package/src/assets/auto-delegation-modal/menu.svg +3 -0
  307. package/src/assets/auto-delegation-modal/timer-center-dot.svg +25 -0
  308. package/src/assets/auto-delegation-modal/user-profile.svg +9 -0
  309. package/src/assets/circle-progress/circle-progress-1.svg +159 -0
  310. package/src/assets/circle-progress/circle-progress-2.svg +155 -0
  311. package/src/assets/circle-progress/circle-progress-3.svg +25 -0
  312. package/src/assets/circle-progress/circle-progress.svg +159 -0
  313. package/src/assets/client-match-overview/background-eclipse.svg +13 -0
  314. package/src/assets/fonts/calistoga/Calistoga-Regular.ttf +0 -0
  315. package/src/assets/fonts/gilroy/Gilroy-Black.ttf +0 -0
  316. package/src/assets/fonts/gilroy/Gilroy-BlackItalic.ttf +0 -0
  317. package/src/assets/fonts/gilroy/Gilroy-Bold.ttf +0 -0
  318. package/src/assets/fonts/gilroy/Gilroy-BoldItalic.ttf +0 -0
  319. package/src/assets/fonts/gilroy/Gilroy-ExtraBold.ttf +0 -0
  320. package/src/assets/fonts/gilroy/Gilroy-ExtraBoldItalic.ttf +0 -0
  321. package/src/assets/fonts/gilroy/Gilroy-Heavy.ttf +0 -0
  322. package/src/assets/fonts/gilroy/Gilroy-HeavyItalic.ttf +0 -0
  323. package/src/assets/fonts/gilroy/Gilroy-Light.ttf +0 -0
  324. package/src/assets/fonts/gilroy/Gilroy-LightItalic.ttf +0 -0
  325. package/src/assets/fonts/gilroy/Gilroy-Medium.ttf +0 -0
  326. package/src/assets/fonts/gilroy/Gilroy-MediumItalic.ttf +0 -0
  327. package/src/assets/fonts/gilroy/Gilroy-Regular.ttf +0 -0
  328. package/src/assets/fonts/gilroy/Gilroy-RegularItalic.ttf +0 -0
  329. package/src/assets/fonts/gilroy/Gilroy-SemiBold.ttf +0 -0
  330. package/src/assets/fonts/gilroy/Gilroy-SemiBoldItalic.ttf +0 -0
  331. package/src/assets/fonts/gilroy/Gilroy-Thin.ttf +0 -0
  332. package/src/assets/fonts/gilroy/Gilroy-ThinItalic.ttf +0 -0
  333. package/src/assets/fonts/gilroy/Gilroy-UltraLight.ttf +0 -0
  334. package/src/assets/fonts/gilroy/Gilroy-UltraLightItalic.ttf +0 -0
  335. package/src/assets/grid/icons/filter-button.svg +47 -0
  336. package/src/assets/grid/images/chips-background-shadow.svg +34 -0
  337. package/src/assets/icons/back-v2.svg +14 -0
  338. package/src/assets/icons/checkbox/checkbox-off.svg +72 -0
  339. package/src/assets/icons/checkbox/checkbox-on.svg +113 -0
  340. package/src/assets/icons/checkmark-button.svg +72 -0
  341. package/src/assets/icons/checkmark.svg +7 -0
  342. package/src/assets/icons/close-icon.svg +3 -0
  343. package/src/assets/icons/compose-matcher/notes.svg +4 -0
  344. package/src/assets/icons/compose-matcher/profile.svg +4 -0
  345. package/src/assets/icons/compose-matcher/suggest.svg +3 -0
  346. package/src/assets/icons/compose-matcher/visual.svg +3 -0
  347. package/src/assets/icons/default-profile.svg +23 -0
  348. package/src/assets/icons/defualt.svg +5 -0
  349. package/src/assets/icons/first-page.svg +7 -0
  350. package/src/assets/icons/incrementer/minus.svg +3 -0
  351. package/src/assets/icons/incrementer/plus.svg +3 -0
  352. package/src/assets/icons/info.svg +5 -0
  353. package/src/assets/icons/last-page.svg +7 -0
  354. package/src/assets/icons/minus.svg +3 -0
  355. package/src/assets/icons/next-page.svg +6 -0
  356. package/src/assets/icons/plus.svg +3 -0
  357. package/src/assets/icons/popup-defualt.svg +34 -0
  358. package/src/assets/icons/prev-page.svg +6 -0
  359. package/src/assets/icons/send-icon.svg +4 -0
  360. package/src/assets/icons/shake.svg +74 -0
  361. package/src/assets/icons/thumbs-up.svg +28 -0
  362. package/src/assets/nsfw/blazeface.bundle.js +2 -0
  363. package/src/assets/nsfw/model/group1-shard1of1 +0 -0
  364. package/src/assets/nsfw/model/model.json +4085 -0
  365. package/src/assets/nsfw/nsfwjs.bundle.js +2 -0
  366. package/src/assets/nsfw/tf.bundle.js +2 -0
  367. package/src/assets/scheduler/accept.svg +3 -0
  368. package/src/assets/scheduler/accept_active.svg +3 -0
  369. package/src/assets/scheduler/arrow.svg +13 -0
  370. package/src/assets/scheduler/cancel.svg +3 -0
  371. package/src/assets/scheduler/cancel_active.svg +3 -0
  372. package/src/assets/scheduler/heart.svg +18 -0
  373. package/src/assets/trait-visual/force-directed-graph.png +0 -0
  374. package/src/lib/shared-styles/common/_colors.scss +30 -0
  375. package/src/lib/shared-styles/common/animations.scss +48 -0
  376. package/src/lib/shared-styles/common/base-input-field.scss +132 -0
  377. package/src/lib/shared-styles/common/buttons.scss +152 -0
  378. package/src/lib/shared-styles/common/cards.scss +163 -0
  379. package/src/lib/shared-styles/common/client-dash.scss +5 -0
  380. package/src/lib/shared-styles/common/date-picker.scss +179 -0
  381. package/src/lib/shared-styles/common/draggable-scroll-and-marquee.scss +34 -0
  382. package/src/lib/shared-styles/common/feedback.scss +157 -0
  383. package/src/lib/shared-styles/common/fonts.scss +3 -0
  384. package/src/lib/shared-styles/common/information-card.scss +56 -0
  385. package/src/lib/shared-styles/common/input.scss +110 -0
  386. package/src/lib/shared-styles/common/lib-styles-utils.scss +157 -0
  387. package/src/lib/shared-styles/common/lists.scss +91 -0
  388. package/src/lib/shared-styles/common/login.scss +32 -0
  389. package/src/lib/shared-styles/common/maps.scss +10 -0
  390. package/src/lib/shared-styles/common/matcher-dash.scss +49 -0
  391. package/src/lib/shared-styles/common/modal_styles.scss +32 -0
  392. package/src/lib/shared-styles/common/notifications-list.scss +9 -0
  393. package/src/lib/shared-styles/common/overrides.scss +6 -0
  394. package/src/lib/shared-styles/common/pulse.scss +26 -0
  395. package/src/lib/shared-styles/common/swiper.scss +5 -0
  396. package/src/lib/shared-styles/common/tab-menu.scss +74 -0
  397. package/src/lib/shared-styles/common/theme.scss +55 -0
  398. package/src/lib/shared-styles/common/typography.scss +121 -0
  399. package/src/lib/shared-styles/common/user-menu.scss +129 -0
  400. package/src/lib/shared-styles/fonts/calistoga.font.scss +6 -0
  401. package/src/lib/shared-styles/fonts/gilroy.font.scss +160 -0
  402. package/src/lib/shared-styles/images/compress.png +0 -0
  403. package/src/lib/shared-styles/images/expand.png +0 -0
  404. package/src/lib/shared-styles/styles.scss +25 -0
@@ -0,0 +1,4085 @@
1
+ {
2
+ "modelTopology": {
3
+ "keras_version": "2.2.4",
4
+ "backend": "tensorflow",
5
+ "model_config": {
6
+ "class_name": "Model",
7
+ "config": {
8
+ "name": "model_1",
9
+ "layers": [
10
+ {
11
+ "name": "input_1",
12
+ "class_name": "InputLayer",
13
+ "config": { "batch_input_shape": [null, 224, 224, 3], "dtype": "float32", "sparse": false, "name": "input_1" },
14
+ "inbound_nodes": []
15
+ },
16
+ {
17
+ "name": "Conv1_pad",
18
+ "class_name": "ZeroPadding2D",
19
+ "config": {
20
+ "name": "Conv1_pad",
21
+ "trainable": false,
22
+ "padding": [
23
+ [0, 1],
24
+ [0, 1]
25
+ ],
26
+ "data_format": "channels_last"
27
+ },
28
+ "inbound_nodes": [[["input_1", 0, 0, {}]]]
29
+ },
30
+ {
31
+ "name": "Conv1",
32
+ "class_name": "Conv2D",
33
+ "config": {
34
+ "name": "Conv1",
35
+ "trainable": false,
36
+ "filters": 32,
37
+ "kernel_size": [3, 3],
38
+ "strides": [2, 2],
39
+ "padding": "valid",
40
+ "data_format": "channels_last",
41
+ "dilation_rate": [1, 1],
42
+ "activation": "linear",
43
+ "use_bias": false,
44
+ "kernel_initializer": { "class_name": "VarianceScaling", "config": { "scale": 1.0, "mode": "fan_avg", "distribution": "uniform", "seed": null } },
45
+ "bias_initializer": { "class_name": "Zeros", "config": {} },
46
+ "kernel_regularizer": null,
47
+ "bias_regularizer": null,
48
+ "activity_regularizer": null,
49
+ "kernel_constraint": null,
50
+ "bias_constraint": null
51
+ },
52
+ "inbound_nodes": [[["Conv1_pad", 0, 0, {}]]]
53
+ },
54
+ {
55
+ "name": "bn_Conv1",
56
+ "class_name": "BatchNormalization",
57
+ "config": {
58
+ "name": "bn_Conv1",
59
+ "trainable": false,
60
+ "axis": -1,
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
+ "inbound_nodes": [[["Conv1", 0, 0, {}]]]
75
+ },
76
+ {
77
+ "name": "Conv1_relu",
78
+ "class_name": "ReLU",
79
+ "config": { "name": "Conv1_relu", "trainable": false, "max_value": 6.0, "negative_slope": 0.0, "threshold": 0.0 },
80
+ "inbound_nodes": [[["bn_Conv1", 0, 0, {}]]]
81
+ },
82
+ {
83
+ "name": "expanded_conv_depthwise",
84
+ "class_name": "DepthwiseConv2D",
85
+ "config": {
86
+ "name": "expanded_conv_depthwise",
87
+ "trainable": false,
88
+ "kernel_size": [3, 3],
89
+ "strides": [1, 1],
90
+ "padding": "same",
91
+ "data_format": "channels_last",
92
+ "dilation_rate": [1, 1],
93
+ "activation": "linear",
94
+ "use_bias": false,
95
+ "bias_initializer": { "class_name": "Zeros", "config": {} },
96
+ "bias_regularizer": null,
97
+ "activity_regularizer": null,
98
+ "bias_constraint": null,
99
+ "depth_multiplier": 1,
100
+ "depthwise_initializer": { "class_name": "VarianceScaling", "config": { "scale": 1.0, "mode": "fan_avg", "distribution": "uniform", "seed": null } },
101
+ "depthwise_regularizer": null,
102
+ "depthwise_constraint": null
103
+ },
104
+ "inbound_nodes": [[["Conv1_relu", 0, 0, {}]]]
105
+ },
106
+ {
107
+ "name": "expanded_conv_depthwise_BN",
108
+ "class_name": "BatchNormalization",
109
+ "config": {
110
+ "name": "expanded_conv_depthwise_BN",
111
+ "trainable": false,
112
+ "axis": -1,
113
+ "momentum": 0.999,
114
+ "epsilon": 0.001,
115
+ "center": true,
116
+ "scale": true,
117
+ "beta_initializer": { "class_name": "Zeros", "config": {} },
118
+ "gamma_initializer": { "class_name": "Ones", "config": {} },
119
+ "moving_mean_initializer": { "class_name": "Zeros", "config": {} },
120
+ "moving_variance_initializer": { "class_name": "Ones", "config": {} },
121
+ "beta_regularizer": null,
122
+ "gamma_regularizer": null,
123
+ "beta_constraint": null,
124
+ "gamma_constraint": null
125
+ },
126
+ "inbound_nodes": [[["expanded_conv_depthwise", 0, 0, {}]]]
127
+ },
128
+ {
129
+ "name": "expanded_conv_depthwise_relu",
130
+ "class_name": "ReLU",
131
+ "config": { "name": "expanded_conv_depthwise_relu", "trainable": false, "max_value": 6.0, "negative_slope": 0.0, "threshold": 0.0 },
132
+ "inbound_nodes": [[["expanded_conv_depthwise_BN", 0, 0, {}]]]
133
+ },
134
+ {
135
+ "name": "expanded_conv_project",
136
+ "class_name": "Conv2D",
137
+ "config": {
138
+ "name": "expanded_conv_project",
139
+ "trainable": false,
140
+ "filters": 16,
141
+ "kernel_size": [1, 1],
142
+ "strides": [1, 1],
143
+ "padding": "same",
144
+ "data_format": "channels_last",
145
+ "dilation_rate": [1, 1],
146
+ "activation": "linear",
147
+ "use_bias": false,
148
+ "kernel_initializer": { "class_name": "VarianceScaling", "config": { "scale": 1.0, "mode": "fan_avg", "distribution": "uniform", "seed": null } },
149
+ "bias_initializer": { "class_name": "Zeros", "config": {} },
150
+ "kernel_regularizer": null,
151
+ "bias_regularizer": null,
152
+ "activity_regularizer": null,
153
+ "kernel_constraint": null,
154
+ "bias_constraint": null
155
+ },
156
+ "inbound_nodes": [[["expanded_conv_depthwise_relu", 0, 0, {}]]]
157
+ },
158
+ {
159
+ "name": "expanded_conv_project_BN",
160
+ "class_name": "BatchNormalization",
161
+ "config": {
162
+ "name": "expanded_conv_project_BN",
163
+ "trainable": false,
164
+ "axis": -1,
165
+ "momentum": 0.999,
166
+ "epsilon": 0.001,
167
+ "center": true,
168
+ "scale": true,
169
+ "beta_initializer": { "class_name": "Zeros", "config": {} },
170
+ "gamma_initializer": { "class_name": "Ones", "config": {} },
171
+ "moving_mean_initializer": { "class_name": "Zeros", "config": {} },
172
+ "moving_variance_initializer": { "class_name": "Ones", "config": {} },
173
+ "beta_regularizer": null,
174
+ "gamma_regularizer": null,
175
+ "beta_constraint": null,
176
+ "gamma_constraint": null
177
+ },
178
+ "inbound_nodes": [[["expanded_conv_project", 0, 0, {}]]]
179
+ },
180
+ {
181
+ "name": "block_1_expand",
182
+ "class_name": "Conv2D",
183
+ "config": {
184
+ "name": "block_1_expand",
185
+ "trainable": false,
186
+ "filters": 96,
187
+ "kernel_size": [1, 1],
188
+ "strides": [1, 1],
189
+ "padding": "same",
190
+ "data_format": "channels_last",
191
+ "dilation_rate": [1, 1],
192
+ "activation": "linear",
193
+ "use_bias": false,
194
+ "kernel_initializer": { "class_name": "VarianceScaling", "config": { "scale": 1.0, "mode": "fan_avg", "distribution": "uniform", "seed": null } },
195
+ "bias_initializer": { "class_name": "Zeros", "config": {} },
196
+ "kernel_regularizer": null,
197
+ "bias_regularizer": null,
198
+ "activity_regularizer": null,
199
+ "kernel_constraint": null,
200
+ "bias_constraint": null
201
+ },
202
+ "inbound_nodes": [[["expanded_conv_project_BN", 0, 0, {}]]]
203
+ },
204
+ {
205
+ "name": "block_1_expand_BN",
206
+ "class_name": "BatchNormalization",
207
+ "config": {
208
+ "name": "block_1_expand_BN",
209
+ "trainable": false,
210
+ "axis": -1,
211
+ "momentum": 0.999,
212
+ "epsilon": 0.001,
213
+ "center": true,
214
+ "scale": true,
215
+ "beta_initializer": { "class_name": "Zeros", "config": {} },
216
+ "gamma_initializer": { "class_name": "Ones", "config": {} },
217
+ "moving_mean_initializer": { "class_name": "Zeros", "config": {} },
218
+ "moving_variance_initializer": { "class_name": "Ones", "config": {} },
219
+ "beta_regularizer": null,
220
+ "gamma_regularizer": null,
221
+ "beta_constraint": null,
222
+ "gamma_constraint": null
223
+ },
224
+ "inbound_nodes": [[["block_1_expand", 0, 0, {}]]]
225
+ },
226
+ {
227
+ "name": "block_1_expand_relu",
228
+ "class_name": "ReLU",
229
+ "config": { "name": "block_1_expand_relu", "trainable": false, "max_value": 6.0, "negative_slope": 0.0, "threshold": 0.0 },
230
+ "inbound_nodes": [[["block_1_expand_BN", 0, 0, {}]]]
231
+ },
232
+ {
233
+ "name": "block_1_pad",
234
+ "class_name": "ZeroPadding2D",
235
+ "config": {
236
+ "name": "block_1_pad",
237
+ "trainable": false,
238
+ "padding": [
239
+ [0, 1],
240
+ [0, 1]
241
+ ],
242
+ "data_format": "channels_last"
243
+ },
244
+ "inbound_nodes": [[["block_1_expand_relu", 0, 0, {}]]]
245
+ },
246
+ {
247
+ "name": "block_1_depthwise",
248
+ "class_name": "DepthwiseConv2D",
249
+ "config": {
250
+ "name": "block_1_depthwise",
251
+ "trainable": false,
252
+ "kernel_size": [3, 3],
253
+ "strides": [2, 2],
254
+ "padding": "valid",
255
+ "data_format": "channels_last",
256
+ "dilation_rate": [1, 1],
257
+ "activation": "linear",
258
+ "use_bias": false,
259
+ "bias_initializer": { "class_name": "Zeros", "config": {} },
260
+ "bias_regularizer": null,
261
+ "activity_regularizer": null,
262
+ "bias_constraint": null,
263
+ "depth_multiplier": 1,
264
+ "depthwise_initializer": { "class_name": "VarianceScaling", "config": { "scale": 1.0, "mode": "fan_avg", "distribution": "uniform", "seed": null } },
265
+ "depthwise_regularizer": null,
266
+ "depthwise_constraint": null
267
+ },
268
+ "inbound_nodes": [[["block_1_pad", 0, 0, {}]]]
269
+ },
270
+ {
271
+ "name": "block_1_depthwise_BN",
272
+ "class_name": "BatchNormalization",
273
+ "config": {
274
+ "name": "block_1_depthwise_BN",
275
+ "trainable": false,
276
+ "axis": -1,
277
+ "momentum": 0.999,
278
+ "epsilon": 0.001,
279
+ "center": true,
280
+ "scale": true,
281
+ "beta_initializer": { "class_name": "Zeros", "config": {} },
282
+ "gamma_initializer": { "class_name": "Ones", "config": {} },
283
+ "moving_mean_initializer": { "class_name": "Zeros", "config": {} },
284
+ "moving_variance_initializer": { "class_name": "Ones", "config": {} },
285
+ "beta_regularizer": null,
286
+ "gamma_regularizer": null,
287
+ "beta_constraint": null,
288
+ "gamma_constraint": null
289
+ },
290
+ "inbound_nodes": [[["block_1_depthwise", 0, 0, {}]]]
291
+ },
292
+ {
293
+ "name": "block_1_depthwise_relu",
294
+ "class_name": "ReLU",
295
+ "config": { "name": "block_1_depthwise_relu", "trainable": false, "max_value": 6.0, "negative_slope": 0.0, "threshold": 0.0 },
296
+ "inbound_nodes": [[["block_1_depthwise_BN", 0, 0, {}]]]
297
+ },
298
+ {
299
+ "name": "block_1_project",
300
+ "class_name": "Conv2D",
301
+ "config": {
302
+ "name": "block_1_project",
303
+ "trainable": false,
304
+ "filters": 24,
305
+ "kernel_size": [1, 1],
306
+ "strides": [1, 1],
307
+ "padding": "same",
308
+ "data_format": "channels_last",
309
+ "dilation_rate": [1, 1],
310
+ "activation": "linear",
311
+ "use_bias": false,
312
+ "kernel_initializer": { "class_name": "VarianceScaling", "config": { "scale": 1.0, "mode": "fan_avg", "distribution": "uniform", "seed": null } },
313
+ "bias_initializer": { "class_name": "Zeros", "config": {} },
314
+ "kernel_regularizer": null,
315
+ "bias_regularizer": null,
316
+ "activity_regularizer": null,
317
+ "kernel_constraint": null,
318
+ "bias_constraint": null
319
+ },
320
+ "inbound_nodes": [[["block_1_depthwise_relu", 0, 0, {}]]]
321
+ },
322
+ {
323
+ "name": "block_1_project_BN",
324
+ "class_name": "BatchNormalization",
325
+ "config": {
326
+ "name": "block_1_project_BN",
327
+ "trainable": false,
328
+ "axis": -1,
329
+ "momentum": 0.999,
330
+ "epsilon": 0.001,
331
+ "center": true,
332
+ "scale": true,
333
+ "beta_initializer": { "class_name": "Zeros", "config": {} },
334
+ "gamma_initializer": { "class_name": "Ones", "config": {} },
335
+ "moving_mean_initializer": { "class_name": "Zeros", "config": {} },
336
+ "moving_variance_initializer": { "class_name": "Ones", "config": {} },
337
+ "beta_regularizer": null,
338
+ "gamma_regularizer": null,
339
+ "beta_constraint": null,
340
+ "gamma_constraint": null
341
+ },
342
+ "inbound_nodes": [[["block_1_project", 0, 0, {}]]]
343
+ },
344
+ {
345
+ "name": "block_2_expand",
346
+ "class_name": "Conv2D",
347
+ "config": {
348
+ "name": "block_2_expand",
349
+ "trainable": false,
350
+ "filters": 144,
351
+ "kernel_size": [1, 1],
352
+ "strides": [1, 1],
353
+ "padding": "same",
354
+ "data_format": "channels_last",
355
+ "dilation_rate": [1, 1],
356
+ "activation": "linear",
357
+ "use_bias": false,
358
+ "kernel_initializer": { "class_name": "VarianceScaling", "config": { "scale": 1.0, "mode": "fan_avg", "distribution": "uniform", "seed": null } },
359
+ "bias_initializer": { "class_name": "Zeros", "config": {} },
360
+ "kernel_regularizer": null,
361
+ "bias_regularizer": null,
362
+ "activity_regularizer": null,
363
+ "kernel_constraint": null,
364
+ "bias_constraint": null
365
+ },
366
+ "inbound_nodes": [[["block_1_project_BN", 0, 0, {}]]]
367
+ },
368
+ {
369
+ "name": "block_2_expand_BN",
370
+ "class_name": "BatchNormalization",
371
+ "config": {
372
+ "name": "block_2_expand_BN",
373
+ "trainable": false,
374
+ "axis": -1,
375
+ "momentum": 0.999,
376
+ "epsilon": 0.001,
377
+ "center": true,
378
+ "scale": true,
379
+ "beta_initializer": { "class_name": "Zeros", "config": {} },
380
+ "gamma_initializer": { "class_name": "Ones", "config": {} },
381
+ "moving_mean_initializer": { "class_name": "Zeros", "config": {} },
382
+ "moving_variance_initializer": { "class_name": "Ones", "config": {} },
383
+ "beta_regularizer": null,
384
+ "gamma_regularizer": null,
385
+ "beta_constraint": null,
386
+ "gamma_constraint": null
387
+ },
388
+ "inbound_nodes": [[["block_2_expand", 0, 0, {}]]]
389
+ },
390
+ {
391
+ "name": "block_2_expand_relu",
392
+ "class_name": "ReLU",
393
+ "config": { "name": "block_2_expand_relu", "trainable": false, "max_value": 6.0, "negative_slope": 0.0, "threshold": 0.0 },
394
+ "inbound_nodes": [[["block_2_expand_BN", 0, 0, {}]]]
395
+ },
396
+ {
397
+ "name": "block_2_depthwise",
398
+ "class_name": "DepthwiseConv2D",
399
+ "config": {
400
+ "name": "block_2_depthwise",
401
+ "trainable": false,
402
+ "kernel_size": [3, 3],
403
+ "strides": [1, 1],
404
+ "padding": "same",
405
+ "data_format": "channels_last",
406
+ "dilation_rate": [1, 1],
407
+ "activation": "linear",
408
+ "use_bias": false,
409
+ "bias_initializer": { "class_name": "Zeros", "config": {} },
410
+ "bias_regularizer": null,
411
+ "activity_regularizer": null,
412
+ "bias_constraint": null,
413
+ "depth_multiplier": 1,
414
+ "depthwise_initializer": { "class_name": "VarianceScaling", "config": { "scale": 1.0, "mode": "fan_avg", "distribution": "uniform", "seed": null } },
415
+ "depthwise_regularizer": null,
416
+ "depthwise_constraint": null
417
+ },
418
+ "inbound_nodes": [[["block_2_expand_relu", 0, 0, {}]]]
419
+ },
420
+ {
421
+ "name": "block_2_depthwise_BN",
422
+ "class_name": "BatchNormalization",
423
+ "config": {
424
+ "name": "block_2_depthwise_BN",
425
+ "trainable": false,
426
+ "axis": -1,
427
+ "momentum": 0.999,
428
+ "epsilon": 0.001,
429
+ "center": true,
430
+ "scale": true,
431
+ "beta_initializer": { "class_name": "Zeros", "config": {} },
432
+ "gamma_initializer": { "class_name": "Ones", "config": {} },
433
+ "moving_mean_initializer": { "class_name": "Zeros", "config": {} },
434
+ "moving_variance_initializer": { "class_name": "Ones", "config": {} },
435
+ "beta_regularizer": null,
436
+ "gamma_regularizer": null,
437
+ "beta_constraint": null,
438
+ "gamma_constraint": null
439
+ },
440
+ "inbound_nodes": [[["block_2_depthwise", 0, 0, {}]]]
441
+ },
442
+ {
443
+ "name": "block_2_depthwise_relu",
444
+ "class_name": "ReLU",
445
+ "config": { "name": "block_2_depthwise_relu", "trainable": false, "max_value": 6.0, "negative_slope": 0.0, "threshold": 0.0 },
446
+ "inbound_nodes": [[["block_2_depthwise_BN", 0, 0, {}]]]
447
+ },
448
+ {
449
+ "name": "block_2_project",
450
+ "class_name": "Conv2D",
451
+ "config": {
452
+ "name": "block_2_project",
453
+ "trainable": false,
454
+ "filters": 24,
455
+ "kernel_size": [1, 1],
456
+ "strides": [1, 1],
457
+ "padding": "same",
458
+ "data_format": "channels_last",
459
+ "dilation_rate": [1, 1],
460
+ "activation": "linear",
461
+ "use_bias": false,
462
+ "kernel_initializer": { "class_name": "VarianceScaling", "config": { "scale": 1.0, "mode": "fan_avg", "distribution": "uniform", "seed": null } },
463
+ "bias_initializer": { "class_name": "Zeros", "config": {} },
464
+ "kernel_regularizer": null,
465
+ "bias_regularizer": null,
466
+ "activity_regularizer": null,
467
+ "kernel_constraint": null,
468
+ "bias_constraint": null
469
+ },
470
+ "inbound_nodes": [[["block_2_depthwise_relu", 0, 0, {}]]]
471
+ },
472
+ {
473
+ "name": "block_2_project_BN",
474
+ "class_name": "BatchNormalization",
475
+ "config": {
476
+ "name": "block_2_project_BN",
477
+ "trainable": false,
478
+ "axis": -1,
479
+ "momentum": 0.999,
480
+ "epsilon": 0.001,
481
+ "center": true,
482
+ "scale": true,
483
+ "beta_initializer": { "class_name": "Zeros", "config": {} },
484
+ "gamma_initializer": { "class_name": "Ones", "config": {} },
485
+ "moving_mean_initializer": { "class_name": "Zeros", "config": {} },
486
+ "moving_variance_initializer": { "class_name": "Ones", "config": {} },
487
+ "beta_regularizer": null,
488
+ "gamma_regularizer": null,
489
+ "beta_constraint": null,
490
+ "gamma_constraint": null
491
+ },
492
+ "inbound_nodes": [[["block_2_project", 0, 0, {}]]]
493
+ },
494
+ {
495
+ "name": "block_2_add",
496
+ "class_name": "Add",
497
+ "config": { "name": "block_2_add", "trainable": false },
498
+ "inbound_nodes": [
499
+ [
500
+ ["block_1_project_BN", 0, 0, {}],
501
+ ["block_2_project_BN", 0, 0, {}]
502
+ ]
503
+ ]
504
+ },
505
+ {
506
+ "name": "block_3_expand",
507
+ "class_name": "Conv2D",
508
+ "config": {
509
+ "name": "block_3_expand",
510
+ "trainable": false,
511
+ "filters": 144,
512
+ "kernel_size": [1, 1],
513
+ "strides": [1, 1],
514
+ "padding": "same",
515
+ "data_format": "channels_last",
516
+ "dilation_rate": [1, 1],
517
+ "activation": "linear",
518
+ "use_bias": false,
519
+ "kernel_initializer": { "class_name": "VarianceScaling", "config": { "scale": 1.0, "mode": "fan_avg", "distribution": "uniform", "seed": null } },
520
+ "bias_initializer": { "class_name": "Zeros", "config": {} },
521
+ "kernel_regularizer": null,
522
+ "bias_regularizer": null,
523
+ "activity_regularizer": null,
524
+ "kernel_constraint": null,
525
+ "bias_constraint": null
526
+ },
527
+ "inbound_nodes": [[["block_2_add", 0, 0, {}]]]
528
+ },
529
+ {
530
+ "name": "block_3_expand_BN",
531
+ "class_name": "BatchNormalization",
532
+ "config": {
533
+ "name": "block_3_expand_BN",
534
+ "trainable": false,
535
+ "axis": -1,
536
+ "momentum": 0.999,
537
+ "epsilon": 0.001,
538
+ "center": true,
539
+ "scale": true,
540
+ "beta_initializer": { "class_name": "Zeros", "config": {} },
541
+ "gamma_initializer": { "class_name": "Ones", "config": {} },
542
+ "moving_mean_initializer": { "class_name": "Zeros", "config": {} },
543
+ "moving_variance_initializer": { "class_name": "Ones", "config": {} },
544
+ "beta_regularizer": null,
545
+ "gamma_regularizer": null,
546
+ "beta_constraint": null,
547
+ "gamma_constraint": null
548
+ },
549
+ "inbound_nodes": [[["block_3_expand", 0, 0, {}]]]
550
+ },
551
+ {
552
+ "name": "block_3_expand_relu",
553
+ "class_name": "ReLU",
554
+ "config": { "name": "block_3_expand_relu", "trainable": false, "max_value": 6.0, "negative_slope": 0.0, "threshold": 0.0 },
555
+ "inbound_nodes": [[["block_3_expand_BN", 0, 0, {}]]]
556
+ },
557
+ {
558
+ "name": "block_3_pad",
559
+ "class_name": "ZeroPadding2D",
560
+ "config": {
561
+ "name": "block_3_pad",
562
+ "trainable": false,
563
+ "padding": [
564
+ [0, 1],
565
+ [0, 1]
566
+ ],
567
+ "data_format": "channels_last"
568
+ },
569
+ "inbound_nodes": [[["block_3_expand_relu", 0, 0, {}]]]
570
+ },
571
+ {
572
+ "name": "block_3_depthwise",
573
+ "class_name": "DepthwiseConv2D",
574
+ "config": {
575
+ "name": "block_3_depthwise",
576
+ "trainable": false,
577
+ "kernel_size": [3, 3],
578
+ "strides": [2, 2],
579
+ "padding": "valid",
580
+ "data_format": "channels_last",
581
+ "dilation_rate": [1, 1],
582
+ "activation": "linear",
583
+ "use_bias": false,
584
+ "bias_initializer": { "class_name": "Zeros", "config": {} },
585
+ "bias_regularizer": null,
586
+ "activity_regularizer": null,
587
+ "bias_constraint": null,
588
+ "depth_multiplier": 1,
589
+ "depthwise_initializer": { "class_name": "VarianceScaling", "config": { "scale": 1.0, "mode": "fan_avg", "distribution": "uniform", "seed": null } },
590
+ "depthwise_regularizer": null,
591
+ "depthwise_constraint": null
592
+ },
593
+ "inbound_nodes": [[["block_3_pad", 0, 0, {}]]]
594
+ },
595
+ {
596
+ "name": "block_3_depthwise_BN",
597
+ "class_name": "BatchNormalization",
598
+ "config": {
599
+ "name": "block_3_depthwise_BN",
600
+ "trainable": false,
601
+ "axis": -1,
602
+ "momentum": 0.999,
603
+ "epsilon": 0.001,
604
+ "center": true,
605
+ "scale": true,
606
+ "beta_initializer": { "class_name": "Zeros", "config": {} },
607
+ "gamma_initializer": { "class_name": "Ones", "config": {} },
608
+ "moving_mean_initializer": { "class_name": "Zeros", "config": {} },
609
+ "moving_variance_initializer": { "class_name": "Ones", "config": {} },
610
+ "beta_regularizer": null,
611
+ "gamma_regularizer": null,
612
+ "beta_constraint": null,
613
+ "gamma_constraint": null
614
+ },
615
+ "inbound_nodes": [[["block_3_depthwise", 0, 0, {}]]]
616
+ },
617
+ {
618
+ "name": "block_3_depthwise_relu",
619
+ "class_name": "ReLU",
620
+ "config": { "name": "block_3_depthwise_relu", "trainable": false, "max_value": 6.0, "negative_slope": 0.0, "threshold": 0.0 },
621
+ "inbound_nodes": [[["block_3_depthwise_BN", 0, 0, {}]]]
622
+ },
623
+ {
624
+ "name": "block_3_project",
625
+ "class_name": "Conv2D",
626
+ "config": {
627
+ "name": "block_3_project",
628
+ "trainable": false,
629
+ "filters": 32,
630
+ "kernel_size": [1, 1],
631
+ "strides": [1, 1],
632
+ "padding": "same",
633
+ "data_format": "channels_last",
634
+ "dilation_rate": [1, 1],
635
+ "activation": "linear",
636
+ "use_bias": false,
637
+ "kernel_initializer": { "class_name": "VarianceScaling", "config": { "scale": 1.0, "mode": "fan_avg", "distribution": "uniform", "seed": null } },
638
+ "bias_initializer": { "class_name": "Zeros", "config": {} },
639
+ "kernel_regularizer": null,
640
+ "bias_regularizer": null,
641
+ "activity_regularizer": null,
642
+ "kernel_constraint": null,
643
+ "bias_constraint": null
644
+ },
645
+ "inbound_nodes": [[["block_3_depthwise_relu", 0, 0, {}]]]
646
+ },
647
+ {
648
+ "name": "block_3_project_BN",
649
+ "class_name": "BatchNormalization",
650
+ "config": {
651
+ "name": "block_3_project_BN",
652
+ "trainable": false,
653
+ "axis": -1,
654
+ "momentum": 0.999,
655
+ "epsilon": 0.001,
656
+ "center": true,
657
+ "scale": true,
658
+ "beta_initializer": { "class_name": "Zeros", "config": {} },
659
+ "gamma_initializer": { "class_name": "Ones", "config": {} },
660
+ "moving_mean_initializer": { "class_name": "Zeros", "config": {} },
661
+ "moving_variance_initializer": { "class_name": "Ones", "config": {} },
662
+ "beta_regularizer": null,
663
+ "gamma_regularizer": null,
664
+ "beta_constraint": null,
665
+ "gamma_constraint": null
666
+ },
667
+ "inbound_nodes": [[["block_3_project", 0, 0, {}]]]
668
+ },
669
+ {
670
+ "name": "block_4_expand",
671
+ "class_name": "Conv2D",
672
+ "config": {
673
+ "name": "block_4_expand",
674
+ "trainable": false,
675
+ "filters": 192,
676
+ "kernel_size": [1, 1],
677
+ "strides": [1, 1],
678
+ "padding": "same",
679
+ "data_format": "channels_last",
680
+ "dilation_rate": [1, 1],
681
+ "activation": "linear",
682
+ "use_bias": false,
683
+ "kernel_initializer": { "class_name": "VarianceScaling", "config": { "scale": 1.0, "mode": "fan_avg", "distribution": "uniform", "seed": null } },
684
+ "bias_initializer": { "class_name": "Zeros", "config": {} },
685
+ "kernel_regularizer": null,
686
+ "bias_regularizer": null,
687
+ "activity_regularizer": null,
688
+ "kernel_constraint": null,
689
+ "bias_constraint": null
690
+ },
691
+ "inbound_nodes": [[["block_3_project_BN", 0, 0, {}]]]
692
+ },
693
+ {
694
+ "name": "block_4_expand_BN",
695
+ "class_name": "BatchNormalization",
696
+ "config": {
697
+ "name": "block_4_expand_BN",
698
+ "trainable": false,
699
+ "axis": -1,
700
+ "momentum": 0.999,
701
+ "epsilon": 0.001,
702
+ "center": true,
703
+ "scale": true,
704
+ "beta_initializer": { "class_name": "Zeros", "config": {} },
705
+ "gamma_initializer": { "class_name": "Ones", "config": {} },
706
+ "moving_mean_initializer": { "class_name": "Zeros", "config": {} },
707
+ "moving_variance_initializer": { "class_name": "Ones", "config": {} },
708
+ "beta_regularizer": null,
709
+ "gamma_regularizer": null,
710
+ "beta_constraint": null,
711
+ "gamma_constraint": null
712
+ },
713
+ "inbound_nodes": [[["block_4_expand", 0, 0, {}]]]
714
+ },
715
+ {
716
+ "name": "block_4_expand_relu",
717
+ "class_name": "ReLU",
718
+ "config": { "name": "block_4_expand_relu", "trainable": false, "max_value": 6.0, "negative_slope": 0.0, "threshold": 0.0 },
719
+ "inbound_nodes": [[["block_4_expand_BN", 0, 0, {}]]]
720
+ },
721
+ {
722
+ "name": "block_4_depthwise",
723
+ "class_name": "DepthwiseConv2D",
724
+ "config": {
725
+ "name": "block_4_depthwise",
726
+ "trainable": false,
727
+ "kernel_size": [3, 3],
728
+ "strides": [1, 1],
729
+ "padding": "same",
730
+ "data_format": "channels_last",
731
+ "dilation_rate": [1, 1],
732
+ "activation": "linear",
733
+ "use_bias": false,
734
+ "bias_initializer": { "class_name": "Zeros", "config": {} },
735
+ "bias_regularizer": null,
736
+ "activity_regularizer": null,
737
+ "bias_constraint": null,
738
+ "depth_multiplier": 1,
739
+ "depthwise_initializer": { "class_name": "VarianceScaling", "config": { "scale": 1.0, "mode": "fan_avg", "distribution": "uniform", "seed": null } },
740
+ "depthwise_regularizer": null,
741
+ "depthwise_constraint": null
742
+ },
743
+ "inbound_nodes": [[["block_4_expand_relu", 0, 0, {}]]]
744
+ },
745
+ {
746
+ "name": "block_4_depthwise_BN",
747
+ "class_name": "BatchNormalization",
748
+ "config": {
749
+ "name": "block_4_depthwise_BN",
750
+ "trainable": false,
751
+ "axis": -1,
752
+ "momentum": 0.999,
753
+ "epsilon": 0.001,
754
+ "center": true,
755
+ "scale": true,
756
+ "beta_initializer": { "class_name": "Zeros", "config": {} },
757
+ "gamma_initializer": { "class_name": "Ones", "config": {} },
758
+ "moving_mean_initializer": { "class_name": "Zeros", "config": {} },
759
+ "moving_variance_initializer": { "class_name": "Ones", "config": {} },
760
+ "beta_regularizer": null,
761
+ "gamma_regularizer": null,
762
+ "beta_constraint": null,
763
+ "gamma_constraint": null
764
+ },
765
+ "inbound_nodes": [[["block_4_depthwise", 0, 0, {}]]]
766
+ },
767
+ {
768
+ "name": "block_4_depthwise_relu",
769
+ "class_name": "ReLU",
770
+ "config": { "name": "block_4_depthwise_relu", "trainable": false, "max_value": 6.0, "negative_slope": 0.0, "threshold": 0.0 },
771
+ "inbound_nodes": [[["block_4_depthwise_BN", 0, 0, {}]]]
772
+ },
773
+ {
774
+ "name": "block_4_project",
775
+ "class_name": "Conv2D",
776
+ "config": {
777
+ "name": "block_4_project",
778
+ "trainable": false,
779
+ "filters": 32,
780
+ "kernel_size": [1, 1],
781
+ "strides": [1, 1],
782
+ "padding": "same",
783
+ "data_format": "channels_last",
784
+ "dilation_rate": [1, 1],
785
+ "activation": "linear",
786
+ "use_bias": false,
787
+ "kernel_initializer": { "class_name": "VarianceScaling", "config": { "scale": 1.0, "mode": "fan_avg", "distribution": "uniform", "seed": null } },
788
+ "bias_initializer": { "class_name": "Zeros", "config": {} },
789
+ "kernel_regularizer": null,
790
+ "bias_regularizer": null,
791
+ "activity_regularizer": null,
792
+ "kernel_constraint": null,
793
+ "bias_constraint": null
794
+ },
795
+ "inbound_nodes": [[["block_4_depthwise_relu", 0, 0, {}]]]
796
+ },
797
+ {
798
+ "name": "block_4_project_BN",
799
+ "class_name": "BatchNormalization",
800
+ "config": {
801
+ "name": "block_4_project_BN",
802
+ "trainable": false,
803
+ "axis": -1,
804
+ "momentum": 0.999,
805
+ "epsilon": 0.001,
806
+ "center": true,
807
+ "scale": true,
808
+ "beta_initializer": { "class_name": "Zeros", "config": {} },
809
+ "gamma_initializer": { "class_name": "Ones", "config": {} },
810
+ "moving_mean_initializer": { "class_name": "Zeros", "config": {} },
811
+ "moving_variance_initializer": { "class_name": "Ones", "config": {} },
812
+ "beta_regularizer": null,
813
+ "gamma_regularizer": null,
814
+ "beta_constraint": null,
815
+ "gamma_constraint": null
816
+ },
817
+ "inbound_nodes": [[["block_4_project", 0, 0, {}]]]
818
+ },
819
+ {
820
+ "name": "block_4_add",
821
+ "class_name": "Add",
822
+ "config": { "name": "block_4_add", "trainable": false },
823
+ "inbound_nodes": [
824
+ [
825
+ ["block_3_project_BN", 0, 0, {}],
826
+ ["block_4_project_BN", 0, 0, {}]
827
+ ]
828
+ ]
829
+ },
830
+ {
831
+ "name": "block_5_expand",
832
+ "class_name": "Conv2D",
833
+ "config": {
834
+ "name": "block_5_expand",
835
+ "trainable": false,
836
+ "filters": 192,
837
+ "kernel_size": [1, 1],
838
+ "strides": [1, 1],
839
+ "padding": "same",
840
+ "data_format": "channels_last",
841
+ "dilation_rate": [1, 1],
842
+ "activation": "linear",
843
+ "use_bias": false,
844
+ "kernel_initializer": { "class_name": "VarianceScaling", "config": { "scale": 1.0, "mode": "fan_avg", "distribution": "uniform", "seed": null } },
845
+ "bias_initializer": { "class_name": "Zeros", "config": {} },
846
+ "kernel_regularizer": null,
847
+ "bias_regularizer": null,
848
+ "activity_regularizer": null,
849
+ "kernel_constraint": null,
850
+ "bias_constraint": null
851
+ },
852
+ "inbound_nodes": [[["block_4_add", 0, 0, {}]]]
853
+ },
854
+ {
855
+ "name": "block_5_expand_BN",
856
+ "class_name": "BatchNormalization",
857
+ "config": {
858
+ "name": "block_5_expand_BN",
859
+ "trainable": false,
860
+ "axis": -1,
861
+ "momentum": 0.999,
862
+ "epsilon": 0.001,
863
+ "center": true,
864
+ "scale": true,
865
+ "beta_initializer": { "class_name": "Zeros", "config": {} },
866
+ "gamma_initializer": { "class_name": "Ones", "config": {} },
867
+ "moving_mean_initializer": { "class_name": "Zeros", "config": {} },
868
+ "moving_variance_initializer": { "class_name": "Ones", "config": {} },
869
+ "beta_regularizer": null,
870
+ "gamma_regularizer": null,
871
+ "beta_constraint": null,
872
+ "gamma_constraint": null
873
+ },
874
+ "inbound_nodes": [[["block_5_expand", 0, 0, {}]]]
875
+ },
876
+ {
877
+ "name": "block_5_expand_relu",
878
+ "class_name": "ReLU",
879
+ "config": { "name": "block_5_expand_relu", "trainable": false, "max_value": 6.0, "negative_slope": 0.0, "threshold": 0.0 },
880
+ "inbound_nodes": [[["block_5_expand_BN", 0, 0, {}]]]
881
+ },
882
+ {
883
+ "name": "block_5_depthwise",
884
+ "class_name": "DepthwiseConv2D",
885
+ "config": {
886
+ "name": "block_5_depthwise",
887
+ "trainable": false,
888
+ "kernel_size": [3, 3],
889
+ "strides": [1, 1],
890
+ "padding": "same",
891
+ "data_format": "channels_last",
892
+ "dilation_rate": [1, 1],
893
+ "activation": "linear",
894
+ "use_bias": false,
895
+ "bias_initializer": { "class_name": "Zeros", "config": {} },
896
+ "bias_regularizer": null,
897
+ "activity_regularizer": null,
898
+ "bias_constraint": null,
899
+ "depth_multiplier": 1,
900
+ "depthwise_initializer": { "class_name": "VarianceScaling", "config": { "scale": 1.0, "mode": "fan_avg", "distribution": "uniform", "seed": null } },
901
+ "depthwise_regularizer": null,
902
+ "depthwise_constraint": null
903
+ },
904
+ "inbound_nodes": [[["block_5_expand_relu", 0, 0, {}]]]
905
+ },
906
+ {
907
+ "name": "block_5_depthwise_BN",
908
+ "class_name": "BatchNormalization",
909
+ "config": {
910
+ "name": "block_5_depthwise_BN",
911
+ "trainable": false,
912
+ "axis": -1,
913
+ "momentum": 0.999,
914
+ "epsilon": 0.001,
915
+ "center": true,
916
+ "scale": true,
917
+ "beta_initializer": { "class_name": "Zeros", "config": {} },
918
+ "gamma_initializer": { "class_name": "Ones", "config": {} },
919
+ "moving_mean_initializer": { "class_name": "Zeros", "config": {} },
920
+ "moving_variance_initializer": { "class_name": "Ones", "config": {} },
921
+ "beta_regularizer": null,
922
+ "gamma_regularizer": null,
923
+ "beta_constraint": null,
924
+ "gamma_constraint": null
925
+ },
926
+ "inbound_nodes": [[["block_5_depthwise", 0, 0, {}]]]
927
+ },
928
+ {
929
+ "name": "block_5_depthwise_relu",
930
+ "class_name": "ReLU",
931
+ "config": { "name": "block_5_depthwise_relu", "trainable": false, "max_value": 6.0, "negative_slope": 0.0, "threshold": 0.0 },
932
+ "inbound_nodes": [[["block_5_depthwise_BN", 0, 0, {}]]]
933
+ },
934
+ {
935
+ "name": "block_5_project",
936
+ "class_name": "Conv2D",
937
+ "config": {
938
+ "name": "block_5_project",
939
+ "trainable": false,
940
+ "filters": 32,
941
+ "kernel_size": [1, 1],
942
+ "strides": [1, 1],
943
+ "padding": "same",
944
+ "data_format": "channels_last",
945
+ "dilation_rate": [1, 1],
946
+ "activation": "linear",
947
+ "use_bias": false,
948
+ "kernel_initializer": { "class_name": "VarianceScaling", "config": { "scale": 1.0, "mode": "fan_avg", "distribution": "uniform", "seed": null } },
949
+ "bias_initializer": { "class_name": "Zeros", "config": {} },
950
+ "kernel_regularizer": null,
951
+ "bias_regularizer": null,
952
+ "activity_regularizer": null,
953
+ "kernel_constraint": null,
954
+ "bias_constraint": null
955
+ },
956
+ "inbound_nodes": [[["block_5_depthwise_relu", 0, 0, {}]]]
957
+ },
958
+ {
959
+ "name": "block_5_project_BN",
960
+ "class_name": "BatchNormalization",
961
+ "config": {
962
+ "name": "block_5_project_BN",
963
+ "trainable": false,
964
+ "axis": -1,
965
+ "momentum": 0.999,
966
+ "epsilon": 0.001,
967
+ "center": true,
968
+ "scale": true,
969
+ "beta_initializer": { "class_name": "Zeros", "config": {} },
970
+ "gamma_initializer": { "class_name": "Ones", "config": {} },
971
+ "moving_mean_initializer": { "class_name": "Zeros", "config": {} },
972
+ "moving_variance_initializer": { "class_name": "Ones", "config": {} },
973
+ "beta_regularizer": null,
974
+ "gamma_regularizer": null,
975
+ "beta_constraint": null,
976
+ "gamma_constraint": null
977
+ },
978
+ "inbound_nodes": [[["block_5_project", 0, 0, {}]]]
979
+ },
980
+ {
981
+ "name": "block_5_add",
982
+ "class_name": "Add",
983
+ "config": { "name": "block_5_add", "trainable": false },
984
+ "inbound_nodes": [
985
+ [
986
+ ["block_4_add", 0, 0, {}],
987
+ ["block_5_project_BN", 0, 0, {}]
988
+ ]
989
+ ]
990
+ },
991
+ {
992
+ "name": "block_6_expand",
993
+ "class_name": "Conv2D",
994
+ "config": {
995
+ "name": "block_6_expand",
996
+ "trainable": false,
997
+ "filters": 192,
998
+ "kernel_size": [1, 1],
999
+ "strides": [1, 1],
1000
+ "padding": "same",
1001
+ "data_format": "channels_last",
1002
+ "dilation_rate": [1, 1],
1003
+ "activation": "linear",
1004
+ "use_bias": false,
1005
+ "kernel_initializer": { "class_name": "VarianceScaling", "config": { "scale": 1.0, "mode": "fan_avg", "distribution": "uniform", "seed": null } },
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
+ "inbound_nodes": [[["block_5_add", 0, 0, {}]]]
1014
+ },
1015
+ {
1016
+ "name": "block_6_expand_BN",
1017
+ "class_name": "BatchNormalization",
1018
+ "config": {
1019
+ "name": "block_6_expand_BN",
1020
+ "trainable": false,
1021
+ "axis": -1,
1022
+ "momentum": 0.999,
1023
+ "epsilon": 0.001,
1024
+ "center": true,
1025
+ "scale": true,
1026
+ "beta_initializer": { "class_name": "Zeros", "config": {} },
1027
+ "gamma_initializer": { "class_name": "Ones", "config": {} },
1028
+ "moving_mean_initializer": { "class_name": "Zeros", "config": {} },
1029
+ "moving_variance_initializer": { "class_name": "Ones", "config": {} },
1030
+ "beta_regularizer": null,
1031
+ "gamma_regularizer": null,
1032
+ "beta_constraint": null,
1033
+ "gamma_constraint": null
1034
+ },
1035
+ "inbound_nodes": [[["block_6_expand", 0, 0, {}]]]
1036
+ },
1037
+ {
1038
+ "name": "block_6_expand_relu",
1039
+ "class_name": "ReLU",
1040
+ "config": { "name": "block_6_expand_relu", "trainable": false, "max_value": 6.0, "negative_slope": 0.0, "threshold": 0.0 },
1041
+ "inbound_nodes": [[["block_6_expand_BN", 0, 0, {}]]]
1042
+ },
1043
+ {
1044
+ "name": "block_6_pad",
1045
+ "class_name": "ZeroPadding2D",
1046
+ "config": {
1047
+ "name": "block_6_pad",
1048
+ "trainable": false,
1049
+ "padding": [
1050
+ [0, 1],
1051
+ [0, 1]
1052
+ ],
1053
+ "data_format": "channels_last"
1054
+ },
1055
+ "inbound_nodes": [[["block_6_expand_relu", 0, 0, {}]]]
1056
+ },
1057
+ {
1058
+ "name": "block_6_depthwise",
1059
+ "class_name": "DepthwiseConv2D",
1060
+ "config": {
1061
+ "name": "block_6_depthwise",
1062
+ "trainable": false,
1063
+ "kernel_size": [3, 3],
1064
+ "strides": [2, 2],
1065
+ "padding": "valid",
1066
+ "data_format": "channels_last",
1067
+ "dilation_rate": [1, 1],
1068
+ "activation": "linear",
1069
+ "use_bias": false,
1070
+ "bias_initializer": { "class_name": "Zeros", "config": {} },
1071
+ "bias_regularizer": null,
1072
+ "activity_regularizer": null,
1073
+ "bias_constraint": null,
1074
+ "depth_multiplier": 1,
1075
+ "depthwise_initializer": { "class_name": "VarianceScaling", "config": { "scale": 1.0, "mode": "fan_avg", "distribution": "uniform", "seed": null } },
1076
+ "depthwise_regularizer": null,
1077
+ "depthwise_constraint": null
1078
+ },
1079
+ "inbound_nodes": [[["block_6_pad", 0, 0, {}]]]
1080
+ },
1081
+ {
1082
+ "name": "block_6_depthwise_BN",
1083
+ "class_name": "BatchNormalization",
1084
+ "config": {
1085
+ "name": "block_6_depthwise_BN",
1086
+ "trainable": false,
1087
+ "axis": -1,
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
+ "inbound_nodes": [[["block_6_depthwise", 0, 0, {}]]]
1102
+ },
1103
+ {
1104
+ "name": "block_6_depthwise_relu",
1105
+ "class_name": "ReLU",
1106
+ "config": { "name": "block_6_depthwise_relu", "trainable": false, "max_value": 6.0, "negative_slope": 0.0, "threshold": 0.0 },
1107
+ "inbound_nodes": [[["block_6_depthwise_BN", 0, 0, {}]]]
1108
+ },
1109
+ {
1110
+ "name": "block_6_project",
1111
+ "class_name": "Conv2D",
1112
+ "config": {
1113
+ "name": "block_6_project",
1114
+ "trainable": false,
1115
+ "filters": 64,
1116
+ "kernel_size": [1, 1],
1117
+ "strides": [1, 1],
1118
+ "padding": "same",
1119
+ "data_format": "channels_last",
1120
+ "dilation_rate": [1, 1],
1121
+ "activation": "linear",
1122
+ "use_bias": false,
1123
+ "kernel_initializer": { "class_name": "VarianceScaling", "config": { "scale": 1.0, "mode": "fan_avg", "distribution": "uniform", "seed": null } },
1124
+ "bias_initializer": { "class_name": "Zeros", "config": {} },
1125
+ "kernel_regularizer": null,
1126
+ "bias_regularizer": null,
1127
+ "activity_regularizer": null,
1128
+ "kernel_constraint": null,
1129
+ "bias_constraint": null
1130
+ },
1131
+ "inbound_nodes": [[["block_6_depthwise_relu", 0, 0, {}]]]
1132
+ },
1133
+ {
1134
+ "name": "block_6_project_BN",
1135
+ "class_name": "BatchNormalization",
1136
+ "config": {
1137
+ "name": "block_6_project_BN",
1138
+ "trainable": false,
1139
+ "axis": -1,
1140
+ "momentum": 0.999,
1141
+ "epsilon": 0.001,
1142
+ "center": true,
1143
+ "scale": true,
1144
+ "beta_initializer": { "class_name": "Zeros", "config": {} },
1145
+ "gamma_initializer": { "class_name": "Ones", "config": {} },
1146
+ "moving_mean_initializer": { "class_name": "Zeros", "config": {} },
1147
+ "moving_variance_initializer": { "class_name": "Ones", "config": {} },
1148
+ "beta_regularizer": null,
1149
+ "gamma_regularizer": null,
1150
+ "beta_constraint": null,
1151
+ "gamma_constraint": null
1152
+ },
1153
+ "inbound_nodes": [[["block_6_project", 0, 0, {}]]]
1154
+ },
1155
+ {
1156
+ "name": "block_7_expand",
1157
+ "class_name": "Conv2D",
1158
+ "config": {
1159
+ "name": "block_7_expand",
1160
+ "trainable": false,
1161
+ "filters": 384,
1162
+ "kernel_size": [1, 1],
1163
+ "strides": [1, 1],
1164
+ "padding": "same",
1165
+ "data_format": "channels_last",
1166
+ "dilation_rate": [1, 1],
1167
+ "activation": "linear",
1168
+ "use_bias": false,
1169
+ "kernel_initializer": { "class_name": "VarianceScaling", "config": { "scale": 1.0, "mode": "fan_avg", "distribution": "uniform", "seed": null } },
1170
+ "bias_initializer": { "class_name": "Zeros", "config": {} },
1171
+ "kernel_regularizer": null,
1172
+ "bias_regularizer": null,
1173
+ "activity_regularizer": null,
1174
+ "kernel_constraint": null,
1175
+ "bias_constraint": null
1176
+ },
1177
+ "inbound_nodes": [[["block_6_project_BN", 0, 0, {}]]]
1178
+ },
1179
+ {
1180
+ "name": "block_7_expand_BN",
1181
+ "class_name": "BatchNormalization",
1182
+ "config": {
1183
+ "name": "block_7_expand_BN",
1184
+ "trainable": false,
1185
+ "axis": -1,
1186
+ "momentum": 0.999,
1187
+ "epsilon": 0.001,
1188
+ "center": true,
1189
+ "scale": true,
1190
+ "beta_initializer": { "class_name": "Zeros", "config": {} },
1191
+ "gamma_initializer": { "class_name": "Ones", "config": {} },
1192
+ "moving_mean_initializer": { "class_name": "Zeros", "config": {} },
1193
+ "moving_variance_initializer": { "class_name": "Ones", "config": {} },
1194
+ "beta_regularizer": null,
1195
+ "gamma_regularizer": null,
1196
+ "beta_constraint": null,
1197
+ "gamma_constraint": null
1198
+ },
1199
+ "inbound_nodes": [[["block_7_expand", 0, 0, {}]]]
1200
+ },
1201
+ {
1202
+ "name": "block_7_expand_relu",
1203
+ "class_name": "ReLU",
1204
+ "config": { "name": "block_7_expand_relu", "trainable": false, "max_value": 6.0, "negative_slope": 0.0, "threshold": 0.0 },
1205
+ "inbound_nodes": [[["block_7_expand_BN", 0, 0, {}]]]
1206
+ },
1207
+ {
1208
+ "name": "block_7_depthwise",
1209
+ "class_name": "DepthwiseConv2D",
1210
+ "config": {
1211
+ "name": "block_7_depthwise",
1212
+ "trainable": false,
1213
+ "kernel_size": [3, 3],
1214
+ "strides": [1, 1],
1215
+ "padding": "same",
1216
+ "data_format": "channels_last",
1217
+ "dilation_rate": [1, 1],
1218
+ "activation": "linear",
1219
+ "use_bias": false,
1220
+ "bias_initializer": { "class_name": "Zeros", "config": {} },
1221
+ "bias_regularizer": null,
1222
+ "activity_regularizer": null,
1223
+ "bias_constraint": null,
1224
+ "depth_multiplier": 1,
1225
+ "depthwise_initializer": { "class_name": "VarianceScaling", "config": { "scale": 1.0, "mode": "fan_avg", "distribution": "uniform", "seed": null } },
1226
+ "depthwise_regularizer": null,
1227
+ "depthwise_constraint": null
1228
+ },
1229
+ "inbound_nodes": [[["block_7_expand_relu", 0, 0, {}]]]
1230
+ },
1231
+ {
1232
+ "name": "block_7_depthwise_BN",
1233
+ "class_name": "BatchNormalization",
1234
+ "config": {
1235
+ "name": "block_7_depthwise_BN",
1236
+ "trainable": false,
1237
+ "axis": -1,
1238
+ "momentum": 0.999,
1239
+ "epsilon": 0.001,
1240
+ "center": true,
1241
+ "scale": true,
1242
+ "beta_initializer": { "class_name": "Zeros", "config": {} },
1243
+ "gamma_initializer": { "class_name": "Ones", "config": {} },
1244
+ "moving_mean_initializer": { "class_name": "Zeros", "config": {} },
1245
+ "moving_variance_initializer": { "class_name": "Ones", "config": {} },
1246
+ "beta_regularizer": null,
1247
+ "gamma_regularizer": null,
1248
+ "beta_constraint": null,
1249
+ "gamma_constraint": null
1250
+ },
1251
+ "inbound_nodes": [[["block_7_depthwise", 0, 0, {}]]]
1252
+ },
1253
+ {
1254
+ "name": "block_7_depthwise_relu",
1255
+ "class_name": "ReLU",
1256
+ "config": { "name": "block_7_depthwise_relu", "trainable": false, "max_value": 6.0, "negative_slope": 0.0, "threshold": 0.0 },
1257
+ "inbound_nodes": [[["block_7_depthwise_BN", 0, 0, {}]]]
1258
+ },
1259
+ {
1260
+ "name": "block_7_project",
1261
+ "class_name": "Conv2D",
1262
+ "config": {
1263
+ "name": "block_7_project",
1264
+ "trainable": false,
1265
+ "filters": 64,
1266
+ "kernel_size": [1, 1],
1267
+ "strides": [1, 1],
1268
+ "padding": "same",
1269
+ "data_format": "channels_last",
1270
+ "dilation_rate": [1, 1],
1271
+ "activation": "linear",
1272
+ "use_bias": false,
1273
+ "kernel_initializer": { "class_name": "VarianceScaling", "config": { "scale": 1.0, "mode": "fan_avg", "distribution": "uniform", "seed": null } },
1274
+ "bias_initializer": { "class_name": "Zeros", "config": {} },
1275
+ "kernel_regularizer": null,
1276
+ "bias_regularizer": null,
1277
+ "activity_regularizer": null,
1278
+ "kernel_constraint": null,
1279
+ "bias_constraint": null
1280
+ },
1281
+ "inbound_nodes": [[["block_7_depthwise_relu", 0, 0, {}]]]
1282
+ },
1283
+ {
1284
+ "name": "block_7_project_BN",
1285
+ "class_name": "BatchNormalization",
1286
+ "config": {
1287
+ "name": "block_7_project_BN",
1288
+ "trainable": false,
1289
+ "axis": -1,
1290
+ "momentum": 0.999,
1291
+ "epsilon": 0.001,
1292
+ "center": true,
1293
+ "scale": true,
1294
+ "beta_initializer": { "class_name": "Zeros", "config": {} },
1295
+ "gamma_initializer": { "class_name": "Ones", "config": {} },
1296
+ "moving_mean_initializer": { "class_name": "Zeros", "config": {} },
1297
+ "moving_variance_initializer": { "class_name": "Ones", "config": {} },
1298
+ "beta_regularizer": null,
1299
+ "gamma_regularizer": null,
1300
+ "beta_constraint": null,
1301
+ "gamma_constraint": null
1302
+ },
1303
+ "inbound_nodes": [[["block_7_project", 0, 0, {}]]]
1304
+ },
1305
+ {
1306
+ "name": "block_7_add",
1307
+ "class_name": "Add",
1308
+ "config": { "name": "block_7_add", "trainable": false },
1309
+ "inbound_nodes": [
1310
+ [
1311
+ ["block_6_project_BN", 0, 0, {}],
1312
+ ["block_7_project_BN", 0, 0, {}]
1313
+ ]
1314
+ ]
1315
+ },
1316
+ {
1317
+ "name": "block_8_expand",
1318
+ "class_name": "Conv2D",
1319
+ "config": {
1320
+ "name": "block_8_expand",
1321
+ "trainable": false,
1322
+ "filters": 384,
1323
+ "kernel_size": [1, 1],
1324
+ "strides": [1, 1],
1325
+ "padding": "same",
1326
+ "data_format": "channels_last",
1327
+ "dilation_rate": [1, 1],
1328
+ "activation": "linear",
1329
+ "use_bias": false,
1330
+ "kernel_initializer": { "class_name": "VarianceScaling", "config": { "scale": 1.0, "mode": "fan_avg", "distribution": "uniform", "seed": null } },
1331
+ "bias_initializer": { "class_name": "Zeros", "config": {} },
1332
+ "kernel_regularizer": null,
1333
+ "bias_regularizer": null,
1334
+ "activity_regularizer": null,
1335
+ "kernel_constraint": null,
1336
+ "bias_constraint": null
1337
+ },
1338
+ "inbound_nodes": [[["block_7_add", 0, 0, {}]]]
1339
+ },
1340
+ {
1341
+ "name": "block_8_expand_BN",
1342
+ "class_name": "BatchNormalization",
1343
+ "config": {
1344
+ "name": "block_8_expand_BN",
1345
+ "trainable": false,
1346
+ "axis": -1,
1347
+ "momentum": 0.999,
1348
+ "epsilon": 0.001,
1349
+ "center": true,
1350
+ "scale": true,
1351
+ "beta_initializer": { "class_name": "Zeros", "config": {} },
1352
+ "gamma_initializer": { "class_name": "Ones", "config": {} },
1353
+ "moving_mean_initializer": { "class_name": "Zeros", "config": {} },
1354
+ "moving_variance_initializer": { "class_name": "Ones", "config": {} },
1355
+ "beta_regularizer": null,
1356
+ "gamma_regularizer": null,
1357
+ "beta_constraint": null,
1358
+ "gamma_constraint": null
1359
+ },
1360
+ "inbound_nodes": [[["block_8_expand", 0, 0, {}]]]
1361
+ },
1362
+ {
1363
+ "name": "block_8_expand_relu",
1364
+ "class_name": "ReLU",
1365
+ "config": { "name": "block_8_expand_relu", "trainable": false, "max_value": 6.0, "negative_slope": 0.0, "threshold": 0.0 },
1366
+ "inbound_nodes": [[["block_8_expand_BN", 0, 0, {}]]]
1367
+ },
1368
+ {
1369
+ "name": "block_8_depthwise",
1370
+ "class_name": "DepthwiseConv2D",
1371
+ "config": {
1372
+ "name": "block_8_depthwise",
1373
+ "trainable": false,
1374
+ "kernel_size": [3, 3],
1375
+ "strides": [1, 1],
1376
+ "padding": "same",
1377
+ "data_format": "channels_last",
1378
+ "dilation_rate": [1, 1],
1379
+ "activation": "linear",
1380
+ "use_bias": false,
1381
+ "bias_initializer": { "class_name": "Zeros", "config": {} },
1382
+ "bias_regularizer": null,
1383
+ "activity_regularizer": null,
1384
+ "bias_constraint": null,
1385
+ "depth_multiplier": 1,
1386
+ "depthwise_initializer": { "class_name": "VarianceScaling", "config": { "scale": 1.0, "mode": "fan_avg", "distribution": "uniform", "seed": null } },
1387
+ "depthwise_regularizer": null,
1388
+ "depthwise_constraint": null
1389
+ },
1390
+ "inbound_nodes": [[["block_8_expand_relu", 0, 0, {}]]]
1391
+ },
1392
+ {
1393
+ "name": "block_8_depthwise_BN",
1394
+ "class_name": "BatchNormalization",
1395
+ "config": {
1396
+ "name": "block_8_depthwise_BN",
1397
+ "trainable": false,
1398
+ "axis": -1,
1399
+ "momentum": 0.999,
1400
+ "epsilon": 0.001,
1401
+ "center": true,
1402
+ "scale": true,
1403
+ "beta_initializer": { "class_name": "Zeros", "config": {} },
1404
+ "gamma_initializer": { "class_name": "Ones", "config": {} },
1405
+ "moving_mean_initializer": { "class_name": "Zeros", "config": {} },
1406
+ "moving_variance_initializer": { "class_name": "Ones", "config": {} },
1407
+ "beta_regularizer": null,
1408
+ "gamma_regularizer": null,
1409
+ "beta_constraint": null,
1410
+ "gamma_constraint": null
1411
+ },
1412
+ "inbound_nodes": [[["block_8_depthwise", 0, 0, {}]]]
1413
+ },
1414
+ {
1415
+ "name": "block_8_depthwise_relu",
1416
+ "class_name": "ReLU",
1417
+ "config": { "name": "block_8_depthwise_relu", "trainable": false, "max_value": 6.0, "negative_slope": 0.0, "threshold": 0.0 },
1418
+ "inbound_nodes": [[["block_8_depthwise_BN", 0, 0, {}]]]
1419
+ },
1420
+ {
1421
+ "name": "block_8_project",
1422
+ "class_name": "Conv2D",
1423
+ "config": {
1424
+ "name": "block_8_project",
1425
+ "trainable": false,
1426
+ "filters": 64,
1427
+ "kernel_size": [1, 1],
1428
+ "strides": [1, 1],
1429
+ "padding": "same",
1430
+ "data_format": "channels_last",
1431
+ "dilation_rate": [1, 1],
1432
+ "activation": "linear",
1433
+ "use_bias": false,
1434
+ "kernel_initializer": { "class_name": "VarianceScaling", "config": { "scale": 1.0, "mode": "fan_avg", "distribution": "uniform", "seed": null } },
1435
+ "bias_initializer": { "class_name": "Zeros", "config": {} },
1436
+ "kernel_regularizer": null,
1437
+ "bias_regularizer": null,
1438
+ "activity_regularizer": null,
1439
+ "kernel_constraint": null,
1440
+ "bias_constraint": null
1441
+ },
1442
+ "inbound_nodes": [[["block_8_depthwise_relu", 0, 0, {}]]]
1443
+ },
1444
+ {
1445
+ "name": "block_8_project_BN",
1446
+ "class_name": "BatchNormalization",
1447
+ "config": {
1448
+ "name": "block_8_project_BN",
1449
+ "trainable": false,
1450
+ "axis": -1,
1451
+ "momentum": 0.999,
1452
+ "epsilon": 0.001,
1453
+ "center": true,
1454
+ "scale": true,
1455
+ "beta_initializer": { "class_name": "Zeros", "config": {} },
1456
+ "gamma_initializer": { "class_name": "Ones", "config": {} },
1457
+ "moving_mean_initializer": { "class_name": "Zeros", "config": {} },
1458
+ "moving_variance_initializer": { "class_name": "Ones", "config": {} },
1459
+ "beta_regularizer": null,
1460
+ "gamma_regularizer": null,
1461
+ "beta_constraint": null,
1462
+ "gamma_constraint": null
1463
+ },
1464
+ "inbound_nodes": [[["block_8_project", 0, 0, {}]]]
1465
+ },
1466
+ {
1467
+ "name": "block_8_add",
1468
+ "class_name": "Add",
1469
+ "config": { "name": "block_8_add", "trainable": false },
1470
+ "inbound_nodes": [
1471
+ [
1472
+ ["block_7_add", 0, 0, {}],
1473
+ ["block_8_project_BN", 0, 0, {}]
1474
+ ]
1475
+ ]
1476
+ },
1477
+ {
1478
+ "name": "block_9_expand",
1479
+ "class_name": "Conv2D",
1480
+ "config": {
1481
+ "name": "block_9_expand",
1482
+ "trainable": false,
1483
+ "filters": 384,
1484
+ "kernel_size": [1, 1],
1485
+ "strides": [1, 1],
1486
+ "padding": "same",
1487
+ "data_format": "channels_last",
1488
+ "dilation_rate": [1, 1],
1489
+ "activation": "linear",
1490
+ "use_bias": false,
1491
+ "kernel_initializer": { "class_name": "VarianceScaling", "config": { "scale": 1.0, "mode": "fan_avg", "distribution": "uniform", "seed": null } },
1492
+ "bias_initializer": { "class_name": "Zeros", "config": {} },
1493
+ "kernel_regularizer": null,
1494
+ "bias_regularizer": null,
1495
+ "activity_regularizer": null,
1496
+ "kernel_constraint": null,
1497
+ "bias_constraint": null
1498
+ },
1499
+ "inbound_nodes": [[["block_8_add", 0, 0, {}]]]
1500
+ },
1501
+ {
1502
+ "name": "block_9_expand_BN",
1503
+ "class_name": "BatchNormalization",
1504
+ "config": {
1505
+ "name": "block_9_expand_BN",
1506
+ "trainable": false,
1507
+ "axis": -1,
1508
+ "momentum": 0.999,
1509
+ "epsilon": 0.001,
1510
+ "center": true,
1511
+ "scale": true,
1512
+ "beta_initializer": { "class_name": "Zeros", "config": {} },
1513
+ "gamma_initializer": { "class_name": "Ones", "config": {} },
1514
+ "moving_mean_initializer": { "class_name": "Zeros", "config": {} },
1515
+ "moving_variance_initializer": { "class_name": "Ones", "config": {} },
1516
+ "beta_regularizer": null,
1517
+ "gamma_regularizer": null,
1518
+ "beta_constraint": null,
1519
+ "gamma_constraint": null
1520
+ },
1521
+ "inbound_nodes": [[["block_9_expand", 0, 0, {}]]]
1522
+ },
1523
+ {
1524
+ "name": "block_9_expand_relu",
1525
+ "class_name": "ReLU",
1526
+ "config": { "name": "block_9_expand_relu", "trainable": false, "max_value": 6.0, "negative_slope": 0.0, "threshold": 0.0 },
1527
+ "inbound_nodes": [[["block_9_expand_BN", 0, 0, {}]]]
1528
+ },
1529
+ {
1530
+ "name": "block_9_depthwise",
1531
+ "class_name": "DepthwiseConv2D",
1532
+ "config": {
1533
+ "name": "block_9_depthwise",
1534
+ "trainable": false,
1535
+ "kernel_size": [3, 3],
1536
+ "strides": [1, 1],
1537
+ "padding": "same",
1538
+ "data_format": "channels_last",
1539
+ "dilation_rate": [1, 1],
1540
+ "activation": "linear",
1541
+ "use_bias": false,
1542
+ "bias_initializer": { "class_name": "Zeros", "config": {} },
1543
+ "bias_regularizer": null,
1544
+ "activity_regularizer": null,
1545
+ "bias_constraint": null,
1546
+ "depth_multiplier": 1,
1547
+ "depthwise_initializer": { "class_name": "VarianceScaling", "config": { "scale": 1.0, "mode": "fan_avg", "distribution": "uniform", "seed": null } },
1548
+ "depthwise_regularizer": null,
1549
+ "depthwise_constraint": null
1550
+ },
1551
+ "inbound_nodes": [[["block_9_expand_relu", 0, 0, {}]]]
1552
+ },
1553
+ {
1554
+ "name": "block_9_depthwise_BN",
1555
+ "class_name": "BatchNormalization",
1556
+ "config": {
1557
+ "name": "block_9_depthwise_BN",
1558
+ "trainable": false,
1559
+ "axis": -1,
1560
+ "momentum": 0.999,
1561
+ "epsilon": 0.001,
1562
+ "center": true,
1563
+ "scale": true,
1564
+ "beta_initializer": { "class_name": "Zeros", "config": {} },
1565
+ "gamma_initializer": { "class_name": "Ones", "config": {} },
1566
+ "moving_mean_initializer": { "class_name": "Zeros", "config": {} },
1567
+ "moving_variance_initializer": { "class_name": "Ones", "config": {} },
1568
+ "beta_regularizer": null,
1569
+ "gamma_regularizer": null,
1570
+ "beta_constraint": null,
1571
+ "gamma_constraint": null
1572
+ },
1573
+ "inbound_nodes": [[["block_9_depthwise", 0, 0, {}]]]
1574
+ },
1575
+ {
1576
+ "name": "block_9_depthwise_relu",
1577
+ "class_name": "ReLU",
1578
+ "config": { "name": "block_9_depthwise_relu", "trainable": false, "max_value": 6.0, "negative_slope": 0.0, "threshold": 0.0 },
1579
+ "inbound_nodes": [[["block_9_depthwise_BN", 0, 0, {}]]]
1580
+ },
1581
+ {
1582
+ "name": "block_9_project",
1583
+ "class_name": "Conv2D",
1584
+ "config": {
1585
+ "name": "block_9_project",
1586
+ "trainable": false,
1587
+ "filters": 64,
1588
+ "kernel_size": [1, 1],
1589
+ "strides": [1, 1],
1590
+ "padding": "same",
1591
+ "data_format": "channels_last",
1592
+ "dilation_rate": [1, 1],
1593
+ "activation": "linear",
1594
+ "use_bias": false,
1595
+ "kernel_initializer": { "class_name": "VarianceScaling", "config": { "scale": 1.0, "mode": "fan_avg", "distribution": "uniform", "seed": null } },
1596
+ "bias_initializer": { "class_name": "Zeros", "config": {} },
1597
+ "kernel_regularizer": null,
1598
+ "bias_regularizer": null,
1599
+ "activity_regularizer": null,
1600
+ "kernel_constraint": null,
1601
+ "bias_constraint": null
1602
+ },
1603
+ "inbound_nodes": [[["block_9_depthwise_relu", 0, 0, {}]]]
1604
+ },
1605
+ {
1606
+ "name": "block_9_project_BN",
1607
+ "class_name": "BatchNormalization",
1608
+ "config": {
1609
+ "name": "block_9_project_BN",
1610
+ "trainable": false,
1611
+ "axis": -1,
1612
+ "momentum": 0.999,
1613
+ "epsilon": 0.001,
1614
+ "center": true,
1615
+ "scale": true,
1616
+ "beta_initializer": { "class_name": "Zeros", "config": {} },
1617
+ "gamma_initializer": { "class_name": "Ones", "config": {} },
1618
+ "moving_mean_initializer": { "class_name": "Zeros", "config": {} },
1619
+ "moving_variance_initializer": { "class_name": "Ones", "config": {} },
1620
+ "beta_regularizer": null,
1621
+ "gamma_regularizer": null,
1622
+ "beta_constraint": null,
1623
+ "gamma_constraint": null
1624
+ },
1625
+ "inbound_nodes": [[["block_9_project", 0, 0, {}]]]
1626
+ },
1627
+ {
1628
+ "name": "block_9_add",
1629
+ "class_name": "Add",
1630
+ "config": { "name": "block_9_add", "trainable": false },
1631
+ "inbound_nodes": [
1632
+ [
1633
+ ["block_8_add", 0, 0, {}],
1634
+ ["block_9_project_BN", 0, 0, {}]
1635
+ ]
1636
+ ]
1637
+ },
1638
+ {
1639
+ "name": "block_10_expand",
1640
+ "class_name": "Conv2D",
1641
+ "config": {
1642
+ "name": "block_10_expand",
1643
+ "trainable": false,
1644
+ "filters": 384,
1645
+ "kernel_size": [1, 1],
1646
+ "strides": [1, 1],
1647
+ "padding": "same",
1648
+ "data_format": "channels_last",
1649
+ "dilation_rate": [1, 1],
1650
+ "activation": "linear",
1651
+ "use_bias": false,
1652
+ "kernel_initializer": { "class_name": "VarianceScaling", "config": { "scale": 1.0, "mode": "fan_avg", "distribution": "uniform", "seed": null } },
1653
+ "bias_initializer": { "class_name": "Zeros", "config": {} },
1654
+ "kernel_regularizer": null,
1655
+ "bias_regularizer": null,
1656
+ "activity_regularizer": null,
1657
+ "kernel_constraint": null,
1658
+ "bias_constraint": null
1659
+ },
1660
+ "inbound_nodes": [[["block_9_add", 0, 0, {}]]]
1661
+ },
1662
+ {
1663
+ "name": "block_10_expand_BN",
1664
+ "class_name": "BatchNormalization",
1665
+ "config": {
1666
+ "name": "block_10_expand_BN",
1667
+ "trainable": false,
1668
+ "axis": -1,
1669
+ "momentum": 0.999,
1670
+ "epsilon": 0.001,
1671
+ "center": true,
1672
+ "scale": true,
1673
+ "beta_initializer": { "class_name": "Zeros", "config": {} },
1674
+ "gamma_initializer": { "class_name": "Ones", "config": {} },
1675
+ "moving_mean_initializer": { "class_name": "Zeros", "config": {} },
1676
+ "moving_variance_initializer": { "class_name": "Ones", "config": {} },
1677
+ "beta_regularizer": null,
1678
+ "gamma_regularizer": null,
1679
+ "beta_constraint": null,
1680
+ "gamma_constraint": null
1681
+ },
1682
+ "inbound_nodes": [[["block_10_expand", 0, 0, {}]]]
1683
+ },
1684
+ {
1685
+ "name": "block_10_expand_relu",
1686
+ "class_name": "ReLU",
1687
+ "config": { "name": "block_10_expand_relu", "trainable": false, "max_value": 6.0, "negative_slope": 0.0, "threshold": 0.0 },
1688
+ "inbound_nodes": [[["block_10_expand_BN", 0, 0, {}]]]
1689
+ },
1690
+ {
1691
+ "name": "block_10_depthwise",
1692
+ "class_name": "DepthwiseConv2D",
1693
+ "config": {
1694
+ "name": "block_10_depthwise",
1695
+ "trainable": false,
1696
+ "kernel_size": [3, 3],
1697
+ "strides": [1, 1],
1698
+ "padding": "same",
1699
+ "data_format": "channels_last",
1700
+ "dilation_rate": [1, 1],
1701
+ "activation": "linear",
1702
+ "use_bias": false,
1703
+ "bias_initializer": { "class_name": "Zeros", "config": {} },
1704
+ "bias_regularizer": null,
1705
+ "activity_regularizer": null,
1706
+ "bias_constraint": null,
1707
+ "depth_multiplier": 1,
1708
+ "depthwise_initializer": { "class_name": "VarianceScaling", "config": { "scale": 1.0, "mode": "fan_avg", "distribution": "uniform", "seed": null } },
1709
+ "depthwise_regularizer": null,
1710
+ "depthwise_constraint": null
1711
+ },
1712
+ "inbound_nodes": [[["block_10_expand_relu", 0, 0, {}]]]
1713
+ },
1714
+ {
1715
+ "name": "block_10_depthwise_BN",
1716
+ "class_name": "BatchNormalization",
1717
+ "config": {
1718
+ "name": "block_10_depthwise_BN",
1719
+ "trainable": false,
1720
+ "axis": -1,
1721
+ "momentum": 0.999,
1722
+ "epsilon": 0.001,
1723
+ "center": true,
1724
+ "scale": true,
1725
+ "beta_initializer": { "class_name": "Zeros", "config": {} },
1726
+ "gamma_initializer": { "class_name": "Ones", "config": {} },
1727
+ "moving_mean_initializer": { "class_name": "Zeros", "config": {} },
1728
+ "moving_variance_initializer": { "class_name": "Ones", "config": {} },
1729
+ "beta_regularizer": null,
1730
+ "gamma_regularizer": null,
1731
+ "beta_constraint": null,
1732
+ "gamma_constraint": null
1733
+ },
1734
+ "inbound_nodes": [[["block_10_depthwise", 0, 0, {}]]]
1735
+ },
1736
+ {
1737
+ "name": "block_10_depthwise_relu",
1738
+ "class_name": "ReLU",
1739
+ "config": { "name": "block_10_depthwise_relu", "trainable": false, "max_value": 6.0, "negative_slope": 0.0, "threshold": 0.0 },
1740
+ "inbound_nodes": [[["block_10_depthwise_BN", 0, 0, {}]]]
1741
+ },
1742
+ {
1743
+ "name": "block_10_project",
1744
+ "class_name": "Conv2D",
1745
+ "config": {
1746
+ "name": "block_10_project",
1747
+ "trainable": false,
1748
+ "filters": 96,
1749
+ "kernel_size": [1, 1],
1750
+ "strides": [1, 1],
1751
+ "padding": "same",
1752
+ "data_format": "channels_last",
1753
+ "dilation_rate": [1, 1],
1754
+ "activation": "linear",
1755
+ "use_bias": false,
1756
+ "kernel_initializer": { "class_name": "VarianceScaling", "config": { "scale": 1.0, "mode": "fan_avg", "distribution": "uniform", "seed": null } },
1757
+ "bias_initializer": { "class_name": "Zeros", "config": {} },
1758
+ "kernel_regularizer": null,
1759
+ "bias_regularizer": null,
1760
+ "activity_regularizer": null,
1761
+ "kernel_constraint": null,
1762
+ "bias_constraint": null
1763
+ },
1764
+ "inbound_nodes": [[["block_10_depthwise_relu", 0, 0, {}]]]
1765
+ },
1766
+ {
1767
+ "name": "block_10_project_BN",
1768
+ "class_name": "BatchNormalization",
1769
+ "config": {
1770
+ "name": "block_10_project_BN",
1771
+ "trainable": false,
1772
+ "axis": -1,
1773
+ "momentum": 0.999,
1774
+ "epsilon": 0.001,
1775
+ "center": true,
1776
+ "scale": true,
1777
+ "beta_initializer": { "class_name": "Zeros", "config": {} },
1778
+ "gamma_initializer": { "class_name": "Ones", "config": {} },
1779
+ "moving_mean_initializer": { "class_name": "Zeros", "config": {} },
1780
+ "moving_variance_initializer": { "class_name": "Ones", "config": {} },
1781
+ "beta_regularizer": null,
1782
+ "gamma_regularizer": null,
1783
+ "beta_constraint": null,
1784
+ "gamma_constraint": null
1785
+ },
1786
+ "inbound_nodes": [[["block_10_project", 0, 0, {}]]]
1787
+ },
1788
+ {
1789
+ "name": "block_11_expand",
1790
+ "class_name": "Conv2D",
1791
+ "config": {
1792
+ "name": "block_11_expand",
1793
+ "trainable": true,
1794
+ "filters": 576,
1795
+ "kernel_size": [1, 1],
1796
+ "strides": [1, 1],
1797
+ "padding": "same",
1798
+ "data_format": "channels_last",
1799
+ "dilation_rate": [1, 1],
1800
+ "activation": "linear",
1801
+ "use_bias": false,
1802
+ "kernel_initializer": { "class_name": "VarianceScaling", "config": { "scale": 1.0, "mode": "fan_avg", "distribution": "uniform", "seed": null } },
1803
+ "bias_initializer": { "class_name": "Zeros", "config": {} },
1804
+ "kernel_regularizer": null,
1805
+ "bias_regularizer": null,
1806
+ "activity_regularizer": null,
1807
+ "kernel_constraint": null,
1808
+ "bias_constraint": null
1809
+ },
1810
+ "inbound_nodes": [[["block_10_project_BN", 0, 0, {}]]]
1811
+ },
1812
+ {
1813
+ "name": "block_11_expand_BN",
1814
+ "class_name": "BatchNormalization",
1815
+ "config": {
1816
+ "name": "block_11_expand_BN",
1817
+ "trainable": true,
1818
+ "axis": -1,
1819
+ "momentum": 0.999,
1820
+ "epsilon": 0.001,
1821
+ "center": true,
1822
+ "scale": true,
1823
+ "beta_initializer": { "class_name": "Zeros", "config": {} },
1824
+ "gamma_initializer": { "class_name": "Ones", "config": {} },
1825
+ "moving_mean_initializer": { "class_name": "Zeros", "config": {} },
1826
+ "moving_variance_initializer": { "class_name": "Ones", "config": {} },
1827
+ "beta_regularizer": null,
1828
+ "gamma_regularizer": null,
1829
+ "beta_constraint": null,
1830
+ "gamma_constraint": null
1831
+ },
1832
+ "inbound_nodes": [[["block_11_expand", 0, 0, {}]]]
1833
+ },
1834
+ {
1835
+ "name": "block_11_expand_relu",
1836
+ "class_name": "ReLU",
1837
+ "config": { "name": "block_11_expand_relu", "trainable": true, "max_value": 6.0, "negative_slope": 0.0, "threshold": 0.0 },
1838
+ "inbound_nodes": [[["block_11_expand_BN", 0, 0, {}]]]
1839
+ },
1840
+ {
1841
+ "name": "block_11_depthwise",
1842
+ "class_name": "DepthwiseConv2D",
1843
+ "config": {
1844
+ "name": "block_11_depthwise",
1845
+ "trainable": true,
1846
+ "kernel_size": [3, 3],
1847
+ "strides": [1, 1],
1848
+ "padding": "same",
1849
+ "data_format": "channels_last",
1850
+ "dilation_rate": [1, 1],
1851
+ "activation": "linear",
1852
+ "use_bias": false,
1853
+ "bias_initializer": { "class_name": "Zeros", "config": {} },
1854
+ "bias_regularizer": null,
1855
+ "activity_regularizer": null,
1856
+ "bias_constraint": null,
1857
+ "depth_multiplier": 1,
1858
+ "depthwise_initializer": { "class_name": "VarianceScaling", "config": { "scale": 1.0, "mode": "fan_avg", "distribution": "uniform", "seed": null } },
1859
+ "depthwise_regularizer": null,
1860
+ "depthwise_constraint": null
1861
+ },
1862
+ "inbound_nodes": [[["block_11_expand_relu", 0, 0, {}]]]
1863
+ },
1864
+ {
1865
+ "name": "block_11_depthwise_BN",
1866
+ "class_name": "BatchNormalization",
1867
+ "config": {
1868
+ "name": "block_11_depthwise_BN",
1869
+ "trainable": true,
1870
+ "axis": -1,
1871
+ "momentum": 0.999,
1872
+ "epsilon": 0.001,
1873
+ "center": true,
1874
+ "scale": true,
1875
+ "beta_initializer": { "class_name": "Zeros", "config": {} },
1876
+ "gamma_initializer": { "class_name": "Ones", "config": {} },
1877
+ "moving_mean_initializer": { "class_name": "Zeros", "config": {} },
1878
+ "moving_variance_initializer": { "class_name": "Ones", "config": {} },
1879
+ "beta_regularizer": null,
1880
+ "gamma_regularizer": null,
1881
+ "beta_constraint": null,
1882
+ "gamma_constraint": null
1883
+ },
1884
+ "inbound_nodes": [[["block_11_depthwise", 0, 0, {}]]]
1885
+ },
1886
+ {
1887
+ "name": "block_11_depthwise_relu",
1888
+ "class_name": "ReLU",
1889
+ "config": { "name": "block_11_depthwise_relu", "trainable": true, "max_value": 6.0, "negative_slope": 0.0, "threshold": 0.0 },
1890
+ "inbound_nodes": [[["block_11_depthwise_BN", 0, 0, {}]]]
1891
+ },
1892
+ {
1893
+ "name": "block_11_project",
1894
+ "class_name": "Conv2D",
1895
+ "config": {
1896
+ "name": "block_11_project",
1897
+ "trainable": true,
1898
+ "filters": 96,
1899
+ "kernel_size": [1, 1],
1900
+ "strides": [1, 1],
1901
+ "padding": "same",
1902
+ "data_format": "channels_last",
1903
+ "dilation_rate": [1, 1],
1904
+ "activation": "linear",
1905
+ "use_bias": false,
1906
+ "kernel_initializer": { "class_name": "VarianceScaling", "config": { "scale": 1.0, "mode": "fan_avg", "distribution": "uniform", "seed": null } },
1907
+ "bias_initializer": { "class_name": "Zeros", "config": {} },
1908
+ "kernel_regularizer": null,
1909
+ "bias_regularizer": null,
1910
+ "activity_regularizer": null,
1911
+ "kernel_constraint": null,
1912
+ "bias_constraint": null
1913
+ },
1914
+ "inbound_nodes": [[["block_11_depthwise_relu", 0, 0, {}]]]
1915
+ },
1916
+ {
1917
+ "name": "block_11_project_BN",
1918
+ "class_name": "BatchNormalization",
1919
+ "config": {
1920
+ "name": "block_11_project_BN",
1921
+ "trainable": true,
1922
+ "axis": -1,
1923
+ "momentum": 0.999,
1924
+ "epsilon": 0.001,
1925
+ "center": true,
1926
+ "scale": true,
1927
+ "beta_initializer": { "class_name": "Zeros", "config": {} },
1928
+ "gamma_initializer": { "class_name": "Ones", "config": {} },
1929
+ "moving_mean_initializer": { "class_name": "Zeros", "config": {} },
1930
+ "moving_variance_initializer": { "class_name": "Ones", "config": {} },
1931
+ "beta_regularizer": null,
1932
+ "gamma_regularizer": null,
1933
+ "beta_constraint": null,
1934
+ "gamma_constraint": null
1935
+ },
1936
+ "inbound_nodes": [[["block_11_project", 0, 0, {}]]]
1937
+ },
1938
+ {
1939
+ "name": "block_11_add",
1940
+ "class_name": "Add",
1941
+ "config": { "name": "block_11_add", "trainable": true },
1942
+ "inbound_nodes": [
1943
+ [
1944
+ ["block_10_project_BN", 0, 0, {}],
1945
+ ["block_11_project_BN", 0, 0, {}]
1946
+ ]
1947
+ ]
1948
+ },
1949
+ {
1950
+ "name": "block_12_expand",
1951
+ "class_name": "Conv2D",
1952
+ "config": {
1953
+ "name": "block_12_expand",
1954
+ "trainable": true,
1955
+ "filters": 576,
1956
+ "kernel_size": [1, 1],
1957
+ "strides": [1, 1],
1958
+ "padding": "same",
1959
+ "data_format": "channels_last",
1960
+ "dilation_rate": [1, 1],
1961
+ "activation": "linear",
1962
+ "use_bias": false,
1963
+ "kernel_initializer": { "class_name": "VarianceScaling", "config": { "scale": 1.0, "mode": "fan_avg", "distribution": "uniform", "seed": null } },
1964
+ "bias_initializer": { "class_name": "Zeros", "config": {} },
1965
+ "kernel_regularizer": null,
1966
+ "bias_regularizer": null,
1967
+ "activity_regularizer": null,
1968
+ "kernel_constraint": null,
1969
+ "bias_constraint": null
1970
+ },
1971
+ "inbound_nodes": [[["block_11_add", 0, 0, {}]]]
1972
+ },
1973
+ {
1974
+ "name": "block_12_expand_BN",
1975
+ "class_name": "BatchNormalization",
1976
+ "config": {
1977
+ "name": "block_12_expand_BN",
1978
+ "trainable": true,
1979
+ "axis": -1,
1980
+ "momentum": 0.999,
1981
+ "epsilon": 0.001,
1982
+ "center": true,
1983
+ "scale": true,
1984
+ "beta_initializer": { "class_name": "Zeros", "config": {} },
1985
+ "gamma_initializer": { "class_name": "Ones", "config": {} },
1986
+ "moving_mean_initializer": { "class_name": "Zeros", "config": {} },
1987
+ "moving_variance_initializer": { "class_name": "Ones", "config": {} },
1988
+ "beta_regularizer": null,
1989
+ "gamma_regularizer": null,
1990
+ "beta_constraint": null,
1991
+ "gamma_constraint": null
1992
+ },
1993
+ "inbound_nodes": [[["block_12_expand", 0, 0, {}]]]
1994
+ },
1995
+ {
1996
+ "name": "block_12_expand_relu",
1997
+ "class_name": "ReLU",
1998
+ "config": { "name": "block_12_expand_relu", "trainable": true, "max_value": 6.0, "negative_slope": 0.0, "threshold": 0.0 },
1999
+ "inbound_nodes": [[["block_12_expand_BN", 0, 0, {}]]]
2000
+ },
2001
+ {
2002
+ "name": "block_12_depthwise",
2003
+ "class_name": "DepthwiseConv2D",
2004
+ "config": {
2005
+ "name": "block_12_depthwise",
2006
+ "trainable": true,
2007
+ "kernel_size": [3, 3],
2008
+ "strides": [1, 1],
2009
+ "padding": "same",
2010
+ "data_format": "channels_last",
2011
+ "dilation_rate": [1, 1],
2012
+ "activation": "linear",
2013
+ "use_bias": false,
2014
+ "bias_initializer": { "class_name": "Zeros", "config": {} },
2015
+ "bias_regularizer": null,
2016
+ "activity_regularizer": null,
2017
+ "bias_constraint": null,
2018
+ "depth_multiplier": 1,
2019
+ "depthwise_initializer": { "class_name": "VarianceScaling", "config": { "scale": 1.0, "mode": "fan_avg", "distribution": "uniform", "seed": null } },
2020
+ "depthwise_regularizer": null,
2021
+ "depthwise_constraint": null
2022
+ },
2023
+ "inbound_nodes": [[["block_12_expand_relu", 0, 0, {}]]]
2024
+ },
2025
+ {
2026
+ "name": "block_12_depthwise_BN",
2027
+ "class_name": "BatchNormalization",
2028
+ "config": {
2029
+ "name": "block_12_depthwise_BN",
2030
+ "trainable": true,
2031
+ "axis": -1,
2032
+ "momentum": 0.999,
2033
+ "epsilon": 0.001,
2034
+ "center": true,
2035
+ "scale": true,
2036
+ "beta_initializer": { "class_name": "Zeros", "config": {} },
2037
+ "gamma_initializer": { "class_name": "Ones", "config": {} },
2038
+ "moving_mean_initializer": { "class_name": "Zeros", "config": {} },
2039
+ "moving_variance_initializer": { "class_name": "Ones", "config": {} },
2040
+ "beta_regularizer": null,
2041
+ "gamma_regularizer": null,
2042
+ "beta_constraint": null,
2043
+ "gamma_constraint": null
2044
+ },
2045
+ "inbound_nodes": [[["block_12_depthwise", 0, 0, {}]]]
2046
+ },
2047
+ {
2048
+ "name": "block_12_depthwise_relu",
2049
+ "class_name": "ReLU",
2050
+ "config": { "name": "block_12_depthwise_relu", "trainable": true, "max_value": 6.0, "negative_slope": 0.0, "threshold": 0.0 },
2051
+ "inbound_nodes": [[["block_12_depthwise_BN", 0, 0, {}]]]
2052
+ },
2053
+ {
2054
+ "name": "block_12_project",
2055
+ "class_name": "Conv2D",
2056
+ "config": {
2057
+ "name": "block_12_project",
2058
+ "trainable": true,
2059
+ "filters": 96,
2060
+ "kernel_size": [1, 1],
2061
+ "strides": [1, 1],
2062
+ "padding": "same",
2063
+ "data_format": "channels_last",
2064
+ "dilation_rate": [1, 1],
2065
+ "activation": "linear",
2066
+ "use_bias": false,
2067
+ "kernel_initializer": { "class_name": "VarianceScaling", "config": { "scale": 1.0, "mode": "fan_avg", "distribution": "uniform", "seed": null } },
2068
+ "bias_initializer": { "class_name": "Zeros", "config": {} },
2069
+ "kernel_regularizer": null,
2070
+ "bias_regularizer": null,
2071
+ "activity_regularizer": null,
2072
+ "kernel_constraint": null,
2073
+ "bias_constraint": null
2074
+ },
2075
+ "inbound_nodes": [[["block_12_depthwise_relu", 0, 0, {}]]]
2076
+ },
2077
+ {
2078
+ "name": "block_12_project_BN",
2079
+ "class_name": "BatchNormalization",
2080
+ "config": {
2081
+ "name": "block_12_project_BN",
2082
+ "trainable": true,
2083
+ "axis": -1,
2084
+ "momentum": 0.999,
2085
+ "epsilon": 0.001,
2086
+ "center": true,
2087
+ "scale": true,
2088
+ "beta_initializer": { "class_name": "Zeros", "config": {} },
2089
+ "gamma_initializer": { "class_name": "Ones", "config": {} },
2090
+ "moving_mean_initializer": { "class_name": "Zeros", "config": {} },
2091
+ "moving_variance_initializer": { "class_name": "Ones", "config": {} },
2092
+ "beta_regularizer": null,
2093
+ "gamma_regularizer": null,
2094
+ "beta_constraint": null,
2095
+ "gamma_constraint": null
2096
+ },
2097
+ "inbound_nodes": [[["block_12_project", 0, 0, {}]]]
2098
+ },
2099
+ {
2100
+ "name": "block_12_add",
2101
+ "class_name": "Add",
2102
+ "config": { "name": "block_12_add", "trainable": true },
2103
+ "inbound_nodes": [
2104
+ [
2105
+ ["block_11_add", 0, 0, {}],
2106
+ ["block_12_project_BN", 0, 0, {}]
2107
+ ]
2108
+ ]
2109
+ },
2110
+ {
2111
+ "name": "block_13_expand",
2112
+ "class_name": "Conv2D",
2113
+ "config": {
2114
+ "name": "block_13_expand",
2115
+ "trainable": true,
2116
+ "filters": 576,
2117
+ "kernel_size": [1, 1],
2118
+ "strides": [1, 1],
2119
+ "padding": "same",
2120
+ "data_format": "channels_last",
2121
+ "dilation_rate": [1, 1],
2122
+ "activation": "linear",
2123
+ "use_bias": false,
2124
+ "kernel_initializer": { "class_name": "VarianceScaling", "config": { "scale": 1.0, "mode": "fan_avg", "distribution": "uniform", "seed": null } },
2125
+ "bias_initializer": { "class_name": "Zeros", "config": {} },
2126
+ "kernel_regularizer": null,
2127
+ "bias_regularizer": null,
2128
+ "activity_regularizer": null,
2129
+ "kernel_constraint": null,
2130
+ "bias_constraint": null
2131
+ },
2132
+ "inbound_nodes": [[["block_12_add", 0, 0, {}]]]
2133
+ },
2134
+ {
2135
+ "name": "block_13_expand_BN",
2136
+ "class_name": "BatchNormalization",
2137
+ "config": {
2138
+ "name": "block_13_expand_BN",
2139
+ "trainable": true,
2140
+ "axis": -1,
2141
+ "momentum": 0.999,
2142
+ "epsilon": 0.001,
2143
+ "center": true,
2144
+ "scale": true,
2145
+ "beta_initializer": { "class_name": "Zeros", "config": {} },
2146
+ "gamma_initializer": { "class_name": "Ones", "config": {} },
2147
+ "moving_mean_initializer": { "class_name": "Zeros", "config": {} },
2148
+ "moving_variance_initializer": { "class_name": "Ones", "config": {} },
2149
+ "beta_regularizer": null,
2150
+ "gamma_regularizer": null,
2151
+ "beta_constraint": null,
2152
+ "gamma_constraint": null
2153
+ },
2154
+ "inbound_nodes": [[["block_13_expand", 0, 0, {}]]]
2155
+ },
2156
+ {
2157
+ "name": "block_13_expand_relu",
2158
+ "class_name": "ReLU",
2159
+ "config": { "name": "block_13_expand_relu", "trainable": true, "max_value": 6.0, "negative_slope": 0.0, "threshold": 0.0 },
2160
+ "inbound_nodes": [[["block_13_expand_BN", 0, 0, {}]]]
2161
+ },
2162
+ {
2163
+ "name": "block_13_pad",
2164
+ "class_name": "ZeroPadding2D",
2165
+ "config": {
2166
+ "name": "block_13_pad",
2167
+ "trainable": true,
2168
+ "padding": [
2169
+ [0, 1],
2170
+ [0, 1]
2171
+ ],
2172
+ "data_format": "channels_last"
2173
+ },
2174
+ "inbound_nodes": [[["block_13_expand_relu", 0, 0, {}]]]
2175
+ },
2176
+ {
2177
+ "name": "block_13_depthwise",
2178
+ "class_name": "DepthwiseConv2D",
2179
+ "config": {
2180
+ "name": "block_13_depthwise",
2181
+ "trainable": true,
2182
+ "kernel_size": [3, 3],
2183
+ "strides": [2, 2],
2184
+ "padding": "valid",
2185
+ "data_format": "channels_last",
2186
+ "dilation_rate": [1, 1],
2187
+ "activation": "linear",
2188
+ "use_bias": false,
2189
+ "bias_initializer": { "class_name": "Zeros", "config": {} },
2190
+ "bias_regularizer": null,
2191
+ "activity_regularizer": null,
2192
+ "bias_constraint": null,
2193
+ "depth_multiplier": 1,
2194
+ "depthwise_initializer": { "class_name": "VarianceScaling", "config": { "scale": 1.0, "mode": "fan_avg", "distribution": "uniform", "seed": null } },
2195
+ "depthwise_regularizer": null,
2196
+ "depthwise_constraint": null
2197
+ },
2198
+ "inbound_nodes": [[["block_13_pad", 0, 0, {}]]]
2199
+ },
2200
+ {
2201
+ "name": "block_13_depthwise_BN",
2202
+ "class_name": "BatchNormalization",
2203
+ "config": {
2204
+ "name": "block_13_depthwise_BN",
2205
+ "trainable": true,
2206
+ "axis": -1,
2207
+ "momentum": 0.999,
2208
+ "epsilon": 0.001,
2209
+ "center": true,
2210
+ "scale": true,
2211
+ "beta_initializer": { "class_name": "Zeros", "config": {} },
2212
+ "gamma_initializer": { "class_name": "Ones", "config": {} },
2213
+ "moving_mean_initializer": { "class_name": "Zeros", "config": {} },
2214
+ "moving_variance_initializer": { "class_name": "Ones", "config": {} },
2215
+ "beta_regularizer": null,
2216
+ "gamma_regularizer": null,
2217
+ "beta_constraint": null,
2218
+ "gamma_constraint": null
2219
+ },
2220
+ "inbound_nodes": [[["block_13_depthwise", 0, 0, {}]]]
2221
+ },
2222
+ {
2223
+ "name": "block_13_depthwise_relu",
2224
+ "class_name": "ReLU",
2225
+ "config": { "name": "block_13_depthwise_relu", "trainable": true, "max_value": 6.0, "negative_slope": 0.0, "threshold": 0.0 },
2226
+ "inbound_nodes": [[["block_13_depthwise_BN", 0, 0, {}]]]
2227
+ },
2228
+ {
2229
+ "name": "block_13_project",
2230
+ "class_name": "Conv2D",
2231
+ "config": {
2232
+ "name": "block_13_project",
2233
+ "trainable": true,
2234
+ "filters": 160,
2235
+ "kernel_size": [1, 1],
2236
+ "strides": [1, 1],
2237
+ "padding": "same",
2238
+ "data_format": "channels_last",
2239
+ "dilation_rate": [1, 1],
2240
+ "activation": "linear",
2241
+ "use_bias": false,
2242
+ "kernel_initializer": { "class_name": "VarianceScaling", "config": { "scale": 1.0, "mode": "fan_avg", "distribution": "uniform", "seed": null } },
2243
+ "bias_initializer": { "class_name": "Zeros", "config": {} },
2244
+ "kernel_regularizer": null,
2245
+ "bias_regularizer": null,
2246
+ "activity_regularizer": null,
2247
+ "kernel_constraint": null,
2248
+ "bias_constraint": null
2249
+ },
2250
+ "inbound_nodes": [[["block_13_depthwise_relu", 0, 0, {}]]]
2251
+ },
2252
+ {
2253
+ "name": "block_13_project_BN",
2254
+ "class_name": "BatchNormalization",
2255
+ "config": {
2256
+ "name": "block_13_project_BN",
2257
+ "trainable": true,
2258
+ "axis": -1,
2259
+ "momentum": 0.999,
2260
+ "epsilon": 0.001,
2261
+ "center": true,
2262
+ "scale": true,
2263
+ "beta_initializer": { "class_name": "Zeros", "config": {} },
2264
+ "gamma_initializer": { "class_name": "Ones", "config": {} },
2265
+ "moving_mean_initializer": { "class_name": "Zeros", "config": {} },
2266
+ "moving_variance_initializer": { "class_name": "Ones", "config": {} },
2267
+ "beta_regularizer": null,
2268
+ "gamma_regularizer": null,
2269
+ "beta_constraint": null,
2270
+ "gamma_constraint": null
2271
+ },
2272
+ "inbound_nodes": [[["block_13_project", 0, 0, {}]]]
2273
+ },
2274
+ {
2275
+ "name": "block_14_expand",
2276
+ "class_name": "Conv2D",
2277
+ "config": {
2278
+ "name": "block_14_expand",
2279
+ "trainable": true,
2280
+ "filters": 960,
2281
+ "kernel_size": [1, 1],
2282
+ "strides": [1, 1],
2283
+ "padding": "same",
2284
+ "data_format": "channels_last",
2285
+ "dilation_rate": [1, 1],
2286
+ "activation": "linear",
2287
+ "use_bias": false,
2288
+ "kernel_initializer": { "class_name": "VarianceScaling", "config": { "scale": 1.0, "mode": "fan_avg", "distribution": "uniform", "seed": null } },
2289
+ "bias_initializer": { "class_name": "Zeros", "config": {} },
2290
+ "kernel_regularizer": null,
2291
+ "bias_regularizer": null,
2292
+ "activity_regularizer": null,
2293
+ "kernel_constraint": null,
2294
+ "bias_constraint": null
2295
+ },
2296
+ "inbound_nodes": [[["block_13_project_BN", 0, 0, {}]]]
2297
+ },
2298
+ {
2299
+ "name": "block_14_expand_BN",
2300
+ "class_name": "BatchNormalization",
2301
+ "config": {
2302
+ "name": "block_14_expand_BN",
2303
+ "trainable": true,
2304
+ "axis": -1,
2305
+ "momentum": 0.999,
2306
+ "epsilon": 0.001,
2307
+ "center": true,
2308
+ "scale": true,
2309
+ "beta_initializer": { "class_name": "Zeros", "config": {} },
2310
+ "gamma_initializer": { "class_name": "Ones", "config": {} },
2311
+ "moving_mean_initializer": { "class_name": "Zeros", "config": {} },
2312
+ "moving_variance_initializer": { "class_name": "Ones", "config": {} },
2313
+ "beta_regularizer": null,
2314
+ "gamma_regularizer": null,
2315
+ "beta_constraint": null,
2316
+ "gamma_constraint": null
2317
+ },
2318
+ "inbound_nodes": [[["block_14_expand", 0, 0, {}]]]
2319
+ },
2320
+ {
2321
+ "name": "block_14_expand_relu",
2322
+ "class_name": "ReLU",
2323
+ "config": { "name": "block_14_expand_relu", "trainable": true, "max_value": 6.0, "negative_slope": 0.0, "threshold": 0.0 },
2324
+ "inbound_nodes": [[["block_14_expand_BN", 0, 0, {}]]]
2325
+ },
2326
+ {
2327
+ "name": "block_14_depthwise",
2328
+ "class_name": "DepthwiseConv2D",
2329
+ "config": {
2330
+ "name": "block_14_depthwise",
2331
+ "trainable": true,
2332
+ "kernel_size": [3, 3],
2333
+ "strides": [1, 1],
2334
+ "padding": "same",
2335
+ "data_format": "channels_last",
2336
+ "dilation_rate": [1, 1],
2337
+ "activation": "linear",
2338
+ "use_bias": false,
2339
+ "bias_initializer": { "class_name": "Zeros", "config": {} },
2340
+ "bias_regularizer": null,
2341
+ "activity_regularizer": null,
2342
+ "bias_constraint": null,
2343
+ "depth_multiplier": 1,
2344
+ "depthwise_initializer": { "class_name": "VarianceScaling", "config": { "scale": 1.0, "mode": "fan_avg", "distribution": "uniform", "seed": null } },
2345
+ "depthwise_regularizer": null,
2346
+ "depthwise_constraint": null
2347
+ },
2348
+ "inbound_nodes": [[["block_14_expand_relu", 0, 0, {}]]]
2349
+ },
2350
+ {
2351
+ "name": "block_14_depthwise_BN",
2352
+ "class_name": "BatchNormalization",
2353
+ "config": {
2354
+ "name": "block_14_depthwise_BN",
2355
+ "trainable": true,
2356
+ "axis": -1,
2357
+ "momentum": 0.999,
2358
+ "epsilon": 0.001,
2359
+ "center": true,
2360
+ "scale": true,
2361
+ "beta_initializer": { "class_name": "Zeros", "config": {} },
2362
+ "gamma_initializer": { "class_name": "Ones", "config": {} },
2363
+ "moving_mean_initializer": { "class_name": "Zeros", "config": {} },
2364
+ "moving_variance_initializer": { "class_name": "Ones", "config": {} },
2365
+ "beta_regularizer": null,
2366
+ "gamma_regularizer": null,
2367
+ "beta_constraint": null,
2368
+ "gamma_constraint": null
2369
+ },
2370
+ "inbound_nodes": [[["block_14_depthwise", 0, 0, {}]]]
2371
+ },
2372
+ {
2373
+ "name": "block_14_depthwise_relu",
2374
+ "class_name": "ReLU",
2375
+ "config": { "name": "block_14_depthwise_relu", "trainable": true, "max_value": 6.0, "negative_slope": 0.0, "threshold": 0.0 },
2376
+ "inbound_nodes": [[["block_14_depthwise_BN", 0, 0, {}]]]
2377
+ },
2378
+ {
2379
+ "name": "block_14_project",
2380
+ "class_name": "Conv2D",
2381
+ "config": {
2382
+ "name": "block_14_project",
2383
+ "trainable": true,
2384
+ "filters": 160,
2385
+ "kernel_size": [1, 1],
2386
+ "strides": [1, 1],
2387
+ "padding": "same",
2388
+ "data_format": "channels_last",
2389
+ "dilation_rate": [1, 1],
2390
+ "activation": "linear",
2391
+ "use_bias": false,
2392
+ "kernel_initializer": { "class_name": "VarianceScaling", "config": { "scale": 1.0, "mode": "fan_avg", "distribution": "uniform", "seed": null } },
2393
+ "bias_initializer": { "class_name": "Zeros", "config": {} },
2394
+ "kernel_regularizer": null,
2395
+ "bias_regularizer": null,
2396
+ "activity_regularizer": null,
2397
+ "kernel_constraint": null,
2398
+ "bias_constraint": null
2399
+ },
2400
+ "inbound_nodes": [[["block_14_depthwise_relu", 0, 0, {}]]]
2401
+ },
2402
+ {
2403
+ "name": "block_14_project_BN",
2404
+ "class_name": "BatchNormalization",
2405
+ "config": {
2406
+ "name": "block_14_project_BN",
2407
+ "trainable": true,
2408
+ "axis": -1,
2409
+ "momentum": 0.999,
2410
+ "epsilon": 0.001,
2411
+ "center": true,
2412
+ "scale": true,
2413
+ "beta_initializer": { "class_name": "Zeros", "config": {} },
2414
+ "gamma_initializer": { "class_name": "Ones", "config": {} },
2415
+ "moving_mean_initializer": { "class_name": "Zeros", "config": {} },
2416
+ "moving_variance_initializer": { "class_name": "Ones", "config": {} },
2417
+ "beta_regularizer": null,
2418
+ "gamma_regularizer": null,
2419
+ "beta_constraint": null,
2420
+ "gamma_constraint": null
2421
+ },
2422
+ "inbound_nodes": [[["block_14_project", 0, 0, {}]]]
2423
+ },
2424
+ {
2425
+ "name": "block_14_add",
2426
+ "class_name": "Add",
2427
+ "config": { "name": "block_14_add", "trainable": true },
2428
+ "inbound_nodes": [
2429
+ [
2430
+ ["block_13_project_BN", 0, 0, {}],
2431
+ ["block_14_project_BN", 0, 0, {}]
2432
+ ]
2433
+ ]
2434
+ },
2435
+ {
2436
+ "name": "block_15_expand",
2437
+ "class_name": "Conv2D",
2438
+ "config": {
2439
+ "name": "block_15_expand",
2440
+ "trainable": true,
2441
+ "filters": 960,
2442
+ "kernel_size": [1, 1],
2443
+ "strides": [1, 1],
2444
+ "padding": "same",
2445
+ "data_format": "channels_last",
2446
+ "dilation_rate": [1, 1],
2447
+ "activation": "linear",
2448
+ "use_bias": false,
2449
+ "kernel_initializer": { "class_name": "VarianceScaling", "config": { "scale": 1.0, "mode": "fan_avg", "distribution": "uniform", "seed": null } },
2450
+ "bias_initializer": { "class_name": "Zeros", "config": {} },
2451
+ "kernel_regularizer": null,
2452
+ "bias_regularizer": null,
2453
+ "activity_regularizer": null,
2454
+ "kernel_constraint": null,
2455
+ "bias_constraint": null
2456
+ },
2457
+ "inbound_nodes": [[["block_14_add", 0, 0, {}]]]
2458
+ },
2459
+ {
2460
+ "name": "block_15_expand_BN",
2461
+ "class_name": "BatchNormalization",
2462
+ "config": {
2463
+ "name": "block_15_expand_BN",
2464
+ "trainable": true,
2465
+ "axis": -1,
2466
+ "momentum": 0.999,
2467
+ "epsilon": 0.001,
2468
+ "center": true,
2469
+ "scale": true,
2470
+ "beta_initializer": { "class_name": "Zeros", "config": {} },
2471
+ "gamma_initializer": { "class_name": "Ones", "config": {} },
2472
+ "moving_mean_initializer": { "class_name": "Zeros", "config": {} },
2473
+ "moving_variance_initializer": { "class_name": "Ones", "config": {} },
2474
+ "beta_regularizer": null,
2475
+ "gamma_regularizer": null,
2476
+ "beta_constraint": null,
2477
+ "gamma_constraint": null
2478
+ },
2479
+ "inbound_nodes": [[["block_15_expand", 0, 0, {}]]]
2480
+ },
2481
+ {
2482
+ "name": "block_15_expand_relu",
2483
+ "class_name": "ReLU",
2484
+ "config": { "name": "block_15_expand_relu", "trainable": true, "max_value": 6.0, "negative_slope": 0.0, "threshold": 0.0 },
2485
+ "inbound_nodes": [[["block_15_expand_BN", 0, 0, {}]]]
2486
+ },
2487
+ {
2488
+ "name": "block_15_depthwise",
2489
+ "class_name": "DepthwiseConv2D",
2490
+ "config": {
2491
+ "name": "block_15_depthwise",
2492
+ "trainable": true,
2493
+ "kernel_size": [3, 3],
2494
+ "strides": [1, 1],
2495
+ "padding": "same",
2496
+ "data_format": "channels_last",
2497
+ "dilation_rate": [1, 1],
2498
+ "activation": "linear",
2499
+ "use_bias": false,
2500
+ "bias_initializer": { "class_name": "Zeros", "config": {} },
2501
+ "bias_regularizer": null,
2502
+ "activity_regularizer": null,
2503
+ "bias_constraint": null,
2504
+ "depth_multiplier": 1,
2505
+ "depthwise_initializer": { "class_name": "VarianceScaling", "config": { "scale": 1.0, "mode": "fan_avg", "distribution": "uniform", "seed": null } },
2506
+ "depthwise_regularizer": null,
2507
+ "depthwise_constraint": null
2508
+ },
2509
+ "inbound_nodes": [[["block_15_expand_relu", 0, 0, {}]]]
2510
+ },
2511
+ {
2512
+ "name": "block_15_depthwise_BN",
2513
+ "class_name": "BatchNormalization",
2514
+ "config": {
2515
+ "name": "block_15_depthwise_BN",
2516
+ "trainable": true,
2517
+ "axis": -1,
2518
+ "momentum": 0.999,
2519
+ "epsilon": 0.001,
2520
+ "center": true,
2521
+ "scale": true,
2522
+ "beta_initializer": { "class_name": "Zeros", "config": {} },
2523
+ "gamma_initializer": { "class_name": "Ones", "config": {} },
2524
+ "moving_mean_initializer": { "class_name": "Zeros", "config": {} },
2525
+ "moving_variance_initializer": { "class_name": "Ones", "config": {} },
2526
+ "beta_regularizer": null,
2527
+ "gamma_regularizer": null,
2528
+ "beta_constraint": null,
2529
+ "gamma_constraint": null
2530
+ },
2531
+ "inbound_nodes": [[["block_15_depthwise", 0, 0, {}]]]
2532
+ },
2533
+ {
2534
+ "name": "block_15_depthwise_relu",
2535
+ "class_name": "ReLU",
2536
+ "config": { "name": "block_15_depthwise_relu", "trainable": true, "max_value": 6.0, "negative_slope": 0.0, "threshold": 0.0 },
2537
+ "inbound_nodes": [[["block_15_depthwise_BN", 0, 0, {}]]]
2538
+ },
2539
+ {
2540
+ "name": "block_15_project",
2541
+ "class_name": "Conv2D",
2542
+ "config": {
2543
+ "name": "block_15_project",
2544
+ "trainable": true,
2545
+ "filters": 160,
2546
+ "kernel_size": [1, 1],
2547
+ "strides": [1, 1],
2548
+ "padding": "same",
2549
+ "data_format": "channels_last",
2550
+ "dilation_rate": [1, 1],
2551
+ "activation": "linear",
2552
+ "use_bias": false,
2553
+ "kernel_initializer": { "class_name": "VarianceScaling", "config": { "scale": 1.0, "mode": "fan_avg", "distribution": "uniform", "seed": null } },
2554
+ "bias_initializer": { "class_name": "Zeros", "config": {} },
2555
+ "kernel_regularizer": null,
2556
+ "bias_regularizer": null,
2557
+ "activity_regularizer": null,
2558
+ "kernel_constraint": null,
2559
+ "bias_constraint": null
2560
+ },
2561
+ "inbound_nodes": [[["block_15_depthwise_relu", 0, 0, {}]]]
2562
+ },
2563
+ {
2564
+ "name": "block_15_project_BN",
2565
+ "class_name": "BatchNormalization",
2566
+ "config": {
2567
+ "name": "block_15_project_BN",
2568
+ "trainable": true,
2569
+ "axis": -1,
2570
+ "momentum": 0.999,
2571
+ "epsilon": 0.001,
2572
+ "center": true,
2573
+ "scale": true,
2574
+ "beta_initializer": { "class_name": "Zeros", "config": {} },
2575
+ "gamma_initializer": { "class_name": "Ones", "config": {} },
2576
+ "moving_mean_initializer": { "class_name": "Zeros", "config": {} },
2577
+ "moving_variance_initializer": { "class_name": "Ones", "config": {} },
2578
+ "beta_regularizer": null,
2579
+ "gamma_regularizer": null,
2580
+ "beta_constraint": null,
2581
+ "gamma_constraint": null
2582
+ },
2583
+ "inbound_nodes": [[["block_15_project", 0, 0, {}]]]
2584
+ },
2585
+ {
2586
+ "name": "block_15_add",
2587
+ "class_name": "Add",
2588
+ "config": { "name": "block_15_add", "trainable": true },
2589
+ "inbound_nodes": [
2590
+ [
2591
+ ["block_14_add", 0, 0, {}],
2592
+ ["block_15_project_BN", 0, 0, {}]
2593
+ ]
2594
+ ]
2595
+ },
2596
+ {
2597
+ "name": "block_16_expand",
2598
+ "class_name": "Conv2D",
2599
+ "config": {
2600
+ "name": "block_16_expand",
2601
+ "trainable": true,
2602
+ "filters": 960,
2603
+ "kernel_size": [1, 1],
2604
+ "strides": [1, 1],
2605
+ "padding": "same",
2606
+ "data_format": "channels_last",
2607
+ "dilation_rate": [1, 1],
2608
+ "activation": "linear",
2609
+ "use_bias": false,
2610
+ "kernel_initializer": { "class_name": "VarianceScaling", "config": { "scale": 1.0, "mode": "fan_avg", "distribution": "uniform", "seed": null } },
2611
+ "bias_initializer": { "class_name": "Zeros", "config": {} },
2612
+ "kernel_regularizer": null,
2613
+ "bias_regularizer": null,
2614
+ "activity_regularizer": null,
2615
+ "kernel_constraint": null,
2616
+ "bias_constraint": null
2617
+ },
2618
+ "inbound_nodes": [[["block_15_add", 0, 0, {}]]]
2619
+ },
2620
+ {
2621
+ "name": "block_16_expand_BN",
2622
+ "class_name": "BatchNormalization",
2623
+ "config": {
2624
+ "name": "block_16_expand_BN",
2625
+ "trainable": true,
2626
+ "axis": -1,
2627
+ "momentum": 0.999,
2628
+ "epsilon": 0.001,
2629
+ "center": true,
2630
+ "scale": true,
2631
+ "beta_initializer": { "class_name": "Zeros", "config": {} },
2632
+ "gamma_initializer": { "class_name": "Ones", "config": {} },
2633
+ "moving_mean_initializer": { "class_name": "Zeros", "config": {} },
2634
+ "moving_variance_initializer": { "class_name": "Ones", "config": {} },
2635
+ "beta_regularizer": null,
2636
+ "gamma_regularizer": null,
2637
+ "beta_constraint": null,
2638
+ "gamma_constraint": null
2639
+ },
2640
+ "inbound_nodes": [[["block_16_expand", 0, 0, {}]]]
2641
+ },
2642
+ {
2643
+ "name": "block_16_expand_relu",
2644
+ "class_name": "ReLU",
2645
+ "config": { "name": "block_16_expand_relu", "trainable": true, "max_value": 6.0, "negative_slope": 0.0, "threshold": 0.0 },
2646
+ "inbound_nodes": [[["block_16_expand_BN", 0, 0, {}]]]
2647
+ },
2648
+ {
2649
+ "name": "block_16_depthwise",
2650
+ "class_name": "DepthwiseConv2D",
2651
+ "config": {
2652
+ "name": "block_16_depthwise",
2653
+ "trainable": true,
2654
+ "kernel_size": [3, 3],
2655
+ "strides": [1, 1],
2656
+ "padding": "same",
2657
+ "data_format": "channels_last",
2658
+ "dilation_rate": [1, 1],
2659
+ "activation": "linear",
2660
+ "use_bias": false,
2661
+ "bias_initializer": { "class_name": "Zeros", "config": {} },
2662
+ "bias_regularizer": null,
2663
+ "activity_regularizer": null,
2664
+ "bias_constraint": null,
2665
+ "depth_multiplier": 1,
2666
+ "depthwise_initializer": { "class_name": "VarianceScaling", "config": { "scale": 1.0, "mode": "fan_avg", "distribution": "uniform", "seed": null } },
2667
+ "depthwise_regularizer": null,
2668
+ "depthwise_constraint": null
2669
+ },
2670
+ "inbound_nodes": [[["block_16_expand_relu", 0, 0, {}]]]
2671
+ },
2672
+ {
2673
+ "name": "block_16_depthwise_BN",
2674
+ "class_name": "BatchNormalization",
2675
+ "config": {
2676
+ "name": "block_16_depthwise_BN",
2677
+ "trainable": true,
2678
+ "axis": -1,
2679
+ "momentum": 0.999,
2680
+ "epsilon": 0.001,
2681
+ "center": true,
2682
+ "scale": true,
2683
+ "beta_initializer": { "class_name": "Zeros", "config": {} },
2684
+ "gamma_initializer": { "class_name": "Ones", "config": {} },
2685
+ "moving_mean_initializer": { "class_name": "Zeros", "config": {} },
2686
+ "moving_variance_initializer": { "class_name": "Ones", "config": {} },
2687
+ "beta_regularizer": null,
2688
+ "gamma_regularizer": null,
2689
+ "beta_constraint": null,
2690
+ "gamma_constraint": null
2691
+ },
2692
+ "inbound_nodes": [[["block_16_depthwise", 0, 0, {}]]]
2693
+ },
2694
+ {
2695
+ "name": "block_16_depthwise_relu",
2696
+ "class_name": "ReLU",
2697
+ "config": { "name": "block_16_depthwise_relu", "trainable": true, "max_value": 6.0, "negative_slope": 0.0, "threshold": 0.0 },
2698
+ "inbound_nodes": [[["block_16_depthwise_BN", 0, 0, {}]]]
2699
+ },
2700
+ {
2701
+ "name": "block_16_project",
2702
+ "class_name": "Conv2D",
2703
+ "config": {
2704
+ "name": "block_16_project",
2705
+ "trainable": true,
2706
+ "filters": 320,
2707
+ "kernel_size": [1, 1],
2708
+ "strides": [1, 1],
2709
+ "padding": "same",
2710
+ "data_format": "channels_last",
2711
+ "dilation_rate": [1, 1],
2712
+ "activation": "linear",
2713
+ "use_bias": false,
2714
+ "kernel_initializer": { "class_name": "VarianceScaling", "config": { "scale": 1.0, "mode": "fan_avg", "distribution": "uniform", "seed": null } },
2715
+ "bias_initializer": { "class_name": "Zeros", "config": {} },
2716
+ "kernel_regularizer": null,
2717
+ "bias_regularizer": null,
2718
+ "activity_regularizer": null,
2719
+ "kernel_constraint": null,
2720
+ "bias_constraint": null
2721
+ },
2722
+ "inbound_nodes": [[["block_16_depthwise_relu", 0, 0, {}]]]
2723
+ },
2724
+ {
2725
+ "name": "block_16_project_BN",
2726
+ "class_name": "BatchNormalization",
2727
+ "config": {
2728
+ "name": "block_16_project_BN",
2729
+ "trainable": true,
2730
+ "axis": -1,
2731
+ "momentum": 0.999,
2732
+ "epsilon": 0.001,
2733
+ "center": true,
2734
+ "scale": true,
2735
+ "beta_initializer": { "class_name": "Zeros", "config": {} },
2736
+ "gamma_initializer": { "class_name": "Ones", "config": {} },
2737
+ "moving_mean_initializer": { "class_name": "Zeros", "config": {} },
2738
+ "moving_variance_initializer": { "class_name": "Ones", "config": {} },
2739
+ "beta_regularizer": null,
2740
+ "gamma_regularizer": null,
2741
+ "beta_constraint": null,
2742
+ "gamma_constraint": null
2743
+ },
2744
+ "inbound_nodes": [[["block_16_project", 0, 0, {}]]]
2745
+ },
2746
+ {
2747
+ "name": "Conv_1",
2748
+ "class_name": "Conv2D",
2749
+ "config": {
2750
+ "name": "Conv_1",
2751
+ "trainable": true,
2752
+ "filters": 1280,
2753
+ "kernel_size": [1, 1],
2754
+ "strides": [1, 1],
2755
+ "padding": "valid",
2756
+ "data_format": "channels_last",
2757
+ "dilation_rate": [1, 1],
2758
+ "activation": "linear",
2759
+ "use_bias": false,
2760
+ "kernel_initializer": { "class_name": "VarianceScaling", "config": { "scale": 1.0, "mode": "fan_avg", "distribution": "uniform", "seed": null } },
2761
+ "bias_initializer": { "class_name": "Zeros", "config": {} },
2762
+ "kernel_regularizer": null,
2763
+ "bias_regularizer": null,
2764
+ "activity_regularizer": null,
2765
+ "kernel_constraint": null,
2766
+ "bias_constraint": null
2767
+ },
2768
+ "inbound_nodes": [[["block_16_project_BN", 0, 0, {}]]]
2769
+ },
2770
+ {
2771
+ "name": "Conv_1_bn",
2772
+ "class_name": "BatchNormalization",
2773
+ "config": {
2774
+ "name": "Conv_1_bn",
2775
+ "trainable": true,
2776
+ "axis": -1,
2777
+ "momentum": 0.999,
2778
+ "epsilon": 0.001,
2779
+ "center": true,
2780
+ "scale": true,
2781
+ "beta_initializer": { "class_name": "Zeros", "config": {} },
2782
+ "gamma_initializer": { "class_name": "Ones", "config": {} },
2783
+ "moving_mean_initializer": { "class_name": "Zeros", "config": {} },
2784
+ "moving_variance_initializer": { "class_name": "Ones", "config": {} },
2785
+ "beta_regularizer": null,
2786
+ "gamma_regularizer": null,
2787
+ "beta_constraint": null,
2788
+ "gamma_constraint": null
2789
+ },
2790
+ "inbound_nodes": [[["Conv_1", 0, 0, {}]]]
2791
+ },
2792
+ {
2793
+ "name": "out_relu",
2794
+ "class_name": "ReLU",
2795
+ "config": { "name": "out_relu", "trainable": true, "max_value": 6.0, "negative_slope": 0.0, "threshold": 0.0 },
2796
+ "inbound_nodes": [[["Conv_1_bn", 0, 0, {}]]]
2797
+ },
2798
+ {
2799
+ "name": "average_pooling2d_1",
2800
+ "class_name": "AveragePooling2D",
2801
+ "config": { "name": "average_pooling2d_1", "trainable": true, "pool_size": [7, 7], "padding": "valid", "strides": [7, 7], "data_format": "channels_last" },
2802
+ "inbound_nodes": [[["out_relu", 0, 0, {}]]]
2803
+ },
2804
+ {
2805
+ "name": "flatten_1",
2806
+ "class_name": "Flatten",
2807
+ "config": { "name": "flatten_1", "trainable": true, "data_format": "channels_last" },
2808
+ "inbound_nodes": [[["average_pooling2d_1", 0, 0, {}]]]
2809
+ },
2810
+ {
2811
+ "name": "dense_1",
2812
+ "class_name": "Dense",
2813
+ "config": {
2814
+ "name": "dense_1",
2815
+ "trainable": true,
2816
+ "units": 256,
2817
+ "activation": "relu",
2818
+ "use_bias": true,
2819
+ "kernel_initializer": { "class_name": "VarianceScaling", "config": { "scale": 2.0, "mode": "fan_in", "distribution": "normal", "seed": null } },
2820
+ "bias_initializer": { "class_name": "Zeros", "config": {} },
2821
+ "kernel_regularizer": { "class_name": "L1L2", "config": { "l1": 0.0, "l2": 0.0005000000237487257 } },
2822
+ "bias_regularizer": null,
2823
+ "activity_regularizer": null,
2824
+ "kernel_constraint": null,
2825
+ "bias_constraint": null
2826
+ },
2827
+ "inbound_nodes": [[["flatten_1", 0, 0, {}]]]
2828
+ },
2829
+ {
2830
+ "name": "dropout_2",
2831
+ "class_name": "Dropout",
2832
+ "config": { "name": "dropout_2", "trainable": true, "rate": 0.5, "noise_shape": null, "seed": null },
2833
+ "inbound_nodes": [[["dense_1", 0, 0, {}]]]
2834
+ },
2835
+ {
2836
+ "name": "dense_2",
2837
+ "class_name": "Dense",
2838
+ "config": {
2839
+ "name": "dense_2",
2840
+ "trainable": true,
2841
+ "units": 128,
2842
+ "activation": "relu",
2843
+ "use_bias": true,
2844
+ "kernel_initializer": { "class_name": "VarianceScaling", "config": { "scale": 2.0, "mode": "fan_in", "distribution": "normal", "seed": null } },
2845
+ "bias_initializer": { "class_name": "Zeros", "config": {} },
2846
+ "kernel_regularizer": null,
2847
+ "bias_regularizer": null,
2848
+ "activity_regularizer": null,
2849
+ "kernel_constraint": null,
2850
+ "bias_constraint": null
2851
+ },
2852
+ "inbound_nodes": [[["dropout_2", 0, 0, {}]]]
2853
+ },
2854
+ {
2855
+ "name": "dropout_3",
2856
+ "class_name": "Dropout",
2857
+ "config": { "name": "dropout_3", "trainable": true, "rate": 0.25, "noise_shape": null, "seed": null },
2858
+ "inbound_nodes": [[["dense_2", 0, 0, {}]]]
2859
+ },
2860
+ {
2861
+ "name": "dense_3",
2862
+ "class_name": "Dense",
2863
+ "config": {
2864
+ "name": "dense_3",
2865
+ "trainable": true,
2866
+ "units": 5,
2867
+ "activation": "softmax",
2868
+ "use_bias": true,
2869
+ "kernel_initializer": { "class_name": "VarianceScaling", "config": { "scale": 1.0, "mode": "fan_avg", "distribution": "uniform", "seed": null } },
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
+ "inbound_nodes": [[["dropout_3", 0, 0, {}]]]
2878
+ }
2879
+ ],
2880
+ "input_layers": [["input_1", 0, 0]],
2881
+ "output_layers": [["dense_3", 0, 0]]
2882
+ }
2883
+ },
2884
+ "training_config": {
2885
+ "optimizer_config": { "class_name": "SGD", "config": { "lr": 8.999999749903509e-7, "momentum": 0.8999999761581421, "decay": 0.0, "nesterov": false } },
2886
+ "loss": "categorical_crossentropy",
2887
+ "metrics": ["accuracy"],
2888
+ "sample_weight_mode": null,
2889
+ "loss_weights": null
2890
+ }
2891
+ },
2892
+ "weightsManifest": [
2893
+ {
2894
+ "paths": ["group1-shard1of1"],
2895
+ "weights": [
2896
+ { "name": "Conv1/kernel", "shape": [3, 3, 3, 32], "dtype": "float32", "quantization": { "min": -0.87334511607301, "scale": 0.006666756611244351, "dtype": "uint8" } },
2897
+ {
2898
+ "name": "Conv_1/kernel",
2899
+ "shape": [1, 1, 320, 1280],
2900
+ "dtype": "float32",
2901
+ "quantization": { "min": -0.16725910831900204, "scale": 0.0012671144569621367, "dtype": "uint8" }
2902
+ },
2903
+ { "name": "Conv_1_bn/gamma", "shape": [1280], "dtype": "float32", "quantization": { "min": 4.058098316192627, "scale": 0.004296330844654757, "dtype": "uint8" } },
2904
+ { "name": "Conv_1_bn/beta", "shape": [1280], "dtype": "float32", "quantization": { "min": -5.497056007385254, "scale": 0.007127556146359911, "dtype": "uint8" } },
2905
+ {
2906
+ "name": "Conv_1_bn/moving_mean",
2907
+ "shape": [1280],
2908
+ "dtype": "float32",
2909
+ "quantization": { "min": -0.0023754353781102917, "scale": 1.963169733975448e-5, "dtype": "uint8" }
2910
+ },
2911
+ { "name": "Conv_1_bn/moving_variance", "shape": [1280], "dtype": "float32", "quantization": { "min": 1.2001450061798096, "scale": 0.04519893702338724, "dtype": "uint8" } },
2912
+ {
2913
+ "name": "block_10_depthwise/depthwise_kernel",
2914
+ "shape": [3, 3, 384, 1],
2915
+ "dtype": "float32",
2916
+ "quantization": { "min": -4.088800318100873, "scale": 0.03407333598417394, "dtype": "uint8" }
2917
+ },
2918
+ {
2919
+ "name": "block_10_depthwise_BN/gamma",
2920
+ "shape": [384],
2921
+ "dtype": "float32",
2922
+ "quantization": { "min": 0.40248510241508484, "scale": 0.007302123541925468, "dtype": "uint8" }
2923
+ },
2924
+ {
2925
+ "name": "block_10_depthwise_BN/beta",
2926
+ "shape": [384],
2927
+ "dtype": "float32",
2928
+ "quantization": { "min": -1.6703001022338868, "scale": 0.023198612531026206, "dtype": "uint8" }
2929
+ },
2930
+ {
2931
+ "name": "block_10_depthwise_BN/moving_mean",
2932
+ "shape": [384],
2933
+ "dtype": "float32",
2934
+ "quantization": { "min": -10.684502940084421, "scale": 0.0632219108880735, "dtype": "uint8" }
2935
+ },
2936
+ {
2937
+ "name": "block_10_depthwise_BN/moving_variance",
2938
+ "shape": [384],
2939
+ "dtype": "float32",
2940
+ "quantization": { "min": 0.22930045425891876, "scale": 0.08007498739981184, "dtype": "uint8" }
2941
+ },
2942
+ {
2943
+ "name": "block_10_expand/kernel",
2944
+ "shape": [1, 1, 64, 384],
2945
+ "dtype": "float32",
2946
+ "quantization": { "min": -0.4983156303564708, "scale": 0.004187526305516561, "dtype": "uint8" }
2947
+ },
2948
+ { "name": "block_10_expand_BN/gamma", "shape": [384], "dtype": "float32", "quantization": { "min": 0.3032448887825012, "scale": 0.006853209056106268, "dtype": "uint8" } },
2949
+ { "name": "block_10_expand_BN/beta", "shape": [384], "dtype": "float32", "quantization": { "min": -1.9566102308385513, "scale": 0.016305085256987928, "dtype": "uint8" } },
2950
+ {
2951
+ "name": "block_10_expand_BN/moving_mean",
2952
+ "shape": [384],
2953
+ "dtype": "float32",
2954
+ "quantization": { "min": -0.01945700193298798, "scale": 0.0001341862202275033, "dtype": "uint8" }
2955
+ },
2956
+ {
2957
+ "name": "block_10_expand_BN/moving_variance",
2958
+ "shape": [384],
2959
+ "dtype": "float32",
2960
+ "quantization": { "min": 3.7177557945251465, "scale": 0.11230436773861156, "dtype": "uint8" }
2961
+ },
2962
+ {
2963
+ "name": "block_10_project/kernel",
2964
+ "shape": [1, 1, 384, 96],
2965
+ "dtype": "float32",
2966
+ "quantization": { "min": -0.4085769327247844, "scale": 0.0036808732677908506, "dtype": "uint8" }
2967
+ },
2968
+ { "name": "block_10_project_BN/gamma", "shape": [96], "dtype": "float32", "quantization": { "min": 1.8223402500152588, "scale": 0.010350557402068493, "dtype": "uint8" } },
2969
+ {
2970
+ "name": "block_10_project_BN/beta",
2971
+ "shape": [96],
2972
+ "dtype": "float32",
2973
+ "quantization": { "min": -0.007311846215423999, "scale": 5.337114025856934e-5, "dtype": "uint8" }
2974
+ },
2975
+ {
2976
+ "name": "block_10_project_BN/moving_mean",
2977
+ "shape": [96],
2978
+ "dtype": "float32",
2979
+ "quantization": { "min": -4.210502486135446, "scale": 0.028258405947217756, "dtype": "uint8" }
2980
+ },
2981
+ {
2982
+ "name": "block_10_project_BN/moving_variance",
2983
+ "shape": [96],
2984
+ "dtype": "float32",
2985
+ "quantization": { "min": 0.7251929640769958, "scale": 0.03310593647115371, "dtype": "uint8" }
2986
+ },
2987
+ {
2988
+ "name": "block_11_depthwise/depthwise_kernel",
2989
+ "shape": [3, 3, 576, 1],
2990
+ "dtype": "float32",
2991
+ "quantization": { "min": -3.1480287383584415, "scale": 0.02421560567968032, "dtype": "uint8" }
2992
+ },
2993
+ {
2994
+ "name": "block_11_depthwise_BN/gamma",
2995
+ "shape": [576],
2996
+ "dtype": "float32",
2997
+ "quantization": { "min": 0.25000280141830444, "scale": 0.01196848200816734, "dtype": "uint8" }
2998
+ },
2999
+ { "name": "block_11_depthwise_BN/beta", "shape": [576], "dtype": "float32", "quantization": { "min": -3.51122283000572, "scale": 0.024215329862108417, "dtype": "uint8" } },
3000
+ {
3001
+ "name": "block_11_depthwise_BN/moving_mean",
3002
+ "shape": [576],
3003
+ "dtype": "float32",
3004
+ "quantization": { "min": -7.024682351654651, "scale": 0.04084117646310843, "dtype": "uint8" }
3005
+ },
3006
+ {
3007
+ "name": "block_11_depthwise_BN/moving_variance",
3008
+ "shape": [576],
3009
+ "dtype": "float32",
3010
+ "quantization": { "min": 0.00013964888057671487, "scale": 0.050268485751938916, "dtype": "uint8" }
3011
+ },
3012
+ {
3013
+ "name": "block_11_expand/kernel",
3014
+ "shape": [1, 1, 96, 576],
3015
+ "dtype": "float32",
3016
+ "quantization": { "min": -0.3371829879050161, "scale": 0.0025162909545150456, "dtype": "uint8" }
3017
+ },
3018
+ {
3019
+ "name": "block_11_expand_BN/gamma",
3020
+ "shape": [576],
3021
+ "dtype": "float32",
3022
+ "quantization": { "min": 0.0032904082909226418, "scale": 0.011158546772511567, "dtype": "uint8" }
3023
+ },
3024
+ { "name": "block_11_expand_BN/beta", "shape": [576], "dtype": "float32", "quantization": { "min": -1.68603814349455, "scale": 0.018733757149939443, "dtype": "uint8" } },
3025
+ {
3026
+ "name": "block_11_expand_BN/moving_mean",
3027
+ "shape": [576],
3028
+ "dtype": "float32",
3029
+ "quantization": { "min": -0.003988752377164714, "scale": 2.9990619377178305e-5, "dtype": "uint8" }
3030
+ },
3031
+ {
3032
+ "name": "block_11_expand_BN/moving_variance",
3033
+ "shape": [576],
3034
+ "dtype": "float32",
3035
+ "quantization": { "min": 1.7648493885920324e-14, "scale": 0.03621620103424664, "dtype": "uint8" }
3036
+ },
3037
+ {
3038
+ "name": "block_11_project/kernel",
3039
+ "shape": [1, 1, 576, 96],
3040
+ "dtype": "float32",
3041
+ "quantization": { "min": -0.2600216061461206, "scale": 0.0020969484366622627, "dtype": "uint8" }
3042
+ },
3043
+ { "name": "block_11_project_BN/gamma", "shape": [96], "dtype": "float32", "quantization": { "min": 0.5630056262016296, "scale": 0.008524748157052432, "dtype": "uint8" } },
3044
+ {
3045
+ "name": "block_11_project_BN/beta",
3046
+ "shape": [96],
3047
+ "dtype": "float32",
3048
+ "quantization": { "min": -0.006553136140984647, "scale": 4.227829768377192e-5, "dtype": "uint8" }
3049
+ },
3050
+ {
3051
+ "name": "block_11_project_BN/moving_mean",
3052
+ "shape": [96],
3053
+ "dtype": "float32",
3054
+ "quantization": { "min": -1.8660660654890773, "scale": 0.016226661439035454, "dtype": "uint8" }
3055
+ },
3056
+ {
3057
+ "name": "block_11_project_BN/moving_variance",
3058
+ "shape": [96],
3059
+ "dtype": "float32",
3060
+ "quantization": { "min": 0.14689797163009644, "scale": 0.0020041888835383398, "dtype": "uint8" }
3061
+ },
3062
+ {
3063
+ "name": "block_12_depthwise/depthwise_kernel",
3064
+ "shape": [3, 3, 576, 1],
3065
+ "dtype": "float32",
3066
+ "quantization": { "min": -3.0593730814316697, "scale": 0.02487295188155829, "dtype": "uint8" }
3067
+ },
3068
+ {
3069
+ "name": "block_12_depthwise_BN/gamma",
3070
+ "shape": [576],
3071
+ "dtype": "float32",
3072
+ "quantization": { "min": 0.18331484496593475, "scale": 0.018403769299095752, "dtype": "uint8" }
3073
+ },
3074
+ { "name": "block_12_depthwise_BN/beta", "shape": [576], "dtype": "float32", "quantization": { "min": -5.980123789170208, "scale": 0.03646416944615981, "dtype": "uint8" } },
3075
+ {
3076
+ "name": "block_12_depthwise_BN/moving_mean",
3077
+ "shape": [576],
3078
+ "dtype": "float32",
3079
+ "quantization": { "min": -10.866527250701306, "scale": 0.05544146556480258, "dtype": "uint8" }
3080
+ },
3081
+ {
3082
+ "name": "block_12_depthwise_BN/moving_variance",
3083
+ "shape": [576],
3084
+ "dtype": "float32",
3085
+ "quantization": { "min": 0.00022924139921087772, "scale": 0.03855800487656904, "dtype": "uint8" }
3086
+ },
3087
+ {
3088
+ "name": "block_12_expand/kernel",
3089
+ "shape": [1, 1, 96, 576],
3090
+ "dtype": "float32",
3091
+ "quantization": { "min": -0.25110526645884795, "scale": 0.0020925438871570662, "dtype": "uint8" }
3092
+ },
3093
+ { "name": "block_12_expand_BN/gamma", "shape": [576], "dtype": "float32", "quantization": { "min": 0.21571911871433258, "scale": 0.010054528888534097, "dtype": "uint8" } },
3094
+ { "name": "block_12_expand_BN/beta", "shape": [576], "dtype": "float32", "quantization": { "min": -1.9130254502389943, "scale": 0.016491598708956848, "dtype": "uint8" } },
3095
+ {
3096
+ "name": "block_12_expand_BN/moving_mean",
3097
+ "shape": [576],
3098
+ "dtype": "float32",
3099
+ "quantization": { "min": -0.006275338518853281, "scale": 4.9026082178541256e-5, "dtype": "uint8" }
3100
+ },
3101
+ {
3102
+ "name": "block_12_expand_BN/moving_variance",
3103
+ "shape": [576],
3104
+ "dtype": "float32",
3105
+ "quantization": { "min": 1.4346864223480225, "scale": 0.058915868459963334, "dtype": "uint8" }
3106
+ },
3107
+ {
3108
+ "name": "block_12_project/kernel",
3109
+ "shape": [1, 1, 576, 96],
3110
+ "dtype": "float32",
3111
+ "quantization": { "min": -0.49135843445273003, "scale": 0.0032977076137767117, "dtype": "uint8" }
3112
+ },
3113
+ { "name": "block_12_project_BN/gamma", "shape": [96], "dtype": "float32", "quantization": { "min": 0.721093475818634, "scale": 0.013475235536986705, "dtype": "uint8" } },
3114
+ { "name": "block_12_project_BN/beta", "shape": [96], "dtype": "float32", "quantization": { "min": -0.005543093726623292, "scale": 3.95935266187378e-5, "dtype": "uint8" } },
3115
+ {
3116
+ "name": "block_12_project_BN/moving_mean",
3117
+ "shape": [96],
3118
+ "dtype": "float32",
3119
+ "quantization": { "min": -1.9206050424014822, "scale": 0.01333753501667696, "dtype": "uint8" }
3120
+ },
3121
+ {
3122
+ "name": "block_12_project_BN/moving_variance",
3123
+ "shape": [96],
3124
+ "dtype": "float32",
3125
+ "quantization": { "min": 0.10041400790214539, "scale": 0.0021526618331086404, "dtype": "uint8" }
3126
+ },
3127
+ {
3128
+ "name": "block_13_depthwise/depthwise_kernel",
3129
+ "shape": [3, 3, 576, 1],
3130
+ "dtype": "float32",
3131
+ "quantization": { "min": -1.4754528438343721, "scale": 0.011177673059351304, "dtype": "uint8" }
3132
+ },
3133
+ {
3134
+ "name": "block_13_depthwise_BN/gamma",
3135
+ "shape": [576],
3136
+ "dtype": "float32",
3137
+ "quantization": { "min": 0.350769579410553, "scale": 0.005496745249804328, "dtype": "uint8" }
3138
+ },
3139
+ { "name": "block_13_depthwise_BN/beta", "shape": [576], "dtype": "float32", "quantization": { "min": -2.24450935569464, "scale": 0.027042281393911325, "dtype": "uint8" } },
3140
+ {
3141
+ "name": "block_13_depthwise_BN/moving_mean",
3142
+ "shape": [576],
3143
+ "dtype": "float32",
3144
+ "quantization": { "min": -7.984861721712, "scale": 0.04810157663681928, "dtype": "uint8" }
3145
+ },
3146
+ {
3147
+ "name": "block_13_depthwise_BN/moving_variance",
3148
+ "shape": [576],
3149
+ "dtype": "float32",
3150
+ "quantization": { "min": 0.010228983126580715, "scale": 0.06980591618328118, "dtype": "uint8" }
3151
+ },
3152
+ {
3153
+ "name": "block_13_expand/kernel",
3154
+ "shape": [1, 1, 96, 576],
3155
+ "dtype": "float32",
3156
+ "quantization": { "min": -0.4197306464700138, "scale": 0.0033311956069048713, "dtype": "uint8" }
3157
+ },
3158
+ { "name": "block_13_expand_BN/gamma", "shape": [576], "dtype": "float32", "quantization": { "min": 0.06031922623515129, "scale": 0.007420331195873373, "dtype": "uint8" } },
3159
+ { "name": "block_13_expand_BN/beta", "shape": [576], "dtype": "float32", "quantization": { "min": -2.7976019186132093, "scale": 0.019701421962064855, "dtype": "uint8" } },
3160
+ {
3161
+ "name": "block_13_expand_BN/moving_mean",
3162
+ "shape": [576],
3163
+ "dtype": "float32",
3164
+ "quantization": { "min": -0.013370727481064843, "scale": 9.350159077667722e-5, "dtype": "uint8" }
3165
+ },
3166
+ {
3167
+ "name": "block_13_expand_BN/moving_variance",
3168
+ "shape": [576],
3169
+ "dtype": "float32",
3170
+ "quantization": { "min": 1.3005495071411133, "scale": 0.10002251793356502, "dtype": "uint8" }
3171
+ },
3172
+ {
3173
+ "name": "block_13_project/kernel",
3174
+ "shape": [1, 1, 576, 160],
3175
+ "dtype": "float32",
3176
+ "quantization": { "min": -0.37188173567547517, "scale": 0.002928202643113978, "dtype": "uint8" }
3177
+ },
3178
+ { "name": "block_13_project_BN/gamma", "shape": [160], "dtype": "float32", "quantization": { "min": 1.550618290901184, "scale": 0.005993789317561131, "dtype": "uint8" } },
3179
+ {
3180
+ "name": "block_13_project_BN/beta",
3181
+ "shape": [160],
3182
+ "dtype": "float32",
3183
+ "quantization": { "min": -0.005035641438820782, "scale": 4.577855853473439e-5, "dtype": "uint8" }
3184
+ },
3185
+ {
3186
+ "name": "block_13_project_BN/moving_mean",
3187
+ "shape": [160],
3188
+ "dtype": "float32",
3189
+ "quantization": { "min": -6.040092789893057, "scale": 0.04507531932756013, "dtype": "uint8" }
3190
+ },
3191
+ {
3192
+ "name": "block_13_project_BN/moving_variance",
3193
+ "shape": [160],
3194
+ "dtype": "float32",
3195
+ "quantization": { "min": 0.38076847791671753, "scale": 0.009339294480342491, "dtype": "uint8" }
3196
+ },
3197
+ {
3198
+ "name": "block_14_depthwise/depthwise_kernel",
3199
+ "shape": [3, 3, 960, 1],
3200
+ "dtype": "float32",
3201
+ "quantization": { "min": -3.8016654528823555, "scale": 0.026585073097079408, "dtype": "uint8" }
3202
+ },
3203
+ {
3204
+ "name": "block_14_depthwise_BN/gamma",
3205
+ "shape": [960],
3206
+ "dtype": "float32",
3207
+ "quantization": { "min": 0.2858554720878601, "scale": 0.01798316474054374, "dtype": "uint8" }
3208
+ },
3209
+ { "name": "block_14_depthwise_BN/beta", "shape": [960], "dtype": "float32", "quantization": { "min": -5.42720035945668, "scale": 0.032892123390646545, "dtype": "uint8" } },
3210
+ {
3211
+ "name": "block_14_depthwise_BN/moving_mean",
3212
+ "shape": [960],
3213
+ "dtype": "float32",
3214
+ "quantization": { "min": -6.137411499023437, "scale": 0.04870961507161458, "dtype": "uint8" }
3215
+ },
3216
+ {
3217
+ "name": "block_14_depthwise_BN/moving_variance",
3218
+ "shape": [960],
3219
+ "dtype": "float32",
3220
+ "quantization": { "min": 3.2535186619497836e-5, "scale": 0.10036481178277766, "dtype": "uint8" }
3221
+ },
3222
+ {
3223
+ "name": "block_14_expand/kernel",
3224
+ "shape": [1, 1, 160, 960],
3225
+ "dtype": "float32",
3226
+ "quantization": { "min": -0.3070852241095374, "scale": 0.0023805056132522283, "dtype": "uint8" }
3227
+ },
3228
+ { "name": "block_14_expand_BN/gamma", "shape": [960], "dtype": "float32", "quantization": { "min": 0.2994632422924042, "scale": 0.008773572889028811, "dtype": "uint8" } },
3229
+ { "name": "block_14_expand_BN/beta", "shape": [960], "dtype": "float32", "quantization": { "min": -1.8759665405049042, "scale": 0.01589802152970258, "dtype": "uint8" } },
3230
+ {
3231
+ "name": "block_14_expand_BN/moving_mean",
3232
+ "shape": [960],
3233
+ "dtype": "float32",
3234
+ "quantization": { "min": -0.003465659838790695, "scale": 2.9123191922610883e-5, "dtype": "uint8" }
3235
+ },
3236
+ {
3237
+ "name": "block_14_expand_BN/moving_variance",
3238
+ "shape": [960],
3239
+ "dtype": "float32",
3240
+ "quantization": { "min": 0.6711487770080566, "scale": 0.03398493411494236, "dtype": "uint8" }
3241
+ },
3242
+ {
3243
+ "name": "block_14_project/kernel",
3244
+ "shape": [1, 1, 960, 160],
3245
+ "dtype": "float32",
3246
+ "quantization": { "min": -0.34923891810809865, "scale": 0.002328259454053991, "dtype": "uint8" }
3247
+ },
3248
+ { "name": "block_14_project_BN/gamma", "shape": [160], "dtype": "float32", "quantization": { "min": 0.820835530757904, "scale": 0.007008622908124737, "dtype": "uint8" } },
3249
+ { "name": "block_14_project_BN/beta", "shape": [160], "dtype": "float32", "quantization": { "min": -0.003992707589093376, "scale": 3.1193028039792e-5, "dtype": "uint8" } },
3250
+ {
3251
+ "name": "block_14_project_BN/moving_mean",
3252
+ "shape": [160],
3253
+ "dtype": "float32",
3254
+ "quantization": { "min": -2.1882847701801973, "scale": 0.01585713601579853, "dtype": "uint8" }
3255
+ },
3256
+ {
3257
+ "name": "block_14_project_BN/moving_variance",
3258
+ "shape": [160],
3259
+ "dtype": "float32",
3260
+ "quantization": { "min": 0.22255808115005493, "scale": 0.0026917350058462105, "dtype": "uint8" }
3261
+ },
3262
+ {
3263
+ "name": "block_15_depthwise/depthwise_kernel",
3264
+ "shape": [3, 3, 960, 1],
3265
+ "dtype": "float32",
3266
+ "quantization": { "min": -3.787860099007102, "scale": 0.02848015112035415, "dtype": "uint8" }
3267
+ },
3268
+ {
3269
+ "name": "block_15_depthwise_BN/gamma",
3270
+ "shape": [960],
3271
+ "dtype": "float32",
3272
+ "quantization": { "min": 0.08640849590301514, "scale": 0.01727106851689956, "dtype": "uint8" }
3273
+ },
3274
+ { "name": "block_15_depthwise_BN/beta", "shape": [960], "dtype": "float32", "quantization": { "min": -6.166259084963331, "scale": 0.03585034351722867, "dtype": "uint8" } },
3275
+ {
3276
+ "name": "block_15_depthwise_BN/moving_mean",
3277
+ "shape": [960],
3278
+ "dtype": "float32",
3279
+ "quantization": { "min": -15.027781598708208, "scale": 0.0910774642345952, "dtype": "uint8" }
3280
+ },
3281
+ {
3282
+ "name": "block_15_depthwise_BN/moving_variance",
3283
+ "shape": [960],
3284
+ "dtype": "float32",
3285
+ "quantization": { "min": 1.0875285170186544e-6, "scale": 0.09568451099636488, "dtype": "uint8" }
3286
+ },
3287
+ {
3288
+ "name": "block_15_expand/kernel",
3289
+ "shape": [1, 1, 160, 960],
3290
+ "dtype": "float32",
3291
+ "quantization": { "min": -0.2951788762036492, "scale": 0.0024598239683637432, "dtype": "uint8" }
3292
+ },
3293
+ { "name": "block_15_expand_BN/gamma", "shape": [960], "dtype": "float32", "quantization": { "min": 0.16954641044139862, "scale": 0.010391918642848146, "dtype": "uint8" } },
3294
+ { "name": "block_15_expand_BN/beta", "shape": [960], "dtype": "float32", "quantization": { "min": -2.0732759391560274, "scale": 0.018347574682796703, "dtype": "uint8" } },
3295
+ {
3296
+ "name": "block_15_expand_BN/moving_mean",
3297
+ "shape": [960],
3298
+ "dtype": "float32",
3299
+ "quantization": { "min": -0.005657272238065215, "scale": 4.7942985068349274e-5, "dtype": "uint8" }
3300
+ },
3301
+ {
3302
+ "name": "block_15_expand_BN/moving_variance",
3303
+ "shape": [960],
3304
+ "dtype": "float32",
3305
+ "quantization": { "min": 0.984294056892395, "scale": 0.2563706823423797, "dtype": "uint8" }
3306
+ },
3307
+ {
3308
+ "name": "block_15_project/kernel",
3309
+ "shape": [1, 1, 960, 160],
3310
+ "dtype": "float32",
3311
+ "quantization": { "min": -0.4387097349353865, "scale": 0.0033489292743159277, "dtype": "uint8" }
3312
+ },
3313
+ { "name": "block_15_project_BN/gamma", "shape": [160], "dtype": "float32", "quantization": { "min": 1.2517534494400024, "scale": 0.010856366157531739, "dtype": "uint8" } },
3314
+ {
3315
+ "name": "block_15_project_BN/beta",
3316
+ "shape": [160],
3317
+ "dtype": "float32",
3318
+ "quantization": { "min": -0.00269769683261128, "scale": 2.0132065915009555e-5, "dtype": "uint8" }
3319
+ },
3320
+ {
3321
+ "name": "block_15_project_BN/moving_mean",
3322
+ "shape": [160],
3323
+ "dtype": "float32",
3324
+ "quantization": { "min": -2.2665801300722013, "scale": 0.014078137453864603, "dtype": "uint8" }
3325
+ },
3326
+ {
3327
+ "name": "block_15_project_BN/moving_variance",
3328
+ "shape": [160],
3329
+ "dtype": "float32",
3330
+ "quantization": { "min": 0.059768594801425934, "scale": 0.001256188078253877, "dtype": "uint8" }
3331
+ },
3332
+ {
3333
+ "name": "block_16_depthwise/depthwise_kernel",
3334
+ "shape": [3, 3, 960, 1],
3335
+ "dtype": "float32",
3336
+ "quantization": { "min": -2.8038849550134994, "scale": 0.02336570795844583, "dtype": "uint8" }
3337
+ },
3338
+ {
3339
+ "name": "block_16_depthwise_BN/gamma",
3340
+ "shape": [960],
3341
+ "dtype": "float32",
3342
+ "quantization": { "min": 0.4405687749385834, "scale": 0.011913974261751363, "dtype": "uint8" }
3343
+ },
3344
+ {
3345
+ "name": "block_16_depthwise_BN/beta",
3346
+ "shape": [960],
3347
+ "dtype": "float32",
3348
+ "quantization": { "min": -3.7257910148770206, "scale": 0.03239818273806105, "dtype": "uint8" }
3349
+ },
3350
+ {
3351
+ "name": "block_16_depthwise_BN/moving_mean",
3352
+ "shape": [960],
3353
+ "dtype": "float32",
3354
+ "quantization": { "min": -5.307021010155771, "scale": 0.03423884522681143, "dtype": "uint8" }
3355
+ },
3356
+ {
3357
+ "name": "block_16_depthwise_BN/moving_variance",
3358
+ "shape": [960],
3359
+ "dtype": "float32",
3360
+ "quantization": { "min": 7.858918706915574e-7, "scale": 0.22784748143189615, "dtype": "uint8" }
3361
+ },
3362
+ {
3363
+ "name": "block_16_expand/kernel",
3364
+ "shape": [1, 1, 160, 960],
3365
+ "dtype": "float32",
3366
+ "quantization": { "min": -0.38862050584718294, "scale": 0.0032117397177453136, "dtype": "uint8" }
3367
+ },
3368
+ { "name": "block_16_expand_BN/gamma", "shape": [960], "dtype": "float32", "quantization": { "min": 0.27079182863235474, "scale": 0.013339150886909635, "dtype": "uint8" } },
3369
+ { "name": "block_16_expand_BN/beta", "shape": [960], "dtype": "float32", "quantization": { "min": -1.8340444209528906, "scale": 0.015542749330109242, "dtype": "uint8" } },
3370
+ {
3371
+ "name": "block_16_expand_BN/moving_mean",
3372
+ "shape": [960],
3373
+ "dtype": "float32",
3374
+ "quantization": { "min": -0.007079307767836487, "scale": 7.779459085534601e-5, "dtype": "uint8" }
3375
+ },
3376
+ {
3377
+ "name": "block_16_expand_BN/moving_variance",
3378
+ "shape": [960],
3379
+ "dtype": "float32",
3380
+ "quantization": { "min": 1.8959892988204956, "scale": 0.26395472778993495, "dtype": "uint8" }
3381
+ },
3382
+ {
3383
+ "name": "block_16_project/kernel",
3384
+ "shape": [1, 1, 960, 320],
3385
+ "dtype": "float32",
3386
+ "quantization": { "min": -0.5272602123372695, "scale": 0.004184604859819599, "dtype": "uint8" }
3387
+ },
3388
+ { "name": "block_16_project_BN/gamma", "shape": [320], "dtype": "float32", "quantization": { "min": 1.737635612487793, "scale": 0.007401946946686389, "dtype": "uint8" } },
3389
+ {
3390
+ "name": "block_16_project_BN/beta",
3391
+ "shape": [320],
3392
+ "dtype": "float32",
3393
+ "quantization": { "min": -0.0022203737532026043, "scale": 2.037040140552848e-5, "dtype": "uint8" }
3394
+ },
3395
+ {
3396
+ "name": "block_16_project_BN/moving_mean",
3397
+ "shape": [320],
3398
+ "dtype": "float32",
3399
+ "quantization": { "min": -6.317516297920077, "scale": 0.04023895731159285, "dtype": "uint8" }
3400
+ },
3401
+ {
3402
+ "name": "block_16_project_BN/moving_variance",
3403
+ "shape": [320],
3404
+ "dtype": "float32",
3405
+ "quantization": { "min": 0.4311196208000183, "scale": 0.035004029788222965, "dtype": "uint8" }
3406
+ },
3407
+ {
3408
+ "name": "block_1_depthwise/depthwise_kernel",
3409
+ "shape": [3, 3, 96, 1],
3410
+ "dtype": "float32",
3411
+ "quantization": { "min": -3.070943791258569, "scale": 0.02537970075420305, "dtype": "uint8" }
3412
+ },
3413
+ { "name": "block_1_depthwise_BN/gamma", "shape": [96], "dtype": "float32", "quantization": { "min": 0.4857683479785919, "scale": 0.011590205804974425, "dtype": "uint8" } },
3414
+ { "name": "block_1_depthwise_BN/beta", "shape": [96], "dtype": "float32", "quantization": { "min": -4.136155797920975, "scale": 0.034183105767941944, "dtype": "uint8" } },
3415
+ {
3416
+ "name": "block_1_depthwise_BN/moving_mean",
3417
+ "shape": [96],
3418
+ "dtype": "float32",
3419
+ "quantization": { "min": -28.937354689953374, "scale": 0.26548031825645296, "dtype": "uint8" }
3420
+ },
3421
+ {
3422
+ "name": "block_1_depthwise_BN/moving_variance",
3423
+ "shape": [96],
3424
+ "dtype": "float32",
3425
+ "quantization": { "min": 0.04768875613808632, "scale": 0.8554738763354572, "dtype": "uint8" }
3426
+ },
3427
+ {
3428
+ "name": "block_1_expand/kernel",
3429
+ "shape": [1, 1, 16, 96],
3430
+ "dtype": "float32",
3431
+ "quantization": { "min": -1.2957038131414675, "scale": 0.008098148832134172, "dtype": "uint8" }
3432
+ },
3433
+ { "name": "block_1_expand_BN/gamma", "shape": [96], "dtype": "float32", "quantization": { "min": 0.2122029960155487, "scale": 0.03750847472864039, "dtype": "uint8" } },
3434
+ { "name": "block_1_expand_BN/beta", "shape": [96], "dtype": "float32", "quantization": { "min": -2.2824947160833022, "scale": 0.028178947112139533, "dtype": "uint8" } },
3435
+ {
3436
+ "name": "block_1_expand_BN/moving_mean",
3437
+ "shape": [96],
3438
+ "dtype": "float32",
3439
+ "quantization": { "min": -0.056052549300240534, "scale": 0.00041830260671821295, "dtype": "uint8" }
3440
+ },
3441
+ {
3442
+ "name": "block_1_expand_BN/moving_variance",
3443
+ "shape": [96],
3444
+ "dtype": "float32",
3445
+ "quantization": { "min": 1.6280046701431274, "scale": 0.10497297165440578, "dtype": "uint8" }
3446
+ },
3447
+ {
3448
+ "name": "block_1_project/kernel",
3449
+ "shape": [1, 1, 96, 24],
3450
+ "dtype": "float32",
3451
+ "quantization": { "min": -1.3319599740645465, "scale": 0.008121707158930161, "dtype": "uint8" }
3452
+ },
3453
+ { "name": "block_1_project_BN/gamma", "shape": [24], "dtype": "float32", "quantization": { "min": 1.9806559085845947, "scale": 0.013070227118099437, "dtype": "uint8" } },
3454
+ { "name": "block_1_project_BN/beta", "shape": [24], "dtype": "float32", "quantization": { "min": -0.010182667633189875, "scale": 8.081482248563392e-5, "dtype": "uint8" } },
3455
+ {
3456
+ "name": "block_1_project_BN/moving_mean",
3457
+ "shape": [24],
3458
+ "dtype": "float32",
3459
+ "quantization": { "min": -5.945862329707427, "scale": 0.03693082192364861, "dtype": "uint8" }
3460
+ },
3461
+ {
3462
+ "name": "block_1_project_BN/moving_variance",
3463
+ "shape": [24],
3464
+ "dtype": "float32",
3465
+ "quantization": { "min": 0.37005844712257385, "scale": 0.015794806737525792, "dtype": "uint8" }
3466
+ },
3467
+ {
3468
+ "name": "block_2_depthwise/depthwise_kernel",
3469
+ "shape": [3, 3, 144, 1],
3470
+ "dtype": "float32",
3471
+ "quantization": { "min": -7.181409458085602, "scale": 0.05886401195152133, "dtype": "uint8" }
3472
+ },
3473
+ {
3474
+ "name": "block_2_depthwise_BN/gamma",
3475
+ "shape": [144],
3476
+ "dtype": "float32",
3477
+ "quantization": { "min": 0.40984275937080383, "scale": 0.008265640104518216, "dtype": "uint8" }
3478
+ },
3479
+ {
3480
+ "name": "block_2_depthwise_BN/beta",
3481
+ "shape": [144],
3482
+ "dtype": "float32",
3483
+ "quantization": { "min": -3.2851701624253216, "scale": 0.034220522525263766, "dtype": "uint8" }
3484
+ },
3485
+ {
3486
+ "name": "block_2_depthwise_BN/moving_mean",
3487
+ "shape": [144],
3488
+ "dtype": "float32",
3489
+ "quantization": { "min": -11.277414492064832, "scale": 0.05843219944075042, "dtype": "uint8" }
3490
+ },
3491
+ { "name": "block_2_depthwise_BN/moving_variance", "shape": [144], "dtype": "float32", "quantization": { "min": -0.0, "scale": 0.1796044293571921, "dtype": "uint8" } },
3492
+ {
3493
+ "name": "block_2_expand/kernel",
3494
+ "shape": [1, 1, 24, 144],
3495
+ "dtype": "float32",
3496
+ "quantization": { "min": -0.596191698663375, "scale": 0.004621641074909883, "dtype": "uint8" }
3497
+ },
3498
+ { "name": "block_2_expand_BN/gamma", "shape": [144], "dtype": "float32", "quantization": { "min": 0.1913505643606186, "scale": 0.01640206651360381, "dtype": "uint8" } },
3499
+ { "name": "block_2_expand_BN/beta", "shape": [144], "dtype": "float32", "quantization": { "min": -2.538083179324281, "scale": 0.028517788531733493, "dtype": "uint8" } },
3500
+ {
3501
+ "name": "block_2_expand_BN/moving_mean",
3502
+ "shape": [144],
3503
+ "dtype": "float32",
3504
+ "quantization": { "min": -0.00857109451556907, "scale": 6.968369524852903e-5, "dtype": "uint8" }
3505
+ },
3506
+ {
3507
+ "name": "block_2_expand_BN/moving_variance",
3508
+ "shape": [144],
3509
+ "dtype": "float32",
3510
+ "quantization": { "min": 1.5163608506781247e-34, "scale": 0.17690577787511488, "dtype": "uint8" }
3511
+ },
3512
+ {
3513
+ "name": "block_2_project/kernel",
3514
+ "shape": [1, 1, 144, 24],
3515
+ "dtype": "float32",
3516
+ "quantization": { "min": -0.4962309951875724, "scale": 0.005063581583546657, "dtype": "uint8" }
3517
+ },
3518
+ { "name": "block_2_project_BN/gamma", "shape": [24], "dtype": "float32", "quantization": { "min": 1.5146973133087158, "scale": 0.02459877519046559, "dtype": "uint8" } },
3519
+ { "name": "block_2_project_BN/beta", "shape": [24], "dtype": "float32", "quantization": { "min": -0.006625267572920112, "scale": 5.662621857196677e-5, "dtype": "uint8" } },
3520
+ {
3521
+ "name": "block_2_project_BN/moving_mean",
3522
+ "shape": [24],
3523
+ "dtype": "float32",
3524
+ "quantization": { "min": -4.26975632835837, "scale": 0.041453944935518156, "dtype": "uint8" }
3525
+ },
3526
+ {
3527
+ "name": "block_2_project_BN/moving_variance",
3528
+ "shape": [24],
3529
+ "dtype": "float32",
3530
+ "quantization": { "min": 0.667578399181366, "scale": 0.012379103314642812, "dtype": "uint8" }
3531
+ },
3532
+ {
3533
+ "name": "block_3_depthwise/depthwise_kernel",
3534
+ "shape": [3, 3, 144, 1],
3535
+ "dtype": "float32",
3536
+ "quantization": { "min": -2.280805359634699, "scale": 0.017959097319958258, "dtype": "uint8" }
3537
+ },
3538
+ {
3539
+ "name": "block_3_depthwise_BN/gamma",
3540
+ "shape": [144],
3541
+ "dtype": "float32",
3542
+ "quantization": { "min": 0.38231614232063293, "scale": 0.011584419245813406, "dtype": "uint8" }
3543
+ },
3544
+ {
3545
+ "name": "block_3_depthwise_BN/beta",
3546
+ "shape": [144],
3547
+ "dtype": "float32",
3548
+ "quantization": { "min": -2.7828902637257293, "scale": 0.030921002930285883, "dtype": "uint8" }
3549
+ },
3550
+ {
3551
+ "name": "block_3_depthwise_BN/moving_mean",
3552
+ "shape": [144],
3553
+ "dtype": "float32",
3554
+ "quantization": { "min": -28.649707906386432, "scale": 0.18483682520249312, "dtype": "uint8" }
3555
+ },
3556
+ {
3557
+ "name": "block_3_depthwise_BN/moving_variance",
3558
+ "shape": [144],
3559
+ "dtype": "float32",
3560
+ "quantization": { "min": 0.18932129442691803, "scale": 0.38042693132278965, "dtype": "uint8" }
3561
+ },
3562
+ {
3563
+ "name": "block_3_expand/kernel",
3564
+ "shape": [1, 1, 24, 144],
3565
+ "dtype": "float32",
3566
+ "quantization": { "min": -1.118310601571027, "scale": 0.008103700011384253, "dtype": "uint8" }
3567
+ },
3568
+ { "name": "block_3_expand_BN/gamma", "shape": [144], "dtype": "float32", "quantization": { "min": 0.2990524172782898, "scale": 0.013908624882791557, "dtype": "uint8" } },
3569
+ { "name": "block_3_expand_BN/beta", "shape": [144], "dtype": "float32", "quantization": { "min": -2.3489304075054096, "scale": 0.024988621356440525, "dtype": "uint8" } },
3570
+ {
3571
+ "name": "block_3_expand_BN/moving_mean",
3572
+ "shape": [144],
3573
+ "dtype": "float32",
3574
+ "quantization": { "min": -0.010190908223682758, "scale": 8.353203462035048e-5, "dtype": "uint8" }
3575
+ },
3576
+ {
3577
+ "name": "block_3_expand_BN/moving_variance",
3578
+ "shape": [144],
3579
+ "dtype": "float32",
3580
+ "quantization": { "min": 3.8810181617736816, "scale": 0.2802370613696528, "dtype": "uint8" }
3581
+ },
3582
+ {
3583
+ "name": "block_3_project/kernel",
3584
+ "shape": [1, 1, 144, 32],
3585
+ "dtype": "float32",
3586
+ "quantization": { "min": -0.7998786091804505, "scale": 0.0068365693092346195, "dtype": "uint8" }
3587
+ },
3588
+ { "name": "block_3_project_BN/gamma", "shape": [32], "dtype": "float32", "quantization": { "min": 2.4770939350128174, "scale": 0.01675523215649175, "dtype": "uint8" } },
3589
+ {
3590
+ "name": "block_3_project_BN/beta",
3591
+ "shape": [32],
3592
+ "dtype": "float32",
3593
+ "quantization": { "min": -0.005942130622033979, "scale": 5.8832976455781976e-5, "dtype": "uint8" }
3594
+ },
3595
+ {
3596
+ "name": "block_3_project_BN/moving_mean",
3597
+ "shape": [32],
3598
+ "dtype": "float32",
3599
+ "quantization": { "min": -3.650315753151389, "scale": 0.04195765233507343, "dtype": "uint8" }
3600
+ },
3601
+ {
3602
+ "name": "block_3_project_BN/moving_variance",
3603
+ "shape": [32],
3604
+ "dtype": "float32",
3605
+ "quantization": { "min": 0.7385707497596741, "scale": 0.037899703371758554, "dtype": "uint8" }
3606
+ },
3607
+ {
3608
+ "name": "block_4_depthwise/depthwise_kernel",
3609
+ "shape": [3, 3, 192, 1],
3610
+ "dtype": "float32",
3611
+ "quantization": { "min": -4.985755969028847, "scale": 0.0372071340972302, "dtype": "uint8" }
3612
+ },
3613
+ {
3614
+ "name": "block_4_depthwise_BN/gamma",
3615
+ "shape": [192],
3616
+ "dtype": "float32",
3617
+ "quantization": { "min": 0.3745843470096588, "scale": 0.009330581566866706, "dtype": "uint8" }
3618
+ },
3619
+ { "name": "block_4_depthwise_BN/beta", "shape": [192], "dtype": "float32", "quantization": { "min": -2.906554125804527, "scale": 0.024021108477723364, "dtype": "uint8" } },
3620
+ {
3621
+ "name": "block_4_depthwise_BN/moving_mean",
3622
+ "shape": [192],
3623
+ "dtype": "float32",
3624
+ "quantization": { "min": -5.352850296918083, "scale": 0.044607085807650694, "dtype": "uint8" }
3625
+ },
3626
+ {
3627
+ "name": "block_4_depthwise_BN/moving_variance",
3628
+ "shape": [192],
3629
+ "dtype": "float32",
3630
+ "quantization": { "min": 0.03507642820477486, "scale": 0.04683735304895569, "dtype": "uint8" }
3631
+ },
3632
+ {
3633
+ "name": "block_4_expand/kernel",
3634
+ "shape": [1, 1, 32, 192],
3635
+ "dtype": "float32",
3636
+ "quantization": { "min": -0.40418717720929315, "scale": 0.0030620240697673724, "dtype": "uint8" }
3637
+ },
3638
+ { "name": "block_4_expand_BN/gamma", "shape": [192], "dtype": "float32", "quantization": { "min": 0.167377769947052, "scale": 0.007529168736700918, "dtype": "uint8" } },
3639
+ { "name": "block_4_expand_BN/beta", "shape": [192], "dtype": "float32", "quantization": { "min": -2.5541455465204574, "scale": 0.022209961274090934, "dtype": "uint8" } },
3640
+ {
3641
+ "name": "block_4_expand_BN/moving_mean",
3642
+ "shape": [192],
3643
+ "dtype": "float32",
3644
+ "quantization": { "min": -0.004339029848137323, "scale": 3.099307034383802e-5, "dtype": "uint8" }
3645
+ },
3646
+ {
3647
+ "name": "block_4_expand_BN/moving_variance",
3648
+ "shape": [192],
3649
+ "dtype": "float32",
3650
+ "quantization": { "min": 1.8437719345092773, "scale": 0.10860272201837277, "dtype": "uint8" }
3651
+ },
3652
+ {
3653
+ "name": "block_4_project/kernel",
3654
+ "shape": [1, 1, 192, 32],
3655
+ "dtype": "float32",
3656
+ "quantization": { "min": -0.5263700140457528, "scale": 0.003630138027901743, "dtype": "uint8" }
3657
+ },
3658
+ { "name": "block_4_project_BN/gamma", "shape": [32], "dtype": "float32", "quantization": { "min": 0.9728992581367493, "scale": 0.01992112959132475, "dtype": "uint8" } },
3659
+ { "name": "block_4_project_BN/beta", "shape": [32], "dtype": "float32", "quantization": { "min": -0.006176024123880209, "scale": 4.863011121165519e-5, "dtype": "uint8" } },
3660
+ {
3661
+ "name": "block_4_project_BN/moving_mean",
3662
+ "shape": [32],
3663
+ "dtype": "float32",
3664
+ "quantization": { "min": -2.7950704770929673, "scale": 0.020401974285350125, "dtype": "uint8" }
3665
+ },
3666
+ {
3667
+ "name": "block_4_project_BN/moving_variance",
3668
+ "shape": [32],
3669
+ "dtype": "float32",
3670
+ "quantization": { "min": 0.2692086398601532, "scale": 0.004634153726054173, "dtype": "uint8" }
3671
+ },
3672
+ {
3673
+ "name": "block_5_depthwise/depthwise_kernel",
3674
+ "shape": [3, 3, 192, 1],
3675
+ "dtype": "float32",
3676
+ "quantization": { "min": -4.52747631259993, "scale": 0.03257177203309302, "dtype": "uint8" }
3677
+ },
3678
+ {
3679
+ "name": "block_5_depthwise_BN/gamma",
3680
+ "shape": [192],
3681
+ "dtype": "float32",
3682
+ "quantization": { "min": 0.4237539768218994, "scale": 0.008437786850274779, "dtype": "uint8" }
3683
+ },
3684
+ {
3685
+ "name": "block_5_depthwise_BN/beta",
3686
+ "shape": [192],
3687
+ "dtype": "float32",
3688
+ "quantization": { "min": -2.8744141410378847, "scale": 0.023369220658844593, "dtype": "uint8" }
3689
+ },
3690
+ {
3691
+ "name": "block_5_depthwise_BN/moving_mean",
3692
+ "shape": [192],
3693
+ "dtype": "float32",
3694
+ "quantization": { "min": -18.298168743357937, "scale": 0.10456096424775965, "dtype": "uint8" }
3695
+ },
3696
+ {
3697
+ "name": "block_5_depthwise_BN/moving_variance",
3698
+ "shape": [192],
3699
+ "dtype": "float32",
3700
+ "quantization": { "min": 0.040692880749702454, "scale": 0.04720107591619679, "dtype": "uint8" }
3701
+ },
3702
+ {
3703
+ "name": "block_5_expand/kernel",
3704
+ "shape": [1, 1, 32, 192],
3705
+ "dtype": "float32",
3706
+ "quantization": { "min": -0.36168030208232355, "scale": 0.0032007106378966685, "dtype": "uint8" }
3707
+ },
3708
+ { "name": "block_5_expand_BN/gamma", "shape": [192], "dtype": "float32", "quantization": { "min": 0.1293688714504242, "scale": 0.007221938231412102, "dtype": "uint8" } },
3709
+ { "name": "block_5_expand_BN/beta", "shape": [192], "dtype": "float32", "quantization": { "min": -1.6064272095175351, "scale": 0.019124133446637322, "dtype": "uint8" } },
3710
+ {
3711
+ "name": "block_5_expand_BN/moving_mean",
3712
+ "shape": [192],
3713
+ "dtype": "float32",
3714
+ "quantization": { "min": -0.006665974828031132, "scale": 6.733307907102154e-5, "dtype": "uint8" }
3715
+ },
3716
+ {
3717
+ "name": "block_5_expand_BN/moving_variance",
3718
+ "shape": [192],
3719
+ "dtype": "float32",
3720
+ "quantization": { "min": 2.6557254791259766, "scale": 0.08463248458563112, "dtype": "uint8" }
3721
+ },
3722
+ {
3723
+ "name": "block_5_project/kernel",
3724
+ "shape": [1, 1, 192, 32],
3725
+ "dtype": "float32",
3726
+ "quantization": { "min": -0.4291310926278432, "scale": 0.00354653795560201, "dtype": "uint8" }
3727
+ },
3728
+ { "name": "block_5_project_BN/gamma", "shape": [32], "dtype": "float32", "quantization": { "min": 0.9242632985115051, "scale": 0.018858166068207984, "dtype": "uint8" } },
3729
+ {
3730
+ "name": "block_5_project_BN/beta",
3731
+ "shape": [32],
3732
+ "dtype": "float32",
3733
+ "quantization": { "min": -0.005500635230804191, "scale": 4.3655835165112626e-5, "dtype": "uint8" }
3734
+ },
3735
+ {
3736
+ "name": "block_5_project_BN/moving_mean",
3737
+ "shape": [32],
3738
+ "dtype": "float32",
3739
+ "quantization": { "min": -2.1954680022071393, "scale": 0.018764683779548198, "dtype": "uint8" }
3740
+ },
3741
+ {
3742
+ "name": "block_5_project_BN/moving_variance",
3743
+ "shape": [32],
3744
+ "dtype": "float32",
3745
+ "quantization": { "min": 0.2067245990037918, "scale": 0.0037080140090456197, "dtype": "uint8" }
3746
+ },
3747
+ {
3748
+ "name": "block_6_depthwise/depthwise_kernel",
3749
+ "shape": [3, 3, 192, 1],
3750
+ "dtype": "float32",
3751
+ "quantization": { "min": -1.9960154365090763, "scale": 0.01663346197090897, "dtype": "uint8" }
3752
+ },
3753
+ {
3754
+ "name": "block_6_depthwise_BN/gamma",
3755
+ "shape": [192],
3756
+ "dtype": "float32",
3757
+ "quantization": { "min": 0.4712669849395752, "scale": 0.006421379014557483, "dtype": "uint8" }
3758
+ },
3759
+ { "name": "block_6_depthwise_BN/beta", "shape": [192], "dtype": "float32", "quantization": { "min": -1.4898768144495347, "scale": 0.02613818972718482, "dtype": "uint8" } },
3760
+ {
3761
+ "name": "block_6_depthwise_BN/moving_mean",
3762
+ "shape": [192],
3763
+ "dtype": "float32",
3764
+ "quantization": { "min": -15.621279009650735, "scale": 0.12109518612132353, "dtype": "uint8" }
3765
+ },
3766
+ {
3767
+ "name": "block_6_depthwise_BN/moving_variance",
3768
+ "shape": [192],
3769
+ "dtype": "float32",
3770
+ "quantization": { "min": 0.0683574229478836, "scale": 0.28740606138519215, "dtype": "uint8" }
3771
+ },
3772
+ {
3773
+ "name": "block_6_expand/kernel",
3774
+ "shape": [1, 1, 32, 192],
3775
+ "dtype": "float32",
3776
+ "quantization": { "min": -0.6843907033695894, "scale": 0.005609759863685159, "dtype": "uint8" }
3777
+ },
3778
+ { "name": "block_6_expand_BN/gamma", "shape": [192], "dtype": "float32", "quantization": { "min": 0.4731082618236542, "scale": 0.009170516448862413, "dtype": "uint8" } },
3779
+ { "name": "block_6_expand_BN/beta", "shape": [192], "dtype": "float32", "quantization": { "min": -1.8309699773788453, "scale": 0.015386302330914666, "dtype": "uint8" } },
3780
+ {
3781
+ "name": "block_6_expand_BN/moving_mean",
3782
+ "shape": [192],
3783
+ "dtype": "float32",
3784
+ "quantization": { "min": -0.016153413539423664, "scale": 0.00014169660999494441, "dtype": "uint8" }
3785
+ },
3786
+ {
3787
+ "name": "block_6_expand_BN/moving_variance",
3788
+ "shape": [192],
3789
+ "dtype": "float32",
3790
+ "quantization": { "min": 5.0375471115112305, "scale": 0.1423933328366747, "dtype": "uint8" }
3791
+ },
3792
+ {
3793
+ "name": "block_6_project/kernel",
3794
+ "shape": [1, 1, 192, 64],
3795
+ "dtype": "float32",
3796
+ "quantization": { "min": -0.9496052826152128, "scale": 0.006330701884101419, "dtype": "uint8" }
3797
+ },
3798
+ { "name": "block_6_project_BN/gamma", "shape": [64], "dtype": "float32", "quantization": { "min": 0.8319648504257202, "scale": 0.02171465789570528, "dtype": "uint8" } },
3799
+ { "name": "block_6_project_BN/beta", "shape": [64], "dtype": "float32", "quantization": { "min": -0.005802899913168421, "scale": 4.363082641480016e-5, "dtype": "uint8" } },
3800
+ {
3801
+ "name": "block_6_project_BN/moving_mean",
3802
+ "shape": [64],
3803
+ "dtype": "float32",
3804
+ "quantization": { "min": -5.993951730167165, "scale": 0.04473098306094899, "dtype": "uint8" }
3805
+ },
3806
+ {
3807
+ "name": "block_6_project_BN/moving_variance",
3808
+ "shape": [64],
3809
+ "dtype": "float32",
3810
+ "quantization": { "min": 0.4466089904308319, "scale": 0.05287521037400938, "dtype": "uint8" }
3811
+ },
3812
+ {
3813
+ "name": "block_7_depthwise/depthwise_kernel",
3814
+ "shape": [3, 3, 384, 1],
3815
+ "dtype": "float32",
3816
+ "quantization": { "min": -3.3044106876148898, "scale": 0.022947296441770067, "dtype": "uint8" }
3817
+ },
3818
+ {
3819
+ "name": "block_7_depthwise_BN/gamma",
3820
+ "shape": [384],
3821
+ "dtype": "float32",
3822
+ "quantization": { "min": 0.23756937682628632, "scale": 0.009583088755607604, "dtype": "uint8" }
3823
+ },
3824
+ {
3825
+ "name": "block_7_depthwise_BN/beta",
3826
+ "shape": [384],
3827
+ "dtype": "float32",
3828
+ "quantization": { "min": -3.6187023807974423, "scale": 0.021162002226885628, "dtype": "uint8" }
3829
+ },
3830
+ {
3831
+ "name": "block_7_depthwise_BN/moving_mean",
3832
+ "shape": [384],
3833
+ "dtype": "float32",
3834
+ "quantization": { "min": -21.42839676913093, "scale": 0.09439822365255916, "dtype": "uint8" }
3835
+ },
3836
+ {
3837
+ "name": "block_7_depthwise_BN/moving_variance",
3838
+ "shape": [384],
3839
+ "dtype": "float32",
3840
+ "quantization": { "min": 0.0010467394022271037, "scale": 0.05028138783093834, "dtype": "uint8" }
3841
+ },
3842
+ {
3843
+ "name": "block_7_expand/kernel",
3844
+ "shape": [1, 1, 64, 384],
3845
+ "dtype": "float32",
3846
+ "quantization": { "min": -0.367723983409358, "scale": 0.0027442088314131195, "dtype": "uint8" }
3847
+ },
3848
+ { "name": "block_7_expand_BN/gamma", "shape": [384], "dtype": "float32", "quantization": { "min": 0.11244644224643707, "scale": 0.005810386000895033, "dtype": "uint8" } },
3849
+ { "name": "block_7_expand_BN/beta", "shape": [384], "dtype": "float32", "quantization": { "min": -1.5284377168206607, "scale": 0.019347312871147604, "dtype": "uint8" } },
3850
+ {
3851
+ "name": "block_7_expand_BN/moving_mean",
3852
+ "shape": [384],
3853
+ "dtype": "float32",
3854
+ "quantization": { "min": -0.0030003727450236386, "scale": 2.542688766969185e-5, "dtype": "uint8" }
3855
+ },
3856
+ {
3857
+ "name": "block_7_expand_BN/moving_variance",
3858
+ "shape": [384],
3859
+ "dtype": "float32",
3860
+ "quantization": { "min": 1.0071969032287598, "scale": 0.036530892989214726, "dtype": "uint8" }
3861
+ },
3862
+ {
3863
+ "name": "block_7_project/kernel",
3864
+ "shape": [1, 1, 384, 64],
3865
+ "dtype": "float32",
3866
+ "quantization": { "min": -0.4649557908376058, "scale": 0.003907191519643746, "dtype": "uint8" }
3867
+ },
3868
+ { "name": "block_7_project_BN/gamma", "shape": [64], "dtype": "float32", "quantization": { "min": 0.5764568448066711, "scale": 0.02033467830396166, "dtype": "uint8" } },
3869
+ {
3870
+ "name": "block_7_project_BN/beta",
3871
+ "shape": [64],
3872
+ "dtype": "float32",
3873
+ "quantization": { "min": -0.004176882530252139, "scale": 3.5099853195396126e-5, "dtype": "uint8" }
3874
+ },
3875
+ {
3876
+ "name": "block_7_project_BN/moving_mean",
3877
+ "shape": [64],
3878
+ "dtype": "float32",
3879
+ "quantization": { "min": -1.323780222967559, "scale": 0.017191950947630638, "dtype": "uint8" }
3880
+ },
3881
+ {
3882
+ "name": "block_7_project_BN/moving_variance",
3883
+ "shape": [64],
3884
+ "dtype": "float32",
3885
+ "quantization": { "min": 0.17085391283035278, "scale": 0.008321891812717213, "dtype": "uint8" }
3886
+ },
3887
+ {
3888
+ "name": "block_8_depthwise/depthwise_kernel",
3889
+ "shape": [3, 3, 384, 1],
3890
+ "dtype": "float32",
3891
+ "quantization": { "min": -3.422506362316655, "scale": 0.026948868994619332, "dtype": "uint8" }
3892
+ },
3893
+ {
3894
+ "name": "block_8_depthwise_BN/gamma",
3895
+ "shape": [384],
3896
+ "dtype": "float32",
3897
+ "quantization": { "min": 0.28603067994117737, "scale": 0.01632120130108852, "dtype": "uint8" }
3898
+ },
3899
+ { "name": "block_8_depthwise_BN/beta", "shape": [384], "dtype": "float32", "quantization": { "min": -6.150375859877642, "scale": 0.03271476521211512, "dtype": "uint8" } },
3900
+ {
3901
+ "name": "block_8_depthwise_BN/moving_mean",
3902
+ "shape": [384],
3903
+ "dtype": "float32",
3904
+ "quantization": { "min": -9.423691969291836, "scale": 0.04596922911849676, "dtype": "uint8" }
3905
+ },
3906
+ {
3907
+ "name": "block_8_depthwise_BN/moving_variance",
3908
+ "shape": [384],
3909
+ "dtype": "float32",
3910
+ "quantization": { "min": 0.004629261326044798, "scale": 0.061719789197120595, "dtype": "uint8" }
3911
+ },
3912
+ {
3913
+ "name": "block_8_expand/kernel",
3914
+ "shape": [1, 1, 64, 384],
3915
+ "dtype": "float32",
3916
+ "quantization": { "min": -0.5420334745855893, "scale": 0.0037125580451067754, "dtype": "uint8" }
3917
+ },
3918
+ { "name": "block_8_expand_BN/gamma", "shape": [384], "dtype": "float32", "quantization": { "min": 0.12719938158988953, "scale": 0.005510600992277557, "dtype": "uint8" } },
3919
+ { "name": "block_8_expand_BN/beta", "shape": [384], "dtype": "float32", "quantization": { "min": -1.4796660900115968, "scale": 0.01450653029423134, "dtype": "uint8" } },
3920
+ {
3921
+ "name": "block_8_expand_BN/moving_mean",
3922
+ "shape": [384],
3923
+ "dtype": "float32",
3924
+ "quantization": { "min": -0.005836034748776287, "scale": 3.8649236746862825e-5, "dtype": "uint8" }
3925
+ },
3926
+ {
3927
+ "name": "block_8_expand_BN/moving_variance",
3928
+ "shape": [384],
3929
+ "dtype": "float32",
3930
+ "quantization": { "min": 1.4665534496307373, "scale": 0.05413022228315765, "dtype": "uint8" }
3931
+ },
3932
+ {
3933
+ "name": "block_8_project/kernel",
3934
+ "shape": [1, 1, 384, 64],
3935
+ "dtype": "float32",
3936
+ "quantization": { "min": -0.30033120641521377, "scale": 0.002422025858187208, "dtype": "uint8" }
3937
+ },
3938
+ { "name": "block_8_project_BN/gamma", "shape": [64], "dtype": "float32", "quantization": { "min": 0.6333269476890564, "scale": 0.012745298357570873, "dtype": "uint8" } },
3939
+ {
3940
+ "name": "block_8_project_BN/beta",
3941
+ "shape": [64],
3942
+ "dtype": "float32",
3943
+ "quantization": { "min": -0.004904859973227277, "scale": 3.6332296097979825e-5, "dtype": "uint8" }
3944
+ },
3945
+ {
3946
+ "name": "block_8_project_BN/moving_mean",
3947
+ "shape": [64],
3948
+ "dtype": "float32",
3949
+ "quantization": { "min": -1.0753987162720924, "scale": 0.00977635196610993, "dtype": "uint8" }
3950
+ },
3951
+ {
3952
+ "name": "block_8_project_BN/moving_variance",
3953
+ "shape": [64],
3954
+ "dtype": "float32",
3955
+ "quantization": { "min": 0.13130801916122437, "scale": 0.0021861090379602767, "dtype": "uint8" }
3956
+ },
3957
+ {
3958
+ "name": "block_9_depthwise/depthwise_kernel",
3959
+ "shape": [3, 3, 384, 1],
3960
+ "dtype": "float32",
3961
+ "quantization": { "min": -2.831250134636374, "scale": 0.019798951990464154, "dtype": "uint8" }
3962
+ },
3963
+ { "name": "block_9_depthwise_BN/gamma", "shape": [384], "dtype": "float32", "quantization": { "min": 0.31796711683273315, "scale": 0.007955082023845, "dtype": "uint8" } },
3964
+ { "name": "block_9_depthwise_BN/beta", "shape": [384], "dtype": "float32", "quantization": { "min": -4.171680545806884, "scale": 0.025130605697631835, "dtype": "uint8" } },
3965
+ {
3966
+ "name": "block_9_depthwise_BN/moving_mean",
3967
+ "shape": [384],
3968
+ "dtype": "float32",
3969
+ "quantization": { "min": -4.612406263164445, "scale": 0.028827539144777783, "dtype": "uint8" }
3970
+ },
3971
+ {
3972
+ "name": "block_9_depthwise_BN/moving_variance",
3973
+ "shape": [384],
3974
+ "dtype": "float32",
3975
+ "quantization": { "min": 0.054740116000175476, "scale": 0.01920037485805212, "dtype": "uint8" }
3976
+ },
3977
+ {
3978
+ "name": "block_9_expand/kernel",
3979
+ "shape": [1, 1, 64, 384],
3980
+ "dtype": "float32",
3981
+ "quantization": { "min": -0.36515102853962017, "scale": 0.0035110675821117326, "dtype": "uint8" }
3982
+ },
3983
+ { "name": "block_9_expand_BN/gamma", "shape": [384], "dtype": "float32", "quantization": { "min": 0.23342087864875793, "scale": 0.007018205114439422, "dtype": "uint8" } },
3984
+ { "name": "block_9_expand_BN/beta", "shape": [384], "dtype": "float32", "quantization": { "min": -1.3883685602861293, "scale": 0.011866397951163498, "dtype": "uint8" } },
3985
+ {
3986
+ "name": "block_9_expand_BN/moving_mean",
3987
+ "shape": [384],
3988
+ "dtype": "float32",
3989
+ "quantization": { "min": -0.008643162741745805, "scale": 6.308877913683069e-5, "dtype": "uint8" }
3990
+ },
3991
+ {
3992
+ "name": "block_9_expand_BN/moving_variance",
3993
+ "shape": [384],
3994
+ "dtype": "float32",
3995
+ "quantization": { "min": 2.118360996246338, "scale": 0.07897544374652937, "dtype": "uint8" }
3996
+ },
3997
+ {
3998
+ "name": "block_9_project/kernel",
3999
+ "shape": [1, 1, 384, 64],
4000
+ "dtype": "float32",
4001
+ "quantization": { "min": -0.4918418302255518, "scale": 0.0033458627906500123, "dtype": "uint8" }
4002
+ },
4003
+ { "name": "block_9_project_BN/gamma", "shape": [64], "dtype": "float32", "quantization": { "min": 0.6817672848701477, "scale": 0.01215742405723123, "dtype": "uint8" } },
4004
+ { "name": "block_9_project_BN/beta", "shape": [64], "dtype": "float32", "quantization": { "min": -0.00399385870927397, "scale": 2.8941005139666446e-5, "dtype": "uint8" } },
4005
+ {
4006
+ "name": "block_9_project_BN/moving_mean",
4007
+ "shape": [64],
4008
+ "dtype": "float32",
4009
+ "quantization": { "min": -1.8452984529383043, "scale": 0.01125181983498966, "dtype": "uint8" }
4010
+ },
4011
+ {
4012
+ "name": "block_9_project_BN/moving_variance",
4013
+ "shape": [64],
4014
+ "dtype": "float32",
4015
+ "quantization": { "min": 0.11924822628498077, "scale": 0.0018466930179034963, "dtype": "uint8" }
4016
+ },
4017
+ { "name": "bn_Conv1/gamma", "shape": [32], "dtype": "float32", "quantization": { "min": 0.13053518533706665, "scale": 0.016117237829694563, "dtype": "uint8" } },
4018
+ { "name": "bn_Conv1/beta", "shape": [32], "dtype": "float32", "quantization": { "min": -6.189409682329964, "scale": 0.04298201168284697, "dtype": "uint8" } },
4019
+ { "name": "bn_Conv1/moving_mean", "shape": [32], "dtype": "float32", "quantization": { "min": -1.5218115974875057, "scale": 0.010011918404523064, "dtype": "uint8" } },
4020
+ { "name": "bn_Conv1/moving_variance", "shape": [32], "dtype": "float32", "quantization": { "min": -0.0, "scale": 0.0026636616856444114, "dtype": "uint8" } },
4021
+ { "name": "dense_1/kernel", "shape": [1280, 256], "dtype": "float32", "quantization": { "min": -0.0827300671268912, "scale": 0.0007011022637872135, "dtype": "uint8" } },
4022
+ { "name": "dense_1/bias", "shape": [256], "dtype": "float32", "quantization": { "min": -0.08616942780859331, "scale": 0.0009574380867621478, "dtype": "uint8" } },
4023
+ { "name": "dense_2/kernel", "shape": [256, 128], "dtype": "float32", "quantization": { "min": -0.27012642972609574, "scale": 0.0020464123464098163, "dtype": "uint8" } },
4024
+ { "name": "dense_2/bias", "shape": [128], "dtype": "float32", "quantization": { "min": -0.04579559355682018, "scale": 0.0013084455301948623, "dtype": "uint8" } },
4025
+ { "name": "dense_3/kernel", "shape": [128, 5], "dtype": "float32", "quantization": { "min": -0.46344453400256586, "scale": 0.0030489771973853017, "dtype": "uint8" } },
4026
+ { "name": "dense_3/bias", "shape": [5], "dtype": "float32", "quantization": { "min": -0.34861034412010045, "scale": 0.0028810772241330616, "dtype": "uint8" } },
4027
+ {
4028
+ "name": "expanded_conv_depthwise/depthwise_kernel",
4029
+ "shape": [3, 3, 32, 1],
4030
+ "dtype": "float32",
4031
+ "quantization": { "min": -25.55166634952321, "scale": 0.19357322992063036, "dtype": "uint8" }
4032
+ },
4033
+ {
4034
+ "name": "expanded_conv_depthwise_BN/gamma",
4035
+ "shape": [32],
4036
+ "dtype": "float32",
4037
+ "quantization": { "min": -0.09695096857407513, "scale": 0.008079247381172928, "dtype": "uint8" }
4038
+ },
4039
+ {
4040
+ "name": "expanded_conv_depthwise_BN/beta",
4041
+ "shape": [32],
4042
+ "dtype": "float32",
4043
+ "quantization": { "min": -1.3658699895821367, "scale": 0.018710547802495023, "dtype": "uint8" }
4044
+ },
4045
+ {
4046
+ "name": "expanded_conv_depthwise_BN/moving_mean",
4047
+ "shape": [32],
4048
+ "dtype": "float32",
4049
+ "quantization": { "min": -13.676559291166416, "scale": 0.09910550210990157, "dtype": "uint8" }
4050
+ },
4051
+ { "name": "expanded_conv_depthwise_BN/moving_variance", "shape": [32], "dtype": "float32", "quantization": { "min": -0.0, "scale": 1.3617684158624388, "dtype": "uint8" } },
4052
+ {
4053
+ "name": "expanded_conv_project/kernel",
4054
+ "shape": [1, 1, 32, 16],
4055
+ "dtype": "float32",
4056
+ "quantization": { "min": -1.4339039704378913, "scale": 0.009754448778489057, "dtype": "uint8" }
4057
+ },
4058
+ {
4059
+ "name": "expanded_conv_project_BN/gamma",
4060
+ "shape": [16],
4061
+ "dtype": "float32",
4062
+ "quantization": { "min": 2.63926100730896, "scale": 0.009822066624959309, "dtype": "uint8" }
4063
+ },
4064
+ {
4065
+ "name": "expanded_conv_project_BN/beta",
4066
+ "shape": [16],
4067
+ "dtype": "float32",
4068
+ "quantization": { "min": -0.03885560184717179, "scale": 0.0004466161131858826, "dtype": "uint8" }
4069
+ },
4070
+ {
4071
+ "name": "expanded_conv_project_BN/moving_mean",
4072
+ "shape": [16],
4073
+ "dtype": "float32",
4074
+ "quantization": { "min": -5.0893140568452715, "scale": 0.03262380805670046, "dtype": "uint8" }
4075
+ },
4076
+ {
4077
+ "name": "expanded_conv_project_BN/moving_variance",
4078
+ "shape": [16],
4079
+ "dtype": "float32",
4080
+ "quantization": { "min": 0.39643433690071106, "scale": 0.005846665302912394, "dtype": "uint8" }
4081
+ }
4082
+ ]
4083
+ }
4084
+ ]
4085
+ }