@ekyc_qoobiss/qbs-ect-cmp 1.5.11
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.
- package/LICENSE +21 -0
- package/README.md +26 -0
- package/dist/assets/animations/face/LookDown.gif +0 -0
- package/dist/assets/animations/face/LookLeft.gif +0 -0
- package/dist/assets/animations/face/LookRight.gif +0 -0
- package/dist/assets/animations/face/LookUp.gif +0 -0
- package/dist/assets/animations/face/TiltLeft.gif +0 -0
- package/dist/assets/animations/face/TiltRight.gif +0 -0
- package/dist/assets/animations/face/general.gif +0 -0
- package/dist/assets/animations/id/present-id.gif +0 -0
- package/dist/assets/animations/id/straighten-id.gif +0 -0
- package/dist/assets/animations/id/tilt-id.gif +0 -0
- package/dist/assets/buletin/metadata.json +1 -0
- package/dist/assets/buletin/model.json +1 -0
- package/dist/assets/buletin/weights.bin +0 -0
- package/dist/assets/buletin-v2/metadata.json +1 -0
- package/dist/assets/buletin-v2/model.json +1 -0
- package/dist/assets/buletin-v2/weights.bin +0 -0
- package/dist/assets/canvas-masks/face_green.svg +8 -0
- package/dist/assets/canvas-masks/face_white.svg +8 -0
- package/dist/assets/canvas-masks/id_green.svg +6 -0
- package/dist/assets/canvas-masks/id_white.svg +6 -0
- package/dist/assets/capture-error/idError.png +0 -0
- package/dist/assets/capture-error/idError.svg +8 -0
- package/dist/assets/capture-error/selfieError.png +0 -0
- package/dist/assets/capture-error/selfieError.svg +11 -0
- package/dist/assets/complete.svg +4 -0
- package/dist/assets/howtos/circle.svg +11 -0
- package/dist/assets/howtos/idscan.svg +293 -0
- package/dist/assets/howtos/liveness.svg +97 -0
- package/dist/assets/landing/device.svg +14 -0
- package/dist/assets/landing/id.svg +3 -0
- package/dist/assets/landing/info.svg +3 -0
- package/dist/assets/landing/validation.svg +16 -0
- package/dist/cjs/agreement-check_12.cjs.entry.js +6143 -0
- package/dist/cjs/index-9ebcada7.js +1487 -0
- package/dist/cjs/index.cjs.js +2 -0
- package/dist/cjs/loader-dots.cjs.entry.js +19 -0
- package/dist/cjs/loader.cjs.js +21 -0
- package/dist/cjs/qbs-ect-cmp.cjs.js +19 -0
- package/dist/collection/assets/canvas-masks/face_green.svg +8 -0
- package/dist/collection/assets/canvas-masks/face_white.svg +8 -0
- package/dist/collection/assets/canvas-masks/id_green.svg +6 -0
- package/dist/collection/assets/canvas-masks/id_white.svg +6 -0
- package/dist/collection/assets/capture-error/idError.svg +8 -0
- package/dist/collection/assets/capture-error/selfieError.svg +11 -0
- package/dist/collection/assets/complete.svg +4 -0
- package/dist/collection/assets/howtos/circle.svg +11 -0
- package/dist/collection/assets/howtos/idscan.svg +293 -0
- package/dist/collection/assets/howtos/liveness.svg +97 -0
- package/dist/collection/assets/landing/device.svg +14 -0
- package/dist/collection/assets/landing/id.svg +3 -0
- package/dist/collection/assets/landing/info.svg +3 -0
- package/dist/collection/assets/landing/validation.svg +16 -0
- package/dist/collection/collection-manifest.json +24 -0
- package/dist/collection/components/agreement-check/agreement-check.css +0 -0
- package/dist/collection/components/agreement-check/agreement-check.js +75 -0
- package/dist/collection/components/agreement-info/agreement-info.css +0 -0
- package/dist/collection/components/agreement-info/agreement-info.js +72 -0
- package/dist/collection/components/capture-error/capture-error.css +0 -0
- package/dist/collection/components/capture-error/capture-error.js +107 -0
- package/dist/collection/components/controls/camera/camera.css +43 -0
- package/dist/collection/components/controls/camera/camera.js +306 -0
- package/dist/collection/components/controls/loader-dots/loader-dots.css +61 -0
- package/dist/collection/components/controls/loader-dots/loader-dots.js +18 -0
- package/dist/collection/components/end-redirect/end-redirect.css +128 -0
- package/dist/collection/components/end-redirect/end-redirect.js +25 -0
- package/dist/collection/components/how-to-info/how-to-info.css +0 -0
- package/dist/collection/components/how-to-info/how-to-info.js +105 -0
- package/dist/collection/components/id-back-capture/id-back-capture.css +35 -0
- package/dist/collection/components/id-back-capture/id-back-capture.js +201 -0
- package/dist/collection/components/id-capture/id-capture.css +35 -0
- package/dist/collection/components/id-capture/id-capture.js +201 -0
- package/dist/collection/components/identification-component/identification-component.css +999 -0
- package/dist/collection/components/identification-component/identification-component.js +397 -0
- package/dist/collection/components/landing-validation/landing-validation.css +0 -0
- package/dist/collection/components/landing-validation/landing-validation.js +78 -0
- package/dist/collection/components/selfie-capture/selfie-capture.css +22 -0
- package/dist/collection/components/selfie-capture/selfie-capture.js +198 -0
- package/dist/collection/components/sms-code-validation/sms-code-validation.css +0 -0
- package/dist/collection/components/sms-code-validation/sms-code-validation.js +91 -0
- package/dist/collection/global.js +0 -0
- package/dist/collection/helpers/ApiCall.js +153 -0
- package/dist/collection/helpers/Cameras.js +98 -0
- package/dist/collection/helpers/Events.js +79 -0
- package/dist/collection/helpers/ML5.js +20 -0
- package/dist/collection/helpers/Stream.js +223 -0
- package/dist/collection/helpers/canvas.js +10 -0
- package/dist/collection/helpers/index.js +54 -0
- package/dist/collection/helpers/security.js +25 -0
- package/dist/collection/helpers/store.js +15 -0
- package/dist/collection/helpers/textValues.js +82 -0
- package/dist/collection/index.js +1 -0
- package/dist/collection/libs/FaceML5Detector/FaceML5Detector.js +206 -0
- package/dist/collection/libs/FaceML5Detector/FacePose.js +84 -0
- package/dist/collection/libs/IDML5Detector/IDML5Detector.js +110 -0
- package/dist/collection/libs/IDML5Detector/IDPose.js +5 -0
- package/dist/collection/models/ICamera.js +1 -0
- package/dist/collection/models/IConstraints.js +1 -0
- package/dist/collection/models/IDevice.js +1 -0
- package/dist/collection/utils/utils.js +10 -0
- package/dist/esm/agreement-check_12.entry.js +6128 -0
- package/dist/esm/index-3fe6775c.js +1457 -0
- package/dist/esm/index.js +1 -0
- package/dist/esm/loader-dots.entry.js +15 -0
- package/dist/esm/loader.js +17 -0
- package/dist/esm/polyfills/core-js.js +11 -0
- package/dist/esm/polyfills/css-shim.js +1 -0
- package/dist/esm/polyfills/dom.js +79 -0
- package/dist/esm/polyfills/es5-html-element.js +1 -0
- package/dist/esm/polyfills/index.js +34 -0
- package/dist/esm/polyfills/system.js +6 -0
- package/dist/esm/qbs-ect-cmp.js +17 -0
- package/dist/index.cjs.js +1 -0
- package/dist/index.js +1 -0
- package/dist/loader/cdn.js +3 -0
- package/dist/loader/index.cjs.js +3 -0
- package/dist/loader/index.d.ts +12 -0
- package/dist/loader/index.es2017.js +3 -0
- package/dist/loader/index.js +4 -0
- package/dist/loader/package.json +11 -0
- package/dist/qbs-ect-cmp/index.esm.js +0 -0
- package/dist/qbs-ect-cmp/p-3ef0bad2.entry.js +1373 -0
- package/dist/qbs-ect-cmp/p-3fa495e4.js +2 -0
- package/dist/qbs-ect-cmp/p-a69bb428.entry.js +1 -0
- package/dist/qbs-ect-cmp/qbs-ect-cmp.css +1 -0
- package/dist/qbs-ect-cmp/qbs-ect-cmp.esm.js +1 -0
- package/dist/types/components/agreement-check/agreement-check.d.ts +11 -0
- package/dist/types/components/agreement-info/agreement-info.d.ts +13 -0
- package/dist/types/components/capture-error/capture-error.d.ts +11 -0
- package/dist/types/components/controls/camera/camera.d.ts +33 -0
- package/dist/types/components/controls/loader-dots/loader-dots.d.ts +3 -0
- package/dist/types/components/end-redirect/end-redirect.d.ts +4 -0
- package/dist/types/components/how-to-info/how-to-info.d.ts +13 -0
- package/dist/types/components/id-back-capture/id-back-capture.d.ts +26 -0
- package/dist/types/components/id-capture/id-capture.d.ts +26 -0
- package/dist/types/components/identification-component/identification-component.d.ts +31 -0
- package/dist/types/components/landing-validation/landing-validation.d.ts +11 -0
- package/dist/types/components/selfie-capture/selfie-capture.d.ts +26 -0
- package/dist/types/components/sms-code-validation/sms-code-validation.d.ts +14 -0
- package/dist/types/components.d.ts +262 -0
- package/dist/types/global.d.ts +0 -0
- package/dist/types/helpers/ApiCall.d.ts +12 -0
- package/dist/types/helpers/Cameras.d.ts +8 -0
- package/dist/types/helpers/Events.d.ts +12 -0
- package/dist/types/helpers/ML5.d.ts +8 -0
- package/dist/types/helpers/Stream.d.ts +58 -0
- package/dist/types/helpers/canvas.d.ts +2 -0
- package/dist/types/helpers/index.d.ts +4 -0
- package/dist/types/helpers/security.d.ts +4 -0
- package/dist/types/helpers/store.d.ts +10 -0
- package/dist/types/helpers/textValues.d.ts +78 -0
- package/dist/types/index.d.ts +1 -0
- package/dist/types/libs/FaceML5Detector/FaceML5Detector.d.ts +43 -0
- package/dist/types/libs/FaceML5Detector/FacePose.d.ts +37 -0
- package/dist/types/libs/IDML5Detector/IDML5Detector.d.ts +22 -0
- package/dist/types/libs/IDML5Detector/IDPose.d.ts +4 -0
- package/dist/types/models/ICamera.d.ts +10 -0
- package/dist/types/models/IConstraints.d.ts +21 -0
- package/dist/types/models/IDevice.d.ts +11 -0
- package/dist/types/stencil-public-runtime.d.ts +1581 -0
- package/dist/types/utils/utils.d.ts +2 -0
- package/package.json +51 -0
package/LICENSE
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2018
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
in the Software without restriction, including without limitation the rights
|
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
furnished to do so, subject to the following conditions:
|
|
11
|
+
|
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
|
13
|
+
copies or substantial portions of the Software.
|
|
14
|
+
|
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
+
SOFTWARE.
|
package/README.md
ADDED
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+

|
|
2
|
+
|
|
3
|
+
# Evidence Collection Tool
|
|
4
|
+
|
|
5
|
+
This is a web component that can be used for user identification
|
|
6
|
+
|
|
7
|
+
## Getting Started
|
|
8
|
+
|
|
9
|
+
To start using this component install it via npm:
|
|
10
|
+
|
|
11
|
+
```bash
|
|
12
|
+
npm i @ekyc_qoobiss/qbs-ect-cmp
|
|
13
|
+
```
|
|
14
|
+
|
|
15
|
+
The wev compoment has to be included in the html markup like this:
|
|
16
|
+
|
|
17
|
+
\*.html
|
|
18
|
+
|
|
19
|
+
```sh
|
|
20
|
+
<identification-component token="{{ token }}" order_id="{{ orderId }}"></identification-component>
|
|
21
|
+
```
|
|
22
|
+
|
|
23
|
+
There are two parameters:
|
|
24
|
+
|
|
25
|
+
- token - which is the token that was obtained using the API Key on the server side;
|
|
26
|
+
- order_id - is a unique ID that will be used for the current identification request when obtaining the processed data from the REST API Service.
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"tfjsVersion":"1.3.1","tmVersion":"2.4.5","packageVersion":"0.8.4-alpha2","packageName":"@teachablemachine/image","timeStamp":"2022-10-19T09:21:27.402Z","userMetadata":{},"modelName":"tm-my-image-model","labels":["tilted","full","paterns"],"imageSize":224}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"modelTopology":{"class_name":"Sequential","config":{"name":"sequential_16","layers":[{"class_name":"Sequential","config":{"name":"sequential_13","layers":[{"class_name":"Model","config":{"name":"model4","layers":[{"name":"input_1","class_name":"InputLayer","config":{"batch_input_shape":[null,224,224,3],"dtype":"float32","sparse":false,"name":"input_1"},"inbound_nodes":[]},{"name":"Conv1_pad","class_name":"ZeroPadding2D","config":{"padding":[[0,1],[0,1]],"data_format":"channels_last","name":"Conv1_pad","trainable":true},"inbound_nodes":[[["input_1",0,0,{}]]]},{"name":"Conv1","class_name":"Conv2D","config":{"filters":16,"kernel_initializer":{"class_name":"VarianceScaling","config":{"scale":1,"mode":"fan_avg","distribution":"uniform","seed":null}},"kernel_regularizer":null,"kernel_constraint":null,"kernel_size":[3,3],"strides":[2,2],"padding":"valid","data_format":"channels_last","dilation_rate":[1,1],"activation":"linear","use_bias":false,"bias_initializer":{"class_name":"Zeros","config":{}},"bias_regularizer":null,"activity_regularizer":null,"bias_constraint":null,"name":"Conv1","trainable":true},"inbound_nodes":[[["Conv1_pad",0,0,{}]]]},{"name":"bn_Conv1","class_name":"BatchNormalization","config":{"axis":-1,"momentum":0.999,"epsilon":0.001,"center":true,"scale":true,"beta_initializer":{"class_name":"Zeros","config":{}},"gamma_initializer":{"class_name":"Ones","config":{}},"moving_mean_initializer":{"class_name":"Zeros","config":{}},"moving_variance_initializer":{"class_name":"Ones","config":{}},"beta_regularizer":null,"gamma_regularizer":null,"beta_constraint":null,"gamma_constraint":null,"name":"bn_Conv1","trainable":true},"inbound_nodes":[[["Conv1",0,0,{}]]]},{"name":"Conv1_relu","class_name":"ReLU","config":{"max_value":6,"name":"Conv1_relu","trainable":true},"inbound_nodes":[[["bn_Conv1",0,0,{}]]]},{"name":"expanded_conv_depthwise","class_name":"DepthwiseConv2D","config":{"kernel_size":[3,3],"strides":[1,1],"padding":"same","data_format":"channels_last","dilation_rate":[1,1],"activation":"linear","use_bias":false,"bias_initializer":{"class_name":"Zeros","config":{}},"bias_regularizer":null,"activity_regularizer":null,"bias_constraint":null,"name":"expanded_conv_depthwise","trainable":true,"depth_multiplier":1,"depthwise_initializer":{"class_name":"VarianceScaling","config":{"scale":1,"mode":"fan_avg","distribution":"uniform","seed":null}},"depthwise_regularizer":null,"depthwise_constraint":null},"inbound_nodes":[[["Conv1_relu",0,0,{}]]]},{"name":"expanded_conv_depthwise_BN","class_name":"BatchNormalization","config":{"axis":-1,"momentum":0.999,"epsilon":0.001,"center":true,"scale":true,"beta_initializer":{"class_name":"Zeros","config":{}},"gamma_initializer":{"class_name":"Ones","config":{}},"moving_mean_initializer":{"class_name":"Zeros","config":{}},"moving_variance_initializer":{"class_name":"Ones","config":{}},"beta_regularizer":null,"gamma_regularizer":null,"beta_constraint":null,"gamma_constraint":null,"name":"expanded_conv_depthwise_BN","trainable":true},"inbound_nodes":[[["expanded_conv_depthwise",0,0,{}]]]},{"name":"expanded_conv_depthwise_relu","class_name":"ReLU","config":{"max_value":6,"name":"expanded_conv_depthwise_relu","trainable":true},"inbound_nodes":[[["expanded_conv_depthwise_BN",0,0,{}]]]},{"name":"expanded_conv_project","class_name":"Conv2D","config":{"filters":8,"kernel_initializer":{"class_name":"VarianceScaling","config":{"scale":1,"mode":"fan_avg","distribution":"uniform","seed":null}},"kernel_regularizer":null,"kernel_constraint":null,"kernel_size":[1,1],"strides":[1,1],"padding":"same","data_format":"channels_last","dilation_rate":[1,1],"activation":"linear","use_bias":false,"bias_initializer":{"class_name":"Zeros","config":{}},"bias_regularizer":null,"activity_regularizer":null,"bias_constraint":null,"name":"expanded_conv_project","trainable":true},"inbound_nodes":[[["expanded_conv_depthwise_relu",0,0,{}]]]},{"name":"expanded_conv_project_BN","class_name":"BatchNormalization","config":{"axis":-1,"momentum":0.999,"epsilon":0.001,"center":true,"scale":true,"beta_initializer":{"class_name":"Zeros","config":{}},"gamma_initializer":{"class_name":"Ones","config":{}},"moving_mean_initializer":{"class_name":"Zeros","config":{}},"moving_variance_initializer":{"class_name":"Ones","config":{}},"beta_regularizer":null,"gamma_regularizer":null,"beta_constraint":null,"gamma_constraint":null,"name":"expanded_conv_project_BN","trainable":true},"inbound_nodes":[[["expanded_conv_project",0,0,{}]]]},{"name":"block_1_expand","class_name":"Conv2D","config":{"filters":48,"kernel_initializer":{"class_name":"VarianceScaling","config":{"scale":1,"mode":"fan_avg","distribution":"uniform","seed":null}},"kernel_regularizer":null,"kernel_constraint":null,"kernel_size":[1,1],"strides":[1,1],"padding":"same","data_format":"channels_last","dilation_rate":[1,1],"activation":"linear","use_bias":false,"bias_initializer":{"class_name":"Zeros","config":{}},"bias_regularizer":null,"activity_regularizer":null,"bias_constraint":null,"name":"block_1_expand","trainable":true},"inbound_nodes":[[["expanded_conv_project_BN",0,0,{}]]]},{"name":"block_1_expand_BN","class_name":"BatchNormalization","config":{"axis":-1,"momentum":0.999,"epsilon":0.001,"center":true,"scale":true,"beta_initializer":{"class_name":"Zeros","config":{}},"gamma_initializer":{"class_name":"Ones","config":{}},"moving_mean_initializer":{"class_name":"Zeros","config":{}},"moving_variance_initializer":{"class_name":"Ones","config":{}},"beta_regularizer":null,"gamma_regularizer":null,"beta_constraint":null,"gamma_constraint":null,"name":"block_1_expand_BN","trainable":true},"inbound_nodes":[[["block_1_expand",0,0,{}]]]},{"name":"block_1_expand_relu","class_name":"ReLU","config":{"max_value":6,"name":"block_1_expand_relu","trainable":true},"inbound_nodes":[[["block_1_expand_BN",0,0,{}]]]},{"name":"block_1_pad","class_name":"ZeroPadding2D","config":{"padding":[[0,1],[0,1]],"data_format":"channels_last","name":"block_1_pad","trainable":true},"inbound_nodes":[[["block_1_expand_relu",0,0,{}]]]},{"name":"block_1_depthwise","class_name":"DepthwiseConv2D","config":{"kernel_size":[3,3],"strides":[2,2],"padding":"valid","data_format":"channels_last","dilation_rate":[1,1],"activation":"linear","use_bias":false,"bias_initializer":{"class_name":"Zeros","config":{}},"bias_regularizer":null,"activity_regularizer":null,"bias_constraint":null,"name":"block_1_depthwise","trainable":true,"depth_multiplier":1,"depthwise_initializer":{"class_name":"VarianceScaling","config":{"scale":1,"mode":"fan_avg","distribution":"uniform","seed":null}},"depthwise_regularizer":null,"depthwise_constraint":null},"inbound_nodes":[[["block_1_pad",0,0,{}]]]},{"name":"block_1_depthwise_BN","class_name":"BatchNormalization","config":{"axis":-1,"momentum":0.999,"epsilon":0.001,"center":true,"scale":true,"beta_initializer":{"class_name":"Zeros","config":{}},"gamma_initializer":{"class_name":"Ones","config":{}},"moving_mean_initializer":{"class_name":"Zeros","config":{}},"moving_variance_initializer":{"class_name":"Ones","config":{}},"beta_regularizer":null,"gamma_regularizer":null,"beta_constraint":null,"gamma_constraint":null,"name":"block_1_depthwise_BN","trainable":true},"inbound_nodes":[[["block_1_depthwise",0,0,{}]]]},{"name":"block_1_depthwise_relu","class_name":"ReLU","config":{"max_value":6,"name":"block_1_depthwise_relu","trainable":true},"inbound_nodes":[[["block_1_depthwise_BN",0,0,{}]]]},{"name":"block_1_project","class_name":"Conv2D","config":{"filters":8,"kernel_initializer":{"class_name":"VarianceScaling","config":{"scale":1,"mode":"fan_avg","distribution":"uniform","seed":null}},"kernel_regularizer":null,"kernel_constraint":null,"kernel_size":[1,1],"strides":[1,1],"padding":"same","data_format":"channels_last","dilation_rate":[1,1],"activation":"linear","use_bias":false,"bias_initializer":{"class_name":"Zeros","config":{}},"bias_regularizer":null,"activity_regularizer":null,"bias_constraint":null,"name":"block_1_project","trainable":true},"inbound_nodes":[[["block_1_depthwise_relu",0,0,{}]]]},{"name":"block_1_project_BN","class_name":"BatchNormalization","config":{"axis":-1,"momentum":0.999,"epsilon":0.001,"center":true,"scale":true,"beta_initializer":{"class_name":"Zeros","config":{}},"gamma_initializer":{"class_name":"Ones","config":{}},"moving_mean_initializer":{"class_name":"Zeros","config":{}},"moving_variance_initializer":{"class_name":"Ones","config":{}},"beta_regularizer":null,"gamma_regularizer":null,"beta_constraint":null,"gamma_constraint":null,"name":"block_1_project_BN","trainable":true},"inbound_nodes":[[["block_1_project",0,0,{}]]]},{"name":"block_2_expand","class_name":"Conv2D","config":{"filters":48,"kernel_initializer":{"class_name":"VarianceScaling","config":{"scale":1,"mode":"fan_avg","distribution":"uniform","seed":null}},"kernel_regularizer":null,"kernel_constraint":null,"kernel_size":[1,1],"strides":[1,1],"padding":"same","data_format":"channels_last","dilation_rate":[1,1],"activation":"linear","use_bias":false,"bias_initializer":{"class_name":"Zeros","config":{}},"bias_regularizer":null,"activity_regularizer":null,"bias_constraint":null,"name":"block_2_expand","trainable":true},"inbound_nodes":[[["block_1_project_BN",0,0,{}]]]},{"name":"block_2_expand_BN","class_name":"BatchNormalization","config":{"axis":-1,"momentum":0.999,"epsilon":0.001,"center":true,"scale":true,"beta_initializer":{"class_name":"Zeros","config":{}},"gamma_initializer":{"class_name":"Ones","config":{}},"moving_mean_initializer":{"class_name":"Zeros","config":{}},"moving_variance_initializer":{"class_name":"Ones","config":{}},"beta_regularizer":null,"gamma_regularizer":null,"beta_constraint":null,"gamma_constraint":null,"name":"block_2_expand_BN","trainable":true},"inbound_nodes":[[["block_2_expand",0,0,{}]]]},{"name":"block_2_expand_relu","class_name":"ReLU","config":{"max_value":6,"name":"block_2_expand_relu","trainable":true},"inbound_nodes":[[["block_2_expand_BN",0,0,{}]]]},{"name":"block_2_depthwise","class_name":"DepthwiseConv2D","config":{"kernel_size":[3,3],"strides":[1,1],"padding":"same","data_format":"channels_last","dilation_rate":[1,1],"activation":"linear","use_bias":false,"bias_initializer":{"class_name":"Zeros","config":{}},"bias_regularizer":null,"activity_regularizer":null,"bias_constraint":null,"name":"block_2_depthwise","trainable":true,"depth_multiplier":1,"depthwise_initializer":{"class_name":"VarianceScaling","config":{"scale":1,"mode":"fan_avg","distribution":"uniform","seed":null}},"depthwise_regularizer":null,"depthwise_constraint":null},"inbound_nodes":[[["block_2_expand_relu",0,0,{}]]]},{"name":"block_2_depthwise_BN","class_name":"BatchNormalization","config":{"axis":-1,"momentum":0.999,"epsilon":0.001,"center":true,"scale":true,"beta_initializer":{"class_name":"Zeros","config":{}},"gamma_initializer":{"class_name":"Ones","config":{}},"moving_mean_initializer":{"class_name":"Zeros","config":{}},"moving_variance_initializer":{"class_name":"Ones","config":{}},"beta_regularizer":null,"gamma_regularizer":null,"beta_constraint":null,"gamma_constraint":null,"name":"block_2_depthwise_BN","trainable":true},"inbound_nodes":[[["block_2_depthwise",0,0,{}]]]},{"name":"block_2_depthwise_relu","class_name":"ReLU","config":{"max_value":6,"name":"block_2_depthwise_relu","trainable":true},"inbound_nodes":[[["block_2_depthwise_BN",0,0,{}]]]},{"name":"block_2_project","class_name":"Conv2D","config":{"filters":8,"kernel_initializer":{"class_name":"VarianceScaling","config":{"scale":1,"mode":"fan_avg","distribution":"uniform","seed":null}},"kernel_regularizer":null,"kernel_constraint":null,"kernel_size":[1,1],"strides":[1,1],"padding":"same","data_format":"channels_last","dilation_rate":[1,1],"activation":"linear","use_bias":false,"bias_initializer":{"class_name":"Zeros","config":{}},"bias_regularizer":null,"activity_regularizer":null,"bias_constraint":null,"name":"block_2_project","trainable":true},"inbound_nodes":[[["block_2_depthwise_relu",0,0,{}]]]},{"name":"block_2_project_BN","class_name":"BatchNormalization","config":{"axis":-1,"momentum":0.999,"epsilon":0.001,"center":true,"scale":true,"beta_initializer":{"class_name":"Zeros","config":{}},"gamma_initializer":{"class_name":"Ones","config":{}},"moving_mean_initializer":{"class_name":"Zeros","config":{}},"moving_variance_initializer":{"class_name":"Ones","config":{}},"beta_regularizer":null,"gamma_regularizer":null,"beta_constraint":null,"gamma_constraint":null,"name":"block_2_project_BN","trainable":true},"inbound_nodes":[[["block_2_project",0,0,{}]]]},{"name":"block_2_add","class_name":"Add","config":{"name":"block_2_add","trainable":true},"inbound_nodes":[[["block_1_project_BN",0,0,{}],["block_2_project_BN",0,0,{}]]]},{"name":"block_3_expand","class_name":"Conv2D","config":{"filters":48,"kernel_initializer":{"class_name":"VarianceScaling","config":{"scale":1,"mode":"fan_avg","distribution":"uniform","seed":null}},"kernel_regularizer":null,"kernel_constraint":null,"kernel_size":[1,1],"strides":[1,1],"padding":"same","data_format":"channels_last","dilation_rate":[1,1],"activation":"linear","use_bias":false,"bias_initializer":{"class_name":"Zeros","config":{}},"bias_regularizer":null,"activity_regularizer":null,"bias_constraint":null,"name":"block_3_expand","trainable":true},"inbound_nodes":[[["block_2_add",0,0,{}]]]},{"name":"block_3_expand_BN","class_name":"BatchNormalization","config":{"axis":-1,"momentum":0.999,"epsilon":0.001,"center":true,"scale":true,"beta_initializer":{"class_name":"Zeros","config":{}},"gamma_initializer":{"class_name":"Ones","config":{}},"moving_mean_initializer":{"class_name":"Zeros","config":{}},"moving_variance_initializer":{"class_name":"Ones","config":{}},"beta_regularizer":null,"gamma_regularizer":null,"beta_constraint":null,"gamma_constraint":null,"name":"block_3_expand_BN","trainable":true},"inbound_nodes":[[["block_3_expand",0,0,{}]]]},{"name":"block_3_expand_relu","class_name":"ReLU","config":{"max_value":6,"name":"block_3_expand_relu","trainable":true},"inbound_nodes":[[["block_3_expand_BN",0,0,{}]]]},{"name":"block_3_pad","class_name":"ZeroPadding2D","config":{"padding":[[0,1],[0,1]],"data_format":"channels_last","name":"block_3_pad","trainable":true},"inbound_nodes":[[["block_3_expand_relu",0,0,{}]]]},{"name":"block_3_depthwise","class_name":"DepthwiseConv2D","config":{"kernel_size":[3,3],"strides":[2,2],"padding":"valid","data_format":"channels_last","dilation_rate":[1,1],"activation":"linear","use_bias":false,"bias_initializer":{"class_name":"Zeros","config":{}},"bias_regularizer":null,"activity_regularizer":null,"bias_constraint":null,"name":"block_3_depthwise","trainable":true,"depth_multiplier":1,"depthwise_initializer":{"class_name":"VarianceScaling","config":{"scale":1,"mode":"fan_avg","distribution":"uniform","seed":null}},"depthwise_regularizer":null,"depthwise_constraint":null},"inbound_nodes":[[["block_3_pad",0,0,{}]]]},{"name":"block_3_depthwise_BN","class_name":"BatchNormalization","config":{"axis":-1,"momentum":0.999,"epsilon":0.001,"center":true,"scale":true,"beta_initializer":{"class_name":"Zeros","config":{}},"gamma_initializer":{"class_name":"Ones","config":{}},"moving_mean_initializer":{"class_name":"Zeros","config":{}},"moving_variance_initializer":{"class_name":"Ones","config":{}},"beta_regularizer":null,"gamma_regularizer":null,"beta_constraint":null,"gamma_constraint":null,"name":"block_3_depthwise_BN","trainable":true},"inbound_nodes":[[["block_3_depthwise",0,0,{}]]]},{"name":"block_3_depthwise_relu","class_name":"ReLU","config":{"max_value":6,"name":"block_3_depthwise_relu","trainable":true},"inbound_nodes":[[["block_3_depthwise_BN",0,0,{}]]]},{"name":"block_3_project","class_name":"Conv2D","config":{"filters":16,"kernel_initializer":{"class_name":"VarianceScaling","config":{"scale":1,"mode":"fan_avg","distribution":"uniform","seed":null}},"kernel_regularizer":null,"kernel_constraint":null,"kernel_size":[1,1],"strides":[1,1],"padding":"same","data_format":"channels_last","dilation_rate":[1,1],"activation":"linear","use_bias":false,"bias_initializer":{"class_name":"Zeros","config":{}},"bias_regularizer":null,"activity_regularizer":null,"bias_constraint":null,"name":"block_3_project","trainable":true},"inbound_nodes":[[["block_3_depthwise_relu",0,0,{}]]]},{"name":"block_3_project_BN","class_name":"BatchNormalization","config":{"axis":-1,"momentum":0.999,"epsilon":0.001,"center":true,"scale":true,"beta_initializer":{"class_name":"Zeros","config":{}},"gamma_initializer":{"class_name":"Ones","config":{}},"moving_mean_initializer":{"class_name":"Zeros","config":{}},"moving_variance_initializer":{"class_name":"Ones","config":{}},"beta_regularizer":null,"gamma_regularizer":null,"beta_constraint":null,"gamma_constraint":null,"name":"block_3_project_BN","trainable":true},"inbound_nodes":[[["block_3_project",0,0,{}]]]},{"name":"block_4_expand","class_name":"Conv2D","config":{"filters":96,"kernel_initializer":{"class_name":"VarianceScaling","config":{"scale":1,"mode":"fan_avg","distribution":"uniform","seed":null}},"kernel_regularizer":null,"kernel_constraint":null,"kernel_size":[1,1],"strides":[1,1],"padding":"same","data_format":"channels_last","dilation_rate":[1,1],"activation":"linear","use_bias":false,"bias_initializer":{"class_name":"Zeros","config":{}},"bias_regularizer":null,"activity_regularizer":null,"bias_constraint":null,"name":"block_4_expand","trainable":true},"inbound_nodes":[[["block_3_project_BN",0,0,{}]]]},{"name":"block_4_expand_BN","class_name":"BatchNormalization","config":{"axis":-1,"momentum":0.999,"epsilon":0.001,"center":true,"scale":true,"beta_initializer":{"class_name":"Zeros","config":{}},"gamma_initializer":{"class_name":"Ones","config":{}},"moving_mean_initializer":{"class_name":"Zeros","config":{}},"moving_variance_initializer":{"class_name":"Ones","config":{}},"beta_regularizer":null,"gamma_regularizer":null,"beta_constraint":null,"gamma_constraint":null,"name":"block_4_expand_BN","trainable":true},"inbound_nodes":[[["block_4_expand",0,0,{}]]]},{"name":"block_4_expand_relu","class_name":"ReLU","config":{"max_value":6,"name":"block_4_expand_relu","trainable":true},"inbound_nodes":[[["block_4_expand_BN",0,0,{}]]]},{"name":"block_4_depthwise","class_name":"DepthwiseConv2D","config":{"kernel_size":[3,3],"strides":[1,1],"padding":"same","data_format":"channels_last","dilation_rate":[1,1],"activation":"linear","use_bias":false,"bias_initializer":{"class_name":"Zeros","config":{}},"bias_regularizer":null,"activity_regularizer":null,"bias_constraint":null,"name":"block_4_depthwise","trainable":true,"depth_multiplier":1,"depthwise_initializer":{"class_name":"VarianceScaling","config":{"scale":1,"mode":"fan_avg","distribution":"uniform","seed":null}},"depthwise_regularizer":null,"depthwise_constraint":null},"inbound_nodes":[[["block_4_expand_relu",0,0,{}]]]},{"name":"block_4_depthwise_BN","class_name":"BatchNormalization","config":{"axis":-1,"momentum":0.999,"epsilon":0.001,"center":true,"scale":true,"beta_initializer":{"class_name":"Zeros","config":{}},"gamma_initializer":{"class_name":"Ones","config":{}},"moving_mean_initializer":{"class_name":"Zeros","config":{}},"moving_variance_initializer":{"class_name":"Ones","config":{}},"beta_regularizer":null,"gamma_regularizer":null,"beta_constraint":null,"gamma_constraint":null,"name":"block_4_depthwise_BN","trainable":true},"inbound_nodes":[[["block_4_depthwise",0,0,{}]]]},{"name":"block_4_depthwise_relu","class_name":"ReLU","config":{"max_value":6,"name":"block_4_depthwise_relu","trainable":true},"inbound_nodes":[[["block_4_depthwise_BN",0,0,{}]]]},{"name":"block_4_project","class_name":"Conv2D","config":{"filters":16,"kernel_initializer":{"class_name":"VarianceScaling","config":{"scale":1,"mode":"fan_avg","distribution":"uniform","seed":null}},"kernel_regularizer":null,"kernel_constraint":null,"kernel_size":[1,1],"strides":[1,1],"padding":"same","data_format":"channels_last","dilation_rate":[1,1],"activation":"linear","use_bias":false,"bias_initializer":{"class_name":"Zeros","config":{}},"bias_regularizer":null,"activity_regularizer":null,"bias_constraint":null,"name":"block_4_project","trainable":true},"inbound_nodes":[[["block_4_depthwise_relu",0,0,{}]]]},{"name":"block_4_project_BN","class_name":"BatchNormalization","config":{"axis":-1,"momentum":0.999,"epsilon":0.001,"center":true,"scale":true,"beta_initializer":{"class_name":"Zeros","config":{}},"gamma_initializer":{"class_name":"Ones","config":{}},"moving_mean_initializer":{"class_name":"Zeros","config":{}},"moving_variance_initializer":{"class_name":"Ones","config":{}},"beta_regularizer":null,"gamma_regularizer":null,"beta_constraint":null,"gamma_constraint":null,"name":"block_4_project_BN","trainable":true},"inbound_nodes":[[["block_4_project",0,0,{}]]]},{"name":"block_4_add","class_name":"Add","config":{"name":"block_4_add","trainable":true},"inbound_nodes":[[["block_3_project_BN",0,0,{}],["block_4_project_BN",0,0,{}]]]},{"name":"block_5_expand","class_name":"Conv2D","config":{"filters":96,"kernel_initializer":{"class_name":"VarianceScaling","config":{"scale":1,"mode":"fan_avg","distribution":"uniform","seed":null}},"kernel_regularizer":null,"kernel_constraint":null,"kernel_size":[1,1],"strides":[1,1],"padding":"same","data_format":"channels_last","dilation_rate":[1,1],"activation":"linear","use_bias":false,"bias_initializer":{"class_name":"Zeros","config":{}},"bias_regularizer":null,"activity_regularizer":null,"bias_constraint":null,"name":"block_5_expand","trainable":true},"inbound_nodes":[[["block_4_add",0,0,{}]]]},{"name":"block_5_expand_BN","class_name":"BatchNormalization","config":{"axis":-1,"momentum":0.999,"epsilon":0.001,"center":true,"scale":true,"beta_initializer":{"class_name":"Zeros","config":{}},"gamma_initializer":{"class_name":"Ones","config":{}},"moving_mean_initializer":{"class_name":"Zeros","config":{}},"moving_variance_initializer":{"class_name":"Ones","config":{}},"beta_regularizer":null,"gamma_regularizer":null,"beta_constraint":null,"gamma_constraint":null,"name":"block_5_expand_BN","trainable":true},"inbound_nodes":[[["block_5_expand",0,0,{}]]]},{"name":"block_5_expand_relu","class_name":"ReLU","config":{"max_value":6,"name":"block_5_expand_relu","trainable":true},"inbound_nodes":[[["block_5_expand_BN",0,0,{}]]]},{"name":"block_5_depthwise","class_name":"DepthwiseConv2D","config":{"kernel_size":[3,3],"strides":[1,1],"padding":"same","data_format":"channels_last","dilation_rate":[1,1],"activation":"linear","use_bias":false,"bias_initializer":{"class_name":"Zeros","config":{}},"bias_regularizer":null,"activity_regularizer":null,"bias_constraint":null,"name":"block_5_depthwise","trainable":true,"depth_multiplier":1,"depthwise_initializer":{"class_name":"VarianceScaling","config":{"scale":1,"mode":"fan_avg","distribution":"uniform","seed":null}},"depthwise_regularizer":null,"depthwise_constraint":null},"inbound_nodes":[[["block_5_expand_relu",0,0,{}]]]},{"name":"block_5_depthwise_BN","class_name":"BatchNormalization","config":{"axis":-1,"momentum":0.999,"epsilon":0.001,"center":true,"scale":true,"beta_initializer":{"class_name":"Zeros","config":{}},"gamma_initializer":{"class_name":"Ones","config":{}},"moving_mean_initializer":{"class_name":"Zeros","config":{}},"moving_variance_initializer":{"class_name":"Ones","config":{}},"beta_regularizer":null,"gamma_regularizer":null,"beta_constraint":null,"gamma_constraint":null,"name":"block_5_depthwise_BN","trainable":true},"inbound_nodes":[[["block_5_depthwise",0,0,{}]]]},{"name":"block_5_depthwise_relu","class_name":"ReLU","config":{"max_value":6,"name":"block_5_depthwise_relu","trainable":true},"inbound_nodes":[[["block_5_depthwise_BN",0,0,{}]]]},{"name":"block_5_project","class_name":"Conv2D","config":{"filters":16,"kernel_initializer":{"class_name":"VarianceScaling","config":{"scale":1,"mode":"fan_avg","distribution":"uniform","seed":null}},"kernel_regularizer":null,"kernel_constraint":null,"kernel_size":[1,1],"strides":[1,1],"padding":"same","data_format":"channels_last","dilation_rate":[1,1],"activation":"linear","use_bias":false,"bias_initializer":{"class_name":"Zeros","config":{}},"bias_regularizer":null,"activity_regularizer":null,"bias_constraint":null,"name":"block_5_project","trainable":true},"inbound_nodes":[[["block_5_depthwise_relu",0,0,{}]]]},{"name":"block_5_project_BN","class_name":"BatchNormalization","config":{"axis":-1,"momentum":0.999,"epsilon":0.001,"center":true,"scale":true,"beta_initializer":{"class_name":"Zeros","config":{}},"gamma_initializer":{"class_name":"Ones","config":{}},"moving_mean_initializer":{"class_name":"Zeros","config":{}},"moving_variance_initializer":{"class_name":"Ones","config":{}},"beta_regularizer":null,"gamma_regularizer":null,"beta_constraint":null,"gamma_constraint":null,"name":"block_5_project_BN","trainable":true},"inbound_nodes":[[["block_5_project",0,0,{}]]]},{"name":"block_5_add","class_name":"Add","config":{"name":"block_5_add","trainable":true},"inbound_nodes":[[["block_4_add",0,0,{}],["block_5_project_BN",0,0,{}]]]},{"name":"block_6_expand","class_name":"Conv2D","config":{"filters":96,"kernel_initializer":{"class_name":"VarianceScaling","config":{"scale":1,"mode":"fan_avg","distribution":"uniform","seed":null}},"kernel_regularizer":null,"kernel_constraint":null,"kernel_size":[1,1],"strides":[1,1],"padding":"same","data_format":"channels_last","dilation_rate":[1,1],"activation":"linear","use_bias":false,"bias_initializer":{"class_name":"Zeros","config":{}},"bias_regularizer":null,"activity_regularizer":null,"bias_constraint":null,"name":"block_6_expand","trainable":true},"inbound_nodes":[[["block_5_add",0,0,{}]]]},{"name":"block_6_expand_BN","class_name":"BatchNormalization","config":{"axis":-1,"momentum":0.999,"epsilon":0.001,"center":true,"scale":true,"beta_initializer":{"class_name":"Zeros","config":{}},"gamma_initializer":{"class_name":"Ones","config":{}},"moving_mean_initializer":{"class_name":"Zeros","config":{}},"moving_variance_initializer":{"class_name":"Ones","config":{}},"beta_regularizer":null,"gamma_regularizer":null,"beta_constraint":null,"gamma_constraint":null,"name":"block_6_expand_BN","trainable":true},"inbound_nodes":[[["block_6_expand",0,0,{}]]]},{"name":"block_6_expand_relu","class_name":"ReLU","config":{"max_value":6,"name":"block_6_expand_relu","trainable":true},"inbound_nodes":[[["block_6_expand_BN",0,0,{}]]]},{"name":"block_6_pad","class_name":"ZeroPadding2D","config":{"padding":[[0,1],[0,1]],"data_format":"channels_last","name":"block_6_pad","trainable":true},"inbound_nodes":[[["block_6_expand_relu",0,0,{}]]]},{"name":"block_6_depthwise","class_name":"DepthwiseConv2D","config":{"kernel_size":[3,3],"strides":[2,2],"padding":"valid","data_format":"channels_last","dilation_rate":[1,1],"activation":"linear","use_bias":false,"bias_initializer":{"class_name":"Zeros","config":{}},"bias_regularizer":null,"activity_regularizer":null,"bias_constraint":null,"name":"block_6_depthwise","trainable":true,"depth_multiplier":1,"depthwise_initializer":{"class_name":"VarianceScaling","config":{"scale":1,"mode":"fan_avg","distribution":"uniform","seed":null}},"depthwise_regularizer":null,"depthwise_constraint":null},"inbound_nodes":[[["block_6_pad",0,0,{}]]]},{"name":"block_6_depthwise_BN","class_name":"BatchNormalization","config":{"axis":-1,"momentum":0.999,"epsilon":0.001,"center":true,"scale":true,"beta_initializer":{"class_name":"Zeros","config":{}},"gamma_initializer":{"class_name":"Ones","config":{}},"moving_mean_initializer":{"class_name":"Zeros","config":{}},"moving_variance_initializer":{"class_name":"Ones","config":{}},"beta_regularizer":null,"gamma_regularizer":null,"beta_constraint":null,"gamma_constraint":null,"name":"block_6_depthwise_BN","trainable":true},"inbound_nodes":[[["block_6_depthwise",0,0,{}]]]},{"name":"block_6_depthwise_relu","class_name":"ReLU","config":{"max_value":6,"name":"block_6_depthwise_relu","trainable":true},"inbound_nodes":[[["block_6_depthwise_BN",0,0,{}]]]},{"name":"block_6_project","class_name":"Conv2D","config":{"filters":24,"kernel_initializer":{"class_name":"VarianceScaling","config":{"scale":1,"mode":"fan_avg","distribution":"uniform","seed":null}},"kernel_regularizer":null,"kernel_constraint":null,"kernel_size":[1,1],"strides":[1,1],"padding":"same","data_format":"channels_last","dilation_rate":[1,1],"activation":"linear","use_bias":false,"bias_initializer":{"class_name":"Zeros","config":{}},"bias_regularizer":null,"activity_regularizer":null,"bias_constraint":null,"name":"block_6_project","trainable":true},"inbound_nodes":[[["block_6_depthwise_relu",0,0,{}]]]},{"name":"block_6_project_BN","class_name":"BatchNormalization","config":{"axis":-1,"momentum":0.999,"epsilon":0.001,"center":true,"scale":true,"beta_initializer":{"class_name":"Zeros","config":{}},"gamma_initializer":{"class_name":"Ones","config":{}},"moving_mean_initializer":{"class_name":"Zeros","config":{}},"moving_variance_initializer":{"class_name":"Ones","config":{}},"beta_regularizer":null,"gamma_regularizer":null,"beta_constraint":null,"gamma_constraint":null,"name":"block_6_project_BN","trainable":true},"inbound_nodes":[[["block_6_project",0,0,{}]]]},{"name":"block_7_expand","class_name":"Conv2D","config":{"filters":144,"kernel_initializer":{"class_name":"VarianceScaling","config":{"scale":1,"mode":"fan_avg","distribution":"uniform","seed":null}},"kernel_regularizer":null,"kernel_constraint":null,"kernel_size":[1,1],"strides":[1,1],"padding":"same","data_format":"channels_last","dilation_rate":[1,1],"activation":"linear","use_bias":false,"bias_initializer":{"class_name":"Zeros","config":{}},"bias_regularizer":null,"activity_regularizer":null,"bias_constraint":null,"name":"block_7_expand","trainable":true},"inbound_nodes":[[["block_6_project_BN",0,0,{}]]]},{"name":"block_7_expand_BN","class_name":"BatchNormalization","config":{"axis":-1,"momentum":0.999,"epsilon":0.001,"center":true,"scale":true,"beta_initializer":{"class_name":"Zeros","config":{}},"gamma_initializer":{"class_name":"Ones","config":{}},"moving_mean_initializer":{"class_name":"Zeros","config":{}},"moving_variance_initializer":{"class_name":"Ones","config":{}},"beta_regularizer":null,"gamma_regularizer":null,"beta_constraint":null,"gamma_constraint":null,"name":"block_7_expand_BN","trainable":true},"inbound_nodes":[[["block_7_expand",0,0,{}]]]},{"name":"block_7_expand_relu","class_name":"ReLU","config":{"max_value":6,"name":"block_7_expand_relu","trainable":true},"inbound_nodes":[[["block_7_expand_BN",0,0,{}]]]},{"name":"block_7_depthwise","class_name":"DepthwiseConv2D","config":{"kernel_size":[3,3],"strides":[1,1],"padding":"same","data_format":"channels_last","dilation_rate":[1,1],"activation":"linear","use_bias":false,"bias_initializer":{"class_name":"Zeros","config":{}},"bias_regularizer":null,"activity_regularizer":null,"bias_constraint":null,"name":"block_7_depthwise","trainable":true,"depth_multiplier":1,"depthwise_initializer":{"class_name":"VarianceScaling","config":{"scale":1,"mode":"fan_avg","distribution":"uniform","seed":null}},"depthwise_regularizer":null,"depthwise_constraint":null},"inbound_nodes":[[["block_7_expand_relu",0,0,{}]]]},{"name":"block_7_depthwise_BN","class_name":"BatchNormalization","config":{"axis":-1,"momentum":0.999,"epsilon":0.001,"center":true,"scale":true,"beta_initializer":{"class_name":"Zeros","config":{}},"gamma_initializer":{"class_name":"Ones","config":{}},"moving_mean_initializer":{"class_name":"Zeros","config":{}},"moving_variance_initializer":{"class_name":"Ones","config":{}},"beta_regularizer":null,"gamma_regularizer":null,"beta_constraint":null,"gamma_constraint":null,"name":"block_7_depthwise_BN","trainable":true},"inbound_nodes":[[["block_7_depthwise",0,0,{}]]]},{"name":"block_7_depthwise_relu","class_name":"ReLU","config":{"max_value":6,"name":"block_7_depthwise_relu","trainable":true},"inbound_nodes":[[["block_7_depthwise_BN",0,0,{}]]]},{"name":"block_7_project","class_name":"Conv2D","config":{"filters":24,"kernel_initializer":{"class_name":"VarianceScaling","config":{"scale":1,"mode":"fan_avg","distribution":"uniform","seed":null}},"kernel_regularizer":null,"kernel_constraint":null,"kernel_size":[1,1],"strides":[1,1],"padding":"same","data_format":"channels_last","dilation_rate":[1,1],"activation":"linear","use_bias":false,"bias_initializer":{"class_name":"Zeros","config":{}},"bias_regularizer":null,"activity_regularizer":null,"bias_constraint":null,"name":"block_7_project","trainable":true},"inbound_nodes":[[["block_7_depthwise_relu",0,0,{}]]]},{"name":"block_7_project_BN","class_name":"BatchNormalization","config":{"axis":-1,"momentum":0.999,"epsilon":0.001,"center":true,"scale":true,"beta_initializer":{"class_name":"Zeros","config":{}},"gamma_initializer":{"class_name":"Ones","config":{}},"moving_mean_initializer":{"class_name":"Zeros","config":{}},"moving_variance_initializer":{"class_name":"Ones","config":{}},"beta_regularizer":null,"gamma_regularizer":null,"beta_constraint":null,"gamma_constraint":null,"name":"block_7_project_BN","trainable":true},"inbound_nodes":[[["block_7_project",0,0,{}]]]},{"name":"block_7_add","class_name":"Add","config":{"name":"block_7_add","trainable":true},"inbound_nodes":[[["block_6_project_BN",0,0,{}],["block_7_project_BN",0,0,{}]]]},{"name":"block_8_expand","class_name":"Conv2D","config":{"filters":144,"kernel_initializer":{"class_name":"VarianceScaling","config":{"scale":1,"mode":"fan_avg","distribution":"uniform","seed":null}},"kernel_regularizer":null,"kernel_constraint":null,"kernel_size":[1,1],"strides":[1,1],"padding":"same","data_format":"channels_last","dilation_rate":[1,1],"activation":"linear","use_bias":false,"bias_initializer":{"class_name":"Zeros","config":{}},"bias_regularizer":null,"activity_regularizer":null,"bias_constraint":null,"name":"block_8_expand","trainable":true},"inbound_nodes":[[["block_7_add",0,0,{}]]]},{"name":"block_8_expand_BN","class_name":"BatchNormalization","config":{"axis":-1,"momentum":0.999,"epsilon":0.001,"center":true,"scale":true,"beta_initializer":{"class_name":"Zeros","config":{}},"gamma_initializer":{"class_name":"Ones","config":{}},"moving_mean_initializer":{"class_name":"Zeros","config":{}},"moving_variance_initializer":{"class_name":"Ones","config":{}},"beta_regularizer":null,"gamma_regularizer":null,"beta_constraint":null,"gamma_constraint":null,"name":"block_8_expand_BN","trainable":true},"inbound_nodes":[[["block_8_expand",0,0,{}]]]},{"name":"block_8_expand_relu","class_name":"ReLU","config":{"max_value":6,"name":"block_8_expand_relu","trainable":true},"inbound_nodes":[[["block_8_expand_BN",0,0,{}]]]},{"name":"block_8_depthwise","class_name":"DepthwiseConv2D","config":{"kernel_size":[3,3],"strides":[1,1],"padding":"same","data_format":"channels_last","dilation_rate":[1,1],"activation":"linear","use_bias":false,"bias_initializer":{"class_name":"Zeros","config":{}},"bias_regularizer":null,"activity_regularizer":null,"bias_constraint":null,"name":"block_8_depthwise","trainable":true,"depth_multiplier":1,"depthwise_initializer":{"class_name":"VarianceScaling","config":{"scale":1,"mode":"fan_avg","distribution":"uniform","seed":null}},"depthwise_regularizer":null,"depthwise_constraint":null},"inbound_nodes":[[["block_8_expand_relu",0,0,{}]]]},{"name":"block_8_depthwise_BN","class_name":"BatchNormalization","config":{"axis":-1,"momentum":0.999,"epsilon":0.001,"center":true,"scale":true,"beta_initializer":{"class_name":"Zeros","config":{}},"gamma_initializer":{"class_name":"Ones","config":{}},"moving_mean_initializer":{"class_name":"Zeros","config":{}},"moving_variance_initializer":{"class_name":"Ones","config":{}},"beta_regularizer":null,"gamma_regularizer":null,"beta_constraint":null,"gamma_constraint":null,"name":"block_8_depthwise_BN","trainable":true},"inbound_nodes":[[["block_8_depthwise",0,0,{}]]]},{"name":"block_8_depthwise_relu","class_name":"ReLU","config":{"max_value":6,"name":"block_8_depthwise_relu","trainable":true},"inbound_nodes":[[["block_8_depthwise_BN",0,0,{}]]]},{"name":"block_8_project","class_name":"Conv2D","config":{"filters":24,"kernel_initializer":{"class_name":"VarianceScaling","config":{"scale":1,"mode":"fan_avg","distribution":"uniform","seed":null}},"kernel_regularizer":null,"kernel_constraint":null,"kernel_size":[1,1],"strides":[1,1],"padding":"same","data_format":"channels_last","dilation_rate":[1,1],"activation":"linear","use_bias":false,"bias_initializer":{"class_name":"Zeros","config":{}},"bias_regularizer":null,"activity_regularizer":null,"bias_constraint":null,"name":"block_8_project","trainable":true},"inbound_nodes":[[["block_8_depthwise_relu",0,0,{}]]]},{"name":"block_8_project_BN","class_name":"BatchNormalization","config":{"axis":-1,"momentum":0.999,"epsilon":0.001,"center":true,"scale":true,"beta_initializer":{"class_name":"Zeros","config":{}},"gamma_initializer":{"class_name":"Ones","config":{}},"moving_mean_initializer":{"class_name":"Zeros","config":{}},"moving_variance_initializer":{"class_name":"Ones","config":{}},"beta_regularizer":null,"gamma_regularizer":null,"beta_constraint":null,"gamma_constraint":null,"name":"block_8_project_BN","trainable":true},"inbound_nodes":[[["block_8_project",0,0,{}]]]},{"name":"block_8_add","class_name":"Add","config":{"name":"block_8_add","trainable":true},"inbound_nodes":[[["block_7_add",0,0,{}],["block_8_project_BN",0,0,{}]]]},{"name":"block_9_expand","class_name":"Conv2D","config":{"filters":144,"kernel_initializer":{"class_name":"VarianceScaling","config":{"scale":1,"mode":"fan_avg","distribution":"uniform","seed":null}},"kernel_regularizer":null,"kernel_constraint":null,"kernel_size":[1,1],"strides":[1,1],"padding":"same","data_format":"channels_last","dilation_rate":[1,1],"activation":"linear","use_bias":false,"bias_initializer":{"class_name":"Zeros","config":{}},"bias_regularizer":null,"activity_regularizer":null,"bias_constraint":null,"name":"block_9_expand","trainable":true},"inbound_nodes":[[["block_8_add",0,0,{}]]]},{"name":"block_9_expand_BN","class_name":"BatchNormalization","config":{"axis":-1,"momentum":0.999,"epsilon":0.001,"center":true,"scale":true,"beta_initializer":{"class_name":"Zeros","config":{}},"gamma_initializer":{"class_name":"Ones","config":{}},"moving_mean_initializer":{"class_name":"Zeros","config":{}},"moving_variance_initializer":{"class_name":"Ones","config":{}},"beta_regularizer":null,"gamma_regularizer":null,"beta_constraint":null,"gamma_constraint":null,"name":"block_9_expand_BN","trainable":true},"inbound_nodes":[[["block_9_expand",0,0,{}]]]},{"name":"block_9_expand_relu","class_name":"ReLU","config":{"max_value":6,"name":"block_9_expand_relu","trainable":true},"inbound_nodes":[[["block_9_expand_BN",0,0,{}]]]},{"name":"block_9_depthwise","class_name":"DepthwiseConv2D","config":{"kernel_size":[3,3],"strides":[1,1],"padding":"same","data_format":"channels_last","dilation_rate":[1,1],"activation":"linear","use_bias":false,"bias_initializer":{"class_name":"Zeros","config":{}},"bias_regularizer":null,"activity_regularizer":null,"bias_constraint":null,"name":"block_9_depthwise","trainable":true,"depth_multiplier":1,"depthwise_initializer":{"class_name":"VarianceScaling","config":{"scale":1,"mode":"fan_avg","distribution":"uniform","seed":null}},"depthwise_regularizer":null,"depthwise_constraint":null},"inbound_nodes":[[["block_9_expand_relu",0,0,{}]]]},{"name":"block_9_depthwise_BN","class_name":"BatchNormalization","config":{"axis":-1,"momentum":0.999,"epsilon":0.001,"center":true,"scale":true,"beta_initializer":{"class_name":"Zeros","config":{}},"gamma_initializer":{"class_name":"Ones","config":{}},"moving_mean_initializer":{"class_name":"Zeros","config":{}},"moving_variance_initializer":{"class_name":"Ones","config":{}},"beta_regularizer":null,"gamma_regularizer":null,"beta_constraint":null,"gamma_constraint":null,"name":"block_9_depthwise_BN","trainable":true},"inbound_nodes":[[["block_9_depthwise",0,0,{}]]]},{"name":"block_9_depthwise_relu","class_name":"ReLU","config":{"max_value":6,"name":"block_9_depthwise_relu","trainable":true},"inbound_nodes":[[["block_9_depthwise_BN",0,0,{}]]]},{"name":"block_9_project","class_name":"Conv2D","config":{"filters":24,"kernel_initializer":{"class_name":"VarianceScaling","config":{"scale":1,"mode":"fan_avg","distribution":"uniform","seed":null}},"kernel_regularizer":null,"kernel_constraint":null,"kernel_size":[1,1],"strides":[1,1],"padding":"same","data_format":"channels_last","dilation_rate":[1,1],"activation":"linear","use_bias":false,"bias_initializer":{"class_name":"Zeros","config":{}},"bias_regularizer":null,"activity_regularizer":null,"bias_constraint":null,"name":"block_9_project","trainable":true},"inbound_nodes":[[["block_9_depthwise_relu",0,0,{}]]]},{"name":"block_9_project_BN","class_name":"BatchNormalization","config":{"axis":-1,"momentum":0.999,"epsilon":0.001,"center":true,"scale":true,"beta_initializer":{"class_name":"Zeros","config":{}},"gamma_initializer":{"class_name":"Ones","config":{}},"moving_mean_initializer":{"class_name":"Zeros","config":{}},"moving_variance_initializer":{"class_name":"Ones","config":{}},"beta_regularizer":null,"gamma_regularizer":null,"beta_constraint":null,"gamma_constraint":null,"name":"block_9_project_BN","trainable":true},"inbound_nodes":[[["block_9_project",0,0,{}]]]},{"name":"block_9_add","class_name":"Add","config":{"name":"block_9_add","trainable":true},"inbound_nodes":[[["block_8_add",0,0,{}],["block_9_project_BN",0,0,{}]]]},{"name":"block_10_expand","class_name":"Conv2D","config":{"filters":144,"kernel_initializer":{"class_name":"VarianceScaling","config":{"scale":1,"mode":"fan_avg","distribution":"uniform","seed":null}},"kernel_regularizer":null,"kernel_constraint":null,"kernel_size":[1,1],"strides":[1,1],"padding":"same","data_format":"channels_last","dilation_rate":[1,1],"activation":"linear","use_bias":false,"bias_initializer":{"class_name":"Zeros","config":{}},"bias_regularizer":null,"activity_regularizer":null,"bias_constraint":null,"name":"block_10_expand","trainable":true},"inbound_nodes":[[["block_9_add",0,0,{}]]]},{"name":"block_10_expand_BN","class_name":"BatchNormalization","config":{"axis":-1,"momentum":0.999,"epsilon":0.001,"center":true,"scale":true,"beta_initializer":{"class_name":"Zeros","config":{}},"gamma_initializer":{"class_name":"Ones","config":{}},"moving_mean_initializer":{"class_name":"Zeros","config":{}},"moving_variance_initializer":{"class_name":"Ones","config":{}},"beta_regularizer":null,"gamma_regularizer":null,"beta_constraint":null,"gamma_constraint":null,"name":"block_10_expand_BN","trainable":true},"inbound_nodes":[[["block_10_expand",0,0,{}]]]},{"name":"block_10_expand_relu","class_name":"ReLU","config":{"max_value":6,"name":"block_10_expand_relu","trainable":true},"inbound_nodes":[[["block_10_expand_BN",0,0,{}]]]},{"name":"block_10_depthwise","class_name":"DepthwiseConv2D","config":{"kernel_size":[3,3],"strides":[1,1],"padding":"same","data_format":"channels_last","dilation_rate":[1,1],"activation":"linear","use_bias":false,"bias_initializer":{"class_name":"Zeros","config":{}},"bias_regularizer":null,"activity_regularizer":null,"bias_constraint":null,"name":"block_10_depthwise","trainable":true,"depth_multiplier":1,"depthwise_initializer":{"class_name":"VarianceScaling","config":{"scale":1,"mode":"fan_avg","distribution":"uniform","seed":null}},"depthwise_regularizer":null,"depthwise_constraint":null},"inbound_nodes":[[["block_10_expand_relu",0,0,{}]]]},{"name":"block_10_depthwise_BN","class_name":"BatchNormalization","config":{"axis":-1,"momentum":0.999,"epsilon":0.001,"center":true,"scale":true,"beta_initializer":{"class_name":"Zeros","config":{}},"gamma_initializer":{"class_name":"Ones","config":{}},"moving_mean_initializer":{"class_name":"Zeros","config":{}},"moving_variance_initializer":{"class_name":"Ones","config":{}},"beta_regularizer":null,"gamma_regularizer":null,"beta_constraint":null,"gamma_constraint":null,"name":"block_10_depthwise_BN","trainable":true},"inbound_nodes":[[["block_10_depthwise",0,0,{}]]]},{"name":"block_10_depthwise_relu","class_name":"ReLU","config":{"max_value":6,"name":"block_10_depthwise_relu","trainable":true},"inbound_nodes":[[["block_10_depthwise_BN",0,0,{}]]]},{"name":"block_10_project","class_name":"Conv2D","config":{"filters":32,"kernel_initializer":{"class_name":"VarianceScaling","config":{"scale":1,"mode":"fan_avg","distribution":"uniform","seed":null}},"kernel_regularizer":null,"kernel_constraint":null,"kernel_size":[1,1],"strides":[1,1],"padding":"same","data_format":"channels_last","dilation_rate":[1,1],"activation":"linear","use_bias":false,"bias_initializer":{"class_name":"Zeros","config":{}},"bias_regularizer":null,"activity_regularizer":null,"bias_constraint":null,"name":"block_10_project","trainable":true},"inbound_nodes":[[["block_10_depthwise_relu",0,0,{}]]]},{"name":"block_10_project_BN","class_name":"BatchNormalization","config":{"axis":-1,"momentum":0.999,"epsilon":0.001,"center":true,"scale":true,"beta_initializer":{"class_name":"Zeros","config":{}},"gamma_initializer":{"class_name":"Ones","config":{}},"moving_mean_initializer":{"class_name":"Zeros","config":{}},"moving_variance_initializer":{"class_name":"Ones","config":{}},"beta_regularizer":null,"gamma_regularizer":null,"beta_constraint":null,"gamma_constraint":null,"name":"block_10_project_BN","trainable":true},"inbound_nodes":[[["block_10_project",0,0,{}]]]},{"name":"block_11_expand","class_name":"Conv2D","config":{"filters":192,"kernel_initializer":{"class_name":"VarianceScaling","config":{"scale":1,"mode":"fan_avg","distribution":"uniform","seed":null}},"kernel_regularizer":null,"kernel_constraint":null,"kernel_size":[1,1],"strides":[1,1],"padding":"same","data_format":"channels_last","dilation_rate":[1,1],"activation":"linear","use_bias":false,"bias_initializer":{"class_name":"Zeros","config":{}},"bias_regularizer":null,"activity_regularizer":null,"bias_constraint":null,"name":"block_11_expand","trainable":true},"inbound_nodes":[[["block_10_project_BN",0,0,{}]]]},{"name":"block_11_expand_BN","class_name":"BatchNormalization","config":{"axis":-1,"momentum":0.999,"epsilon":0.001,"center":true,"scale":true,"beta_initializer":{"class_name":"Zeros","config":{}},"gamma_initializer":{"class_name":"Ones","config":{}},"moving_mean_initializer":{"class_name":"Zeros","config":{}},"moving_variance_initializer":{"class_name":"Ones","config":{}},"beta_regularizer":null,"gamma_regularizer":null,"beta_constraint":null,"gamma_constraint":null,"name":"block_11_expand_BN","trainable":true},"inbound_nodes":[[["block_11_expand",0,0,{}]]]},{"name":"block_11_expand_relu","class_name":"ReLU","config":{"max_value":6,"name":"block_11_expand_relu","trainable":true},"inbound_nodes":[[["block_11_expand_BN",0,0,{}]]]},{"name":"block_11_depthwise","class_name":"DepthwiseConv2D","config":{"kernel_size":[3,3],"strides":[1,1],"padding":"same","data_format":"channels_last","dilation_rate":[1,1],"activation":"linear","use_bias":false,"bias_initializer":{"class_name":"Zeros","config":{}},"bias_regularizer":null,"activity_regularizer":null,"bias_constraint":null,"name":"block_11_depthwise","trainable":true,"depth_multiplier":1,"depthwise_initializer":{"class_name":"VarianceScaling","config":{"scale":1,"mode":"fan_avg","distribution":"uniform","seed":null}},"depthwise_regularizer":null,"depthwise_constraint":null},"inbound_nodes":[[["block_11_expand_relu",0,0,{}]]]},{"name":"block_11_depthwise_BN","class_name":"BatchNormalization","config":{"axis":-1,"momentum":0.999,"epsilon":0.001,"center":true,"scale":true,"beta_initializer":{"class_name":"Zeros","config":{}},"gamma_initializer":{"class_name":"Ones","config":{}},"moving_mean_initializer":{"class_name":"Zeros","config":{}},"moving_variance_initializer":{"class_name":"Ones","config":{}},"beta_regularizer":null,"gamma_regularizer":null,"beta_constraint":null,"gamma_constraint":null,"name":"block_11_depthwise_BN","trainable":true},"inbound_nodes":[[["block_11_depthwise",0,0,{}]]]},{"name":"block_11_depthwise_relu","class_name":"ReLU","config":{"max_value":6,"name":"block_11_depthwise_relu","trainable":true},"inbound_nodes":[[["block_11_depthwise_BN",0,0,{}]]]},{"name":"block_11_project","class_name":"Conv2D","config":{"filters":32,"kernel_initializer":{"class_name":"VarianceScaling","config":{"scale":1,"mode":"fan_avg","distribution":"uniform","seed":null}},"kernel_regularizer":null,"kernel_constraint":null,"kernel_size":[1,1],"strides":[1,1],"padding":"same","data_format":"channels_last","dilation_rate":[1,1],"activation":"linear","use_bias":false,"bias_initializer":{"class_name":"Zeros","config":{}},"bias_regularizer":null,"activity_regularizer":null,"bias_constraint":null,"name":"block_11_project","trainable":true},"inbound_nodes":[[["block_11_depthwise_relu",0,0,{}]]]},{"name":"block_11_project_BN","class_name":"BatchNormalization","config":{"axis":-1,"momentum":0.999,"epsilon":0.001,"center":true,"scale":true,"beta_initializer":{"class_name":"Zeros","config":{}},"gamma_initializer":{"class_name":"Ones","config":{}},"moving_mean_initializer":{"class_name":"Zeros","config":{}},"moving_variance_initializer":{"class_name":"Ones","config":{}},"beta_regularizer":null,"gamma_regularizer":null,"beta_constraint":null,"gamma_constraint":null,"name":"block_11_project_BN","trainable":true},"inbound_nodes":[[["block_11_project",0,0,{}]]]},{"name":"block_11_add","class_name":"Add","config":{"name":"block_11_add","trainable":true},"inbound_nodes":[[["block_10_project_BN",0,0,{}],["block_11_project_BN",0,0,{}]]]},{"name":"block_12_expand","class_name":"Conv2D","config":{"filters":192,"kernel_initializer":{"class_name":"VarianceScaling","config":{"scale":1,"mode":"fan_avg","distribution":"uniform","seed":null}},"kernel_regularizer":null,"kernel_constraint":null,"kernel_size":[1,1],"strides":[1,1],"padding":"same","data_format":"channels_last","dilation_rate":[1,1],"activation":"linear","use_bias":false,"bias_initializer":{"class_name":"Zeros","config":{}},"bias_regularizer":null,"activity_regularizer":null,"bias_constraint":null,"name":"block_12_expand","trainable":true},"inbound_nodes":[[["block_11_add",0,0,{}]]]},{"name":"block_12_expand_BN","class_name":"BatchNormalization","config":{"axis":-1,"momentum":0.999,"epsilon":0.001,"center":true,"scale":true,"beta_initializer":{"class_name":"Zeros","config":{}},"gamma_initializer":{"class_name":"Ones","config":{}},"moving_mean_initializer":{"class_name":"Zeros","config":{}},"moving_variance_initializer":{"class_name":"Ones","config":{}},"beta_regularizer":null,"gamma_regularizer":null,"beta_constraint":null,"gamma_constraint":null,"name":"block_12_expand_BN","trainable":true},"inbound_nodes":[[["block_12_expand",0,0,{}]]]},{"name":"block_12_expand_relu","class_name":"ReLU","config":{"max_value":6,"name":"block_12_expand_relu","trainable":true},"inbound_nodes":[[["block_12_expand_BN",0,0,{}]]]},{"name":"block_12_depthwise","class_name":"DepthwiseConv2D","config":{"kernel_size":[3,3],"strides":[1,1],"padding":"same","data_format":"channels_last","dilation_rate":[1,1],"activation":"linear","use_bias":false,"bias_initializer":{"class_name":"Zeros","config":{}},"bias_regularizer":null,"activity_regularizer":null,"bias_constraint":null,"name":"block_12_depthwise","trainable":true,"depth_multiplier":1,"depthwise_initializer":{"class_name":"VarianceScaling","config":{"scale":1,"mode":"fan_avg","distribution":"uniform","seed":null}},"depthwise_regularizer":null,"depthwise_constraint":null},"inbound_nodes":[[["block_12_expand_relu",0,0,{}]]]},{"name":"block_12_depthwise_BN","class_name":"BatchNormalization","config":{"axis":-1,"momentum":0.999,"epsilon":0.001,"center":true,"scale":true,"beta_initializer":{"class_name":"Zeros","config":{}},"gamma_initializer":{"class_name":"Ones","config":{}},"moving_mean_initializer":{"class_name":"Zeros","config":{}},"moving_variance_initializer":{"class_name":"Ones","config":{}},"beta_regularizer":null,"gamma_regularizer":null,"beta_constraint":null,"gamma_constraint":null,"name":"block_12_depthwise_BN","trainable":true},"inbound_nodes":[[["block_12_depthwise",0,0,{}]]]},{"name":"block_12_depthwise_relu","class_name":"ReLU","config":{"max_value":6,"name":"block_12_depthwise_relu","trainable":true},"inbound_nodes":[[["block_12_depthwise_BN",0,0,{}]]]},{"name":"block_12_project","class_name":"Conv2D","config":{"filters":32,"kernel_initializer":{"class_name":"VarianceScaling","config":{"scale":1,"mode":"fan_avg","distribution":"uniform","seed":null}},"kernel_regularizer":null,"kernel_constraint":null,"kernel_size":[1,1],"strides":[1,1],"padding":"same","data_format":"channels_last","dilation_rate":[1,1],"activation":"linear","use_bias":false,"bias_initializer":{"class_name":"Zeros","config":{}},"bias_regularizer":null,"activity_regularizer":null,"bias_constraint":null,"name":"block_12_project","trainable":true},"inbound_nodes":[[["block_12_depthwise_relu",0,0,{}]]]},{"name":"block_12_project_BN","class_name":"BatchNormalization","config":{"axis":-1,"momentum":0.999,"epsilon":0.001,"center":true,"scale":true,"beta_initializer":{"class_name":"Zeros","config":{}},"gamma_initializer":{"class_name":"Ones","config":{}},"moving_mean_initializer":{"class_name":"Zeros","config":{}},"moving_variance_initializer":{"class_name":"Ones","config":{}},"beta_regularizer":null,"gamma_regularizer":null,"beta_constraint":null,"gamma_constraint":null,"name":"block_12_project_BN","trainable":true},"inbound_nodes":[[["block_12_project",0,0,{}]]]},{"name":"block_12_add","class_name":"Add","config":{"name":"block_12_add","trainable":true},"inbound_nodes":[[["block_11_add",0,0,{}],["block_12_project_BN",0,0,{}]]]},{"name":"block_13_expand","class_name":"Conv2D","config":{"filters":192,"kernel_initializer":{"class_name":"VarianceScaling","config":{"scale":1,"mode":"fan_avg","distribution":"uniform","seed":null}},"kernel_regularizer":null,"kernel_constraint":null,"kernel_size":[1,1],"strides":[1,1],"padding":"same","data_format":"channels_last","dilation_rate":[1,1],"activation":"linear","use_bias":false,"bias_initializer":{"class_name":"Zeros","config":{}},"bias_regularizer":null,"activity_regularizer":null,"bias_constraint":null,"name":"block_13_expand","trainable":true},"inbound_nodes":[[["block_12_add",0,0,{}]]]},{"name":"block_13_expand_BN","class_name":"BatchNormalization","config":{"axis":-1,"momentum":0.999,"epsilon":0.001,"center":true,"scale":true,"beta_initializer":{"class_name":"Zeros","config":{}},"gamma_initializer":{"class_name":"Ones","config":{}},"moving_mean_initializer":{"class_name":"Zeros","config":{}},"moving_variance_initializer":{"class_name":"Ones","config":{}},"beta_regularizer":null,"gamma_regularizer":null,"beta_constraint":null,"gamma_constraint":null,"name":"block_13_expand_BN","trainable":true},"inbound_nodes":[[["block_13_expand",0,0,{}]]]},{"name":"block_13_expand_relu","class_name":"ReLU","config":{"max_value":6,"name":"block_13_expand_relu","trainable":true},"inbound_nodes":[[["block_13_expand_BN",0,0,{}]]]},{"name":"block_13_pad","class_name":"ZeroPadding2D","config":{"padding":[[0,1],[0,1]],"data_format":"channels_last","name":"block_13_pad","trainable":true},"inbound_nodes":[[["block_13_expand_relu",0,0,{}]]]},{"name":"block_13_depthwise","class_name":"DepthwiseConv2D","config":{"kernel_size":[3,3],"strides":[2,2],"padding":"valid","data_format":"channels_last","dilation_rate":[1,1],"activation":"linear","use_bias":false,"bias_initializer":{"class_name":"Zeros","config":{}},"bias_regularizer":null,"activity_regularizer":null,"bias_constraint":null,"name":"block_13_depthwise","trainable":true,"depth_multiplier":1,"depthwise_initializer":{"class_name":"VarianceScaling","config":{"scale":1,"mode":"fan_avg","distribution":"uniform","seed":null}},"depthwise_regularizer":null,"depthwise_constraint":null},"inbound_nodes":[[["block_13_pad",0,0,{}]]]},{"name":"block_13_depthwise_BN","class_name":"BatchNormalization","config":{"axis":-1,"momentum":0.999,"epsilon":0.001,"center":true,"scale":true,"beta_initializer":{"class_name":"Zeros","config":{}},"gamma_initializer":{"class_name":"Ones","config":{}},"moving_mean_initializer":{"class_name":"Zeros","config":{}},"moving_variance_initializer":{"class_name":"Ones","config":{}},"beta_regularizer":null,"gamma_regularizer":null,"beta_constraint":null,"gamma_constraint":null,"name":"block_13_depthwise_BN","trainable":true},"inbound_nodes":[[["block_13_depthwise",0,0,{}]]]},{"name":"block_13_depthwise_relu","class_name":"ReLU","config":{"max_value":6,"name":"block_13_depthwise_relu","trainable":true},"inbound_nodes":[[["block_13_depthwise_BN",0,0,{}]]]},{"name":"block_13_project","class_name":"Conv2D","config":{"filters":56,"kernel_initializer":{"class_name":"VarianceScaling","config":{"scale":1,"mode":"fan_avg","distribution":"uniform","seed":null}},"kernel_regularizer":null,"kernel_constraint":null,"kernel_size":[1,1],"strides":[1,1],"padding":"same","data_format":"channels_last","dilation_rate":[1,1],"activation":"linear","use_bias":false,"bias_initializer":{"class_name":"Zeros","config":{}},"bias_regularizer":null,"activity_regularizer":null,"bias_constraint":null,"name":"block_13_project","trainable":true},"inbound_nodes":[[["block_13_depthwise_relu",0,0,{}]]]},{"name":"block_13_project_BN","class_name":"BatchNormalization","config":{"axis":-1,"momentum":0.999,"epsilon":0.001,"center":true,"scale":true,"beta_initializer":{"class_name":"Zeros","config":{}},"gamma_initializer":{"class_name":"Ones","config":{}},"moving_mean_initializer":{"class_name":"Zeros","config":{}},"moving_variance_initializer":{"class_name":"Ones","config":{}},"beta_regularizer":null,"gamma_regularizer":null,"beta_constraint":null,"gamma_constraint":null,"name":"block_13_project_BN","trainable":true},"inbound_nodes":[[["block_13_project",0,0,{}]]]},{"name":"block_14_expand","class_name":"Conv2D","config":{"filters":336,"kernel_initializer":{"class_name":"VarianceScaling","config":{"scale":1,"mode":"fan_avg","distribution":"uniform","seed":null}},"kernel_regularizer":null,"kernel_constraint":null,"kernel_size":[1,1],"strides":[1,1],"padding":"same","data_format":"channels_last","dilation_rate":[1,1],"activation":"linear","use_bias":false,"bias_initializer":{"class_name":"Zeros","config":{}},"bias_regularizer":null,"activity_regularizer":null,"bias_constraint":null,"name":"block_14_expand","trainable":true},"inbound_nodes":[[["block_13_project_BN",0,0,{}]]]},{"name":"block_14_expand_BN","class_name":"BatchNormalization","config":{"axis":-1,"momentum":0.999,"epsilon":0.001,"center":true,"scale":true,"beta_initializer":{"class_name":"Zeros","config":{}},"gamma_initializer":{"class_name":"Ones","config":{}},"moving_mean_initializer":{"class_name":"Zeros","config":{}},"moving_variance_initializer":{"class_name":"Ones","config":{}},"beta_regularizer":null,"gamma_regularizer":null,"beta_constraint":null,"gamma_constraint":null,"name":"block_14_expand_BN","trainable":true},"inbound_nodes":[[["block_14_expand",0,0,{}]]]},{"name":"block_14_expand_relu","class_name":"ReLU","config":{"max_value":6,"name":"block_14_expand_relu","trainable":true},"inbound_nodes":[[["block_14_expand_BN",0,0,{}]]]},{"name":"block_14_depthwise","class_name":"DepthwiseConv2D","config":{"kernel_size":[3,3],"strides":[1,1],"padding":"same","data_format":"channels_last","dilation_rate":[1,1],"activation":"linear","use_bias":false,"bias_initializer":{"class_name":"Zeros","config":{}},"bias_regularizer":null,"activity_regularizer":null,"bias_constraint":null,"name":"block_14_depthwise","trainable":true,"depth_multiplier":1,"depthwise_initializer":{"class_name":"VarianceScaling","config":{"scale":1,"mode":"fan_avg","distribution":"uniform","seed":null}},"depthwise_regularizer":null,"depthwise_constraint":null},"inbound_nodes":[[["block_14_expand_relu",0,0,{}]]]},{"name":"block_14_depthwise_BN","class_name":"BatchNormalization","config":{"axis":-1,"momentum":0.999,"epsilon":0.001,"center":true,"scale":true,"beta_initializer":{"class_name":"Zeros","config":{}},"gamma_initializer":{"class_name":"Ones","config":{}},"moving_mean_initializer":{"class_name":"Zeros","config":{}},"moving_variance_initializer":{"class_name":"Ones","config":{}},"beta_regularizer":null,"gamma_regularizer":null,"beta_constraint":null,"gamma_constraint":null,"name":"block_14_depthwise_BN","trainable":true},"inbound_nodes":[[["block_14_depthwise",0,0,{}]]]},{"name":"block_14_depthwise_relu","class_name":"ReLU","config":{"max_value":6,"name":"block_14_depthwise_relu","trainable":true},"inbound_nodes":[[["block_14_depthwise_BN",0,0,{}]]]},{"name":"block_14_project","class_name":"Conv2D","config":{"filters":56,"kernel_initializer":{"class_name":"VarianceScaling","config":{"scale":1,"mode":"fan_avg","distribution":"uniform","seed":null}},"kernel_regularizer":null,"kernel_constraint":null,"kernel_size":[1,1],"strides":[1,1],"padding":"same","data_format":"channels_last","dilation_rate":[1,1],"activation":"linear","use_bias":false,"bias_initializer":{"class_name":"Zeros","config":{}},"bias_regularizer":null,"activity_regularizer":null,"bias_constraint":null,"name":"block_14_project","trainable":true},"inbound_nodes":[[["block_14_depthwise_relu",0,0,{}]]]},{"name":"block_14_project_BN","class_name":"BatchNormalization","config":{"axis":-1,"momentum":0.999,"epsilon":0.001,"center":true,"scale":true,"beta_initializer":{"class_name":"Zeros","config":{}},"gamma_initializer":{"class_name":"Ones","config":{}},"moving_mean_initializer":{"class_name":"Zeros","config":{}},"moving_variance_initializer":{"class_name":"Ones","config":{}},"beta_regularizer":null,"gamma_regularizer":null,"beta_constraint":null,"gamma_constraint":null,"name":"block_14_project_BN","trainable":true},"inbound_nodes":[[["block_14_project",0,0,{}]]]},{"name":"block_14_add","class_name":"Add","config":{"name":"block_14_add","trainable":true},"inbound_nodes":[[["block_13_project_BN",0,0,{}],["block_14_project_BN",0,0,{}]]]},{"name":"block_15_expand","class_name":"Conv2D","config":{"filters":336,"kernel_initializer":{"class_name":"VarianceScaling","config":{"scale":1,"mode":"fan_avg","distribution":"uniform","seed":null}},"kernel_regularizer":null,"kernel_constraint":null,"kernel_size":[1,1],"strides":[1,1],"padding":"same","data_format":"channels_last","dilation_rate":[1,1],"activation":"linear","use_bias":false,"bias_initializer":{"class_name":"Zeros","config":{}},"bias_regularizer":null,"activity_regularizer":null,"bias_constraint":null,"name":"block_15_expand","trainable":true},"inbound_nodes":[[["block_14_add",0,0,{}]]]},{"name":"block_15_expand_BN","class_name":"BatchNormalization","config":{"axis":-1,"momentum":0.999,"epsilon":0.001,"center":true,"scale":true,"beta_initializer":{"class_name":"Zeros","config":{}},"gamma_initializer":{"class_name":"Ones","config":{}},"moving_mean_initializer":{"class_name":"Zeros","config":{}},"moving_variance_initializer":{"class_name":"Ones","config":{}},"beta_regularizer":null,"gamma_regularizer":null,"beta_constraint":null,"gamma_constraint":null,"name":"block_15_expand_BN","trainable":true},"inbound_nodes":[[["block_15_expand",0,0,{}]]]},{"name":"block_15_expand_relu","class_name":"ReLU","config":{"max_value":6,"name":"block_15_expand_relu","trainable":true},"inbound_nodes":[[["block_15_expand_BN",0,0,{}]]]},{"name":"block_15_depthwise","class_name":"DepthwiseConv2D","config":{"kernel_size":[3,3],"strides":[1,1],"padding":"same","data_format":"channels_last","dilation_rate":[1,1],"activation":"linear","use_bias":false,"bias_initializer":{"class_name":"Zeros","config":{}},"bias_regularizer":null,"activity_regularizer":null,"bias_constraint":null,"name":"block_15_depthwise","trainable":true,"depth_multiplier":1,"depthwise_initializer":{"class_name":"VarianceScaling","config":{"scale":1,"mode":"fan_avg","distribution":"uniform","seed":null}},"depthwise_regularizer":null,"depthwise_constraint":null},"inbound_nodes":[[["block_15_expand_relu",0,0,{}]]]},{"name":"block_15_depthwise_BN","class_name":"BatchNormalization","config":{"axis":-1,"momentum":0.999,"epsilon":0.001,"center":true,"scale":true,"beta_initializer":{"class_name":"Zeros","config":{}},"gamma_initializer":{"class_name":"Ones","config":{}},"moving_mean_initializer":{"class_name":"Zeros","config":{}},"moving_variance_initializer":{"class_name":"Ones","config":{}},"beta_regularizer":null,"gamma_regularizer":null,"beta_constraint":null,"gamma_constraint":null,"name":"block_15_depthwise_BN","trainable":true},"inbound_nodes":[[["block_15_depthwise",0,0,{}]]]},{"name":"block_15_depthwise_relu","class_name":"ReLU","config":{"max_value":6,"name":"block_15_depthwise_relu","trainable":true},"inbound_nodes":[[["block_15_depthwise_BN",0,0,{}]]]},{"name":"block_15_project","class_name":"Conv2D","config":{"filters":56,"kernel_initializer":{"class_name":"VarianceScaling","config":{"scale":1,"mode":"fan_avg","distribution":"uniform","seed":null}},"kernel_regularizer":null,"kernel_constraint":null,"kernel_size":[1,1],"strides":[1,1],"padding":"same","data_format":"channels_last","dilation_rate":[1,1],"activation":"linear","use_bias":false,"bias_initializer":{"class_name":"Zeros","config":{}},"bias_regularizer":null,"activity_regularizer":null,"bias_constraint":null,"name":"block_15_project","trainable":true},"inbound_nodes":[[["block_15_depthwise_relu",0,0,{}]]]},{"name":"block_15_project_BN","class_name":"BatchNormalization","config":{"axis":-1,"momentum":0.999,"epsilon":0.001,"center":true,"scale":true,"beta_initializer":{"class_name":"Zeros","config":{}},"gamma_initializer":{"class_name":"Ones","config":{}},"moving_mean_initializer":{"class_name":"Zeros","config":{}},"moving_variance_initializer":{"class_name":"Ones","config":{}},"beta_regularizer":null,"gamma_regularizer":null,"beta_constraint":null,"gamma_constraint":null,"name":"block_15_project_BN","trainable":true},"inbound_nodes":[[["block_15_project",0,0,{}]]]},{"name":"block_15_add","class_name":"Add","config":{"name":"block_15_add","trainable":true},"inbound_nodes":[[["block_14_add",0,0,{}],["block_15_project_BN",0,0,{}]]]},{"name":"block_16_expand","class_name":"Conv2D","config":{"filters":336,"kernel_initializer":{"class_name":"VarianceScaling","config":{"scale":1,"mode":"fan_avg","distribution":"uniform","seed":null}},"kernel_regularizer":null,"kernel_constraint":null,"kernel_size":[1,1],"strides":[1,1],"padding":"same","data_format":"channels_last","dilation_rate":[1,1],"activation":"linear","use_bias":false,"bias_initializer":{"class_name":"Zeros","config":{}},"bias_regularizer":null,"activity_regularizer":null,"bias_constraint":null,"name":"block_16_expand","trainable":true},"inbound_nodes":[[["block_15_add",0,0,{}]]]},{"name":"block_16_expand_BN","class_name":"BatchNormalization","config":{"axis":-1,"momentum":0.999,"epsilon":0.001,"center":true,"scale":true,"beta_initializer":{"class_name":"Zeros","config":{}},"gamma_initializer":{"class_name":"Ones","config":{}},"moving_mean_initializer":{"class_name":"Zeros","config":{}},"moving_variance_initializer":{"class_name":"Ones","config":{}},"beta_regularizer":null,"gamma_regularizer":null,"beta_constraint":null,"gamma_constraint":null,"name":"block_16_expand_BN","trainable":true},"inbound_nodes":[[["block_16_expand",0,0,{}]]]},{"name":"block_16_expand_relu","class_name":"ReLU","config":{"max_value":6,"name":"block_16_expand_relu","trainable":true},"inbound_nodes":[[["block_16_expand_BN",0,0,{}]]]},{"name":"block_16_depthwise","class_name":"DepthwiseConv2D","config":{"kernel_size":[3,3],"strides":[1,1],"padding":"same","data_format":"channels_last","dilation_rate":[1,1],"activation":"linear","use_bias":false,"bias_initializer":{"class_name":"Zeros","config":{}},"bias_regularizer":null,"activity_regularizer":null,"bias_constraint":null,"name":"block_16_depthwise","trainable":true,"depth_multiplier":1,"depthwise_initializer":{"class_name":"VarianceScaling","config":{"scale":1,"mode":"fan_avg","distribution":"uniform","seed":null}},"depthwise_regularizer":null,"depthwise_constraint":null},"inbound_nodes":[[["block_16_expand_relu",0,0,{}]]]},{"name":"block_16_depthwise_BN","class_name":"BatchNormalization","config":{"axis":-1,"momentum":0.999,"epsilon":0.001,"center":true,"scale":true,"beta_initializer":{"class_name":"Zeros","config":{}},"gamma_initializer":{"class_name":"Ones","config":{}},"moving_mean_initializer":{"class_name":"Zeros","config":{}},"moving_variance_initializer":{"class_name":"Ones","config":{}},"beta_regularizer":null,"gamma_regularizer":null,"beta_constraint":null,"gamma_constraint":null,"name":"block_16_depthwise_BN","trainable":true},"inbound_nodes":[[["block_16_depthwise",0,0,{}]]]},{"name":"block_16_depthwise_relu","class_name":"ReLU","config":{"max_value":6,"name":"block_16_depthwise_relu","trainable":true},"inbound_nodes":[[["block_16_depthwise_BN",0,0,{}]]]},{"name":"block_16_project","class_name":"Conv2D","config":{"filters":112,"kernel_initializer":{"class_name":"VarianceScaling","config":{"scale":1,"mode":"fan_avg","distribution":"uniform","seed":null}},"kernel_regularizer":null,"kernel_constraint":null,"kernel_size":[1,1],"strides":[1,1],"padding":"same","data_format":"channels_last","dilation_rate":[1,1],"activation":"linear","use_bias":false,"bias_initializer":{"class_name":"Zeros","config":{}},"bias_regularizer":null,"activity_regularizer":null,"bias_constraint":null,"name":"block_16_project","trainable":true},"inbound_nodes":[[["block_16_depthwise_relu",0,0,{}]]]},{"name":"block_16_project_BN","class_name":"BatchNormalization","config":{"axis":-1,"momentum":0.999,"epsilon":0.001,"center":true,"scale":true,"beta_initializer":{"class_name":"Zeros","config":{}},"gamma_initializer":{"class_name":"Ones","config":{}},"moving_mean_initializer":{"class_name":"Zeros","config":{}},"moving_variance_initializer":{"class_name":"Ones","config":{}},"beta_regularizer":null,"gamma_regularizer":null,"beta_constraint":null,"gamma_constraint":null,"name":"block_16_project_BN","trainable":true},"inbound_nodes":[[["block_16_project",0,0,{}]]]},{"name":"Conv_1","class_name":"Conv2D","config":{"filters":1280,"kernel_initializer":{"class_name":"VarianceScaling","config":{"scale":1,"mode":"fan_avg","distribution":"uniform","seed":null}},"kernel_regularizer":null,"kernel_constraint":null,"kernel_size":[1,1],"strides":[1,1],"padding":"valid","data_format":"channels_last","dilation_rate":[1,1],"activation":"linear","use_bias":false,"bias_initializer":{"class_name":"Zeros","config":{}},"bias_regularizer":null,"activity_regularizer":null,"bias_constraint":null,"name":"Conv_1","trainable":true},"inbound_nodes":[[["block_16_project_BN",0,0,{}]]]},{"name":"Conv_1_bn","class_name":"BatchNormalization","config":{"axis":-1,"momentum":0.999,"epsilon":0.001,"center":true,"scale":true,"beta_initializer":{"class_name":"Zeros","config":{}},"gamma_initializer":{"class_name":"Ones","config":{}},"moving_mean_initializer":{"class_name":"Zeros","config":{}},"moving_variance_initializer":{"class_name":"Ones","config":{}},"beta_regularizer":null,"gamma_regularizer":null,"beta_constraint":null,"gamma_constraint":null,"name":"Conv_1_bn","trainable":true},"inbound_nodes":[[["Conv_1",0,0,{}]]]},{"name":"out_relu","class_name":"ReLU","config":{"max_value":6,"name":"out_relu","trainable":true},"inbound_nodes":[[["Conv_1_bn",0,0,{}]]]}],"input_layers":[["input_1",0,0]],"output_layers":[["out_relu",0,0]]}},{"class_name":"GlobalAveragePooling2D","config":{"data_format":"channels_last","name":"global_average_pooling2d_GlobalAveragePooling2D4","trainable":true}}]}},{"class_name":"Sequential","config":{"name":"sequential_15","layers":[{"class_name":"Dense","config":{"units":100,"activation":"relu","use_bias":true,"kernel_initializer":{"class_name":"VarianceScaling","config":{"scale":1,"mode":"fan_in","distribution":"normal","seed":null}},"bias_initializer":{"class_name":"Zeros","config":{}},"kernel_regularizer":null,"bias_regularizer":null,"activity_regularizer":null,"kernel_constraint":null,"bias_constraint":null,"name":"dense_Dense7","trainable":true,"batch_input_shape":[null,1280],"dtype":"float32"}},{"class_name":"Dense","config":{"units":3,"activation":"softmax","use_bias":false,"kernel_initializer":{"class_name":"VarianceScaling","config":{"scale":1,"mode":"fan_in","distribution":"normal","seed":null}},"bias_initializer":{"class_name":"Zeros","config":{}},"kernel_regularizer":null,"bias_regularizer":null,"activity_regularizer":null,"kernel_constraint":null,"bias_constraint":null,"name":"dense_Dense8","trainable":true}}]}}]},"keras_version":"tfjs-layers 1.3.1","backend":"tensor_flow.js"},"weightsManifest":[{"paths":["weights.bin"],"weights":[{"name":"Conv1/kernel","shape":[3,3,3,16],"dtype":"float32"},{"name":"bn_Conv1/gamma","shape":[16],"dtype":"float32"},{"name":"bn_Conv1/beta","shape":[16],"dtype":"float32"},{"name":"expanded_conv_depthwise/depthwise_kernel","shape":[3,3,16,1],"dtype":"float32"},{"name":"expanded_conv_depthwise_BN/gamma","shape":[16],"dtype":"float32"},{"name":"expanded_conv_depthwise_BN/beta","shape":[16],"dtype":"float32"},{"name":"expanded_conv_project/kernel","shape":[1,1,16,8],"dtype":"float32"},{"name":"expanded_conv_project_BN/gamma","shape":[8],"dtype":"float32"},{"name":"expanded_conv_project_BN/beta","shape":[8],"dtype":"float32"},{"name":"block_1_expand/kernel","shape":[1,1,8,48],"dtype":"float32"},{"name":"block_1_expand_BN/gamma","shape":[48],"dtype":"float32"},{"name":"block_1_expand_BN/beta","shape":[48],"dtype":"float32"},{"name":"block_1_depthwise/depthwise_kernel","shape":[3,3,48,1],"dtype":"float32"},{"name":"block_1_depthwise_BN/gamma","shape":[48],"dtype":"float32"},{"name":"block_1_depthwise_BN/beta","shape":[48],"dtype":"float32"},{"name":"block_1_project/kernel","shape":[1,1,48,8],"dtype":"float32"},{"name":"block_1_project_BN/gamma","shape":[8],"dtype":"float32"},{"name":"block_1_project_BN/beta","shape":[8],"dtype":"float32"},{"name":"block_2_expand/kernel","shape":[1,1,8,48],"dtype":"float32"},{"name":"block_2_expand_BN/gamma","shape":[48],"dtype":"float32"},{"name":"block_2_expand_BN/beta","shape":[48],"dtype":"float32"},{"name":"block_2_depthwise/depthwise_kernel","shape":[3,3,48,1],"dtype":"float32"},{"name":"block_2_depthwise_BN/gamma","shape":[48],"dtype":"float32"},{"name":"block_2_depthwise_BN/beta","shape":[48],"dtype":"float32"},{"name":"block_2_project/kernel","shape":[1,1,48,8],"dtype":"float32"},{"name":"block_2_project_BN/gamma","shape":[8],"dtype":"float32"},{"name":"block_2_project_BN/beta","shape":[8],"dtype":"float32"},{"name":"block_3_expand/kernel","shape":[1,1,8,48],"dtype":"float32"},{"name":"block_3_expand_BN/gamma","shape":[48],"dtype":"float32"},{"name":"block_3_expand_BN/beta","shape":[48],"dtype":"float32"},{"name":"block_3_depthwise/depthwise_kernel","shape":[3,3,48,1],"dtype":"float32"},{"name":"block_3_depthwise_BN/gamma","shape":[48],"dtype":"float32"},{"name":"block_3_depthwise_BN/beta","shape":[48],"dtype":"float32"},{"name":"block_3_project/kernel","shape":[1,1,48,16],"dtype":"float32"},{"name":"block_3_project_BN/gamma","shape":[16],"dtype":"float32"},{"name":"block_3_project_BN/beta","shape":[16],"dtype":"float32"},{"name":"block_4_expand/kernel","shape":[1,1,16,96],"dtype":"float32"},{"name":"block_4_expand_BN/gamma","shape":[96],"dtype":"float32"},{"name":"block_4_expand_BN/beta","shape":[96],"dtype":"float32"},{"name":"block_4_depthwise/depthwise_kernel","shape":[3,3,96,1],"dtype":"float32"},{"name":"block_4_depthwise_BN/gamma","shape":[96],"dtype":"float32"},{"name":"block_4_depthwise_BN/beta","shape":[96],"dtype":"float32"},{"name":"block_4_project/kernel","shape":[1,1,96,16],"dtype":"float32"},{"name":"block_4_project_BN/gamma","shape":[16],"dtype":"float32"},{"name":"block_4_project_BN/beta","shape":[16],"dtype":"float32"},{"name":"block_5_expand/kernel","shape":[1,1,16,96],"dtype":"float32"},{"name":"block_5_expand_BN/gamma","shape":[96],"dtype":"float32"},{"name":"block_5_expand_BN/beta","shape":[96],"dtype":"float32"},{"name":"block_5_depthwise/depthwise_kernel","shape":[3,3,96,1],"dtype":"float32"},{"name":"block_5_depthwise_BN/gamma","shape":[96],"dtype":"float32"},{"name":"block_5_depthwise_BN/beta","shape":[96],"dtype":"float32"},{"name":"block_5_project/kernel","shape":[1,1,96,16],"dtype":"float32"},{"name":"block_5_project_BN/gamma","shape":[16],"dtype":"float32"},{"name":"block_5_project_BN/beta","shape":[16],"dtype":"float32"},{"name":"block_6_expand/kernel","shape":[1,1,16,96],"dtype":"float32"},{"name":"block_6_expand_BN/gamma","shape":[96],"dtype":"float32"},{"name":"block_6_expand_BN/beta","shape":[96],"dtype":"float32"},{"name":"block_6_depthwise/depthwise_kernel","shape":[3,3,96,1],"dtype":"float32"},{"name":"block_6_depthwise_BN/gamma","shape":[96],"dtype":"float32"},{"name":"block_6_depthwise_BN/beta","shape":[96],"dtype":"float32"},{"name":"block_6_project/kernel","shape":[1,1,96,24],"dtype":"float32"},{"name":"block_6_project_BN/gamma","shape":[24],"dtype":"float32"},{"name":"block_6_project_BN/beta","shape":[24],"dtype":"float32"},{"name":"block_7_expand/kernel","shape":[1,1,24,144],"dtype":"float32"},{"name":"block_7_expand_BN/gamma","shape":[144],"dtype":"float32"},{"name":"block_7_expand_BN/beta","shape":[144],"dtype":"float32"},{"name":"block_7_depthwise/depthwise_kernel","shape":[3,3,144,1],"dtype":"float32"},{"name":"block_7_depthwise_BN/gamma","shape":[144],"dtype":"float32"},{"name":"block_7_depthwise_BN/beta","shape":[144],"dtype":"float32"},{"name":"block_7_project/kernel","shape":[1,1,144,24],"dtype":"float32"},{"name":"block_7_project_BN/gamma","shape":[24],"dtype":"float32"},{"name":"block_7_project_BN/beta","shape":[24],"dtype":"float32"},{"name":"block_8_expand/kernel","shape":[1,1,24,144],"dtype":"float32"},{"name":"block_8_expand_BN/gamma","shape":[144],"dtype":"float32"},{"name":"block_8_expand_BN/beta","shape":[144],"dtype":"float32"},{"name":"block_8_depthwise/depthwise_kernel","shape":[3,3,144,1],"dtype":"float32"},{"name":"block_8_depthwise_BN/gamma","shape":[144],"dtype":"float32"},{"name":"block_8_depthwise_BN/beta","shape":[144],"dtype":"float32"},{"name":"block_8_project/kernel","shape":[1,1,144,24],"dtype":"float32"},{"name":"block_8_project_BN/gamma","shape":[24],"dtype":"float32"},{"name":"block_8_project_BN/beta","shape":[24],"dtype":"float32"},{"name":"block_9_expand/kernel","shape":[1,1,24,144],"dtype":"float32"},{"name":"block_9_expand_BN/gamma","shape":[144],"dtype":"float32"},{"name":"block_9_expand_BN/beta","shape":[144],"dtype":"float32"},{"name":"block_9_depthwise/depthwise_kernel","shape":[3,3,144,1],"dtype":"float32"},{"name":"block_9_depthwise_BN/gamma","shape":[144],"dtype":"float32"},{"name":"block_9_depthwise_BN/beta","shape":[144],"dtype":"float32"},{"name":"block_9_project/kernel","shape":[1,1,144,24],"dtype":"float32"},{"name":"block_9_project_BN/gamma","shape":[24],"dtype":"float32"},{"name":"block_9_project_BN/beta","shape":[24],"dtype":"float32"},{"name":"block_10_expand/kernel","shape":[1,1,24,144],"dtype":"float32"},{"name":"block_10_expand_BN/gamma","shape":[144],"dtype":"float32"},{"name":"block_10_expand_BN/beta","shape":[144],"dtype":"float32"},{"name":"block_10_depthwise/depthwise_kernel","shape":[3,3,144,1],"dtype":"float32"},{"name":"block_10_depthwise_BN/gamma","shape":[144],"dtype":"float32"},{"name":"block_10_depthwise_BN/beta","shape":[144],"dtype":"float32"},{"name":"block_10_project/kernel","shape":[1,1,144,32],"dtype":"float32"},{"name":"block_10_project_BN/gamma","shape":[32],"dtype":"float32"},{"name":"block_10_project_BN/beta","shape":[32],"dtype":"float32"},{"name":"block_11_expand/kernel","shape":[1,1,32,192],"dtype":"float32"},{"name":"block_11_expand_BN/gamma","shape":[192],"dtype":"float32"},{"name":"block_11_expand_BN/beta","shape":[192],"dtype":"float32"},{"name":"block_11_depthwise/depthwise_kernel","shape":[3,3,192,1],"dtype":"float32"},{"name":"block_11_depthwise_BN/gamma","shape":[192],"dtype":"float32"},{"name":"block_11_depthwise_BN/beta","shape":[192],"dtype":"float32"},{"name":"block_11_project/kernel","shape":[1,1,192,32],"dtype":"float32"},{"name":"block_11_project_BN/gamma","shape":[32],"dtype":"float32"},{"name":"block_11_project_BN/beta","shape":[32],"dtype":"float32"},{"name":"block_12_expand/kernel","shape":[1,1,32,192],"dtype":"float32"},{"name":"block_12_expand_BN/gamma","shape":[192],"dtype":"float32"},{"name":"block_12_expand_BN/beta","shape":[192],"dtype":"float32"},{"name":"block_12_depthwise/depthwise_kernel","shape":[3,3,192,1],"dtype":"float32"},{"name":"block_12_depthwise_BN/gamma","shape":[192],"dtype":"float32"},{"name":"block_12_depthwise_BN/beta","shape":[192],"dtype":"float32"},{"name":"block_12_project/kernel","shape":[1,1,192,32],"dtype":"float32"},{"name":"block_12_project_BN/gamma","shape":[32],"dtype":"float32"},{"name":"block_12_project_BN/beta","shape":[32],"dtype":"float32"},{"name":"block_13_expand/kernel","shape":[1,1,32,192],"dtype":"float32"},{"name":"block_13_expand_BN/gamma","shape":[192],"dtype":"float32"},{"name":"block_13_expand_BN/beta","shape":[192],"dtype":"float32"},{"name":"block_13_depthwise/depthwise_kernel","shape":[3,3,192,1],"dtype":"float32"},{"name":"block_13_depthwise_BN/gamma","shape":[192],"dtype":"float32"},{"name":"block_13_depthwise_BN/beta","shape":[192],"dtype":"float32"},{"name":"block_13_project/kernel","shape":[1,1,192,56],"dtype":"float32"},{"name":"block_13_project_BN/gamma","shape":[56],"dtype":"float32"},{"name":"block_13_project_BN/beta","shape":[56],"dtype":"float32"},{"name":"block_14_expand/kernel","shape":[1,1,56,336],"dtype":"float32"},{"name":"block_14_expand_BN/gamma","shape":[336],"dtype":"float32"},{"name":"block_14_expand_BN/beta","shape":[336],"dtype":"float32"},{"name":"block_14_depthwise/depthwise_kernel","shape":[3,3,336,1],"dtype":"float32"},{"name":"block_14_depthwise_BN/gamma","shape":[336],"dtype":"float32"},{"name":"block_14_depthwise_BN/beta","shape":[336],"dtype":"float32"},{"name":"block_14_project/kernel","shape":[1,1,336,56],"dtype":"float32"},{"name":"block_14_project_BN/gamma","shape":[56],"dtype":"float32"},{"name":"block_14_project_BN/beta","shape":[56],"dtype":"float32"},{"name":"block_15_expand/kernel","shape":[1,1,56,336],"dtype":"float32"},{"name":"block_15_expand_BN/gamma","shape":[336],"dtype":"float32"},{"name":"block_15_expand_BN/beta","shape":[336],"dtype":"float32"},{"name":"block_15_depthwise/depthwise_kernel","shape":[3,3,336,1],"dtype":"float32"},{"name":"block_15_depthwise_BN/gamma","shape":[336],"dtype":"float32"},{"name":"block_15_depthwise_BN/beta","shape":[336],"dtype":"float32"},{"name":"block_15_project/kernel","shape":[1,1,336,56],"dtype":"float32"},{"name":"block_15_project_BN/gamma","shape":[56],"dtype":"float32"},{"name":"block_15_project_BN/beta","shape":[56],"dtype":"float32"},{"name":"block_16_expand/kernel","shape":[1,1,56,336],"dtype":"float32"},{"name":"block_16_expand_BN/gamma","shape":[336],"dtype":"float32"},{"name":"block_16_expand_BN/beta","shape":[336],"dtype":"float32"},{"name":"block_16_depthwise/depthwise_kernel","shape":[3,3,336,1],"dtype":"float32"},{"name":"block_16_depthwise_BN/gamma","shape":[336],"dtype":"float32"},{"name":"block_16_depthwise_BN/beta","shape":[336],"dtype":"float32"},{"name":"block_16_project/kernel","shape":[1,1,336,112],"dtype":"float32"},{"name":"block_16_project_BN/gamma","shape":[112],"dtype":"float32"},{"name":"block_16_project_BN/beta","shape":[112],"dtype":"float32"},{"name":"Conv_1/kernel","shape":[1,1,112,1280],"dtype":"float32"},{"name":"Conv_1_bn/gamma","shape":[1280],"dtype":"float32"},{"name":"Conv_1_bn/beta","shape":[1280],"dtype":"float32"},{"name":"dense_Dense7/kernel","shape":[1280,100],"dtype":"float32"},{"name":"dense_Dense7/bias","shape":[100],"dtype":"float32"},{"name":"dense_Dense8/kernel","shape":[100,3],"dtype":"float32"},{"name":"bn_Conv1/moving_mean","shape":[16],"dtype":"float32"},{"name":"bn_Conv1/moving_variance","shape":[16],"dtype":"float32"},{"name":"expanded_conv_depthwise_BN/moving_mean","shape":[16],"dtype":"float32"},{"name":"expanded_conv_depthwise_BN/moving_variance","shape":[16],"dtype":"float32"},{"name":"expanded_conv_project_BN/moving_mean","shape":[8],"dtype":"float32"},{"name":"expanded_conv_project_BN/moving_variance","shape":[8],"dtype":"float32"},{"name":"block_1_expand_BN/moving_mean","shape":[48],"dtype":"float32"},{"name":"block_1_expand_BN/moving_variance","shape":[48],"dtype":"float32"},{"name":"block_1_depthwise_BN/moving_mean","shape":[48],"dtype":"float32"},{"name":"block_1_depthwise_BN/moving_variance","shape":[48],"dtype":"float32"},{"name":"block_1_project_BN/moving_mean","shape":[8],"dtype":"float32"},{"name":"block_1_project_BN/moving_variance","shape":[8],"dtype":"float32"},{"name":"block_2_expand_BN/moving_mean","shape":[48],"dtype":"float32"},{"name":"block_2_expand_BN/moving_variance","shape":[48],"dtype":"float32"},{"name":"block_2_depthwise_BN/moving_mean","shape":[48],"dtype":"float32"},{"name":"block_2_depthwise_BN/moving_variance","shape":[48],"dtype":"float32"},{"name":"block_2_project_BN/moving_mean","shape":[8],"dtype":"float32"},{"name":"block_2_project_BN/moving_variance","shape":[8],"dtype":"float32"},{"name":"block_3_expand_BN/moving_mean","shape":[48],"dtype":"float32"},{"name":"block_3_expand_BN/moving_variance","shape":[48],"dtype":"float32"},{"name":"block_3_depthwise_BN/moving_mean","shape":[48],"dtype":"float32"},{"name":"block_3_depthwise_BN/moving_variance","shape":[48],"dtype":"float32"},{"name":"block_3_project_BN/moving_mean","shape":[16],"dtype":"float32"},{"name":"block_3_project_BN/moving_variance","shape":[16],"dtype":"float32"},{"name":"block_4_expand_BN/moving_mean","shape":[96],"dtype":"float32"},{"name":"block_4_expand_BN/moving_variance","shape":[96],"dtype":"float32"},{"name":"block_4_depthwise_BN/moving_mean","shape":[96],"dtype":"float32"},{"name":"block_4_depthwise_BN/moving_variance","shape":[96],"dtype":"float32"},{"name":"block_4_project_BN/moving_mean","shape":[16],"dtype":"float32"},{"name":"block_4_project_BN/moving_variance","shape":[16],"dtype":"float32"},{"name":"block_5_expand_BN/moving_mean","shape":[96],"dtype":"float32"},{"name":"block_5_expand_BN/moving_variance","shape":[96],"dtype":"float32"},{"name":"block_5_depthwise_BN/moving_mean","shape":[96],"dtype":"float32"},{"name":"block_5_depthwise_BN/moving_variance","shape":[96],"dtype":"float32"},{"name":"block_5_project_BN/moving_mean","shape":[16],"dtype":"float32"},{"name":"block_5_project_BN/moving_variance","shape":[16],"dtype":"float32"},{"name":"block_6_expand_BN/moving_mean","shape":[96],"dtype":"float32"},{"name":"block_6_expand_BN/moving_variance","shape":[96],"dtype":"float32"},{"name":"block_6_depthwise_BN/moving_mean","shape":[96],"dtype":"float32"},{"name":"block_6_depthwise_BN/moving_variance","shape":[96],"dtype":"float32"},{"name":"block_6_project_BN/moving_mean","shape":[24],"dtype":"float32"},{"name":"block_6_project_BN/moving_variance","shape":[24],"dtype":"float32"},{"name":"block_7_expand_BN/moving_mean","shape":[144],"dtype":"float32"},{"name":"block_7_expand_BN/moving_variance","shape":[144],"dtype":"float32"},{"name":"block_7_depthwise_BN/moving_mean","shape":[144],"dtype":"float32"},{"name":"block_7_depthwise_BN/moving_variance","shape":[144],"dtype":"float32"},{"name":"block_7_project_BN/moving_mean","shape":[24],"dtype":"float32"},{"name":"block_7_project_BN/moving_variance","shape":[24],"dtype":"float32"},{"name":"block_8_expand_BN/moving_mean","shape":[144],"dtype":"float32"},{"name":"block_8_expand_BN/moving_variance","shape":[144],"dtype":"float32"},{"name":"block_8_depthwise_BN/moving_mean","shape":[144],"dtype":"float32"},{"name":"block_8_depthwise_BN/moving_variance","shape":[144],"dtype":"float32"},{"name":"block_8_project_BN/moving_mean","shape":[24],"dtype":"float32"},{"name":"block_8_project_BN/moving_variance","shape":[24],"dtype":"float32"},{"name":"block_9_expand_BN/moving_mean","shape":[144],"dtype":"float32"},{"name":"block_9_expand_BN/moving_variance","shape":[144],"dtype":"float32"},{"name":"block_9_depthwise_BN/moving_mean","shape":[144],"dtype":"float32"},{"name":"block_9_depthwise_BN/moving_variance","shape":[144],"dtype":"float32"},{"name":"block_9_project_BN/moving_mean","shape":[24],"dtype":"float32"},{"name":"block_9_project_BN/moving_variance","shape":[24],"dtype":"float32"},{"name":"block_10_expand_BN/moving_mean","shape":[144],"dtype":"float32"},{"name":"block_10_expand_BN/moving_variance","shape":[144],"dtype":"float32"},{"name":"block_10_depthwise_BN/moving_mean","shape":[144],"dtype":"float32"},{"name":"block_10_depthwise_BN/moving_variance","shape":[144],"dtype":"float32"},{"name":"block_10_project_BN/moving_mean","shape":[32],"dtype":"float32"},{"name":"block_10_project_BN/moving_variance","shape":[32],"dtype":"float32"},{"name":"block_11_expand_BN/moving_mean","shape":[192],"dtype":"float32"},{"name":"block_11_expand_BN/moving_variance","shape":[192],"dtype":"float32"},{"name":"block_11_depthwise_BN/moving_mean","shape":[192],"dtype":"float32"},{"name":"block_11_depthwise_BN/moving_variance","shape":[192],"dtype":"float32"},{"name":"block_11_project_BN/moving_mean","shape":[32],"dtype":"float32"},{"name":"block_11_project_BN/moving_variance","shape":[32],"dtype":"float32"},{"name":"block_12_expand_BN/moving_mean","shape":[192],"dtype":"float32"},{"name":"block_12_expand_BN/moving_variance","shape":[192],"dtype":"float32"},{"name":"block_12_depthwise_BN/moving_mean","shape":[192],"dtype":"float32"},{"name":"block_12_depthwise_BN/moving_variance","shape":[192],"dtype":"float32"},{"name":"block_12_project_BN/moving_mean","shape":[32],"dtype":"float32"},{"name":"block_12_project_BN/moving_variance","shape":[32],"dtype":"float32"},{"name":"block_13_expand_BN/moving_mean","shape":[192],"dtype":"float32"},{"name":"block_13_expand_BN/moving_variance","shape":[192],"dtype":"float32"},{"name":"block_13_depthwise_BN/moving_mean","shape":[192],"dtype":"float32"},{"name":"block_13_depthwise_BN/moving_variance","shape":[192],"dtype":"float32"},{"name":"block_13_project_BN/moving_mean","shape":[56],"dtype":"float32"},{"name":"block_13_project_BN/moving_variance","shape":[56],"dtype":"float32"},{"name":"block_14_expand_BN/moving_mean","shape":[336],"dtype":"float32"},{"name":"block_14_expand_BN/moving_variance","shape":[336],"dtype":"float32"},{"name":"block_14_depthwise_BN/moving_mean","shape":[336],"dtype":"float32"},{"name":"block_14_depthwise_BN/moving_variance","shape":[336],"dtype":"float32"},{"name":"block_14_project_BN/moving_mean","shape":[56],"dtype":"float32"},{"name":"block_14_project_BN/moving_variance","shape":[56],"dtype":"float32"},{"name":"block_15_expand_BN/moving_mean","shape":[336],"dtype":"float32"},{"name":"block_15_expand_BN/moving_variance","shape":[336],"dtype":"float32"},{"name":"block_15_depthwise_BN/moving_mean","shape":[336],"dtype":"float32"},{"name":"block_15_depthwise_BN/moving_variance","shape":[336],"dtype":"float32"},{"name":"block_15_project_BN/moving_mean","shape":[56],"dtype":"float32"},{"name":"block_15_project_BN/moving_variance","shape":[56],"dtype":"float32"},{"name":"block_16_expand_BN/moving_mean","shape":[336],"dtype":"float32"},{"name":"block_16_expand_BN/moving_variance","shape":[336],"dtype":"float32"},{"name":"block_16_depthwise_BN/moving_mean","shape":[336],"dtype":"float32"},{"name":"block_16_depthwise_BN/moving_variance","shape":[336],"dtype":"float32"},{"name":"block_16_project_BN/moving_mean","shape":[112],"dtype":"float32"},{"name":"block_16_project_BN/moving_variance","shape":[112],"dtype":"float32"},{"name":"Conv_1_bn/moving_mean","shape":[1280],"dtype":"float32"},{"name":"Conv_1_bn/moving_variance","shape":[1280],"dtype":"float32"}]}]}
|
|
Binary file
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"tfjsVersion":"1.3.1","tmVersion":"2.4.5","packageVersion":"0.8.4-alpha2","packageName":"@teachablemachine/image","timeStamp":"2022-10-27T14:51:45.313Z","userMetadata":{},"modelName":"tm-my-image-model","labels":["full","tilted","pattern"],"imageSize":224}
|