diff --git a/app.js b/app.js
index e4bc139..8958abf 100644
--- a/app.js
+++ b/app.js
@@ -1,8 +1,18 @@
import updateManager from './common/updateManager';
+import * as paddlejs from '@paddlejs/paddlejs-core';
+import '@paddlejs/paddlejs-backend-webgl';
+
+
+// const paddlejs = require('paddlejs');
+const plugin = requirePlugin("paddlejs-plugin");
+
+let pdjs;
App({
- onLaunch: function () {},
+ onLaunch: function () {
+ plugin.register(paddlejs, wx);
+ },
onShow: function () {
updateManager();
},
-});
+});
\ No newline at end of file
diff --git a/app.json b/app.json
index 9ad5d2d..ca88026 100644
--- a/app.json
+++ b/app.json
@@ -9,7 +9,8 @@
"pages/user/index",
"pages/user/session-list/index",
"pages/user/edit/index",
- "pages/info/content-page/index"
+ "pages/info/content-page/index",
+ "pages/home/camera/index"
],
"tabBar": {
"custom": true,
@@ -49,5 +50,11 @@
"scope.userLocation": {
"desc": "你的位置信息将用于小程序位置接口的效果展示"
}
+ },
+ "plugins": {
+ "paddlejs-plugin": {
+ "version": "2.0.1",
+ "provider": "wx7138a7bb793608c3"
+ }
}
}
\ No newline at end of file
diff --git a/package.json b/package.json
index 2b8eaf1..863026c 100644
--- a/package.json
+++ b/package.json
@@ -21,8 +21,10 @@
},
"dependencies": {
"dayjs": "^1.9.3",
- "tdesign-miniprogram": "^0.24.0",
- "tslib": "^1.11.1"
+ "tdesign-miniprogram": "1.0.1",
+ "tslib": "^1.11.1",
+ "@paddlejs/paddlejs-backend-webgl": "^1.0.7",
+ "@paddlejs/paddlejs-core": "^2.0.7"
},
"devDependencies": {
"eslint": "^6.8.0",
@@ -33,4 +35,4 @@
"lint-staged": "^10.0.8",
"prettier": "^2.1.2"
}
-}
+}
\ No newline at end of file
diff --git a/pages/home/camera/index.js b/pages/home/camera/index.js
new file mode 100644
index 0000000..a1fb089
--- /dev/null
+++ b/pages/home/camera/index.js
@@ -0,0 +1,207 @@
+// pages/home/camera/index.js
+import {
+ paddlejs
+} from '@paddlejs/paddlejs-core';
+import {
+ Paddlejs
+} from '../../../services/_utils/ocr';
+
+Page({
+
+ /**
+ * 页面的初始数据
+ */
+ data: {
+ isAuth: false,
+ src: ''
+ },
+
+ /**
+ * 生命周期函数--监听页面加载
+ */
+ onLoad(options) {
+ const _this = this
+ wx.getSetting({
+ success: res => {
+ if (res.authSetting['scope.camera']) {
+ // 用户已经授权
+ _this.setData({
+ isAuth: true
+ })
+ } else {
+ // 用户还没有授权,向用户发起授权请求
+ wx.authorize({
+ scope: 'scope.camera',
+ success() { // 用户同意授权
+ _this.setData({
+ isAuth: true
+ })
+ },
+ fail() { // 用户不同意授权
+ _this.openSetting().then(res => {
+ _this.setData({
+ isAuth: true
+ })
+ })
+ }
+ })
+ }
+ },
+ fail: res => {
+ console.log('获取用户授权信息失败')
+ }
+ })
+ },
+
+ openSetting() {
+ const _this = this
+ let promise = new Promise((resolve, reject) => {
+ wx.showModal({
+ title: '授权',
+ content: '请先授权获取摄像头权限',
+ success(res) {
+ if (res.confirm) {
+ wx.openSetting({
+ success(res) {
+ if (res.authSetting['scope.camera']) { // 用户打开了授权开关
+ resolve(true)
+ } else { // 用户没有打开授权开关, 继续打开设置页面
+ _this.openSetting().then(res => {
+ resolve(true)
+ })
+ }
+ },
+ fail(res) {
+ console.log(res)
+ }
+ })
+ } else if (res.cancel) {
+ _this.openSetting().then(res => {
+ resolve(true)
+ })
+ }
+ }
+ })
+ })
+ return promise;
+ },
+
+ takePhoto() {
+ console.log("开始识别图片");
+ const ctx = wx.createCameraContext()
+ ctx.takePhoto({
+ quality: 'high',
+ success: (res) => {
+ console.log(res);
+ this.setData({
+ src: res.tempImagePath
+ })
+ // Paddlejs.predict(res.tempImagePath).then(res => {
+ // console.log(res);
+ // })
+ var pic0 = new Image();
+ pic0.src = res.tempImagePath;
+ const this_ = this
+ pic0.onload = () => {
+ var img0 = tf.browser.fromPixels(pic0);
+ this_.predict(img0);
+ }
+
+ // 获取到图片的像素信息
+ // wx.getImageInfo({
+ // src: res.tempImagePath,
+ // success: (imgInfo) => {
+ // const {
+ // width,
+ // height,
+ // path
+ // } = imgInfo;
+
+ // const canvasId = 'myCanvas';
+ // const me = this;
+ // // 获取页面中的canvas上下文,tips:canvas设置的宽高要大于选择的图片宽高,canvas位置可以绝对定位到视口不可以见
+ // let ctx = canvas.getContext(canvasId);
+ // ctx.drawImage(path, 0, 0, width, height);
+ // ctx.draw(false, () => {
+ // // API 1.9.0 获取图像数据
+ // wx.canvasGetImageData({
+ // canvasId: canvasId,
+ // x: 0,
+ // y: 0,
+ // width: width,
+ // height: height,
+ // success(res) {
+ // console.log(res);
+ // me.predict({
+ // data: res.data,
+ // width: width,
+ // height: height
+ // });
+ // }
+ // });
+ // });
+ // }
+ // });
+ }
+ })
+ },
+
+ predict(imgObj) {
+ // 4. 在线预测计算
+ const me = this;
+ Paddlejs.predict(imgObj, function (data) {
+ // 5. 对预测结果进行后处理
+ const maxItem = pdjs.utils.getMaxItem(data);
+ console.log(maxItem);
+ });
+ },
+
+ /**
+ * 生命周期函数--监听页面初次渲染完成
+ */
+ onReady() {
+
+ },
+
+ /**
+ * 生命周期函数--监听页面显示
+ */
+ onShow() {
+
+ },
+
+ /**
+ * 生命周期函数--监听页面隐藏
+ */
+ onHide() {
+
+ },
+
+ /**
+ * 生命周期函数--监听页面卸载
+ */
+ onUnload() {
+
+ },
+
+ /**
+ * 页面相关事件处理函数--监听用户下拉动作
+ */
+ onPullDownRefresh() {
+
+ },
+
+ /**
+ * 页面上拉触底事件的处理函数
+ */
+ onReachBottom() {
+
+ },
+
+ /**
+ * 用户点击右上角分享
+ */
+ onShareAppMessage() {
+
+ }
+})
\ No newline at end of file
diff --git a/pages/home/camera/index.json b/pages/home/camera/index.json
new file mode 100644
index 0000000..8835af0
--- /dev/null
+++ b/pages/home/camera/index.json
@@ -0,0 +1,3 @@
+{
+ "usingComponents": {}
+}
\ No newline at end of file
diff --git a/pages/home/camera/index.wxml b/pages/home/camera/index.wxml
new file mode 100644
index 0000000..6db6e0f
--- /dev/null
+++ b/pages/home/camera/index.wxml
@@ -0,0 +1,6 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/pages/home/camera/index.wxss b/pages/home/camera/index.wxss
new file mode 100644
index 0000000..e7a5ef2
--- /dev/null
+++ b/pages/home/camera/index.wxss
@@ -0,0 +1,29 @@
+/* pages/home/camera/index.wxss */
+.camera {
+ width: 430rpx;
+ height: 430rpx;
+ border-radius: 50%;
+ margin: 20px auto 0;
+ position: relative;
+}
+
+.camera image {
+ position: absolute;
+ width: 100%;
+ height: 100%;
+ z-index: 10;
+}
+
+.camera camera {
+ width: 428rpx;
+ height: 428rpx;
+}
+
+button.takePhoto:not([size='mini']) {
+ position: fixed;
+ bottom: 0;
+ left: 0;
+ width: 100vw;
+ height: 90rpx;
+ border-radius: 0;
+}
\ No newline at end of file
diff --git a/pages/home/home.js b/pages/home/home.js
index 81ad425..b011a7f 100644
--- a/pages/home/home.js
+++ b/pages/home/home.js
@@ -95,6 +95,13 @@ Page({
// 上传图片
uploadPicture() {
+ // 跳转扫描
+ wx.navigateTo({
+ url: `/pages/home/camera/index`,
+ });
+ return
+
+ // 打开摄像头
wx.chooseMedia({
count: 1,
mediaType: ['image'],
@@ -150,5 +157,26 @@ Page({
wx.navigateTo({
url: `/pages/home/session/session?sessionId=${sessionId}`,
});
+ },
+
+ onShareAppMessage() {
+ var shareObj = {
+ title: "食品配料分析", // 默认是小程序的名称(可以写slogan等)
+ path: '/pages/home/home', // 默认是当前页面,必须是以‘/'开头的完整路径
+ imageUrl: 'https://webplus-cn-hangzhou-s-603871eef968dd14ced82ed5.oss-cn-hangzhou.aliyuncs.com/hextech/static/Hammer_and_Keyboard_2-svg.png', //自定义图片路径,可以是本地文件路径、代码包文件路径或者网络图片路径,支持PNG及JPG,不传入 imageUrl 则使用默认截图。显示图片长宽比是 5:4
+ success: function (res) {
+ // 转发成功之后的回调
+ if (res.errMsg == 'shareAppMessage:ok') {}
+ },
+ fail: function () {
+ // 转发失败之后的回调
+ if (res.errMsg == 'shareAppMessage:fail cancel') {
+ // 用户取消转发
+ } else if (res.errMsg == 'shareAppMessage:fail') {
+ // 转发失败,其中 detail message 为详细失败信息
+ }
+ }
+ }
+ return shareObj;
}
});
\ No newline at end of file
diff --git a/pages/home/home.wxss b/pages/home/home.wxss
index 0619562..edcb7cf 100644
--- a/pages/home/home.wxss
+++ b/pages/home/home.wxss
@@ -146,7 +146,10 @@ page {
color: #b9b9b9 !important;
}
+.content {}
+
.dialog-content {
+ min-width: 100%;
display: flex;
justify-content: center;
flex-direction: column;
diff --git a/pages/home/session/session.wxml b/pages/home/session/session.wxml
index e2dd8f9..e9218d4 100644
--- a/pages/home/session/session.wxml
+++ b/pages/home/session/session.wxml
@@ -55,7 +55,7 @@
{{pageData.standard}}
未识别到数据
- {{pageData.standardInfo.type}}
+ {{pageData.standardInfo.type}}
标准查询中…
修正
@@ -64,7 +64,7 @@
生产许可证:
- {{item}}
+ {{item}}
未识别到数据
diff --git a/pages/info/content-page/index.js b/pages/info/content-page/index.js
index fac2b60..e68b2c1 100644
--- a/pages/info/content-page/index.js
+++ b/pages/info/content-page/index.js
@@ -40,6 +40,7 @@ Page({
console.log(response.content);
this.setData({
pageData: response.content,
+ contentText: response.content.content
})
}
})
diff --git a/pages/info/content-page/index.wxml b/pages/info/content-page/index.wxml
index c830e0b..4d0b17e 100644
--- a/pages/info/content-page/index.wxml
+++ b/pages/info/content-page/index.wxml
@@ -11,6 +11,6 @@
发表
-
+
\ No newline at end of file
diff --git a/pages/user/session-list/index.wxss b/pages/user/session-list/index.wxss
index 9f26608..7b388fe 100644
--- a/pages/user/session-list/index.wxss
+++ b/pages/user/session-list/index.wxss
@@ -53,6 +53,7 @@
line-height: 1.25rem;
white-space: nowrap;
overflow: hidden;
+ max-width: 200px;
}
.history-right {
diff --git a/resources/paddle.json b/resources/paddle.json
new file mode 100644
index 0000000..6561dea
--- /dev/null
+++ b/resources/paddle.json
@@ -0,0 +1,14137 @@
+{
+ "chunkNum": 1,
+ "dataLayout": "nchw",
+ "feedShape": {
+ "fc": 3,
+ "fh": 1,
+ "fw": 1
+ },
+ "ops": [
+ {
+ "attrs": {
+ "with_quant_attr": false
+ },
+ "inputs": {
+ "X": [
+ "feed"
+ ]
+ },
+ "outputs": {
+ "Out": [
+ "image"
+ ]
+ },
+ "type": "feed"
+ },
+ {
+ "attrs": {
+ "Scale_in": 1.0,
+ "Scale_in_eltwise": 1.0,
+ "Scale_out": 1.0,
+ "Scale_weights": [
+ 1.0
+ ],
+ "dilations": [
+ 1,
+ 1
+ ],
+ "exhaustive_search": false,
+ "force_fp32_output": false,
+ "fuse_activation": "",
+ "fuse_alpha": 0.0,
+ "fuse_beta": 0.0,
+ "fuse_brelu": false,
+ "fuse_brelu_threshold": 6.0,
+ "fuse_relu": false,
+ "fuse_relu_before_depthwise_conv": false,
+ "fuse_residual_connection": false,
+ "groups": 1,
+ "padding_algorithm": "EXPLICIT",
+ "paddings": [
+ 1,
+ 1
+ ],
+ "strides": [
+ 2,
+ 2
+ ],
+ "use_addto": false,
+ "with_quant_attr": false
+ },
+ "inputs": {
+ "Filter": [
+ "conv2d_0.w_0"
+ ],
+ "Input": [
+ "image"
+ ]
+ },
+ "outputs": {
+ "Out": [
+ "conv2d_211.tmp_0"
+ ]
+ },
+ "type": "conv2d"
+ },
+ {
+ "attrs": {
+ "data_layout": "NCHW",
+ "epsilon": 9.999999747378752e-06,
+ "fuse_with_relu": false,
+ "momentum": 0.8999999761581421,
+ "trainable_statistics": false,
+ "use_global_stats": false,
+ "with_quant_attr": false
+ },
+ "inputs": {
+ "Bias": [
+ "batch_norm_0.b_0"
+ ],
+ "Mean": [
+ "batch_norm_0.w_1"
+ ],
+ "Scale": [
+ "batch_norm_0.w_0"
+ ],
+ "Variance": [
+ "batch_norm_0.w_2"
+ ],
+ "X": [
+ "conv2d_211.tmp_0"
+ ]
+ },
+ "outputs": {
+ "MeanOut": [
+ "batch_norm_0.w_1"
+ ],
+ "Out": [
+ "batch_norm_0.tmp_3"
+ ],
+ "SavedMean": [
+ "batch_norm_0.tmp_0"
+ ],
+ "SavedVariance": [
+ "batch_norm_0.tmp_1"
+ ],
+ "VarianceOut": [
+ "batch_norm_0.w_2"
+ ]
+ },
+ "type": "batchnorm"
+ },
+ {
+ "attrs": {
+ "offset": 3.0,
+ "scale": 6.0,
+ "threshold": 6.0,
+ "with_quant_attr": false
+ },
+ "inputs": {
+ "X": [
+ "batch_norm_0.tmp_3"
+ ]
+ },
+ "outputs": {
+ "Out": [
+ "hardswish_0.tmp_0"
+ ]
+ },
+ "type": "hard_swish"
+ },
+ {
+ "attrs": {
+ "Scale_in": 1.0,
+ "Scale_in_eltwise": 1.0,
+ "Scale_out": 1.0,
+ "Scale_weights": [
+ 1.0
+ ],
+ "dilations": [
+ 1,
+ 1
+ ],
+ "exhaustive_search": false,
+ "force_fp32_output": false,
+ "fuse_activation": "",
+ "fuse_alpha": 0.0,
+ "fuse_beta": 0.0,
+ "fuse_brelu": false,
+ "fuse_brelu_threshold": 6.0,
+ "fuse_relu": false,
+ "fuse_relu_before_depthwise_conv": false,
+ "fuse_residual_connection": false,
+ "groups": 1,
+ "padding_algorithm": "EXPLICIT",
+ "paddings": [
+ 0,
+ 0
+ ],
+ "strides": [
+ 1,
+ 1
+ ],
+ "use_addto": false,
+ "with_quant_attr": false
+ },
+ "inputs": {
+ "Filter": [
+ "conv2d_1.w_0"
+ ],
+ "Input": [
+ "hardswish_0.tmp_0"
+ ]
+ },
+ "outputs": {
+ "Out": [
+ "conv2d_212.tmp_0"
+ ]
+ },
+ "type": "conv2d"
+ },
+ {
+ "attrs": {
+ "data_layout": "NCHW",
+ "epsilon": 9.999999747378752e-06,
+ "fuse_with_relu": false,
+ "momentum": 0.8999999761581421,
+ "trainable_statistics": false,
+ "use_global_stats": false,
+ "with_quant_attr": false
+ },
+ "inputs": {
+ "Bias": [
+ "batch_norm_1.b_0"
+ ],
+ "Mean": [
+ "batch_norm_1.w_1"
+ ],
+ "Scale": [
+ "batch_norm_1.w_0"
+ ],
+ "Variance": [
+ "batch_norm_1.w_2"
+ ],
+ "X": [
+ "conv2d_212.tmp_0"
+ ]
+ },
+ "outputs": {
+ "MeanOut": [
+ "batch_norm_1.w_1"
+ ],
+ "Out": [
+ "batch_norm_1.tmp_3"
+ ],
+ "SavedMean": [
+ "batch_norm_1.tmp_0"
+ ],
+ "SavedVariance": [
+ "batch_norm_1.tmp_1"
+ ],
+ "VarianceOut": [
+ "batch_norm_1.w_2"
+ ]
+ },
+ "type": "batchnorm"
+ },
+ {
+ "attrs": {
+ "with_quant_attr": false
+ },
+ "inputs": {
+ "X": [
+ "batch_norm_1.tmp_3"
+ ]
+ },
+ "outputs": {
+ "Out": [
+ "relu_0.tmp_0"
+ ]
+ },
+ "type": "relu"
+ },
+ {
+ "attrs": {
+ "Scale_in": 1.0,
+ "Scale_in_eltwise": 1.0,
+ "Scale_out": 1.0,
+ "Scale_weights": [
+ 1.0
+ ],
+ "dilations": [
+ 1,
+ 1
+ ],
+ "exhaustive_search": false,
+ "force_fp32_output": false,
+ "fuse_activation": "",
+ "fuse_alpha": 0.0,
+ "fuse_beta": 0.0,
+ "fuse_brelu": false,
+ "fuse_brelu_threshold": 6.0,
+ "fuse_relu": false,
+ "fuse_relu_before_depthwise_conv": false,
+ "fuse_residual_connection": false,
+ "groups": 8,
+ "padding_algorithm": "EXPLICIT",
+ "paddings": [
+ 1,
+ 1
+ ],
+ "strides": [
+ 1,
+ 1
+ ],
+ "use_addto": false,
+ "with_quant_attr": false
+ },
+ "inputs": {
+ "Filter": [
+ "conv2d_2.w_0"
+ ],
+ "Input": [
+ "relu_0.tmp_0"
+ ]
+ },
+ "outputs": {
+ "Out": [
+ "depthwise_conv2d_0.tmp_0"
+ ]
+ },
+ "type": "depthwise_conv2d"
+ },
+ {
+ "attrs": {
+ "data_layout": "NCHW",
+ "epsilon": 9.999999747378752e-06,
+ "fuse_with_relu": false,
+ "momentum": 0.8999999761581421,
+ "trainable_statistics": false,
+ "use_global_stats": false,
+ "with_quant_attr": false
+ },
+ "inputs": {
+ "Bias": [
+ "batch_norm_2.b_0"
+ ],
+ "Mean": [
+ "batch_norm_2.w_1"
+ ],
+ "Scale": [
+ "batch_norm_2.w_0"
+ ],
+ "Variance": [
+ "batch_norm_2.w_2"
+ ],
+ "X": [
+ "depthwise_conv2d_0.tmp_0"
+ ]
+ },
+ "outputs": {
+ "MeanOut": [
+ "batch_norm_2.w_1"
+ ],
+ "Out": [
+ "batch_norm_2.tmp_3"
+ ],
+ "SavedMean": [
+ "batch_norm_2.tmp_0"
+ ],
+ "SavedVariance": [
+ "batch_norm_2.tmp_1"
+ ],
+ "VarianceOut": [
+ "batch_norm_2.w_2"
+ ]
+ },
+ "type": "batchnorm"
+ },
+ {
+ "attrs": {
+ "with_quant_attr": false
+ },
+ "inputs": {
+ "X": [
+ "batch_norm_2.tmp_3"
+ ]
+ },
+ "outputs": {
+ "Out": [
+ "relu_1.tmp_0"
+ ]
+ },
+ "type": "relu"
+ },
+ {
+ "attrs": {
+ "Scale_in": 1.0,
+ "Scale_in_eltwise": 1.0,
+ "Scale_out": 1.0,
+ "Scale_weights": [
+ 1.0
+ ],
+ "dilations": [
+ 1,
+ 1
+ ],
+ "exhaustive_search": false,
+ "force_fp32_output": false,
+ "fuse_activation": "",
+ "fuse_alpha": 0.0,
+ "fuse_beta": 0.0,
+ "fuse_brelu": false,
+ "fuse_brelu_threshold": 6.0,
+ "fuse_relu": false,
+ "fuse_relu_before_depthwise_conv": false,
+ "fuse_residual_connection": false,
+ "groups": 1,
+ "padding_algorithm": "EXPLICIT",
+ "paddings": [
+ 0,
+ 0
+ ],
+ "strides": [
+ 1,
+ 1
+ ],
+ "use_addto": false,
+ "with_quant_attr": false
+ },
+ "inputs": {
+ "Filter": [
+ "conv2d_3.w_0"
+ ],
+ "Input": [
+ "relu_1.tmp_0"
+ ]
+ },
+ "outputs": {
+ "Out": [
+ "conv2d_213.tmp_0"
+ ]
+ },
+ "type": "conv2d"
+ },
+ {
+ "attrs": {
+ "data_layout": "NCHW",
+ "epsilon": 9.999999747378752e-06,
+ "fuse_with_relu": false,
+ "momentum": 0.8999999761581421,
+ "trainable_statistics": false,
+ "use_global_stats": false,
+ "with_quant_attr": false
+ },
+ "inputs": {
+ "Bias": [
+ "batch_norm_3.b_0"
+ ],
+ "Mean": [
+ "batch_norm_3.w_1"
+ ],
+ "Scale": [
+ "batch_norm_3.w_0"
+ ],
+ "Variance": [
+ "batch_norm_3.w_2"
+ ],
+ "X": [
+ "conv2d_213.tmp_0"
+ ]
+ },
+ "outputs": {
+ "MeanOut": [
+ "batch_norm_3.w_1"
+ ],
+ "Out": [
+ "batch_norm_3.tmp_3"
+ ],
+ "SavedMean": [
+ "batch_norm_3.tmp_0"
+ ],
+ "SavedVariance": [
+ "batch_norm_3.tmp_1"
+ ],
+ "VarianceOut": [
+ "batch_norm_3.w_2"
+ ]
+ },
+ "type": "batchnorm"
+ },
+ {
+ "attrs": {
+ "Scale_out": 1.0,
+ "Scale_x": 1.0,
+ "Scale_y": 1.0,
+ "axis": -1,
+ "with_quant_attr": false,
+ "x_data_format": "",
+ "y_data_format": ""
+ },
+ "inputs": {
+ "X": [
+ "hardswish_0.tmp_0"
+ ],
+ "Y": [
+ "batch_norm_3.tmp_3"
+ ]
+ },
+ "outputs": {
+ "Out": [
+ "elementwise_add_0"
+ ]
+ },
+ "type": "elementwise_add"
+ },
+ {
+ "attrs": {
+ "Scale_in": 1.0,
+ "Scale_in_eltwise": 1.0,
+ "Scale_out": 1.0,
+ "Scale_weights": [
+ 1.0
+ ],
+ "dilations": [
+ 1,
+ 1
+ ],
+ "exhaustive_search": false,
+ "force_fp32_output": false,
+ "fuse_activation": "",
+ "fuse_alpha": 0.0,
+ "fuse_beta": 0.0,
+ "fuse_brelu": false,
+ "fuse_brelu_threshold": 6.0,
+ "fuse_relu": false,
+ "fuse_relu_before_depthwise_conv": false,
+ "fuse_residual_connection": false,
+ "groups": 1,
+ "padding_algorithm": "EXPLICIT",
+ "paddings": [
+ 0,
+ 0
+ ],
+ "strides": [
+ 1,
+ 1
+ ],
+ "use_addto": false,
+ "with_quant_attr": false
+ },
+ "inputs": {
+ "Filter": [
+ "conv2d_4.w_0"
+ ],
+ "Input": [
+ "elementwise_add_0"
+ ]
+ },
+ "outputs": {
+ "Out": [
+ "conv2d_214.tmp_0"
+ ]
+ },
+ "type": "conv2d"
+ },
+ {
+ "attrs": {
+ "data_layout": "NCHW",
+ "epsilon": 9.999999747378752e-06,
+ "fuse_with_relu": false,
+ "momentum": 0.8999999761581421,
+ "trainable_statistics": false,
+ "use_global_stats": false,
+ "with_quant_attr": false
+ },
+ "inputs": {
+ "Bias": [
+ "batch_norm_4.b_0"
+ ],
+ "Mean": [
+ "batch_norm_4.w_1"
+ ],
+ "Scale": [
+ "batch_norm_4.w_0"
+ ],
+ "Variance": [
+ "batch_norm_4.w_2"
+ ],
+ "X": [
+ "conv2d_214.tmp_0"
+ ]
+ },
+ "outputs": {
+ "MeanOut": [
+ "batch_norm_4.w_1"
+ ],
+ "Out": [
+ "batch_norm_4.tmp_3"
+ ],
+ "SavedMean": [
+ "batch_norm_4.tmp_0"
+ ],
+ "SavedVariance": [
+ "batch_norm_4.tmp_1"
+ ],
+ "VarianceOut": [
+ "batch_norm_4.w_2"
+ ]
+ },
+ "type": "batchnorm"
+ },
+ {
+ "attrs": {
+ "with_quant_attr": false
+ },
+ "inputs": {
+ "X": [
+ "batch_norm_4.tmp_3"
+ ]
+ },
+ "outputs": {
+ "Out": [
+ "relu_2.tmp_0"
+ ]
+ },
+ "type": "relu"
+ },
+ {
+ "attrs": {
+ "Scale_in": 1.0,
+ "Scale_in_eltwise": 1.0,
+ "Scale_out": 1.0,
+ "Scale_weights": [
+ 1.0
+ ],
+ "dilations": [
+ 1,
+ 1
+ ],
+ "exhaustive_search": false,
+ "force_fp32_output": false,
+ "fuse_activation": "",
+ "fuse_alpha": 0.0,
+ "fuse_beta": 0.0,
+ "fuse_brelu": false,
+ "fuse_brelu_threshold": 6.0,
+ "fuse_relu": false,
+ "fuse_relu_before_depthwise_conv": false,
+ "fuse_residual_connection": false,
+ "groups": 32,
+ "padding_algorithm": "EXPLICIT",
+ "paddings": [
+ 1,
+ 1
+ ],
+ "strides": [
+ 2,
+ 2
+ ],
+ "use_addto": false,
+ "with_quant_attr": false
+ },
+ "inputs": {
+ "Filter": [
+ "conv2d_5.w_0"
+ ],
+ "Input": [
+ "relu_2.tmp_0"
+ ]
+ },
+ "outputs": {
+ "Out": [
+ "depthwise_conv2d_1.tmp_0"
+ ]
+ },
+ "type": "depthwise_conv2d"
+ },
+ {
+ "attrs": {
+ "data_layout": "NCHW",
+ "epsilon": 9.999999747378752e-06,
+ "fuse_with_relu": false,
+ "momentum": 0.8999999761581421,
+ "trainable_statistics": false,
+ "use_global_stats": false,
+ "with_quant_attr": false
+ },
+ "inputs": {
+ "Bias": [
+ "batch_norm_5.b_0"
+ ],
+ "Mean": [
+ "batch_norm_5.w_1"
+ ],
+ "Scale": [
+ "batch_norm_5.w_0"
+ ],
+ "Variance": [
+ "batch_norm_5.w_2"
+ ],
+ "X": [
+ "depthwise_conv2d_1.tmp_0"
+ ]
+ },
+ "outputs": {
+ "MeanOut": [
+ "batch_norm_5.w_1"
+ ],
+ "Out": [
+ "batch_norm_5.tmp_3"
+ ],
+ "SavedMean": [
+ "batch_norm_5.tmp_0"
+ ],
+ "SavedVariance": [
+ "batch_norm_5.tmp_1"
+ ],
+ "VarianceOut": [
+ "batch_norm_5.w_2"
+ ]
+ },
+ "type": "batchnorm"
+ },
+ {
+ "attrs": {
+ "with_quant_attr": false
+ },
+ "inputs": {
+ "X": [
+ "batch_norm_5.tmp_3"
+ ]
+ },
+ "outputs": {
+ "Out": [
+ "relu_3.tmp_0"
+ ]
+ },
+ "type": "relu"
+ },
+ {
+ "attrs": {
+ "Scale_in": 1.0,
+ "Scale_in_eltwise": 1.0,
+ "Scale_out": 1.0,
+ "Scale_weights": [
+ 1.0
+ ],
+ "dilations": [
+ 1,
+ 1
+ ],
+ "exhaustive_search": false,
+ "force_fp32_output": false,
+ "fuse_activation": "",
+ "fuse_alpha": 0.0,
+ "fuse_beta": 0.0,
+ "fuse_brelu": false,
+ "fuse_brelu_threshold": 6.0,
+ "fuse_relu": false,
+ "fuse_relu_before_depthwise_conv": false,
+ "fuse_residual_connection": false,
+ "groups": 1,
+ "padding_algorithm": "EXPLICIT",
+ "paddings": [
+ 0,
+ 0
+ ],
+ "strides": [
+ 1,
+ 1
+ ],
+ "use_addto": false,
+ "with_quant_attr": false
+ },
+ "inputs": {
+ "Filter": [
+ "conv2d_6.w_0"
+ ],
+ "Input": [
+ "relu_3.tmp_0"
+ ]
+ },
+ "outputs": {
+ "Out": [
+ "conv2d_215.tmp_0"
+ ]
+ },
+ "type": "conv2d"
+ },
+ {
+ "attrs": {
+ "data_layout": "NCHW",
+ "epsilon": 9.999999747378752e-06,
+ "fuse_with_relu": false,
+ "momentum": 0.8999999761581421,
+ "trainable_statistics": false,
+ "use_global_stats": false,
+ "with_quant_attr": false
+ },
+ "inputs": {
+ "Bias": [
+ "batch_norm_6.b_0"
+ ],
+ "Mean": [
+ "batch_norm_6.w_1"
+ ],
+ "Scale": [
+ "batch_norm_6.w_0"
+ ],
+ "Variance": [
+ "batch_norm_6.w_2"
+ ],
+ "X": [
+ "conv2d_215.tmp_0"
+ ]
+ },
+ "outputs": {
+ "MeanOut": [
+ "batch_norm_6.w_1"
+ ],
+ "Out": [
+ "batch_norm_6.tmp_3"
+ ],
+ "SavedMean": [
+ "batch_norm_6.tmp_0"
+ ],
+ "SavedVariance": [
+ "batch_norm_6.tmp_1"
+ ],
+ "VarianceOut": [
+ "batch_norm_6.w_2"
+ ]
+ },
+ "type": "batchnorm"
+ },
+ {
+ "attrs": {
+ "Scale_in": 1.0,
+ "Scale_in_eltwise": 1.0,
+ "Scale_out": 1.0,
+ "Scale_weights": [
+ 1.0
+ ],
+ "dilations": [
+ 1,
+ 1
+ ],
+ "exhaustive_search": false,
+ "force_fp32_output": false,
+ "fuse_activation": "",
+ "fuse_alpha": 0.0,
+ "fuse_beta": 0.0,
+ "fuse_brelu": false,
+ "fuse_brelu_threshold": 6.0,
+ "fuse_relu": false,
+ "fuse_relu_before_depthwise_conv": false,
+ "fuse_residual_connection": false,
+ "groups": 1,
+ "padding_algorithm": "EXPLICIT",
+ "paddings": [
+ 0,
+ 0
+ ],
+ "strides": [
+ 1,
+ 1
+ ],
+ "use_addto": false,
+ "with_quant_attr": false
+ },
+ "inputs": {
+ "Filter": [
+ "conv2d_7.w_0"
+ ],
+ "Input": [
+ "batch_norm_6.tmp_3"
+ ]
+ },
+ "outputs": {
+ "Out": [
+ "conv2d_216.tmp_0"
+ ]
+ },
+ "type": "conv2d"
+ },
+ {
+ "attrs": {
+ "data_layout": "NCHW",
+ "epsilon": 9.999999747378752e-06,
+ "fuse_with_relu": false,
+ "momentum": 0.8999999761581421,
+ "trainable_statistics": false,
+ "use_global_stats": false,
+ "with_quant_attr": false
+ },
+ "inputs": {
+ "Bias": [
+ "batch_norm_7.b_0"
+ ],
+ "Mean": [
+ "batch_norm_7.w_1"
+ ],
+ "Scale": [
+ "batch_norm_7.w_0"
+ ],
+ "Variance": [
+ "batch_norm_7.w_2"
+ ],
+ "X": [
+ "conv2d_216.tmp_0"
+ ]
+ },
+ "outputs": {
+ "MeanOut": [
+ "batch_norm_7.w_1"
+ ],
+ "Out": [
+ "batch_norm_7.tmp_3"
+ ],
+ "SavedMean": [
+ "batch_norm_7.tmp_0"
+ ],
+ "SavedVariance": [
+ "batch_norm_7.tmp_1"
+ ],
+ "VarianceOut": [
+ "batch_norm_7.w_2"
+ ]
+ },
+ "type": "batchnorm"
+ },
+ {
+ "attrs": {
+ "with_quant_attr": false
+ },
+ "inputs": {
+ "X": [
+ "batch_norm_7.tmp_3"
+ ]
+ },
+ "outputs": {
+ "Out": [
+ "relu_4.tmp_0"
+ ]
+ },
+ "type": "relu"
+ },
+ {
+ "attrs": {
+ "Scale_in": 1.0,
+ "Scale_in_eltwise": 1.0,
+ "Scale_out": 1.0,
+ "Scale_weights": [
+ 1.0
+ ],
+ "dilations": [
+ 1,
+ 1
+ ],
+ "exhaustive_search": false,
+ "force_fp32_output": false,
+ "fuse_activation": "",
+ "fuse_alpha": 0.0,
+ "fuse_beta": 0.0,
+ "fuse_brelu": false,
+ "fuse_brelu_threshold": 6.0,
+ "fuse_relu": false,
+ "fuse_relu_before_depthwise_conv": false,
+ "fuse_residual_connection": false,
+ "groups": 40,
+ "padding_algorithm": "EXPLICIT",
+ "paddings": [
+ 1,
+ 1
+ ],
+ "strides": [
+ 1,
+ 1
+ ],
+ "use_addto": false,
+ "with_quant_attr": false
+ },
+ "inputs": {
+ "Filter": [
+ "conv2d_8.w_0"
+ ],
+ "Input": [
+ "relu_4.tmp_0"
+ ]
+ },
+ "outputs": {
+ "Out": [
+ "depthwise_conv2d_2.tmp_0"
+ ]
+ },
+ "type": "depthwise_conv2d"
+ },
+ {
+ "attrs": {
+ "data_layout": "NCHW",
+ "epsilon": 9.999999747378752e-06,
+ "fuse_with_relu": false,
+ "momentum": 0.8999999761581421,
+ "trainable_statistics": false,
+ "use_global_stats": false,
+ "with_quant_attr": false
+ },
+ "inputs": {
+ "Bias": [
+ "batch_norm_8.b_0"
+ ],
+ "Mean": [
+ "batch_norm_8.w_1"
+ ],
+ "Scale": [
+ "batch_norm_8.w_0"
+ ],
+ "Variance": [
+ "batch_norm_8.w_2"
+ ],
+ "X": [
+ "depthwise_conv2d_2.tmp_0"
+ ]
+ },
+ "outputs": {
+ "MeanOut": [
+ "batch_norm_8.w_1"
+ ],
+ "Out": [
+ "batch_norm_8.tmp_3"
+ ],
+ "SavedMean": [
+ "batch_norm_8.tmp_0"
+ ],
+ "SavedVariance": [
+ "batch_norm_8.tmp_1"
+ ],
+ "VarianceOut": [
+ "batch_norm_8.w_2"
+ ]
+ },
+ "type": "batchnorm"
+ },
+ {
+ "attrs": {
+ "with_quant_attr": false
+ },
+ "inputs": {
+ "X": [
+ "batch_norm_8.tmp_3"
+ ]
+ },
+ "outputs": {
+ "Out": [
+ "relu_5.tmp_0"
+ ]
+ },
+ "type": "relu"
+ },
+ {
+ "attrs": {
+ "Scale_in": 1.0,
+ "Scale_in_eltwise": 1.0,
+ "Scale_out": 1.0,
+ "Scale_weights": [
+ 1.0
+ ],
+ "dilations": [
+ 1,
+ 1
+ ],
+ "exhaustive_search": false,
+ "force_fp32_output": false,
+ "fuse_activation": "",
+ "fuse_alpha": 0.0,
+ "fuse_beta": 0.0,
+ "fuse_brelu": false,
+ "fuse_brelu_threshold": 6.0,
+ "fuse_relu": false,
+ "fuse_relu_before_depthwise_conv": false,
+ "fuse_residual_connection": false,
+ "groups": 1,
+ "padding_algorithm": "EXPLICIT",
+ "paddings": [
+ 0,
+ 0
+ ],
+ "strides": [
+ 1,
+ 1
+ ],
+ "use_addto": false,
+ "with_quant_attr": false
+ },
+ "inputs": {
+ "Filter": [
+ "conv2d_9.w_0"
+ ],
+ "Input": [
+ "relu_5.tmp_0"
+ ]
+ },
+ "outputs": {
+ "Out": [
+ "conv2d_217.tmp_0"
+ ]
+ },
+ "type": "conv2d"
+ },
+ {
+ "attrs": {
+ "data_layout": "NCHW",
+ "epsilon": 9.999999747378752e-06,
+ "fuse_with_relu": false,
+ "momentum": 0.8999999761581421,
+ "trainable_statistics": false,
+ "use_global_stats": false,
+ "with_quant_attr": false
+ },
+ "inputs": {
+ "Bias": [
+ "batch_norm_9.b_0"
+ ],
+ "Mean": [
+ "batch_norm_9.w_1"
+ ],
+ "Scale": [
+ "batch_norm_9.w_0"
+ ],
+ "Variance": [
+ "batch_norm_9.w_2"
+ ],
+ "X": [
+ "conv2d_217.tmp_0"
+ ]
+ },
+ "outputs": {
+ "MeanOut": [
+ "batch_norm_9.w_1"
+ ],
+ "Out": [
+ "batch_norm_9.tmp_3"
+ ],
+ "SavedMean": [
+ "batch_norm_9.tmp_0"
+ ],
+ "SavedVariance": [
+ "batch_norm_9.tmp_1"
+ ],
+ "VarianceOut": [
+ "batch_norm_9.w_2"
+ ]
+ },
+ "type": "batchnorm"
+ },
+ {
+ "attrs": {
+ "Scale_out": 1.0,
+ "Scale_x": 1.0,
+ "Scale_y": 1.0,
+ "axis": -1,
+ "with_quant_attr": false,
+ "x_data_format": "",
+ "y_data_format": ""
+ },
+ "inputs": {
+ "X": [
+ "batch_norm_6.tmp_3"
+ ],
+ "Y": [
+ "batch_norm_9.tmp_3"
+ ]
+ },
+ "outputs": {
+ "Out": [
+ "elementwise_add_1"
+ ]
+ },
+ "type": "elementwise_add"
+ },
+ {
+ "attrs": {
+ "Scale_in": 1.0,
+ "Scale_in_eltwise": 1.0,
+ "Scale_out": 1.0,
+ "Scale_weights": [
+ 1.0
+ ],
+ "dilations": [
+ 1,
+ 1
+ ],
+ "exhaustive_search": false,
+ "force_fp32_output": false,
+ "fuse_activation": "",
+ "fuse_alpha": 0.0,
+ "fuse_beta": 0.0,
+ "fuse_brelu": false,
+ "fuse_brelu_threshold": 6.0,
+ "fuse_relu": false,
+ "fuse_relu_before_depthwise_conv": false,
+ "fuse_residual_connection": false,
+ "groups": 1,
+ "padding_algorithm": "EXPLICIT",
+ "paddings": [
+ 0,
+ 0
+ ],
+ "strides": [
+ 1,
+ 1
+ ],
+ "use_addto": false,
+ "with_quant_attr": false
+ },
+ "inputs": {
+ "Filter": [
+ "conv2d_10.w_0"
+ ],
+ "Input": [
+ "elementwise_add_1"
+ ]
+ },
+ "outputs": {
+ "Out": [
+ "conv2d_218.tmp_0"
+ ]
+ },
+ "type": "conv2d"
+ },
+ {
+ "attrs": {
+ "data_layout": "NCHW",
+ "epsilon": 9.999999747378752e-06,
+ "fuse_with_relu": false,
+ "momentum": 0.8999999761581421,
+ "trainable_statistics": false,
+ "use_global_stats": false,
+ "with_quant_attr": false
+ },
+ "inputs": {
+ "Bias": [
+ "batch_norm_10.b_0"
+ ],
+ "Mean": [
+ "batch_norm_10.w_1"
+ ],
+ "Scale": [
+ "batch_norm_10.w_0"
+ ],
+ "Variance": [
+ "batch_norm_10.w_2"
+ ],
+ "X": [
+ "conv2d_218.tmp_0"
+ ]
+ },
+ "outputs": {
+ "MeanOut": [
+ "batch_norm_10.w_1"
+ ],
+ "Out": [
+ "batch_norm_10.tmp_3"
+ ],
+ "SavedMean": [
+ "batch_norm_10.tmp_0"
+ ],
+ "SavedVariance": [
+ "batch_norm_10.tmp_1"
+ ],
+ "VarianceOut": [
+ "batch_norm_10.w_2"
+ ]
+ },
+ "type": "batchnorm"
+ },
+ {
+ "attrs": {
+ "with_quant_attr": false
+ },
+ "inputs": {
+ "X": [
+ "batch_norm_10.tmp_3"
+ ]
+ },
+ "outputs": {
+ "Out": [
+ "relu_6.tmp_0"
+ ]
+ },
+ "type": "relu"
+ },
+ {
+ "attrs": {
+ "Scale_in": 1.0,
+ "Scale_in_eltwise": 1.0,
+ "Scale_out": 1.0,
+ "Scale_weights": [
+ 1.0
+ ],
+ "dilations": [
+ 1,
+ 1
+ ],
+ "exhaustive_search": false,
+ "force_fp32_output": false,
+ "fuse_activation": "",
+ "fuse_alpha": 0.0,
+ "fuse_beta": 0.0,
+ "fuse_brelu": false,
+ "fuse_brelu_threshold": 6.0,
+ "fuse_relu": false,
+ "fuse_relu_before_depthwise_conv": false,
+ "fuse_residual_connection": false,
+ "groups": 40,
+ "padding_algorithm": "EXPLICIT",
+ "paddings": [
+ 2,
+ 2
+ ],
+ "strides": [
+ 2,
+ 2
+ ],
+ "use_addto": false,
+ "with_quant_attr": false
+ },
+ "inputs": {
+ "Filter": [
+ "conv2d_11.w_0"
+ ],
+ "Input": [
+ "relu_6.tmp_0"
+ ]
+ },
+ "outputs": {
+ "Out": [
+ "depthwise_conv2d_3.tmp_0"
+ ]
+ },
+ "type": "depthwise_conv2d"
+ },
+ {
+ "attrs": {
+ "data_layout": "NCHW",
+ "epsilon": 9.999999747378752e-06,
+ "fuse_with_relu": false,
+ "momentum": 0.8999999761581421,
+ "trainable_statistics": false,
+ "use_global_stats": false,
+ "with_quant_attr": false
+ },
+ "inputs": {
+ "Bias": [
+ "batch_norm_11.b_0"
+ ],
+ "Mean": [
+ "batch_norm_11.w_1"
+ ],
+ "Scale": [
+ "batch_norm_11.w_0"
+ ],
+ "Variance": [
+ "batch_norm_11.w_2"
+ ],
+ "X": [
+ "depthwise_conv2d_3.tmp_0"
+ ]
+ },
+ "outputs": {
+ "MeanOut": [
+ "batch_norm_11.w_1"
+ ],
+ "Out": [
+ "batch_norm_11.tmp_3"
+ ],
+ "SavedMean": [
+ "batch_norm_11.tmp_0"
+ ],
+ "SavedVariance": [
+ "batch_norm_11.tmp_1"
+ ],
+ "VarianceOut": [
+ "batch_norm_11.w_2"
+ ]
+ },
+ "type": "batchnorm"
+ },
+ {
+ "attrs": {
+ "with_quant_attr": false
+ },
+ "inputs": {
+ "X": [
+ "batch_norm_11.tmp_3"
+ ]
+ },
+ "outputs": {
+ "Out": [
+ "relu_7.tmp_0"
+ ]
+ },
+ "type": "relu"
+ },
+ {
+ "attrs": {
+ "Scale_in": 1.0,
+ "Scale_in_eltwise": 1.0,
+ "Scale_out": 1.0,
+ "Scale_weights": [
+ 1.0
+ ],
+ "dilations": [
+ 1,
+ 1
+ ],
+ "exhaustive_search": false,
+ "force_fp32_output": false,
+ "fuse_activation": "",
+ "fuse_alpha": 0.0,
+ "fuse_beta": 0.0,
+ "fuse_brelu": false,
+ "fuse_brelu_threshold": 6.0,
+ "fuse_relu": false,
+ "fuse_relu_before_depthwise_conv": false,
+ "fuse_residual_connection": false,
+ "groups": 1,
+ "padding_algorithm": "EXPLICIT",
+ "paddings": [
+ 0,
+ 0
+ ],
+ "strides": [
+ 1,
+ 1
+ ],
+ "use_addto": false,
+ "with_quant_attr": false
+ },
+ "inputs": {
+ "Filter": [
+ "conv2d_12.w_0"
+ ],
+ "Input": [
+ "relu_7.tmp_0"
+ ]
+ },
+ "outputs": {
+ "Out": [
+ "conv2d_219.tmp_0"
+ ]
+ },
+ "type": "conv2d"
+ },
+ {
+ "attrs": {
+ "data_layout": "NCHW",
+ "epsilon": 9.999999747378752e-06,
+ "fuse_with_relu": false,
+ "momentum": 0.8999999761581421,
+ "trainable_statistics": false,
+ "use_global_stats": false,
+ "with_quant_attr": false
+ },
+ "inputs": {
+ "Bias": [
+ "batch_norm_12.b_0"
+ ],
+ "Mean": [
+ "batch_norm_12.w_1"
+ ],
+ "Scale": [
+ "batch_norm_12.w_0"
+ ],
+ "Variance": [
+ "batch_norm_12.w_2"
+ ],
+ "X": [
+ "conv2d_219.tmp_0"
+ ]
+ },
+ "outputs": {
+ "MeanOut": [
+ "batch_norm_12.w_1"
+ ],
+ "Out": [
+ "batch_norm_12.tmp_3"
+ ],
+ "SavedMean": [
+ "batch_norm_12.tmp_0"
+ ],
+ "SavedVariance": [
+ "batch_norm_12.tmp_1"
+ ],
+ "VarianceOut": [
+ "batch_norm_12.w_2"
+ ]
+ },
+ "type": "batchnorm"
+ },
+ {
+ "attrs": {
+ "Scale_in": 1.0,
+ "Scale_in_eltwise": 1.0,
+ "Scale_out": 1.0,
+ "Scale_weights": [
+ 1.0
+ ],
+ "dilations": [
+ 1,
+ 1
+ ],
+ "exhaustive_search": false,
+ "force_fp32_output": false,
+ "fuse_activation": "",
+ "fuse_alpha": 0.0,
+ "fuse_beta": 0.0,
+ "fuse_brelu": false,
+ "fuse_brelu_threshold": 6.0,
+ "fuse_relu": false,
+ "fuse_relu_before_depthwise_conv": false,
+ "fuse_residual_connection": false,
+ "groups": 1,
+ "padding_algorithm": "EXPLICIT",
+ "paddings": [
+ 0,
+ 0
+ ],
+ "strides": [
+ 1,
+ 1
+ ],
+ "use_addto": false,
+ "with_quant_attr": false
+ },
+ "inputs": {
+ "Filter": [
+ "conv2d_13.w_0"
+ ],
+ "Input": [
+ "batch_norm_12.tmp_3"
+ ]
+ },
+ "outputs": {
+ "Out": [
+ "conv2d_220.tmp_0"
+ ]
+ },
+ "type": "conv2d"
+ },
+ {
+ "attrs": {
+ "data_layout": "NCHW",
+ "epsilon": 9.999999747378752e-06,
+ "fuse_with_relu": false,
+ "momentum": 0.8999999761581421,
+ "trainable_statistics": false,
+ "use_global_stats": false,
+ "with_quant_attr": false
+ },
+ "inputs": {
+ "Bias": [
+ "batch_norm_13.b_0"
+ ],
+ "Mean": [
+ "batch_norm_13.w_1"
+ ],
+ "Scale": [
+ "batch_norm_13.w_0"
+ ],
+ "Variance": [
+ "batch_norm_13.w_2"
+ ],
+ "X": [
+ "conv2d_220.tmp_0"
+ ]
+ },
+ "outputs": {
+ "MeanOut": [
+ "batch_norm_13.w_1"
+ ],
+ "Out": [
+ "batch_norm_13.tmp_3"
+ ],
+ "SavedMean": [
+ "batch_norm_13.tmp_0"
+ ],
+ "SavedVariance": [
+ "batch_norm_13.tmp_1"
+ ],
+ "VarianceOut": [
+ "batch_norm_13.w_2"
+ ]
+ },
+ "type": "batchnorm"
+ },
+ {
+ "attrs": {
+ "with_quant_attr": false
+ },
+ "inputs": {
+ "X": [
+ "batch_norm_13.tmp_3"
+ ]
+ },
+ "outputs": {
+ "Out": [
+ "relu_8.tmp_0"
+ ]
+ },
+ "type": "relu"
+ },
+ {
+ "attrs": {
+ "Scale_in": 1.0,
+ "Scale_in_eltwise": 1.0,
+ "Scale_out": 1.0,
+ "Scale_weights": [
+ 1.0
+ ],
+ "dilations": [
+ 1,
+ 1
+ ],
+ "exhaustive_search": false,
+ "force_fp32_output": false,
+ "fuse_activation": "",
+ "fuse_alpha": 0.0,
+ "fuse_beta": 0.0,
+ "fuse_brelu": false,
+ "fuse_brelu_threshold": 6.0,
+ "fuse_relu": false,
+ "fuse_relu_before_depthwise_conv": false,
+ "fuse_residual_connection": false,
+ "groups": 64,
+ "padding_algorithm": "EXPLICIT",
+ "paddings": [
+ 2,
+ 2
+ ],
+ "strides": [
+ 1,
+ 1
+ ],
+ "use_addto": false,
+ "with_quant_attr": false
+ },
+ "inputs": {
+ "Filter": [
+ "conv2d_14.w_0"
+ ],
+ "Input": [
+ "relu_8.tmp_0"
+ ]
+ },
+ "outputs": {
+ "Out": [
+ "depthwise_conv2d_4.tmp_0"
+ ]
+ },
+ "type": "depthwise_conv2d"
+ },
+ {
+ "attrs": {
+ "data_layout": "NCHW",
+ "epsilon": 9.999999747378752e-06,
+ "fuse_with_relu": false,
+ "momentum": 0.8999999761581421,
+ "trainable_statistics": false,
+ "use_global_stats": false,
+ "with_quant_attr": false
+ },
+ "inputs": {
+ "Bias": [
+ "batch_norm_14.b_0"
+ ],
+ "Mean": [
+ "batch_norm_14.w_1"
+ ],
+ "Scale": [
+ "batch_norm_14.w_0"
+ ],
+ "Variance": [
+ "batch_norm_14.w_2"
+ ],
+ "X": [
+ "depthwise_conv2d_4.tmp_0"
+ ]
+ },
+ "outputs": {
+ "MeanOut": [
+ "batch_norm_14.w_1"
+ ],
+ "Out": [
+ "batch_norm_14.tmp_3"
+ ],
+ "SavedMean": [
+ "batch_norm_14.tmp_0"
+ ],
+ "SavedVariance": [
+ "batch_norm_14.tmp_1"
+ ],
+ "VarianceOut": [
+ "batch_norm_14.w_2"
+ ]
+ },
+ "type": "batchnorm"
+ },
+ {
+ "attrs": {
+ "with_quant_attr": false
+ },
+ "inputs": {
+ "X": [
+ "batch_norm_14.tmp_3"
+ ]
+ },
+ "outputs": {
+ "Out": [
+ "relu_9.tmp_0"
+ ]
+ },
+ "type": "relu"
+ },
+ {
+ "attrs": {
+ "Scale_in": 1.0,
+ "Scale_in_eltwise": 1.0,
+ "Scale_out": 1.0,
+ "Scale_weights": [
+ 1.0
+ ],
+ "dilations": [
+ 1,
+ 1
+ ],
+ "exhaustive_search": false,
+ "force_fp32_output": false,
+ "fuse_activation": "",
+ "fuse_alpha": 0.0,
+ "fuse_beta": 0.0,
+ "fuse_brelu": false,
+ "fuse_brelu_threshold": 6.0,
+ "fuse_relu": false,
+ "fuse_relu_before_depthwise_conv": false,
+ "fuse_residual_connection": false,
+ "groups": 1,
+ "padding_algorithm": "EXPLICIT",
+ "paddings": [
+ 0,
+ 0
+ ],
+ "strides": [
+ 1,
+ 1
+ ],
+ "use_addto": false,
+ "with_quant_attr": false
+ },
+ "inputs": {
+ "Filter": [
+ "conv2d_15.w_0"
+ ],
+ "Input": [
+ "relu_9.tmp_0"
+ ]
+ },
+ "outputs": {
+ "Out": [
+ "conv2d_221.tmp_0"
+ ]
+ },
+ "type": "conv2d"
+ },
+ {
+ "attrs": {
+ "data_layout": "NCHW",
+ "epsilon": 9.999999747378752e-06,
+ "fuse_with_relu": false,
+ "momentum": 0.8999999761581421,
+ "trainable_statistics": false,
+ "use_global_stats": false,
+ "with_quant_attr": false
+ },
+ "inputs": {
+ "Bias": [
+ "batch_norm_15.b_0"
+ ],
+ "Mean": [
+ "batch_norm_15.w_1"
+ ],
+ "Scale": [
+ "batch_norm_15.w_0"
+ ],
+ "Variance": [
+ "batch_norm_15.w_2"
+ ],
+ "X": [
+ "conv2d_221.tmp_0"
+ ]
+ },
+ "outputs": {
+ "MeanOut": [
+ "batch_norm_15.w_1"
+ ],
+ "Out": [
+ "batch_norm_15.tmp_3"
+ ],
+ "SavedMean": [
+ "batch_norm_15.tmp_0"
+ ],
+ "SavedVariance": [
+ "batch_norm_15.tmp_1"
+ ],
+ "VarianceOut": [
+ "batch_norm_15.w_2"
+ ]
+ },
+ "type": "batchnorm"
+ },
+ {
+ "attrs": {
+ "Scale_out": 1.0,
+ "Scale_x": 1.0,
+ "Scale_y": 1.0,
+ "axis": -1,
+ "with_quant_attr": false,
+ "x_data_format": "",
+ "y_data_format": ""
+ },
+ "inputs": {
+ "X": [
+ "batch_norm_12.tmp_3"
+ ],
+ "Y": [
+ "batch_norm_15.tmp_3"
+ ]
+ },
+ "outputs": {
+ "Out": [
+ "elementwise_add_2"
+ ]
+ },
+ "type": "elementwise_add"
+ },
+ {
+ "attrs": {
+ "Scale_in": 1.0,
+ "Scale_in_eltwise": 1.0,
+ "Scale_out": 1.0,
+ "Scale_weights": [
+ 1.0
+ ],
+ "dilations": [
+ 1,
+ 1
+ ],
+ "exhaustive_search": false,
+ "force_fp32_output": false,
+ "fuse_activation": "",
+ "fuse_alpha": 0.0,
+ "fuse_beta": 0.0,
+ "fuse_brelu": false,
+ "fuse_brelu_threshold": 6.0,
+ "fuse_relu": false,
+ "fuse_relu_before_depthwise_conv": false,
+ "fuse_residual_connection": false,
+ "groups": 1,
+ "padding_algorithm": "EXPLICIT",
+ "paddings": [
+ 0,
+ 0
+ ],
+ "strides": [
+ 1,
+ 1
+ ],
+ "use_addto": false,
+ "with_quant_attr": false
+ },
+ "inputs": {
+ "Filter": [
+ "conv2d_16.w_0"
+ ],
+ "Input": [
+ "elementwise_add_2"
+ ]
+ },
+ "outputs": {
+ "Out": [
+ "conv2d_222.tmp_0"
+ ]
+ },
+ "type": "conv2d"
+ },
+ {
+ "attrs": {
+ "data_layout": "NCHW",
+ "epsilon": 9.999999747378752e-06,
+ "fuse_with_relu": false,
+ "momentum": 0.8999999761581421,
+ "trainable_statistics": false,
+ "use_global_stats": false,
+ "with_quant_attr": false
+ },
+ "inputs": {
+ "Bias": [
+ "batch_norm_16.b_0"
+ ],
+ "Mean": [
+ "batch_norm_16.w_1"
+ ],
+ "Scale": [
+ "batch_norm_16.w_0"
+ ],
+ "Variance": [
+ "batch_norm_16.w_2"
+ ],
+ "X": [
+ "conv2d_222.tmp_0"
+ ]
+ },
+ "outputs": {
+ "MeanOut": [
+ "batch_norm_16.w_1"
+ ],
+ "Out": [
+ "batch_norm_16.tmp_3"
+ ],
+ "SavedMean": [
+ "batch_norm_16.tmp_0"
+ ],
+ "SavedVariance": [
+ "batch_norm_16.tmp_1"
+ ],
+ "VarianceOut": [
+ "batch_norm_16.w_2"
+ ]
+ },
+ "type": "batchnorm"
+ },
+ {
+ "attrs": {
+ "with_quant_attr": false
+ },
+ "inputs": {
+ "X": [
+ "batch_norm_16.tmp_3"
+ ]
+ },
+ "outputs": {
+ "Out": [
+ "relu_10.tmp_0"
+ ]
+ },
+ "type": "relu"
+ },
+ {
+ "attrs": {
+ "Scale_in": 1.0,
+ "Scale_in_eltwise": 1.0,
+ "Scale_out": 1.0,
+ "Scale_weights": [
+ 1.0
+ ],
+ "dilations": [
+ 1,
+ 1
+ ],
+ "exhaustive_search": false,
+ "force_fp32_output": false,
+ "fuse_activation": "",
+ "fuse_alpha": 0.0,
+ "fuse_beta": 0.0,
+ "fuse_brelu": false,
+ "fuse_brelu_threshold": 6.0,
+ "fuse_relu": false,
+ "fuse_relu_before_depthwise_conv": false,
+ "fuse_residual_connection": false,
+ "groups": 64,
+ "padding_algorithm": "EXPLICIT",
+ "paddings": [
+ 2,
+ 2
+ ],
+ "strides": [
+ 1,
+ 1
+ ],
+ "use_addto": false,
+ "with_quant_attr": false
+ },
+ "inputs": {
+ "Filter": [
+ "conv2d_17.w_0"
+ ],
+ "Input": [
+ "relu_10.tmp_0"
+ ]
+ },
+ "outputs": {
+ "Out": [
+ "depthwise_conv2d_5.tmp_0"
+ ]
+ },
+ "type": "depthwise_conv2d"
+ },
+ {
+ "attrs": {
+ "data_layout": "NCHW",
+ "epsilon": 9.999999747378752e-06,
+ "fuse_with_relu": false,
+ "momentum": 0.8999999761581421,
+ "trainable_statistics": false,
+ "use_global_stats": false,
+ "with_quant_attr": false
+ },
+ "inputs": {
+ "Bias": [
+ "batch_norm_17.b_0"
+ ],
+ "Mean": [
+ "batch_norm_17.w_1"
+ ],
+ "Scale": [
+ "batch_norm_17.w_0"
+ ],
+ "Variance": [
+ "batch_norm_17.w_2"
+ ],
+ "X": [
+ "depthwise_conv2d_5.tmp_0"
+ ]
+ },
+ "outputs": {
+ "MeanOut": [
+ "batch_norm_17.w_1"
+ ],
+ "Out": [
+ "batch_norm_17.tmp_3"
+ ],
+ "SavedMean": [
+ "batch_norm_17.tmp_0"
+ ],
+ "SavedVariance": [
+ "batch_norm_17.tmp_1"
+ ],
+ "VarianceOut": [
+ "batch_norm_17.w_2"
+ ]
+ },
+ "type": "batchnorm"
+ },
+ {
+ "attrs": {
+ "with_quant_attr": false
+ },
+ "inputs": {
+ "X": [
+ "batch_norm_17.tmp_3"
+ ]
+ },
+ "outputs": {
+ "Out": [
+ "relu_11.tmp_0"
+ ]
+ },
+ "type": "relu"
+ },
+ {
+ "attrs": {
+ "Scale_in": 1.0,
+ "Scale_in_eltwise": 1.0,
+ "Scale_out": 1.0,
+ "Scale_weights": [
+ 1.0
+ ],
+ "dilations": [
+ 1,
+ 1
+ ],
+ "exhaustive_search": false,
+ "force_fp32_output": false,
+ "fuse_activation": "",
+ "fuse_alpha": 0.0,
+ "fuse_beta": 0.0,
+ "fuse_brelu": false,
+ "fuse_brelu_threshold": 6.0,
+ "fuse_relu": false,
+ "fuse_relu_before_depthwise_conv": false,
+ "fuse_residual_connection": false,
+ "groups": 1,
+ "padding_algorithm": "EXPLICIT",
+ "paddings": [
+ 0,
+ 0
+ ],
+ "strides": [
+ 1,
+ 1
+ ],
+ "use_addto": false,
+ "with_quant_attr": false
+ },
+ "inputs": {
+ "Filter": [
+ "conv2d_18.w_0"
+ ],
+ "Input": [
+ "relu_11.tmp_0"
+ ]
+ },
+ "outputs": {
+ "Out": [
+ "conv2d_223.tmp_0"
+ ]
+ },
+ "type": "conv2d"
+ },
+ {
+ "attrs": {
+ "data_layout": "NCHW",
+ "epsilon": 9.999999747378752e-06,
+ "fuse_with_relu": false,
+ "momentum": 0.8999999761581421,
+ "trainable_statistics": false,
+ "use_global_stats": false,
+ "with_quant_attr": false
+ },
+ "inputs": {
+ "Bias": [
+ "batch_norm_18.b_0"
+ ],
+ "Mean": [
+ "batch_norm_18.w_1"
+ ],
+ "Scale": [
+ "batch_norm_18.w_0"
+ ],
+ "Variance": [
+ "batch_norm_18.w_2"
+ ],
+ "X": [
+ "conv2d_223.tmp_0"
+ ]
+ },
+ "outputs": {
+ "MeanOut": [
+ "batch_norm_18.w_1"
+ ],
+ "Out": [
+ "batch_norm_18.tmp_3"
+ ],
+ "SavedMean": [
+ "batch_norm_18.tmp_0"
+ ],
+ "SavedVariance": [
+ "batch_norm_18.tmp_1"
+ ],
+ "VarianceOut": [
+ "batch_norm_18.w_2"
+ ]
+ },
+ "type": "batchnorm"
+ },
+ {
+ "attrs": {
+ "Scale_out": 1.0,
+ "Scale_x": 1.0,
+ "Scale_y": 1.0,
+ "axis": -1,
+ "with_quant_attr": false,
+ "x_data_format": "",
+ "y_data_format": ""
+ },
+ "inputs": {
+ "X": [
+ "elementwise_add_2"
+ ],
+ "Y": [
+ "batch_norm_18.tmp_3"
+ ]
+ },
+ "outputs": {
+ "Out": [
+ "elementwise_add_3"
+ ]
+ },
+ "type": "elementwise_add"
+ },
+ {
+ "attrs": {
+ "Scale_in": 1.0,
+ "Scale_in_eltwise": 1.0,
+ "Scale_out": 1.0,
+ "Scale_weights": [
+ 1.0
+ ],
+ "dilations": [
+ 1,
+ 1
+ ],
+ "exhaustive_search": false,
+ "force_fp32_output": false,
+ "fuse_activation": "",
+ "fuse_alpha": 0.0,
+ "fuse_beta": 0.0,
+ "fuse_brelu": false,
+ "fuse_brelu_threshold": 6.0,
+ "fuse_relu": false,
+ "fuse_relu_before_depthwise_conv": false,
+ "fuse_residual_connection": false,
+ "groups": 1,
+ "padding_algorithm": "EXPLICIT",
+ "paddings": [
+ 0,
+ 0
+ ],
+ "strides": [
+ 1,
+ 1
+ ],
+ "use_addto": false,
+ "with_quant_attr": false
+ },
+ "inputs": {
+ "Filter": [
+ "conv2d_19.w_0"
+ ],
+ "Input": [
+ "elementwise_add_3"
+ ]
+ },
+ "outputs": {
+ "Out": [
+ "conv2d_224.tmp_0"
+ ]
+ },
+ "type": "conv2d"
+ },
+ {
+ "attrs": {
+ "data_layout": "NCHW",
+ "epsilon": 9.999999747378752e-06,
+ "fuse_with_relu": false,
+ "momentum": 0.8999999761581421,
+ "trainable_statistics": false,
+ "use_global_stats": false,
+ "with_quant_attr": false
+ },
+ "inputs": {
+ "Bias": [
+ "batch_norm_19.b_0"
+ ],
+ "Mean": [
+ "batch_norm_19.w_1"
+ ],
+ "Scale": [
+ "batch_norm_19.w_0"
+ ],
+ "Variance": [
+ "batch_norm_19.w_2"
+ ],
+ "X": [
+ "conv2d_224.tmp_0"
+ ]
+ },
+ "outputs": {
+ "MeanOut": [
+ "batch_norm_19.w_1"
+ ],
+ "Out": [
+ "batch_norm_19.tmp_3"
+ ],
+ "SavedMean": [
+ "batch_norm_19.tmp_0"
+ ],
+ "SavedVariance": [
+ "batch_norm_19.tmp_1"
+ ],
+ "VarianceOut": [
+ "batch_norm_19.w_2"
+ ]
+ },
+ "type": "batchnorm"
+ },
+ {
+ "attrs": {
+ "offset": 3.0,
+ "scale": 6.0,
+ "threshold": 6.0,
+ "with_quant_attr": false
+ },
+ "inputs": {
+ "X": [
+ "batch_norm_19.tmp_3"
+ ]
+ },
+ "outputs": {
+ "Out": [
+ "hardswish_1.tmp_0"
+ ]
+ },
+ "type": "hard_swish"
+ },
+ {
+ "attrs": {
+ "Scale_in": 1.0,
+ "Scale_in_eltwise": 1.0,
+ "Scale_out": 1.0,
+ "Scale_weights": [
+ 1.0
+ ],
+ "dilations": [
+ 1,
+ 1
+ ],
+ "exhaustive_search": false,
+ "force_fp32_output": false,
+ "fuse_activation": "",
+ "fuse_alpha": 0.0,
+ "fuse_beta": 0.0,
+ "fuse_brelu": false,
+ "fuse_brelu_threshold": 6.0,
+ "fuse_relu": false,
+ "fuse_relu_before_depthwise_conv": false,
+ "fuse_residual_connection": false,
+ "groups": 120,
+ "padding_algorithm": "EXPLICIT",
+ "paddings": [
+ 1,
+ 1
+ ],
+ "strides": [
+ 2,
+ 2
+ ],
+ "use_addto": false,
+ "with_quant_attr": false
+ },
+ "inputs": {
+ "Filter": [
+ "conv2d_20.w_0"
+ ],
+ "Input": [
+ "hardswish_1.tmp_0"
+ ]
+ },
+ "outputs": {
+ "Out": [
+ "depthwise_conv2d_6.tmp_0"
+ ]
+ },
+ "type": "depthwise_conv2d"
+ },
+ {
+ "attrs": {
+ "data_layout": "NCHW",
+ "epsilon": 9.999999747378752e-06,
+ "fuse_with_relu": false,
+ "momentum": 0.8999999761581421,
+ "trainable_statistics": false,
+ "use_global_stats": false,
+ "with_quant_attr": false
+ },
+ "inputs": {
+ "Bias": [
+ "batch_norm_20.b_0"
+ ],
+ "Mean": [
+ "batch_norm_20.w_1"
+ ],
+ "Scale": [
+ "batch_norm_20.w_0"
+ ],
+ "Variance": [
+ "batch_norm_20.w_2"
+ ],
+ "X": [
+ "depthwise_conv2d_6.tmp_0"
+ ]
+ },
+ "outputs": {
+ "MeanOut": [
+ "batch_norm_20.w_1"
+ ],
+ "Out": [
+ "batch_norm_20.tmp_3"
+ ],
+ "SavedMean": [
+ "batch_norm_20.tmp_0"
+ ],
+ "SavedVariance": [
+ "batch_norm_20.tmp_1"
+ ],
+ "VarianceOut": [
+ "batch_norm_20.w_2"
+ ]
+ },
+ "type": "batchnorm"
+ },
+ {
+ "attrs": {
+ "offset": 3.0,
+ "scale": 6.0,
+ "threshold": 6.0,
+ "with_quant_attr": false
+ },
+ "inputs": {
+ "X": [
+ "batch_norm_20.tmp_3"
+ ]
+ },
+ "outputs": {
+ "Out": [
+ "hardswish_2.tmp_0"
+ ]
+ },
+ "type": "hard_swish"
+ },
+ {
+ "attrs": {
+ "Scale_in": 1.0,
+ "Scale_in_eltwise": 1.0,
+ "Scale_out": 1.0,
+ "Scale_weights": [
+ 1.0
+ ],
+ "dilations": [
+ 1,
+ 1
+ ],
+ "exhaustive_search": false,
+ "force_fp32_output": false,
+ "fuse_activation": "",
+ "fuse_alpha": 0.0,
+ "fuse_beta": 0.0,
+ "fuse_brelu": false,
+ "fuse_brelu_threshold": 6.0,
+ "fuse_relu": false,
+ "fuse_relu_before_depthwise_conv": false,
+ "fuse_residual_connection": false,
+ "groups": 1,
+ "padding_algorithm": "EXPLICIT",
+ "paddings": [
+ 0,
+ 0
+ ],
+ "strides": [
+ 1,
+ 1
+ ],
+ "use_addto": false,
+ "with_quant_attr": false
+ },
+ "inputs": {
+ "Filter": [
+ "conv2d_21.w_0"
+ ],
+ "Input": [
+ "hardswish_2.tmp_0"
+ ]
+ },
+ "outputs": {
+ "Out": [
+ "conv2d_225.tmp_0"
+ ]
+ },
+ "type": "conv2d"
+ },
+ {
+ "attrs": {
+ "data_layout": "NCHW",
+ "epsilon": 9.999999747378752e-06,
+ "fuse_with_relu": false,
+ "momentum": 0.8999999761581421,
+ "trainable_statistics": false,
+ "use_global_stats": false,
+ "with_quant_attr": false
+ },
+ "inputs": {
+ "Bias": [
+ "batch_norm_21.b_0"
+ ],
+ "Mean": [
+ "batch_norm_21.w_1"
+ ],
+ "Scale": [
+ "batch_norm_21.w_0"
+ ],
+ "Variance": [
+ "batch_norm_21.w_2"
+ ],
+ "X": [
+ "conv2d_225.tmp_0"
+ ]
+ },
+ "outputs": {
+ "MeanOut": [
+ "batch_norm_21.w_1"
+ ],
+ "Out": [
+ "batch_norm_21.tmp_3"
+ ],
+ "SavedMean": [
+ "batch_norm_21.tmp_0"
+ ],
+ "SavedVariance": [
+ "batch_norm_21.tmp_1"
+ ],
+ "VarianceOut": [
+ "batch_norm_21.w_2"
+ ]
+ },
+ "type": "batchnorm"
+ },
+ {
+ "attrs": {
+ "Scale_in": 1.0,
+ "Scale_in_eltwise": 1.0,
+ "Scale_out": 1.0,
+ "Scale_weights": [
+ 1.0
+ ],
+ "dilations": [
+ 1,
+ 1
+ ],
+ "exhaustive_search": false,
+ "force_fp32_output": false,
+ "fuse_activation": "",
+ "fuse_alpha": 0.0,
+ "fuse_beta": 0.0,
+ "fuse_brelu": false,
+ "fuse_brelu_threshold": 6.0,
+ "fuse_relu": false,
+ "fuse_relu_before_depthwise_conv": false,
+ "fuse_residual_connection": false,
+ "groups": 1,
+ "padding_algorithm": "EXPLICIT",
+ "paddings": [
+ 0,
+ 0
+ ],
+ "strides": [
+ 1,
+ 1
+ ],
+ "use_addto": false,
+ "with_quant_attr": false
+ },
+ "inputs": {
+ "Filter": [
+ "conv2d_22.w_0"
+ ],
+ "Input": [
+ "batch_norm_21.tmp_3"
+ ]
+ },
+ "outputs": {
+ "Out": [
+ "conv2d_226.tmp_0"
+ ]
+ },
+ "type": "conv2d"
+ },
+ {
+ "attrs": {
+ "data_layout": "NCHW",
+ "epsilon": 9.999999747378752e-06,
+ "fuse_with_relu": false,
+ "momentum": 0.8999999761581421,
+ "trainable_statistics": false,
+ "use_global_stats": false,
+ "with_quant_attr": false
+ },
+ "inputs": {
+ "Bias": [
+ "batch_norm_22.b_0"
+ ],
+ "Mean": [
+ "batch_norm_22.w_1"
+ ],
+ "Scale": [
+ "batch_norm_22.w_0"
+ ],
+ "Variance": [
+ "batch_norm_22.w_2"
+ ],
+ "X": [
+ "conv2d_226.tmp_0"
+ ]
+ },
+ "outputs": {
+ "MeanOut": [
+ "batch_norm_22.w_1"
+ ],
+ "Out": [
+ "batch_norm_22.tmp_3"
+ ],
+ "SavedMean": [
+ "batch_norm_22.tmp_0"
+ ],
+ "SavedVariance": [
+ "batch_norm_22.tmp_1"
+ ],
+ "VarianceOut": [
+ "batch_norm_22.w_2"
+ ]
+ },
+ "type": "batchnorm"
+ },
+ {
+ "attrs": {
+ "offset": 3.0,
+ "scale": 6.0,
+ "threshold": 6.0,
+ "with_quant_attr": false
+ },
+ "inputs": {
+ "X": [
+ "batch_norm_22.tmp_3"
+ ]
+ },
+ "outputs": {
+ "Out": [
+ "hardswish_3.tmp_0"
+ ]
+ },
+ "type": "hard_swish"
+ },
+ {
+ "attrs": {
+ "Scale_in": 1.0,
+ "Scale_in_eltwise": 1.0,
+ "Scale_out": 1.0,
+ "Scale_weights": [
+ 1.0
+ ],
+ "dilations": [
+ 1,
+ 1
+ ],
+ "exhaustive_search": false,
+ "force_fp32_output": false,
+ "fuse_activation": "",
+ "fuse_alpha": 0.0,
+ "fuse_beta": 0.0,
+ "fuse_brelu": false,
+ "fuse_brelu_threshold": 6.0,
+ "fuse_relu": false,
+ "fuse_relu_before_depthwise_conv": false,
+ "fuse_residual_connection": false,
+ "groups": 104,
+ "padding_algorithm": "EXPLICIT",
+ "paddings": [
+ 1,
+ 1
+ ],
+ "strides": [
+ 1,
+ 1
+ ],
+ "use_addto": false,
+ "with_quant_attr": false
+ },
+ "inputs": {
+ "Filter": [
+ "conv2d_23.w_0"
+ ],
+ "Input": [
+ "hardswish_3.tmp_0"
+ ]
+ },
+ "outputs": {
+ "Out": [
+ "depthwise_conv2d_7.tmp_0"
+ ]
+ },
+ "type": "depthwise_conv2d"
+ },
+ {
+ "attrs": {
+ "data_layout": "NCHW",
+ "epsilon": 9.999999747378752e-06,
+ "fuse_with_relu": false,
+ "momentum": 0.8999999761581421,
+ "trainable_statistics": false,
+ "use_global_stats": false,
+ "with_quant_attr": false
+ },
+ "inputs": {
+ "Bias": [
+ "batch_norm_23.b_0"
+ ],
+ "Mean": [
+ "batch_norm_23.w_1"
+ ],
+ "Scale": [
+ "batch_norm_23.w_0"
+ ],
+ "Variance": [
+ "batch_norm_23.w_2"
+ ],
+ "X": [
+ "depthwise_conv2d_7.tmp_0"
+ ]
+ },
+ "outputs": {
+ "MeanOut": [
+ "batch_norm_23.w_1"
+ ],
+ "Out": [
+ "batch_norm_23.tmp_3"
+ ],
+ "SavedMean": [
+ "batch_norm_23.tmp_0"
+ ],
+ "SavedVariance": [
+ "batch_norm_23.tmp_1"
+ ],
+ "VarianceOut": [
+ "batch_norm_23.w_2"
+ ]
+ },
+ "type": "batchnorm"
+ },
+ {
+ "attrs": {
+ "offset": 3.0,
+ "scale": 6.0,
+ "threshold": 6.0,
+ "with_quant_attr": false
+ },
+ "inputs": {
+ "X": [
+ "batch_norm_23.tmp_3"
+ ]
+ },
+ "outputs": {
+ "Out": [
+ "hardswish_4.tmp_0"
+ ]
+ },
+ "type": "hard_swish"
+ },
+ {
+ "attrs": {
+ "Scale_in": 1.0,
+ "Scale_in_eltwise": 1.0,
+ "Scale_out": 1.0,
+ "Scale_weights": [
+ 1.0
+ ],
+ "dilations": [
+ 1,
+ 1
+ ],
+ "exhaustive_search": false,
+ "force_fp32_output": false,
+ "fuse_activation": "",
+ "fuse_alpha": 0.0,
+ "fuse_beta": 0.0,
+ "fuse_brelu": false,
+ "fuse_brelu_threshold": 6.0,
+ "fuse_relu": false,
+ "fuse_relu_before_depthwise_conv": false,
+ "fuse_residual_connection": false,
+ "groups": 1,
+ "padding_algorithm": "EXPLICIT",
+ "paddings": [
+ 0,
+ 0
+ ],
+ "strides": [
+ 1,
+ 1
+ ],
+ "use_addto": false,
+ "with_quant_attr": false
+ },
+ "inputs": {
+ "Filter": [
+ "conv2d_24.w_0"
+ ],
+ "Input": [
+ "hardswish_4.tmp_0"
+ ]
+ },
+ "outputs": {
+ "Out": [
+ "conv2d_227.tmp_0"
+ ]
+ },
+ "type": "conv2d"
+ },
+ {
+ "attrs": {
+ "data_layout": "NCHW",
+ "epsilon": 9.999999747378752e-06,
+ "fuse_with_relu": false,
+ "momentum": 0.8999999761581421,
+ "trainable_statistics": false,
+ "use_global_stats": false,
+ "with_quant_attr": false
+ },
+ "inputs": {
+ "Bias": [
+ "batch_norm_24.b_0"
+ ],
+ "Mean": [
+ "batch_norm_24.w_1"
+ ],
+ "Scale": [
+ "batch_norm_24.w_0"
+ ],
+ "Variance": [
+ "batch_norm_24.w_2"
+ ],
+ "X": [
+ "conv2d_227.tmp_0"
+ ]
+ },
+ "outputs": {
+ "MeanOut": [
+ "batch_norm_24.w_1"
+ ],
+ "Out": [
+ "batch_norm_24.tmp_3"
+ ],
+ "SavedMean": [
+ "batch_norm_24.tmp_0"
+ ],
+ "SavedVariance": [
+ "batch_norm_24.tmp_1"
+ ],
+ "VarianceOut": [
+ "batch_norm_24.w_2"
+ ]
+ },
+ "type": "batchnorm"
+ },
+ {
+ "attrs": {
+ "Scale_out": 1.0,
+ "Scale_x": 1.0,
+ "Scale_y": 1.0,
+ "axis": -1,
+ "with_quant_attr": false,
+ "x_data_format": "",
+ "y_data_format": ""
+ },
+ "inputs": {
+ "X": [
+ "batch_norm_21.tmp_3"
+ ],
+ "Y": [
+ "batch_norm_24.tmp_3"
+ ]
+ },
+ "outputs": {
+ "Out": [
+ "elementwise_add_4"
+ ]
+ },
+ "type": "elementwise_add"
+ },
+ {
+ "attrs": {
+ "Scale_in": 1.0,
+ "Scale_in_eltwise": 1.0,
+ "Scale_out": 1.0,
+ "Scale_weights": [
+ 1.0
+ ],
+ "dilations": [
+ 1,
+ 1
+ ],
+ "exhaustive_search": false,
+ "force_fp32_output": false,
+ "fuse_activation": "",
+ "fuse_alpha": 0.0,
+ "fuse_beta": 0.0,
+ "fuse_brelu": false,
+ "fuse_brelu_threshold": 6.0,
+ "fuse_relu": false,
+ "fuse_relu_before_depthwise_conv": false,
+ "fuse_residual_connection": false,
+ "groups": 1,
+ "padding_algorithm": "EXPLICIT",
+ "paddings": [
+ 0,
+ 0
+ ],
+ "strides": [
+ 1,
+ 1
+ ],
+ "use_addto": false,
+ "with_quant_attr": false
+ },
+ "inputs": {
+ "Filter": [
+ "conv2d_25.w_0"
+ ],
+ "Input": [
+ "elementwise_add_4"
+ ]
+ },
+ "outputs": {
+ "Out": [
+ "conv2d_228.tmp_0"
+ ]
+ },
+ "type": "conv2d"
+ },
+ {
+ "attrs": {
+ "data_layout": "NCHW",
+ "epsilon": 9.999999747378752e-06,
+ "fuse_with_relu": false,
+ "momentum": 0.8999999761581421,
+ "trainable_statistics": false,
+ "use_global_stats": false,
+ "with_quant_attr": false
+ },
+ "inputs": {
+ "Bias": [
+ "batch_norm_25.b_0"
+ ],
+ "Mean": [
+ "batch_norm_25.w_1"
+ ],
+ "Scale": [
+ "batch_norm_25.w_0"
+ ],
+ "Variance": [
+ "batch_norm_25.w_2"
+ ],
+ "X": [
+ "conv2d_228.tmp_0"
+ ]
+ },
+ "outputs": {
+ "MeanOut": [
+ "batch_norm_25.w_1"
+ ],
+ "Out": [
+ "batch_norm_25.tmp_3"
+ ],
+ "SavedMean": [
+ "batch_norm_25.tmp_0"
+ ],
+ "SavedVariance": [
+ "batch_norm_25.tmp_1"
+ ],
+ "VarianceOut": [
+ "batch_norm_25.w_2"
+ ]
+ },
+ "type": "batchnorm"
+ },
+ {
+ "attrs": {
+ "offset": 3.0,
+ "scale": 6.0,
+ "threshold": 6.0,
+ "with_quant_attr": false
+ },
+ "inputs": {
+ "X": [
+ "batch_norm_25.tmp_3"
+ ]
+ },
+ "outputs": {
+ "Out": [
+ "hardswish_5.tmp_0"
+ ]
+ },
+ "type": "hard_swish"
+ },
+ {
+ "attrs": {
+ "Scale_in": 1.0,
+ "Scale_in_eltwise": 1.0,
+ "Scale_out": 1.0,
+ "Scale_weights": [
+ 1.0
+ ],
+ "dilations": [
+ 1,
+ 1
+ ],
+ "exhaustive_search": false,
+ "force_fp32_output": false,
+ "fuse_activation": "",
+ "fuse_alpha": 0.0,
+ "fuse_beta": 0.0,
+ "fuse_brelu": false,
+ "fuse_brelu_threshold": 6.0,
+ "fuse_relu": false,
+ "fuse_relu_before_depthwise_conv": false,
+ "fuse_residual_connection": false,
+ "groups": 96,
+ "padding_algorithm": "EXPLICIT",
+ "paddings": [
+ 1,
+ 1
+ ],
+ "strides": [
+ 1,
+ 1
+ ],
+ "use_addto": false,
+ "with_quant_attr": false
+ },
+ "inputs": {
+ "Filter": [
+ "conv2d_26.w_0"
+ ],
+ "Input": [
+ "hardswish_5.tmp_0"
+ ]
+ },
+ "outputs": {
+ "Out": [
+ "depthwise_conv2d_8.tmp_0"
+ ]
+ },
+ "type": "depthwise_conv2d"
+ },
+ {
+ "attrs": {
+ "data_layout": "NCHW",
+ "epsilon": 9.999999747378752e-06,
+ "fuse_with_relu": false,
+ "momentum": 0.8999999761581421,
+ "trainable_statistics": false,
+ "use_global_stats": false,
+ "with_quant_attr": false
+ },
+ "inputs": {
+ "Bias": [
+ "batch_norm_26.b_0"
+ ],
+ "Mean": [
+ "batch_norm_26.w_1"
+ ],
+ "Scale": [
+ "batch_norm_26.w_0"
+ ],
+ "Variance": [
+ "batch_norm_26.w_2"
+ ],
+ "X": [
+ "depthwise_conv2d_8.tmp_0"
+ ]
+ },
+ "outputs": {
+ "MeanOut": [
+ "batch_norm_26.w_1"
+ ],
+ "Out": [
+ "batch_norm_26.tmp_3"
+ ],
+ "SavedMean": [
+ "batch_norm_26.tmp_0"
+ ],
+ "SavedVariance": [
+ "batch_norm_26.tmp_1"
+ ],
+ "VarianceOut": [
+ "batch_norm_26.w_2"
+ ]
+ },
+ "type": "batchnorm"
+ },
+ {
+ "attrs": {
+ "offset": 3.0,
+ "scale": 6.0,
+ "threshold": 6.0,
+ "with_quant_attr": false
+ },
+ "inputs": {
+ "X": [
+ "batch_norm_26.tmp_3"
+ ]
+ },
+ "outputs": {
+ "Out": [
+ "hardswish_6.tmp_0"
+ ]
+ },
+ "type": "hard_swish"
+ },
+ {
+ "attrs": {
+ "Scale_in": 1.0,
+ "Scale_in_eltwise": 1.0,
+ "Scale_out": 1.0,
+ "Scale_weights": [
+ 1.0
+ ],
+ "dilations": [
+ 1,
+ 1
+ ],
+ "exhaustive_search": false,
+ "force_fp32_output": false,
+ "fuse_activation": "",
+ "fuse_alpha": 0.0,
+ "fuse_beta": 0.0,
+ "fuse_brelu": false,
+ "fuse_brelu_threshold": 6.0,
+ "fuse_relu": false,
+ "fuse_relu_before_depthwise_conv": false,
+ "fuse_residual_connection": false,
+ "groups": 1,
+ "padding_algorithm": "EXPLICIT",
+ "paddings": [
+ 0,
+ 0
+ ],
+ "strides": [
+ 1,
+ 1
+ ],
+ "use_addto": false,
+ "with_quant_attr": false
+ },
+ "inputs": {
+ "Filter": [
+ "conv2d_27.w_0"
+ ],
+ "Input": [
+ "hardswish_6.tmp_0"
+ ]
+ },
+ "outputs": {
+ "Out": [
+ "conv2d_229.tmp_0"
+ ]
+ },
+ "type": "conv2d"
+ },
+ {
+ "attrs": {
+ "data_layout": "NCHW",
+ "epsilon": 9.999999747378752e-06,
+ "fuse_with_relu": false,
+ "momentum": 0.8999999761581421,
+ "trainable_statistics": false,
+ "use_global_stats": false,
+ "with_quant_attr": false
+ },
+ "inputs": {
+ "Bias": [
+ "batch_norm_27.b_0"
+ ],
+ "Mean": [
+ "batch_norm_27.w_1"
+ ],
+ "Scale": [
+ "batch_norm_27.w_0"
+ ],
+ "Variance": [
+ "batch_norm_27.w_2"
+ ],
+ "X": [
+ "conv2d_229.tmp_0"
+ ]
+ },
+ "outputs": {
+ "MeanOut": [
+ "batch_norm_27.w_1"
+ ],
+ "Out": [
+ "batch_norm_27.tmp_3"
+ ],
+ "SavedMean": [
+ "batch_norm_27.tmp_0"
+ ],
+ "SavedVariance": [
+ "batch_norm_27.tmp_1"
+ ],
+ "VarianceOut": [
+ "batch_norm_27.w_2"
+ ]
+ },
+ "type": "batchnorm"
+ },
+ {
+ "attrs": {
+ "Scale_out": 1.0,
+ "Scale_x": 1.0,
+ "Scale_y": 1.0,
+ "axis": -1,
+ "with_quant_attr": false,
+ "x_data_format": "",
+ "y_data_format": ""
+ },
+ "inputs": {
+ "X": [
+ "elementwise_add_4"
+ ],
+ "Y": [
+ "batch_norm_27.tmp_3"
+ ]
+ },
+ "outputs": {
+ "Out": [
+ "elementwise_add_5"
+ ]
+ },
+ "type": "elementwise_add"
+ },
+ {
+ "attrs": {
+ "Scale_in": 1.0,
+ "Scale_in_eltwise": 1.0,
+ "Scale_out": 1.0,
+ "Scale_weights": [
+ 1.0
+ ],
+ "dilations": [
+ 1,
+ 1
+ ],
+ "exhaustive_search": false,
+ "force_fp32_output": false,
+ "fuse_activation": "",
+ "fuse_alpha": 0.0,
+ "fuse_beta": 0.0,
+ "fuse_brelu": false,
+ "fuse_brelu_threshold": 6.0,
+ "fuse_relu": false,
+ "fuse_relu_before_depthwise_conv": false,
+ "fuse_residual_connection": false,
+ "groups": 1,
+ "padding_algorithm": "EXPLICIT",
+ "paddings": [
+ 0,
+ 0
+ ],
+ "strides": [
+ 1,
+ 1
+ ],
+ "use_addto": false,
+ "with_quant_attr": false
+ },
+ "inputs": {
+ "Filter": [
+ "conv2d_28.w_0"
+ ],
+ "Input": [
+ "elementwise_add_5"
+ ]
+ },
+ "outputs": {
+ "Out": [
+ "conv2d_230.tmp_0"
+ ]
+ },
+ "type": "conv2d"
+ },
+ {
+ "attrs": {
+ "data_layout": "NCHW",
+ "epsilon": 9.999999747378752e-06,
+ "fuse_with_relu": false,
+ "momentum": 0.8999999761581421,
+ "trainable_statistics": false,
+ "use_global_stats": false,
+ "with_quant_attr": false
+ },
+ "inputs": {
+ "Bias": [
+ "batch_norm_28.b_0"
+ ],
+ "Mean": [
+ "batch_norm_28.w_1"
+ ],
+ "Scale": [
+ "batch_norm_28.w_0"
+ ],
+ "Variance": [
+ "batch_norm_28.w_2"
+ ],
+ "X": [
+ "conv2d_230.tmp_0"
+ ]
+ },
+ "outputs": {
+ "MeanOut": [
+ "batch_norm_28.w_1"
+ ],
+ "Out": [
+ "batch_norm_28.tmp_3"
+ ],
+ "SavedMean": [
+ "batch_norm_28.tmp_0"
+ ],
+ "SavedVariance": [
+ "batch_norm_28.tmp_1"
+ ],
+ "VarianceOut": [
+ "batch_norm_28.w_2"
+ ]
+ },
+ "type": "batchnorm"
+ },
+ {
+ "attrs": {
+ "offset": 3.0,
+ "scale": 6.0,
+ "threshold": 6.0,
+ "with_quant_attr": false
+ },
+ "inputs": {
+ "X": [
+ "batch_norm_28.tmp_3"
+ ]
+ },
+ "outputs": {
+ "Out": [
+ "hardswish_7.tmp_0"
+ ]
+ },
+ "type": "hard_swish"
+ },
+ {
+ "attrs": {
+ "Scale_in": 1.0,
+ "Scale_in_eltwise": 1.0,
+ "Scale_out": 1.0,
+ "Scale_weights": [
+ 1.0
+ ],
+ "dilations": [
+ 1,
+ 1
+ ],
+ "exhaustive_search": false,
+ "force_fp32_output": false,
+ "fuse_activation": "",
+ "fuse_alpha": 0.0,
+ "fuse_beta": 0.0,
+ "fuse_brelu": false,
+ "fuse_brelu_threshold": 6.0,
+ "fuse_relu": false,
+ "fuse_relu_before_depthwise_conv": false,
+ "fuse_residual_connection": false,
+ "groups": 96,
+ "padding_algorithm": "EXPLICIT",
+ "paddings": [
+ 1,
+ 1
+ ],
+ "strides": [
+ 1,
+ 1
+ ],
+ "use_addto": false,
+ "with_quant_attr": false
+ },
+ "inputs": {
+ "Filter": [
+ "conv2d_29.w_0"
+ ],
+ "Input": [
+ "hardswish_7.tmp_0"
+ ]
+ },
+ "outputs": {
+ "Out": [
+ "depthwise_conv2d_9.tmp_0"
+ ]
+ },
+ "type": "depthwise_conv2d"
+ },
+ {
+ "attrs": {
+ "data_layout": "NCHW",
+ "epsilon": 9.999999747378752e-06,
+ "fuse_with_relu": false,
+ "momentum": 0.8999999761581421,
+ "trainable_statistics": false,
+ "use_global_stats": false,
+ "with_quant_attr": false
+ },
+ "inputs": {
+ "Bias": [
+ "batch_norm_29.b_0"
+ ],
+ "Mean": [
+ "batch_norm_29.w_1"
+ ],
+ "Scale": [
+ "batch_norm_29.w_0"
+ ],
+ "Variance": [
+ "batch_norm_29.w_2"
+ ],
+ "X": [
+ "depthwise_conv2d_9.tmp_0"
+ ]
+ },
+ "outputs": {
+ "MeanOut": [
+ "batch_norm_29.w_1"
+ ],
+ "Out": [
+ "batch_norm_29.tmp_3"
+ ],
+ "SavedMean": [
+ "batch_norm_29.tmp_0"
+ ],
+ "SavedVariance": [
+ "batch_norm_29.tmp_1"
+ ],
+ "VarianceOut": [
+ "batch_norm_29.w_2"
+ ]
+ },
+ "type": "batchnorm"
+ },
+ {
+ "attrs": {
+ "offset": 3.0,
+ "scale": 6.0,
+ "threshold": 6.0,
+ "with_quant_attr": false
+ },
+ "inputs": {
+ "X": [
+ "batch_norm_29.tmp_3"
+ ]
+ },
+ "outputs": {
+ "Out": [
+ "hardswish_8.tmp_0"
+ ]
+ },
+ "type": "hard_swish"
+ },
+ {
+ "attrs": {
+ "Scale_in": 1.0,
+ "Scale_in_eltwise": 1.0,
+ "Scale_out": 1.0,
+ "Scale_weights": [
+ 1.0
+ ],
+ "dilations": [
+ 1,
+ 1
+ ],
+ "exhaustive_search": false,
+ "force_fp32_output": false,
+ "fuse_activation": "",
+ "fuse_alpha": 0.0,
+ "fuse_beta": 0.0,
+ "fuse_brelu": false,
+ "fuse_brelu_threshold": 6.0,
+ "fuse_relu": false,
+ "fuse_relu_before_depthwise_conv": false,
+ "fuse_residual_connection": false,
+ "groups": 1,
+ "padding_algorithm": "EXPLICIT",
+ "paddings": [
+ 0,
+ 0
+ ],
+ "strides": [
+ 1,
+ 1
+ ],
+ "use_addto": false,
+ "with_quant_attr": false
+ },
+ "inputs": {
+ "Filter": [
+ "conv2d_30.w_0"
+ ],
+ "Input": [
+ "hardswish_8.tmp_0"
+ ]
+ },
+ "outputs": {
+ "Out": [
+ "conv2d_231.tmp_0"
+ ]
+ },
+ "type": "conv2d"
+ },
+ {
+ "attrs": {
+ "data_layout": "NCHW",
+ "epsilon": 9.999999747378752e-06,
+ "fuse_with_relu": false,
+ "momentum": 0.8999999761581421,
+ "trainable_statistics": false,
+ "use_global_stats": false,
+ "with_quant_attr": false
+ },
+ "inputs": {
+ "Bias": [
+ "batch_norm_30.b_0"
+ ],
+ "Mean": [
+ "batch_norm_30.w_1"
+ ],
+ "Scale": [
+ "batch_norm_30.w_0"
+ ],
+ "Variance": [
+ "batch_norm_30.w_2"
+ ],
+ "X": [
+ "conv2d_231.tmp_0"
+ ]
+ },
+ "outputs": {
+ "MeanOut": [
+ "batch_norm_30.w_1"
+ ],
+ "Out": [
+ "batch_norm_30.tmp_3"
+ ],
+ "SavedMean": [
+ "batch_norm_30.tmp_0"
+ ],
+ "SavedVariance": [
+ "batch_norm_30.tmp_1"
+ ],
+ "VarianceOut": [
+ "batch_norm_30.w_2"
+ ]
+ },
+ "type": "batchnorm"
+ },
+ {
+ "attrs": {
+ "Scale_out": 1.0,
+ "Scale_x": 1.0,
+ "Scale_y": 1.0,
+ "axis": -1,
+ "with_quant_attr": false,
+ "x_data_format": "",
+ "y_data_format": ""
+ },
+ "inputs": {
+ "X": [
+ "elementwise_add_5"
+ ],
+ "Y": [
+ "batch_norm_30.tmp_3"
+ ]
+ },
+ "outputs": {
+ "Out": [
+ "elementwise_add_6"
+ ]
+ },
+ "type": "elementwise_add"
+ },
+ {
+ "attrs": {
+ "Scale_in": 1.0,
+ "Scale_in_eltwise": 1.0,
+ "Scale_out": 1.0,
+ "Scale_weights": [
+ 1.0
+ ],
+ "dilations": [
+ 1,
+ 1
+ ],
+ "exhaustive_search": false,
+ "force_fp32_output": false,
+ "fuse_activation": "",
+ "fuse_alpha": 0.0,
+ "fuse_beta": 0.0,
+ "fuse_brelu": false,
+ "fuse_brelu_threshold": 6.0,
+ "fuse_relu": false,
+ "fuse_relu_before_depthwise_conv": false,
+ "fuse_residual_connection": false,
+ "groups": 1,
+ "padding_algorithm": "EXPLICIT",
+ "paddings": [
+ 0,
+ 0
+ ],
+ "strides": [
+ 1,
+ 1
+ ],
+ "use_addto": false,
+ "with_quant_attr": false
+ },
+ "inputs": {
+ "Filter": [
+ "conv2d_31.w_0"
+ ],
+ "Input": [
+ "elementwise_add_6"
+ ]
+ },
+ "outputs": {
+ "Out": [
+ "conv2d_232.tmp_0"
+ ]
+ },
+ "type": "conv2d"
+ },
+ {
+ "attrs": {
+ "data_layout": "NCHW",
+ "epsilon": 9.999999747378752e-06,
+ "fuse_with_relu": false,
+ "momentum": 0.8999999761581421,
+ "trainable_statistics": false,
+ "use_global_stats": false,
+ "with_quant_attr": false
+ },
+ "inputs": {
+ "Bias": [
+ "batch_norm_31.b_0"
+ ],
+ "Mean": [
+ "batch_norm_31.w_1"
+ ],
+ "Scale": [
+ "batch_norm_31.w_0"
+ ],
+ "Variance": [
+ "batch_norm_31.w_2"
+ ],
+ "X": [
+ "conv2d_232.tmp_0"
+ ]
+ },
+ "outputs": {
+ "MeanOut": [
+ "batch_norm_31.w_1"
+ ],
+ "Out": [
+ "batch_norm_31.tmp_3"
+ ],
+ "SavedMean": [
+ "batch_norm_31.tmp_0"
+ ],
+ "SavedVariance": [
+ "batch_norm_31.tmp_1"
+ ],
+ "VarianceOut": [
+ "batch_norm_31.w_2"
+ ]
+ },
+ "type": "batchnorm"
+ },
+ {
+ "attrs": {
+ "offset": 3.0,
+ "scale": 6.0,
+ "threshold": 6.0,
+ "with_quant_attr": false
+ },
+ "inputs": {
+ "X": [
+ "batch_norm_31.tmp_3"
+ ]
+ },
+ "outputs": {
+ "Out": [
+ "hardswish_9.tmp_0"
+ ]
+ },
+ "type": "hard_swish"
+ },
+ {
+ "attrs": {
+ "Scale_in": 1.0,
+ "Scale_in_eltwise": 1.0,
+ "Scale_out": 1.0,
+ "Scale_weights": [
+ 1.0
+ ],
+ "dilations": [
+ 1,
+ 1
+ ],
+ "exhaustive_search": false,
+ "force_fp32_output": false,
+ "fuse_activation": "",
+ "fuse_alpha": 0.0,
+ "fuse_beta": 0.0,
+ "fuse_brelu": false,
+ "fuse_brelu_threshold": 6.0,
+ "fuse_relu": false,
+ "fuse_relu_before_depthwise_conv": false,
+ "fuse_residual_connection": false,
+ "groups": 240,
+ "padding_algorithm": "EXPLICIT",
+ "paddings": [
+ 1,
+ 1
+ ],
+ "strides": [
+ 1,
+ 1
+ ],
+ "use_addto": false,
+ "with_quant_attr": false
+ },
+ "inputs": {
+ "Filter": [
+ "conv2d_32.w_0"
+ ],
+ "Input": [
+ "hardswish_9.tmp_0"
+ ]
+ },
+ "outputs": {
+ "Out": [
+ "depthwise_conv2d_10.tmp_0"
+ ]
+ },
+ "type": "depthwise_conv2d"
+ },
+ {
+ "attrs": {
+ "data_layout": "NCHW",
+ "epsilon": 9.999999747378752e-06,
+ "fuse_with_relu": false,
+ "momentum": 0.8999999761581421,
+ "trainable_statistics": false,
+ "use_global_stats": false,
+ "with_quant_attr": false
+ },
+ "inputs": {
+ "Bias": [
+ "batch_norm_32.b_0"
+ ],
+ "Mean": [
+ "batch_norm_32.w_1"
+ ],
+ "Scale": [
+ "batch_norm_32.w_0"
+ ],
+ "Variance": [
+ "batch_norm_32.w_2"
+ ],
+ "X": [
+ "depthwise_conv2d_10.tmp_0"
+ ]
+ },
+ "outputs": {
+ "MeanOut": [
+ "batch_norm_32.w_1"
+ ],
+ "Out": [
+ "batch_norm_32.tmp_3"
+ ],
+ "SavedMean": [
+ "batch_norm_32.tmp_0"
+ ],
+ "SavedVariance": [
+ "batch_norm_32.tmp_1"
+ ],
+ "VarianceOut": [
+ "batch_norm_32.w_2"
+ ]
+ },
+ "type": "batchnorm"
+ },
+ {
+ "attrs": {
+ "offset": 3.0,
+ "scale": 6.0,
+ "threshold": 6.0,
+ "with_quant_attr": false
+ },
+ "inputs": {
+ "X": [
+ "batch_norm_32.tmp_3"
+ ]
+ },
+ "outputs": {
+ "Out": [
+ "hardswish_10.tmp_0"
+ ]
+ },
+ "type": "hard_swish"
+ },
+ {
+ "attrs": {
+ "Scale_in": 1.0,
+ "Scale_in_eltwise": 1.0,
+ "Scale_out": 1.0,
+ "Scale_weights": [
+ 1.0
+ ],
+ "dilations": [
+ 1,
+ 1
+ ],
+ "exhaustive_search": false,
+ "force_fp32_output": false,
+ "fuse_activation": "",
+ "fuse_alpha": 0.0,
+ "fuse_beta": 0.0,
+ "fuse_brelu": false,
+ "fuse_brelu_threshold": 6.0,
+ "fuse_relu": false,
+ "fuse_relu_before_depthwise_conv": false,
+ "fuse_residual_connection": false,
+ "groups": 1,
+ "padding_algorithm": "EXPLICIT",
+ "paddings": [
+ 0,
+ 0
+ ],
+ "strides": [
+ 1,
+ 1
+ ],
+ "use_addto": false,
+ "with_quant_attr": false
+ },
+ "inputs": {
+ "Filter": [
+ "conv2d_33.w_0"
+ ],
+ "Input": [
+ "hardswish_10.tmp_0"
+ ]
+ },
+ "outputs": {
+ "Out": [
+ "conv2d_233.tmp_0"
+ ]
+ },
+ "type": "conv2d"
+ },
+ {
+ "attrs": {
+ "data_layout": "NCHW",
+ "epsilon": 9.999999747378752e-06,
+ "fuse_with_relu": false,
+ "momentum": 0.8999999761581421,
+ "trainable_statistics": false,
+ "use_global_stats": false,
+ "with_quant_attr": false
+ },
+ "inputs": {
+ "Bias": [
+ "batch_norm_33.b_0"
+ ],
+ "Mean": [
+ "batch_norm_33.w_1"
+ ],
+ "Scale": [
+ "batch_norm_33.w_0"
+ ],
+ "Variance": [
+ "batch_norm_33.w_2"
+ ],
+ "X": [
+ "conv2d_233.tmp_0"
+ ]
+ },
+ "outputs": {
+ "MeanOut": [
+ "batch_norm_33.w_1"
+ ],
+ "Out": [
+ "batch_norm_33.tmp_3"
+ ],
+ "SavedMean": [
+ "batch_norm_33.tmp_0"
+ ],
+ "SavedVariance": [
+ "batch_norm_33.tmp_1"
+ ],
+ "VarianceOut": [
+ "batch_norm_33.w_2"
+ ]
+ },
+ "type": "batchnorm"
+ },
+ {
+ "attrs": {
+ "Scale_in": 1.0,
+ "Scale_in_eltwise": 1.0,
+ "Scale_out": 1.0,
+ "Scale_weights": [
+ 1.0
+ ],
+ "dilations": [
+ 1,
+ 1
+ ],
+ "exhaustive_search": false,
+ "force_fp32_output": false,
+ "fuse_activation": "",
+ "fuse_alpha": 0.0,
+ "fuse_beta": 0.0,
+ "fuse_brelu": false,
+ "fuse_brelu_threshold": 6.0,
+ "fuse_relu": false,
+ "fuse_relu_before_depthwise_conv": false,
+ "fuse_residual_connection": false,
+ "groups": 1,
+ "padding_algorithm": "EXPLICIT",
+ "paddings": [
+ 0,
+ 0
+ ],
+ "strides": [
+ 1,
+ 1
+ ],
+ "use_addto": false,
+ "with_quant_attr": false
+ },
+ "inputs": {
+ "Filter": [
+ "conv2d_34.w_0"
+ ],
+ "Input": [
+ "batch_norm_33.tmp_3"
+ ]
+ },
+ "outputs": {
+ "Out": [
+ "conv2d_234.tmp_0"
+ ]
+ },
+ "type": "conv2d"
+ },
+ {
+ "attrs": {
+ "data_layout": "NCHW",
+ "epsilon": 9.999999747378752e-06,
+ "fuse_with_relu": false,
+ "momentum": 0.8999999761581421,
+ "trainable_statistics": false,
+ "use_global_stats": false,
+ "with_quant_attr": false
+ },
+ "inputs": {
+ "Bias": [
+ "batch_norm_34.b_0"
+ ],
+ "Mean": [
+ "batch_norm_34.w_1"
+ ],
+ "Scale": [
+ "batch_norm_34.w_0"
+ ],
+ "Variance": [
+ "batch_norm_34.w_2"
+ ],
+ "X": [
+ "conv2d_234.tmp_0"
+ ]
+ },
+ "outputs": {
+ "MeanOut": [
+ "batch_norm_34.w_1"
+ ],
+ "Out": [
+ "batch_norm_34.tmp_3"
+ ],
+ "SavedMean": [
+ "batch_norm_34.tmp_0"
+ ],
+ "SavedVariance": [
+ "batch_norm_34.tmp_1"
+ ],
+ "VarianceOut": [
+ "batch_norm_34.w_2"
+ ]
+ },
+ "type": "batchnorm"
+ },
+ {
+ "attrs": {
+ "offset": 3.0,
+ "scale": 6.0,
+ "threshold": 6.0,
+ "with_quant_attr": false
+ },
+ "inputs": {
+ "X": [
+ "batch_norm_34.tmp_3"
+ ]
+ },
+ "outputs": {
+ "Out": [
+ "hardswish_11.tmp_0"
+ ]
+ },
+ "type": "hard_swish"
+ },
+ {
+ "attrs": {
+ "Scale_in": 1.0,
+ "Scale_in_eltwise": 1.0,
+ "Scale_out": 1.0,
+ "Scale_weights": [
+ 1.0
+ ],
+ "dilations": [
+ 1,
+ 1
+ ],
+ "exhaustive_search": false,
+ "force_fp32_output": false,
+ "fuse_activation": "",
+ "fuse_alpha": 0.0,
+ "fuse_beta": 0.0,
+ "fuse_brelu": false,
+ "fuse_brelu_threshold": 6.0,
+ "fuse_relu": false,
+ "fuse_relu_before_depthwise_conv": false,
+ "fuse_residual_connection": false,
+ "groups": 336,
+ "padding_algorithm": "EXPLICIT",
+ "paddings": [
+ 1,
+ 1
+ ],
+ "strides": [
+ 1,
+ 1
+ ],
+ "use_addto": false,
+ "with_quant_attr": false
+ },
+ "inputs": {
+ "Filter": [
+ "conv2d_35.w_0"
+ ],
+ "Input": [
+ "hardswish_11.tmp_0"
+ ]
+ },
+ "outputs": {
+ "Out": [
+ "depthwise_conv2d_11.tmp_0"
+ ]
+ },
+ "type": "depthwise_conv2d"
+ },
+ {
+ "attrs": {
+ "data_layout": "NCHW",
+ "epsilon": 9.999999747378752e-06,
+ "fuse_with_relu": false,
+ "momentum": 0.8999999761581421,
+ "trainable_statistics": false,
+ "use_global_stats": false,
+ "with_quant_attr": false
+ },
+ "inputs": {
+ "Bias": [
+ "batch_norm_35.b_0"
+ ],
+ "Mean": [
+ "batch_norm_35.w_1"
+ ],
+ "Scale": [
+ "batch_norm_35.w_0"
+ ],
+ "Variance": [
+ "batch_norm_35.w_2"
+ ],
+ "X": [
+ "depthwise_conv2d_11.tmp_0"
+ ]
+ },
+ "outputs": {
+ "MeanOut": [
+ "batch_norm_35.w_1"
+ ],
+ "Out": [
+ "batch_norm_35.tmp_3"
+ ],
+ "SavedMean": [
+ "batch_norm_35.tmp_0"
+ ],
+ "SavedVariance": [
+ "batch_norm_35.tmp_1"
+ ],
+ "VarianceOut": [
+ "batch_norm_35.w_2"
+ ]
+ },
+ "type": "batchnorm"
+ },
+ {
+ "attrs": {
+ "offset": 3.0,
+ "scale": 6.0,
+ "threshold": 6.0,
+ "with_quant_attr": false
+ },
+ "inputs": {
+ "X": [
+ "batch_norm_35.tmp_3"
+ ]
+ },
+ "outputs": {
+ "Out": [
+ "hardswish_12.tmp_0"
+ ]
+ },
+ "type": "hard_swish"
+ },
+ {
+ "attrs": {
+ "Scale_in": 1.0,
+ "Scale_in_eltwise": 1.0,
+ "Scale_out": 1.0,
+ "Scale_weights": [
+ 1.0
+ ],
+ "dilations": [
+ 1,
+ 1
+ ],
+ "exhaustive_search": false,
+ "force_fp32_output": false,
+ "fuse_activation": "",
+ "fuse_alpha": 0.0,
+ "fuse_beta": 0.0,
+ "fuse_brelu": false,
+ "fuse_brelu_threshold": 6.0,
+ "fuse_relu": false,
+ "fuse_relu_before_depthwise_conv": false,
+ "fuse_residual_connection": false,
+ "groups": 1,
+ "padding_algorithm": "EXPLICIT",
+ "paddings": [
+ 0,
+ 0
+ ],
+ "strides": [
+ 1,
+ 1
+ ],
+ "use_addto": false,
+ "with_quant_attr": false
+ },
+ "inputs": {
+ "Filter": [
+ "conv2d_36.w_0"
+ ],
+ "Input": [
+ "hardswish_12.tmp_0"
+ ]
+ },
+ "outputs": {
+ "Out": [
+ "conv2d_235.tmp_0"
+ ]
+ },
+ "type": "conv2d"
+ },
+ {
+ "attrs": {
+ "data_layout": "NCHW",
+ "epsilon": 9.999999747378752e-06,
+ "fuse_with_relu": false,
+ "momentum": 0.8999999761581421,
+ "trainable_statistics": false,
+ "use_global_stats": false,
+ "with_quant_attr": false
+ },
+ "inputs": {
+ "Bias": [
+ "batch_norm_36.b_0"
+ ],
+ "Mean": [
+ "batch_norm_36.w_1"
+ ],
+ "Scale": [
+ "batch_norm_36.w_0"
+ ],
+ "Variance": [
+ "batch_norm_36.w_2"
+ ],
+ "X": [
+ "conv2d_235.tmp_0"
+ ]
+ },
+ "outputs": {
+ "MeanOut": [
+ "batch_norm_36.w_1"
+ ],
+ "Out": [
+ "batch_norm_36.tmp_3"
+ ],
+ "SavedMean": [
+ "batch_norm_36.tmp_0"
+ ],
+ "SavedVariance": [
+ "batch_norm_36.tmp_1"
+ ],
+ "VarianceOut": [
+ "batch_norm_36.w_2"
+ ]
+ },
+ "type": "batchnorm"
+ },
+ {
+ "attrs": {
+ "Scale_out": 1.0,
+ "Scale_x": 1.0,
+ "Scale_y": 1.0,
+ "axis": -1,
+ "with_quant_attr": false,
+ "x_data_format": "",
+ "y_data_format": ""
+ },
+ "inputs": {
+ "X": [
+ "batch_norm_33.tmp_3"
+ ],
+ "Y": [
+ "batch_norm_36.tmp_3"
+ ]
+ },
+ "outputs": {
+ "Out": [
+ "elementwise_add_7"
+ ]
+ },
+ "type": "elementwise_add"
+ },
+ {
+ "attrs": {
+ "Scale_in": 1.0,
+ "Scale_in_eltwise": 1.0,
+ "Scale_out": 1.0,
+ "Scale_weights": [
+ 1.0
+ ],
+ "dilations": [
+ 1,
+ 1
+ ],
+ "exhaustive_search": false,
+ "force_fp32_output": false,
+ "fuse_activation": "",
+ "fuse_alpha": 0.0,
+ "fuse_beta": 0.0,
+ "fuse_brelu": false,
+ "fuse_brelu_threshold": 6.0,
+ "fuse_relu": false,
+ "fuse_relu_before_depthwise_conv": false,
+ "fuse_residual_connection": false,
+ "groups": 1,
+ "padding_algorithm": "EXPLICIT",
+ "paddings": [
+ 0,
+ 0
+ ],
+ "strides": [
+ 1,
+ 1
+ ],
+ "use_addto": false,
+ "with_quant_attr": false
+ },
+ "inputs": {
+ "Filter": [
+ "conv2d_37.w_0"
+ ],
+ "Input": [
+ "elementwise_add_7"
+ ]
+ },
+ "outputs": {
+ "Out": [
+ "conv2d_236.tmp_0"
+ ]
+ },
+ "type": "conv2d"
+ },
+ {
+ "attrs": {
+ "data_layout": "NCHW",
+ "epsilon": 9.999999747378752e-06,
+ "fuse_with_relu": false,
+ "momentum": 0.8999999761581421,
+ "trainable_statistics": false,
+ "use_global_stats": false,
+ "with_quant_attr": false
+ },
+ "inputs": {
+ "Bias": [
+ "batch_norm_37.b_0"
+ ],
+ "Mean": [
+ "batch_norm_37.w_1"
+ ],
+ "Scale": [
+ "batch_norm_37.w_0"
+ ],
+ "Variance": [
+ "batch_norm_37.w_2"
+ ],
+ "X": [
+ "conv2d_236.tmp_0"
+ ]
+ },
+ "outputs": {
+ "MeanOut": [
+ "batch_norm_37.w_1"
+ ],
+ "Out": [
+ "batch_norm_37.tmp_3"
+ ],
+ "SavedMean": [
+ "batch_norm_37.tmp_0"
+ ],
+ "SavedVariance": [
+ "batch_norm_37.tmp_1"
+ ],
+ "VarianceOut": [
+ "batch_norm_37.w_2"
+ ]
+ },
+ "type": "batchnorm"
+ },
+ {
+ "attrs": {
+ "offset": 3.0,
+ "scale": 6.0,
+ "threshold": 6.0,
+ "with_quant_attr": false
+ },
+ "inputs": {
+ "X": [
+ "batch_norm_37.tmp_3"
+ ]
+ },
+ "outputs": {
+ "Out": [
+ "hardswish_13.tmp_0"
+ ]
+ },
+ "type": "hard_swish"
+ },
+ {
+ "attrs": {
+ "Scale_in": 1.0,
+ "Scale_in_eltwise": 1.0,
+ "Scale_out": 1.0,
+ "Scale_weights": [
+ 1.0
+ ],
+ "dilations": [
+ 1,
+ 1
+ ],
+ "exhaustive_search": false,
+ "force_fp32_output": false,
+ "fuse_activation": "",
+ "fuse_alpha": 0.0,
+ "fuse_beta": 0.0,
+ "fuse_brelu": false,
+ "fuse_brelu_threshold": 6.0,
+ "fuse_relu": false,
+ "fuse_relu_before_depthwise_conv": false,
+ "fuse_residual_connection": false,
+ "groups": 336,
+ "padding_algorithm": "EXPLICIT",
+ "paddings": [
+ 2,
+ 2
+ ],
+ "strides": [
+ 2,
+ 2
+ ],
+ "use_addto": false,
+ "with_quant_attr": false
+ },
+ "inputs": {
+ "Filter": [
+ "conv2d_38.w_0"
+ ],
+ "Input": [
+ "hardswish_13.tmp_0"
+ ]
+ },
+ "outputs": {
+ "Out": [
+ "depthwise_conv2d_12.tmp_0"
+ ]
+ },
+ "type": "depthwise_conv2d"
+ },
+ {
+ "attrs": {
+ "data_layout": "NCHW",
+ "epsilon": 9.999999747378752e-06,
+ "fuse_with_relu": false,
+ "momentum": 0.8999999761581421,
+ "trainable_statistics": false,
+ "use_global_stats": false,
+ "with_quant_attr": false
+ },
+ "inputs": {
+ "Bias": [
+ "batch_norm_38.b_0"
+ ],
+ "Mean": [
+ "batch_norm_38.w_1"
+ ],
+ "Scale": [
+ "batch_norm_38.w_0"
+ ],
+ "Variance": [
+ "batch_norm_38.w_2"
+ ],
+ "X": [
+ "depthwise_conv2d_12.tmp_0"
+ ]
+ },
+ "outputs": {
+ "MeanOut": [
+ "batch_norm_38.w_1"
+ ],
+ "Out": [
+ "batch_norm_38.tmp_3"
+ ],
+ "SavedMean": [
+ "batch_norm_38.tmp_0"
+ ],
+ "SavedVariance": [
+ "batch_norm_38.tmp_1"
+ ],
+ "VarianceOut": [
+ "batch_norm_38.w_2"
+ ]
+ },
+ "type": "batchnorm"
+ },
+ {
+ "attrs": {
+ "offset": 3.0,
+ "scale": 6.0,
+ "threshold": 6.0,
+ "with_quant_attr": false
+ },
+ "inputs": {
+ "X": [
+ "batch_norm_38.tmp_3"
+ ]
+ },
+ "outputs": {
+ "Out": [
+ "hardswish_14.tmp_0"
+ ]
+ },
+ "type": "hard_swish"
+ },
+ {
+ "attrs": {
+ "Scale_in": 1.0,
+ "Scale_in_eltwise": 1.0,
+ "Scale_out": 1.0,
+ "Scale_weights": [
+ 1.0
+ ],
+ "dilations": [
+ 1,
+ 1
+ ],
+ "exhaustive_search": false,
+ "force_fp32_output": false,
+ "fuse_activation": "",
+ "fuse_alpha": 0.0,
+ "fuse_beta": 0.0,
+ "fuse_brelu": false,
+ "fuse_brelu_threshold": 6.0,
+ "fuse_relu": false,
+ "fuse_relu_before_depthwise_conv": false,
+ "fuse_residual_connection": false,
+ "groups": 1,
+ "padding_algorithm": "EXPLICIT",
+ "paddings": [
+ 0,
+ 0
+ ],
+ "strides": [
+ 1,
+ 1
+ ],
+ "use_addto": false,
+ "with_quant_attr": false
+ },
+ "inputs": {
+ "Filter": [
+ "conv2d_39.w_0"
+ ],
+ "Input": [
+ "hardswish_14.tmp_0"
+ ]
+ },
+ "outputs": {
+ "Out": [
+ "conv2d_237.tmp_0"
+ ]
+ },
+ "type": "conv2d"
+ },
+ {
+ "attrs": {
+ "data_layout": "NCHW",
+ "epsilon": 9.999999747378752e-06,
+ "fuse_with_relu": false,
+ "momentum": 0.8999999761581421,
+ "trainable_statistics": false,
+ "use_global_stats": false,
+ "with_quant_attr": false
+ },
+ "inputs": {
+ "Bias": [
+ "batch_norm_39.b_0"
+ ],
+ "Mean": [
+ "batch_norm_39.w_1"
+ ],
+ "Scale": [
+ "batch_norm_39.w_0"
+ ],
+ "Variance": [
+ "batch_norm_39.w_2"
+ ],
+ "X": [
+ "conv2d_237.tmp_0"
+ ]
+ },
+ "outputs": {
+ "MeanOut": [
+ "batch_norm_39.w_1"
+ ],
+ "Out": [
+ "batch_norm_39.tmp_3"
+ ],
+ "SavedMean": [
+ "batch_norm_39.tmp_0"
+ ],
+ "SavedVariance": [
+ "batch_norm_39.tmp_1"
+ ],
+ "VarianceOut": [
+ "batch_norm_39.w_2"
+ ]
+ },
+ "type": "batchnorm"
+ },
+ {
+ "attrs": {
+ "Scale_in": 1.0,
+ "Scale_in_eltwise": 1.0,
+ "Scale_out": 1.0,
+ "Scale_weights": [
+ 1.0
+ ],
+ "dilations": [
+ 1,
+ 1
+ ],
+ "exhaustive_search": false,
+ "force_fp32_output": false,
+ "fuse_activation": "",
+ "fuse_alpha": 0.0,
+ "fuse_beta": 0.0,
+ "fuse_brelu": false,
+ "fuse_brelu_threshold": 6.0,
+ "fuse_relu": false,
+ "fuse_relu_before_depthwise_conv": false,
+ "fuse_residual_connection": false,
+ "groups": 1,
+ "padding_algorithm": "EXPLICIT",
+ "paddings": [
+ 0,
+ 0
+ ],
+ "strides": [
+ 1,
+ 1
+ ],
+ "use_addto": false,
+ "with_quant_attr": false
+ },
+ "inputs": {
+ "Filter": [
+ "conv2d_40.w_0"
+ ],
+ "Input": [
+ "batch_norm_39.tmp_3"
+ ]
+ },
+ "outputs": {
+ "Out": [
+ "conv2d_238.tmp_0"
+ ]
+ },
+ "type": "conv2d"
+ },
+ {
+ "attrs": {
+ "data_layout": "NCHW",
+ "epsilon": 9.999999747378752e-06,
+ "fuse_with_relu": false,
+ "momentum": 0.8999999761581421,
+ "trainable_statistics": false,
+ "use_global_stats": false,
+ "with_quant_attr": false
+ },
+ "inputs": {
+ "Bias": [
+ "batch_norm_40.b_0"
+ ],
+ "Mean": [
+ "batch_norm_40.w_1"
+ ],
+ "Scale": [
+ "batch_norm_40.w_0"
+ ],
+ "Variance": [
+ "batch_norm_40.w_2"
+ ],
+ "X": [
+ "conv2d_238.tmp_0"
+ ]
+ },
+ "outputs": {
+ "MeanOut": [
+ "batch_norm_40.w_1"
+ ],
+ "Out": [
+ "batch_norm_40.tmp_3"
+ ],
+ "SavedMean": [
+ "batch_norm_40.tmp_0"
+ ],
+ "SavedVariance": [
+ "batch_norm_40.tmp_1"
+ ],
+ "VarianceOut": [
+ "batch_norm_40.w_2"
+ ]
+ },
+ "type": "batchnorm"
+ },
+ {
+ "attrs": {
+ "offset": 3.0,
+ "scale": 6.0,
+ "threshold": 6.0,
+ "with_quant_attr": false
+ },
+ "inputs": {
+ "X": [
+ "batch_norm_40.tmp_3"
+ ]
+ },
+ "outputs": {
+ "Out": [
+ "hardswish_15.tmp_0"
+ ]
+ },
+ "type": "hard_swish"
+ },
+ {
+ "attrs": {
+ "Scale_in": 1.0,
+ "Scale_in_eltwise": 1.0,
+ "Scale_out": 1.0,
+ "Scale_weights": [
+ 1.0
+ ],
+ "dilations": [
+ 1,
+ 1
+ ],
+ "exhaustive_search": false,
+ "force_fp32_output": false,
+ "fuse_activation": "",
+ "fuse_alpha": 0.0,
+ "fuse_beta": 0.0,
+ "fuse_brelu": false,
+ "fuse_brelu_threshold": 6.0,
+ "fuse_relu": false,
+ "fuse_relu_before_depthwise_conv": false,
+ "fuse_residual_connection": false,
+ "groups": 480,
+ "padding_algorithm": "EXPLICIT",
+ "paddings": [
+ 2,
+ 2
+ ],
+ "strides": [
+ 1,
+ 1
+ ],
+ "use_addto": false,
+ "with_quant_attr": false
+ },
+ "inputs": {
+ "Filter": [
+ "conv2d_41.w_0"
+ ],
+ "Input": [
+ "hardswish_15.tmp_0"
+ ]
+ },
+ "outputs": {
+ "Out": [
+ "depthwise_conv2d_13.tmp_0"
+ ]
+ },
+ "type": "depthwise_conv2d"
+ },
+ {
+ "attrs": {
+ "data_layout": "NCHW",
+ "epsilon": 9.999999747378752e-06,
+ "fuse_with_relu": false,
+ "momentum": 0.8999999761581421,
+ "trainable_statistics": false,
+ "use_global_stats": false,
+ "with_quant_attr": false
+ },
+ "inputs": {
+ "Bias": [
+ "batch_norm_41.b_0"
+ ],
+ "Mean": [
+ "batch_norm_41.w_1"
+ ],
+ "Scale": [
+ "batch_norm_41.w_0"
+ ],
+ "Variance": [
+ "batch_norm_41.w_2"
+ ],
+ "X": [
+ "depthwise_conv2d_13.tmp_0"
+ ]
+ },
+ "outputs": {
+ "MeanOut": [
+ "batch_norm_41.w_1"
+ ],
+ "Out": [
+ "batch_norm_41.tmp_3"
+ ],
+ "SavedMean": [
+ "batch_norm_41.tmp_0"
+ ],
+ "SavedVariance": [
+ "batch_norm_41.tmp_1"
+ ],
+ "VarianceOut": [
+ "batch_norm_41.w_2"
+ ]
+ },
+ "type": "batchnorm"
+ },
+ {
+ "attrs": {
+ "offset": 3.0,
+ "scale": 6.0,
+ "threshold": 6.0,
+ "with_quant_attr": false
+ },
+ "inputs": {
+ "X": [
+ "batch_norm_41.tmp_3"
+ ]
+ },
+ "outputs": {
+ "Out": [
+ "hardswish_16.tmp_0"
+ ]
+ },
+ "type": "hard_swish"
+ },
+ {
+ "attrs": {
+ "Scale_in": 1.0,
+ "Scale_in_eltwise": 1.0,
+ "Scale_out": 1.0,
+ "Scale_weights": [
+ 1.0
+ ],
+ "dilations": [
+ 1,
+ 1
+ ],
+ "exhaustive_search": false,
+ "force_fp32_output": false,
+ "fuse_activation": "",
+ "fuse_alpha": 0.0,
+ "fuse_beta": 0.0,
+ "fuse_brelu": false,
+ "fuse_brelu_threshold": 6.0,
+ "fuse_relu": false,
+ "fuse_relu_before_depthwise_conv": false,
+ "fuse_residual_connection": false,
+ "groups": 1,
+ "padding_algorithm": "EXPLICIT",
+ "paddings": [
+ 0,
+ 0
+ ],
+ "strides": [
+ 1,
+ 1
+ ],
+ "use_addto": false,
+ "with_quant_attr": false
+ },
+ "inputs": {
+ "Filter": [
+ "conv2d_42.w_0"
+ ],
+ "Input": [
+ "hardswish_16.tmp_0"
+ ]
+ },
+ "outputs": {
+ "Out": [
+ "conv2d_239.tmp_0"
+ ]
+ },
+ "type": "conv2d"
+ },
+ {
+ "attrs": {
+ "data_layout": "NCHW",
+ "epsilon": 9.999999747378752e-06,
+ "fuse_with_relu": false,
+ "momentum": 0.8999999761581421,
+ "trainable_statistics": false,
+ "use_global_stats": false,
+ "with_quant_attr": false
+ },
+ "inputs": {
+ "Bias": [
+ "batch_norm_42.b_0"
+ ],
+ "Mean": [
+ "batch_norm_42.w_1"
+ ],
+ "Scale": [
+ "batch_norm_42.w_0"
+ ],
+ "Variance": [
+ "batch_norm_42.w_2"
+ ],
+ "X": [
+ "conv2d_239.tmp_0"
+ ]
+ },
+ "outputs": {
+ "MeanOut": [
+ "batch_norm_42.w_1"
+ ],
+ "Out": [
+ "batch_norm_42.tmp_3"
+ ],
+ "SavedMean": [
+ "batch_norm_42.tmp_0"
+ ],
+ "SavedVariance": [
+ "batch_norm_42.tmp_1"
+ ],
+ "VarianceOut": [
+ "batch_norm_42.w_2"
+ ]
+ },
+ "type": "batchnorm"
+ },
+ {
+ "attrs": {
+ "Scale_out": 1.0,
+ "Scale_x": 1.0,
+ "Scale_y": 1.0,
+ "axis": -1,
+ "with_quant_attr": false,
+ "x_data_format": "",
+ "y_data_format": ""
+ },
+ "inputs": {
+ "X": [
+ "batch_norm_39.tmp_3"
+ ],
+ "Y": [
+ "batch_norm_42.tmp_3"
+ ]
+ },
+ "outputs": {
+ "Out": [
+ "elementwise_add_8"
+ ]
+ },
+ "type": "elementwise_add"
+ },
+ {
+ "attrs": {
+ "Scale_in": 1.0,
+ "Scale_in_eltwise": 1.0,
+ "Scale_out": 1.0,
+ "Scale_weights": [
+ 1.0
+ ],
+ "dilations": [
+ 1,
+ 1
+ ],
+ "exhaustive_search": false,
+ "force_fp32_output": false,
+ "fuse_activation": "",
+ "fuse_alpha": 0.0,
+ "fuse_beta": 0.0,
+ "fuse_brelu": false,
+ "fuse_brelu_threshold": 6.0,
+ "fuse_relu": false,
+ "fuse_relu_before_depthwise_conv": false,
+ "fuse_residual_connection": false,
+ "groups": 1,
+ "padding_algorithm": "EXPLICIT",
+ "paddings": [
+ 0,
+ 0
+ ],
+ "strides": [
+ 1,
+ 1
+ ],
+ "use_addto": false,
+ "with_quant_attr": false
+ },
+ "inputs": {
+ "Filter": [
+ "conv2d_43.w_0"
+ ],
+ "Input": [
+ "elementwise_add_8"
+ ]
+ },
+ "outputs": {
+ "Out": [
+ "conv2d_240.tmp_0"
+ ]
+ },
+ "type": "conv2d"
+ },
+ {
+ "attrs": {
+ "data_layout": "NCHW",
+ "epsilon": 9.999999747378752e-06,
+ "fuse_with_relu": false,
+ "momentum": 0.8999999761581421,
+ "trainable_statistics": false,
+ "use_global_stats": false,
+ "with_quant_attr": false
+ },
+ "inputs": {
+ "Bias": [
+ "batch_norm_43.b_0"
+ ],
+ "Mean": [
+ "batch_norm_43.w_1"
+ ],
+ "Scale": [
+ "batch_norm_43.w_0"
+ ],
+ "Variance": [
+ "batch_norm_43.w_2"
+ ],
+ "X": [
+ "conv2d_240.tmp_0"
+ ]
+ },
+ "outputs": {
+ "MeanOut": [
+ "batch_norm_43.w_1"
+ ],
+ "Out": [
+ "batch_norm_43.tmp_3"
+ ],
+ "SavedMean": [
+ "batch_norm_43.tmp_0"
+ ],
+ "SavedVariance": [
+ "batch_norm_43.tmp_1"
+ ],
+ "VarianceOut": [
+ "batch_norm_43.w_2"
+ ]
+ },
+ "type": "batchnorm"
+ },
+ {
+ "attrs": {
+ "offset": 3.0,
+ "scale": 6.0,
+ "threshold": 6.0,
+ "with_quant_attr": false
+ },
+ "inputs": {
+ "X": [
+ "batch_norm_43.tmp_3"
+ ]
+ },
+ "outputs": {
+ "Out": [
+ "hardswish_17.tmp_0"
+ ]
+ },
+ "type": "hard_swish"
+ },
+ {
+ "attrs": {
+ "Scale_in": 1.0,
+ "Scale_in_eltwise": 1.0,
+ "Scale_out": 1.0,
+ "Scale_weights": [
+ 1.0
+ ],
+ "dilations": [
+ 1,
+ 1
+ ],
+ "exhaustive_search": false,
+ "force_fp32_output": false,
+ "fuse_activation": "",
+ "fuse_alpha": 0.0,
+ "fuse_beta": 0.0,
+ "fuse_brelu": false,
+ "fuse_brelu_threshold": 6.0,
+ "fuse_relu": false,
+ "fuse_relu_before_depthwise_conv": false,
+ "fuse_residual_connection": false,
+ "groups": 480,
+ "padding_algorithm": "EXPLICIT",
+ "paddings": [
+ 2,
+ 2
+ ],
+ "strides": [
+ 1,
+ 1
+ ],
+ "use_addto": false,
+ "with_quant_attr": false
+ },
+ "inputs": {
+ "Filter": [
+ "conv2d_44.w_0"
+ ],
+ "Input": [
+ "hardswish_17.tmp_0"
+ ]
+ },
+ "outputs": {
+ "Out": [
+ "depthwise_conv2d_14.tmp_0"
+ ]
+ },
+ "type": "depthwise_conv2d"
+ },
+ {
+ "attrs": {
+ "data_layout": "NCHW",
+ "epsilon": 9.999999747378752e-06,
+ "fuse_with_relu": false,
+ "momentum": 0.8999999761581421,
+ "trainable_statistics": false,
+ "use_global_stats": false,
+ "with_quant_attr": false
+ },
+ "inputs": {
+ "Bias": [
+ "batch_norm_44.b_0"
+ ],
+ "Mean": [
+ "batch_norm_44.w_1"
+ ],
+ "Scale": [
+ "batch_norm_44.w_0"
+ ],
+ "Variance": [
+ "batch_norm_44.w_2"
+ ],
+ "X": [
+ "depthwise_conv2d_14.tmp_0"
+ ]
+ },
+ "outputs": {
+ "MeanOut": [
+ "batch_norm_44.w_1"
+ ],
+ "Out": [
+ "batch_norm_44.tmp_3"
+ ],
+ "SavedMean": [
+ "batch_norm_44.tmp_0"
+ ],
+ "SavedVariance": [
+ "batch_norm_44.tmp_1"
+ ],
+ "VarianceOut": [
+ "batch_norm_44.w_2"
+ ]
+ },
+ "type": "batchnorm"
+ },
+ {
+ "attrs": {
+ "offset": 3.0,
+ "scale": 6.0,
+ "threshold": 6.0,
+ "with_quant_attr": false
+ },
+ "inputs": {
+ "X": [
+ "batch_norm_44.tmp_3"
+ ]
+ },
+ "outputs": {
+ "Out": [
+ "hardswish_18.tmp_0"
+ ]
+ },
+ "type": "hard_swish"
+ },
+ {
+ "attrs": {
+ "Scale_in": 1.0,
+ "Scale_in_eltwise": 1.0,
+ "Scale_out": 1.0,
+ "Scale_weights": [
+ 1.0
+ ],
+ "dilations": [
+ 1,
+ 1
+ ],
+ "exhaustive_search": false,
+ "force_fp32_output": false,
+ "fuse_activation": "",
+ "fuse_alpha": 0.0,
+ "fuse_beta": 0.0,
+ "fuse_brelu": false,
+ "fuse_brelu_threshold": 6.0,
+ "fuse_relu": false,
+ "fuse_relu_before_depthwise_conv": false,
+ "fuse_residual_connection": false,
+ "groups": 1,
+ "padding_algorithm": "EXPLICIT",
+ "paddings": [
+ 0,
+ 0
+ ],
+ "strides": [
+ 1,
+ 1
+ ],
+ "use_addto": false,
+ "with_quant_attr": false
+ },
+ "inputs": {
+ "Filter": [
+ "conv2d_45.w_0"
+ ],
+ "Input": [
+ "hardswish_18.tmp_0"
+ ]
+ },
+ "outputs": {
+ "Out": [
+ "conv2d_241.tmp_0"
+ ]
+ },
+ "type": "conv2d"
+ },
+ {
+ "attrs": {
+ "data_layout": "NCHW",
+ "epsilon": 9.999999747378752e-06,
+ "fuse_with_relu": false,
+ "momentum": 0.8999999761581421,
+ "trainable_statistics": false,
+ "use_global_stats": false,
+ "with_quant_attr": false
+ },
+ "inputs": {
+ "Bias": [
+ "batch_norm_45.b_0"
+ ],
+ "Mean": [
+ "batch_norm_45.w_1"
+ ],
+ "Scale": [
+ "batch_norm_45.w_0"
+ ],
+ "Variance": [
+ "batch_norm_45.w_2"
+ ],
+ "X": [
+ "conv2d_241.tmp_0"
+ ]
+ },
+ "outputs": {
+ "MeanOut": [
+ "batch_norm_45.w_1"
+ ],
+ "Out": [
+ "batch_norm_45.tmp_3"
+ ],
+ "SavedMean": [
+ "batch_norm_45.tmp_0"
+ ],
+ "SavedVariance": [
+ "batch_norm_45.tmp_1"
+ ],
+ "VarianceOut": [
+ "batch_norm_45.w_2"
+ ]
+ },
+ "type": "batchnorm"
+ },
+ {
+ "attrs": {
+ "Scale_out": 1.0,
+ "Scale_x": 1.0,
+ "Scale_y": 1.0,
+ "axis": -1,
+ "with_quant_attr": false,
+ "x_data_format": "",
+ "y_data_format": ""
+ },
+ "inputs": {
+ "X": [
+ "elementwise_add_8"
+ ],
+ "Y": [
+ "batch_norm_45.tmp_3"
+ ]
+ },
+ "outputs": {
+ "Out": [
+ "elementwise_add_9"
+ ]
+ },
+ "type": "elementwise_add"
+ },
+ {
+ "attrs": {
+ "Scale_in": 1.0,
+ "Scale_in_eltwise": 1.0,
+ "Scale_out": 1.0,
+ "Scale_weights": [
+ 1.0
+ ],
+ "dilations": [
+ 1,
+ 1
+ ],
+ "exhaustive_search": false,
+ "force_fp32_output": false,
+ "fuse_activation": "",
+ "fuse_alpha": 0.0,
+ "fuse_beta": 0.0,
+ "fuse_brelu": false,
+ "fuse_brelu_threshold": 6.0,
+ "fuse_relu": false,
+ "fuse_relu_before_depthwise_conv": false,
+ "fuse_residual_connection": false,
+ "groups": 1,
+ "padding_algorithm": "EXPLICIT",
+ "paddings": [
+ 0,
+ 0
+ ],
+ "strides": [
+ 1,
+ 1
+ ],
+ "use_addto": false,
+ "with_quant_attr": false
+ },
+ "inputs": {
+ "Filter": [
+ "conv2d_46.w_0"
+ ],
+ "Input": [
+ "elementwise_add_9"
+ ]
+ },
+ "outputs": {
+ "Out": [
+ "conv2d_242.tmp_0"
+ ]
+ },
+ "type": "conv2d"
+ },
+ {
+ "attrs": {
+ "data_layout": "NCHW",
+ "epsilon": 9.999999747378752e-06,
+ "fuse_with_relu": false,
+ "momentum": 0.8999999761581421,
+ "trainable_statistics": false,
+ "use_global_stats": false,
+ "with_quant_attr": false
+ },
+ "inputs": {
+ "Bias": [
+ "batch_norm_46.b_0"
+ ],
+ "Mean": [
+ "batch_norm_46.w_1"
+ ],
+ "Scale": [
+ "batch_norm_46.w_0"
+ ],
+ "Variance": [
+ "batch_norm_46.w_2"
+ ],
+ "X": [
+ "conv2d_242.tmp_0"
+ ]
+ },
+ "outputs": {
+ "MeanOut": [
+ "batch_norm_46.w_1"
+ ],
+ "Out": [
+ "batch_norm_46.tmp_3"
+ ],
+ "SavedMean": [
+ "batch_norm_46.tmp_0"
+ ],
+ "SavedVariance": [
+ "batch_norm_46.tmp_1"
+ ],
+ "VarianceOut": [
+ "batch_norm_46.w_2"
+ ]
+ },
+ "type": "batchnorm"
+ },
+ {
+ "attrs": {
+ "offset": 3.0,
+ "scale": 6.0,
+ "threshold": 6.0,
+ "with_quant_attr": false
+ },
+ "inputs": {
+ "X": [
+ "batch_norm_46.tmp_3"
+ ]
+ },
+ "outputs": {
+ "Out": [
+ "hardswish_19.tmp_0"
+ ]
+ },
+ "type": "hard_swish"
+ },
+ {
+ "attrs": {
+ "Scale_in": 1.0,
+ "Scale_in_eltwise": 1.0,
+ "Scale_out": 1.0,
+ "Scale_weights": [
+ 1.0
+ ],
+ "dilations": [
+ 1,
+ 1
+ ],
+ "exhaustive_search": false,
+ "force_fp32_output": false,
+ "fuse_activation": "",
+ "fuse_alpha": 0.0,
+ "fuse_beta": 0.0,
+ "fuse_brelu": false,
+ "fuse_brelu_threshold": 6.0,
+ "fuse_relu": false,
+ "fuse_relu_before_depthwise_conv": false,
+ "fuse_residual_connection": false,
+ "groups": 1,
+ "padding_algorithm": "EXPLICIT",
+ "paddings": [
+ 0,
+ 0
+ ],
+ "strides": [
+ 1,
+ 1
+ ],
+ "use_addto": false,
+ "with_quant_attr": false
+ },
+ "inputs": {
+ "Filter": [
+ "conv2d_65.w_0"
+ ],
+ "Input": [
+ "hardswish_19.tmp_0"
+ ]
+ },
+ "outputs": {
+ "Out": [
+ "conv2d_243.tmp_0"
+ ]
+ },
+ "type": "conv2d"
+ },
+ {
+ "attrs": {
+ "adaptive": true,
+ "ceil_mode": false,
+ "exclusive": true,
+ "global_pooling": false,
+ "ksize": [
+ 1,
+ 1
+ ],
+ "padding_algorithm": "EXPLICIT",
+ "paddings": [
+ 0,
+ 0
+ ],
+ "pooling_type": "avg",
+ "strides": [
+ 1,
+ 1
+ ],
+ "with_quant_attr": false
+ },
+ "inputs": {
+ "X": [
+ "conv2d_243.tmp_0"
+ ]
+ },
+ "outputs": {
+ "Out": [
+ "pool2d_0.tmp_0"
+ ]
+ },
+ "type": "pool2d"
+ },
+ {
+ "attrs": {
+ "Scale_in": 1.0,
+ "Scale_in_eltwise": 1.0,
+ "Scale_out": 1.0,
+ "Scale_weights": [
+ 1.0
+ ],
+ "dilations": [
+ 1,
+ 1
+ ],
+ "exhaustive_search": false,
+ "force_fp32_output": false,
+ "fuse_activation": "",
+ "fuse_alpha": 0.0,
+ "fuse_beta": 0.0,
+ "fuse_brelu": false,
+ "fuse_brelu_threshold": 6.0,
+ "fuse_relu": false,
+ "fuse_relu_before_depthwise_conv": false,
+ "fuse_residual_connection": false,
+ "groups": 1,
+ "padding_algorithm": "EXPLICIT",
+ "paddings": [
+ 0,
+ 0
+ ],
+ "strides": [
+ 1,
+ 1
+ ],
+ "use_addto": false,
+ "with_quant_attr": false
+ },
+ "inputs": {
+ "Filter": [
+ "conv2d_66.w_0"
+ ],
+ "Input": [
+ "pool2d_0.tmp_0"
+ ]
+ },
+ "outputs": {
+ "Out": [
+ "conv2d_244.tmp_0"
+ ]
+ },
+ "type": "conv2d"
+ },
+ {
+ "attrs": {
+ "Scale_out": 1.0,
+ "Scale_x": 1.0,
+ "Scale_y": 1.0,
+ "axis": 1,
+ "with_quant_attr": false,
+ "x_data_format": "",
+ "y_data_format": ""
+ },
+ "inputs": {
+ "X": [
+ "conv2d_244.tmp_0"
+ ],
+ "Y": [
+ "conv2d_66.b_0"
+ ]
+ },
+ "outputs": {
+ "Out": [
+ "conv2d_244.tmp_1"
+ ]
+ },
+ "type": "elementwise_add"
+ },
+ {
+ "attrs": {
+ "with_quant_attr": false
+ },
+ "inputs": {
+ "X": [
+ "conv2d_244.tmp_1"
+ ]
+ },
+ "outputs": {
+ "Out": [
+ "relu_12.tmp_0"
+ ]
+ },
+ "type": "relu"
+ },
+ {
+ "attrs": {
+ "Scale_in": 1.0,
+ "Scale_in_eltwise": 1.0,
+ "Scale_out": 1.0,
+ "Scale_weights": [
+ 1.0
+ ],
+ "dilations": [
+ 1,
+ 1
+ ],
+ "exhaustive_search": false,
+ "force_fp32_output": false,
+ "fuse_activation": "",
+ "fuse_alpha": 0.0,
+ "fuse_beta": 0.0,
+ "fuse_brelu": false,
+ "fuse_brelu_threshold": 6.0,
+ "fuse_relu": false,
+ "fuse_relu_before_depthwise_conv": false,
+ "fuse_residual_connection": false,
+ "groups": 1,
+ "padding_algorithm": "EXPLICIT",
+ "paddings": [
+ 0,
+ 0
+ ],
+ "strides": [
+ 1,
+ 1
+ ],
+ "use_addto": false,
+ "with_quant_attr": false
+ },
+ "inputs": {
+ "Filter": [
+ "conv2d_67.w_0"
+ ],
+ "Input": [
+ "relu_12.tmp_0"
+ ]
+ },
+ "outputs": {
+ "Out": [
+ "conv2d_245.tmp_0"
+ ]
+ },
+ "type": "conv2d"
+ },
+ {
+ "attrs": {
+ "Scale_out": 1.0,
+ "Scale_x": 1.0,
+ "Scale_y": 1.0,
+ "axis": 1,
+ "with_quant_attr": false,
+ "x_data_format": "",
+ "y_data_format": ""
+ },
+ "inputs": {
+ "X": [
+ "conv2d_245.tmp_0"
+ ],
+ "Y": [
+ "conv2d_67.b_0"
+ ]
+ },
+ "outputs": {
+ "Out": [
+ "conv2d_245.tmp_1"
+ ]
+ },
+ "type": "elementwise_add"
+ },
+ {
+ "attrs": {
+ "offset": 0.5,
+ "slope": 0.20000000298023224,
+ "with_quant_attr": false
+ },
+ "inputs": {
+ "X": [
+ "conv2d_245.tmp_1"
+ ]
+ },
+ "outputs": {
+ "Out": [
+ "hardsigmoid_0.tmp_0"
+ ]
+ },
+ "type": "hard_sigmoid"
+ },
+ {
+ "attrs": {
+ "Scale_out": 1.0,
+ "Scale_x": 1.0,
+ "Scale_y": 1.0,
+ "axis": -1,
+ "with_quant_attr": false,
+ "x_data_format": "",
+ "y_data_format": ""
+ },
+ "inputs": {
+ "X": [
+ "conv2d_243.tmp_0"
+ ],
+ "Y": [
+ "hardsigmoid_0.tmp_0"
+ ]
+ },
+ "outputs": {
+ "Out": [
+ "tmp_0"
+ ]
+ },
+ "type": "elementwise_mul"
+ },
+ {
+ "attrs": {
+ "Scale_out": 1.0,
+ "Scale_x": 1.0,
+ "Scale_y": 1.0,
+ "axis": -1,
+ "with_quant_attr": false,
+ "x_data_format": "",
+ "y_data_format": ""
+ },
+ "inputs": {
+ "X": [
+ "conv2d_243.tmp_0"
+ ],
+ "Y": [
+ "tmp_0"
+ ]
+ },
+ "outputs": {
+ "Out": [
+ "tmp_1"
+ ]
+ },
+ "type": "elementwise_add"
+ },
+ {
+ "attrs": {
+ "Scale_in": 1.0,
+ "Scale_in_eltwise": 1.0,
+ "Scale_out": 1.0,
+ "Scale_weights": [
+ 1.0
+ ],
+ "dilations": [
+ 1,
+ 1
+ ],
+ "exhaustive_search": false,
+ "force_fp32_output": false,
+ "fuse_activation": "",
+ "fuse_alpha": 0.0,
+ "fuse_beta": 0.0,
+ "fuse_brelu": false,
+ "fuse_brelu_threshold": 6.0,
+ "fuse_relu": false,
+ "fuse_relu_before_depthwise_conv": false,
+ "fuse_residual_connection": false,
+ "groups": 1,
+ "padding_algorithm": "EXPLICIT",
+ "paddings": [
+ 0,
+ 0
+ ],
+ "strides": [
+ 1,
+ 1
+ ],
+ "use_addto": false,
+ "with_quant_attr": false
+ },
+ "inputs": {
+ "Filter": [
+ "conv2d_59.w_0"
+ ],
+ "Input": [
+ "elementwise_add_7"
+ ]
+ },
+ "outputs": {
+ "Out": [
+ "conv2d_246.tmp_0"
+ ]
+ },
+ "type": "conv2d"
+ },
+ {
+ "attrs": {
+ "adaptive": true,
+ "ceil_mode": false,
+ "exclusive": true,
+ "global_pooling": false,
+ "ksize": [
+ 1,
+ 1
+ ],
+ "padding_algorithm": "EXPLICIT",
+ "paddings": [
+ 0,
+ 0
+ ],
+ "pooling_type": "avg",
+ "strides": [
+ 1,
+ 1
+ ],
+ "with_quant_attr": false
+ },
+ "inputs": {
+ "X": [
+ "conv2d_246.tmp_0"
+ ]
+ },
+ "outputs": {
+ "Out": [
+ "pool2d_1.tmp_0"
+ ]
+ },
+ "type": "pool2d"
+ },
+ {
+ "attrs": {
+ "Scale_in": 1.0,
+ "Scale_in_eltwise": 1.0,
+ "Scale_out": 1.0,
+ "Scale_weights": [
+ 1.0
+ ],
+ "dilations": [
+ 1,
+ 1
+ ],
+ "exhaustive_search": false,
+ "force_fp32_output": false,
+ "fuse_activation": "",
+ "fuse_alpha": 0.0,
+ "fuse_beta": 0.0,
+ "fuse_brelu": false,
+ "fuse_brelu_threshold": 6.0,
+ "fuse_relu": false,
+ "fuse_relu_before_depthwise_conv": false,
+ "fuse_residual_connection": false,
+ "groups": 1,
+ "padding_algorithm": "EXPLICIT",
+ "paddings": [
+ 0,
+ 0
+ ],
+ "strides": [
+ 1,
+ 1
+ ],
+ "use_addto": false,
+ "with_quant_attr": false
+ },
+ "inputs": {
+ "Filter": [
+ "conv2d_60.w_0"
+ ],
+ "Input": [
+ "pool2d_1.tmp_0"
+ ]
+ },
+ "outputs": {
+ "Out": [
+ "conv2d_247.tmp_0"
+ ]
+ },
+ "type": "conv2d"
+ },
+ {
+ "attrs": {
+ "Scale_out": 1.0,
+ "Scale_x": 1.0,
+ "Scale_y": 1.0,
+ "axis": 1,
+ "with_quant_attr": false,
+ "x_data_format": "",
+ "y_data_format": ""
+ },
+ "inputs": {
+ "X": [
+ "conv2d_247.tmp_0"
+ ],
+ "Y": [
+ "conv2d_60.b_0"
+ ]
+ },
+ "outputs": {
+ "Out": [
+ "conv2d_247.tmp_1"
+ ]
+ },
+ "type": "elementwise_add"
+ },
+ {
+ "attrs": {
+ "with_quant_attr": false
+ },
+ "inputs": {
+ "X": [
+ "conv2d_247.tmp_1"
+ ]
+ },
+ "outputs": {
+ "Out": [
+ "relu_13.tmp_0"
+ ]
+ },
+ "type": "relu"
+ },
+ {
+ "attrs": {
+ "Scale_in": 1.0,
+ "Scale_in_eltwise": 1.0,
+ "Scale_out": 1.0,
+ "Scale_weights": [
+ 1.0
+ ],
+ "dilations": [
+ 1,
+ 1
+ ],
+ "exhaustive_search": false,
+ "force_fp32_output": false,
+ "fuse_activation": "",
+ "fuse_alpha": 0.0,
+ "fuse_beta": 0.0,
+ "fuse_brelu": false,
+ "fuse_brelu_threshold": 6.0,
+ "fuse_relu": false,
+ "fuse_relu_before_depthwise_conv": false,
+ "fuse_residual_connection": false,
+ "groups": 1,
+ "padding_algorithm": "EXPLICIT",
+ "paddings": [
+ 0,
+ 0
+ ],
+ "strides": [
+ 1,
+ 1
+ ],
+ "use_addto": false,
+ "with_quant_attr": false
+ },
+ "inputs": {
+ "Filter": [
+ "conv2d_61.w_0"
+ ],
+ "Input": [
+ "relu_13.tmp_0"
+ ]
+ },
+ "outputs": {
+ "Out": [
+ "conv2d_248.tmp_0"
+ ]
+ },
+ "type": "conv2d"
+ },
+ {
+ "attrs": {
+ "Scale_out": 1.0,
+ "Scale_x": 1.0,
+ "Scale_y": 1.0,
+ "axis": 1,
+ "with_quant_attr": false,
+ "x_data_format": "",
+ "y_data_format": ""
+ },
+ "inputs": {
+ "X": [
+ "conv2d_248.tmp_0"
+ ],
+ "Y": [
+ "conv2d_61.b_0"
+ ]
+ },
+ "outputs": {
+ "Out": [
+ "conv2d_248.tmp_1"
+ ]
+ },
+ "type": "elementwise_add"
+ },
+ {
+ "attrs": {
+ "offset": 0.5,
+ "slope": 0.20000000298023224,
+ "with_quant_attr": false
+ },
+ "inputs": {
+ "X": [
+ "conv2d_248.tmp_1"
+ ]
+ },
+ "outputs": {
+ "Out": [
+ "hardsigmoid_1.tmp_0"
+ ]
+ },
+ "type": "hard_sigmoid"
+ },
+ {
+ "attrs": {
+ "Scale_out": 1.0,
+ "Scale_x": 1.0,
+ "Scale_y": 1.0,
+ "axis": -1,
+ "with_quant_attr": false,
+ "x_data_format": "",
+ "y_data_format": ""
+ },
+ "inputs": {
+ "X": [
+ "conv2d_246.tmp_0"
+ ],
+ "Y": [
+ "hardsigmoid_1.tmp_0"
+ ]
+ },
+ "outputs": {
+ "Out": [
+ "tmp_2"
+ ]
+ },
+ "type": "elementwise_mul"
+ },
+ {
+ "attrs": {
+ "Scale_out": 1.0,
+ "Scale_x": 1.0,
+ "Scale_y": 1.0,
+ "axis": -1,
+ "with_quant_attr": false,
+ "x_data_format": "",
+ "y_data_format": ""
+ },
+ "inputs": {
+ "X": [
+ "conv2d_246.tmp_0"
+ ],
+ "Y": [
+ "tmp_2"
+ ]
+ },
+ "outputs": {
+ "Out": [
+ "tmp_3"
+ ]
+ },
+ "type": "elementwise_add"
+ },
+ {
+ "attrs": {
+ "Scale_in": 1.0,
+ "Scale_in_eltwise": 1.0,
+ "Scale_out": 1.0,
+ "Scale_weights": [
+ 1.0
+ ],
+ "dilations": [
+ 1,
+ 1
+ ],
+ "exhaustive_search": false,
+ "force_fp32_output": false,
+ "fuse_activation": "",
+ "fuse_alpha": 0.0,
+ "fuse_beta": 0.0,
+ "fuse_brelu": false,
+ "fuse_brelu_threshold": 6.0,
+ "fuse_relu": false,
+ "fuse_relu_before_depthwise_conv": false,
+ "fuse_residual_connection": false,
+ "groups": 1,
+ "padding_algorithm": "EXPLICIT",
+ "paddings": [
+ 0,
+ 0
+ ],
+ "strides": [
+ 1,
+ 1
+ ],
+ "use_addto": false,
+ "with_quant_attr": false
+ },
+ "inputs": {
+ "Filter": [
+ "conv2d_53.w_0"
+ ],
+ "Input": [
+ "elementwise_add_3"
+ ]
+ },
+ "outputs": {
+ "Out": [
+ "conv2d_249.tmp_0"
+ ]
+ },
+ "type": "conv2d"
+ },
+ {
+ "attrs": {
+ "adaptive": true,
+ "ceil_mode": false,
+ "exclusive": true,
+ "global_pooling": false,
+ "ksize": [
+ 1,
+ 1
+ ],
+ "padding_algorithm": "EXPLICIT",
+ "paddings": [
+ 0,
+ 0
+ ],
+ "pooling_type": "avg",
+ "strides": [
+ 1,
+ 1
+ ],
+ "with_quant_attr": false
+ },
+ "inputs": {
+ "X": [
+ "conv2d_249.tmp_0"
+ ]
+ },
+ "outputs": {
+ "Out": [
+ "pool2d_2.tmp_0"
+ ]
+ },
+ "type": "pool2d"
+ },
+ {
+ "attrs": {
+ "Scale_in": 1.0,
+ "Scale_in_eltwise": 1.0,
+ "Scale_out": 1.0,
+ "Scale_weights": [
+ 1.0
+ ],
+ "dilations": [
+ 1,
+ 1
+ ],
+ "exhaustive_search": false,
+ "force_fp32_output": false,
+ "fuse_activation": "",
+ "fuse_alpha": 0.0,
+ "fuse_beta": 0.0,
+ "fuse_brelu": false,
+ "fuse_brelu_threshold": 6.0,
+ "fuse_relu": false,
+ "fuse_relu_before_depthwise_conv": false,
+ "fuse_residual_connection": false,
+ "groups": 1,
+ "padding_algorithm": "EXPLICIT",
+ "paddings": [
+ 0,
+ 0
+ ],
+ "strides": [
+ 1,
+ 1
+ ],
+ "use_addto": false,
+ "with_quant_attr": false
+ },
+ "inputs": {
+ "Filter": [
+ "conv2d_54.w_0"
+ ],
+ "Input": [
+ "pool2d_2.tmp_0"
+ ]
+ },
+ "outputs": {
+ "Out": [
+ "conv2d_250.tmp_0"
+ ]
+ },
+ "type": "conv2d"
+ },
+ {
+ "attrs": {
+ "Scale_out": 1.0,
+ "Scale_x": 1.0,
+ "Scale_y": 1.0,
+ "axis": 1,
+ "with_quant_attr": false,
+ "x_data_format": "",
+ "y_data_format": ""
+ },
+ "inputs": {
+ "X": [
+ "conv2d_250.tmp_0"
+ ],
+ "Y": [
+ "conv2d_54.b_0"
+ ]
+ },
+ "outputs": {
+ "Out": [
+ "conv2d_250.tmp_1"
+ ]
+ },
+ "type": "elementwise_add"
+ },
+ {
+ "attrs": {
+ "with_quant_attr": false
+ },
+ "inputs": {
+ "X": [
+ "conv2d_250.tmp_1"
+ ]
+ },
+ "outputs": {
+ "Out": [
+ "relu_14.tmp_0"
+ ]
+ },
+ "type": "relu"
+ },
+ {
+ "attrs": {
+ "Scale_in": 1.0,
+ "Scale_in_eltwise": 1.0,
+ "Scale_out": 1.0,
+ "Scale_weights": [
+ 1.0
+ ],
+ "dilations": [
+ 1,
+ 1
+ ],
+ "exhaustive_search": false,
+ "force_fp32_output": false,
+ "fuse_activation": "",
+ "fuse_alpha": 0.0,
+ "fuse_beta": 0.0,
+ "fuse_brelu": false,
+ "fuse_brelu_threshold": 6.0,
+ "fuse_relu": false,
+ "fuse_relu_before_depthwise_conv": false,
+ "fuse_residual_connection": false,
+ "groups": 1,
+ "padding_algorithm": "EXPLICIT",
+ "paddings": [
+ 0,
+ 0
+ ],
+ "strides": [
+ 1,
+ 1
+ ],
+ "use_addto": false,
+ "with_quant_attr": false
+ },
+ "inputs": {
+ "Filter": [
+ "conv2d_55.w_0"
+ ],
+ "Input": [
+ "relu_14.tmp_0"
+ ]
+ },
+ "outputs": {
+ "Out": [
+ "conv2d_251.tmp_0"
+ ]
+ },
+ "type": "conv2d"
+ },
+ {
+ "attrs": {
+ "Scale_out": 1.0,
+ "Scale_x": 1.0,
+ "Scale_y": 1.0,
+ "axis": 1,
+ "with_quant_attr": false,
+ "x_data_format": "",
+ "y_data_format": ""
+ },
+ "inputs": {
+ "X": [
+ "conv2d_251.tmp_0"
+ ],
+ "Y": [
+ "conv2d_55.b_0"
+ ]
+ },
+ "outputs": {
+ "Out": [
+ "conv2d_251.tmp_1"
+ ]
+ },
+ "type": "elementwise_add"
+ },
+ {
+ "attrs": {
+ "offset": 0.5,
+ "slope": 0.20000000298023224,
+ "with_quant_attr": false
+ },
+ "inputs": {
+ "X": [
+ "conv2d_251.tmp_1"
+ ]
+ },
+ "outputs": {
+ "Out": [
+ "hardsigmoid_2.tmp_0"
+ ]
+ },
+ "type": "hard_sigmoid"
+ },
+ {
+ "attrs": {
+ "Scale_out": 1.0,
+ "Scale_x": 1.0,
+ "Scale_y": 1.0,
+ "axis": -1,
+ "with_quant_attr": false,
+ "x_data_format": "",
+ "y_data_format": ""
+ },
+ "inputs": {
+ "X": [
+ "conv2d_249.tmp_0"
+ ],
+ "Y": [
+ "hardsigmoid_2.tmp_0"
+ ]
+ },
+ "outputs": {
+ "Out": [
+ "tmp_4"
+ ]
+ },
+ "type": "elementwise_mul"
+ },
+ {
+ "attrs": {
+ "Scale_out": 1.0,
+ "Scale_x": 1.0,
+ "Scale_y": 1.0,
+ "axis": -1,
+ "with_quant_attr": false,
+ "x_data_format": "",
+ "y_data_format": ""
+ },
+ "inputs": {
+ "X": [
+ "conv2d_249.tmp_0"
+ ],
+ "Y": [
+ "tmp_4"
+ ]
+ },
+ "outputs": {
+ "Out": [
+ "tmp_5"
+ ]
+ },
+ "type": "elementwise_add"
+ },
+ {
+ "attrs": {
+ "Scale_in": 1.0,
+ "Scale_in_eltwise": 1.0,
+ "Scale_out": 1.0,
+ "Scale_weights": [
+ 1.0
+ ],
+ "dilations": [
+ 1,
+ 1
+ ],
+ "exhaustive_search": false,
+ "force_fp32_output": false,
+ "fuse_activation": "",
+ "fuse_alpha": 0.0,
+ "fuse_beta": 0.0,
+ "fuse_brelu": false,
+ "fuse_brelu_threshold": 6.0,
+ "fuse_relu": false,
+ "fuse_relu_before_depthwise_conv": false,
+ "fuse_residual_connection": false,
+ "groups": 1,
+ "padding_algorithm": "EXPLICIT",
+ "paddings": [
+ 0,
+ 0
+ ],
+ "strides": [
+ 1,
+ 1
+ ],
+ "use_addto": false,
+ "with_quant_attr": false
+ },
+ "inputs": {
+ "Filter": [
+ "conv2d_47.w_0"
+ ],
+ "Input": [
+ "elementwise_add_1"
+ ]
+ },
+ "outputs": {
+ "Out": [
+ "conv2d_252.tmp_0"
+ ]
+ },
+ "type": "conv2d"
+ },
+ {
+ "attrs": {
+ "adaptive": true,
+ "ceil_mode": false,
+ "exclusive": true,
+ "global_pooling": false,
+ "ksize": [
+ 1,
+ 1
+ ],
+ "padding_algorithm": "EXPLICIT",
+ "paddings": [
+ 0,
+ 0
+ ],
+ "pooling_type": "avg",
+ "strides": [
+ 1,
+ 1
+ ],
+ "with_quant_attr": false
+ },
+ "inputs": {
+ "X": [
+ "conv2d_252.tmp_0"
+ ]
+ },
+ "outputs": {
+ "Out": [
+ "pool2d_3.tmp_0"
+ ]
+ },
+ "type": "pool2d"
+ },
+ {
+ "attrs": {
+ "Scale_in": 1.0,
+ "Scale_in_eltwise": 1.0,
+ "Scale_out": 1.0,
+ "Scale_weights": [
+ 1.0
+ ],
+ "dilations": [
+ 1,
+ 1
+ ],
+ "exhaustive_search": false,
+ "force_fp32_output": false,
+ "fuse_activation": "",
+ "fuse_alpha": 0.0,
+ "fuse_beta": 0.0,
+ "fuse_brelu": false,
+ "fuse_brelu_threshold": 6.0,
+ "fuse_relu": false,
+ "fuse_relu_before_depthwise_conv": false,
+ "fuse_residual_connection": false,
+ "groups": 1,
+ "padding_algorithm": "EXPLICIT",
+ "paddings": [
+ 0,
+ 0
+ ],
+ "strides": [
+ 1,
+ 1
+ ],
+ "use_addto": false,
+ "with_quant_attr": false
+ },
+ "inputs": {
+ "Filter": [
+ "conv2d_48.w_0"
+ ],
+ "Input": [
+ "pool2d_3.tmp_0"
+ ]
+ },
+ "outputs": {
+ "Out": [
+ "conv2d_253.tmp_0"
+ ]
+ },
+ "type": "conv2d"
+ },
+ {
+ "attrs": {
+ "Scale_out": 1.0,
+ "Scale_x": 1.0,
+ "Scale_y": 1.0,
+ "axis": 1,
+ "with_quant_attr": false,
+ "x_data_format": "",
+ "y_data_format": ""
+ },
+ "inputs": {
+ "X": [
+ "conv2d_253.tmp_0"
+ ],
+ "Y": [
+ "conv2d_48.b_0"
+ ]
+ },
+ "outputs": {
+ "Out": [
+ "conv2d_253.tmp_1"
+ ]
+ },
+ "type": "elementwise_add"
+ },
+ {
+ "attrs": {
+ "with_quant_attr": false
+ },
+ "inputs": {
+ "X": [
+ "conv2d_253.tmp_1"
+ ]
+ },
+ "outputs": {
+ "Out": [
+ "relu_15.tmp_0"
+ ]
+ },
+ "type": "relu"
+ },
+ {
+ "attrs": {
+ "Scale_in": 1.0,
+ "Scale_in_eltwise": 1.0,
+ "Scale_out": 1.0,
+ "Scale_weights": [
+ 1.0
+ ],
+ "dilations": [
+ 1,
+ 1
+ ],
+ "exhaustive_search": false,
+ "force_fp32_output": false,
+ "fuse_activation": "",
+ "fuse_alpha": 0.0,
+ "fuse_beta": 0.0,
+ "fuse_brelu": false,
+ "fuse_brelu_threshold": 6.0,
+ "fuse_relu": false,
+ "fuse_relu_before_depthwise_conv": false,
+ "fuse_residual_connection": false,
+ "groups": 1,
+ "padding_algorithm": "EXPLICIT",
+ "paddings": [
+ 0,
+ 0
+ ],
+ "strides": [
+ 1,
+ 1
+ ],
+ "use_addto": false,
+ "with_quant_attr": false
+ },
+ "inputs": {
+ "Filter": [
+ "conv2d_49.w_0"
+ ],
+ "Input": [
+ "relu_15.tmp_0"
+ ]
+ },
+ "outputs": {
+ "Out": [
+ "conv2d_254.tmp_0"
+ ]
+ },
+ "type": "conv2d"
+ },
+ {
+ "attrs": {
+ "Scale_out": 1.0,
+ "Scale_x": 1.0,
+ "Scale_y": 1.0,
+ "axis": 1,
+ "with_quant_attr": false,
+ "x_data_format": "",
+ "y_data_format": ""
+ },
+ "inputs": {
+ "X": [
+ "conv2d_254.tmp_0"
+ ],
+ "Y": [
+ "conv2d_49.b_0"
+ ]
+ },
+ "outputs": {
+ "Out": [
+ "conv2d_254.tmp_1"
+ ]
+ },
+ "type": "elementwise_add"
+ },
+ {
+ "attrs": {
+ "offset": 0.5,
+ "slope": 0.20000000298023224,
+ "with_quant_attr": false
+ },
+ "inputs": {
+ "X": [
+ "conv2d_254.tmp_1"
+ ]
+ },
+ "outputs": {
+ "Out": [
+ "hardsigmoid_3.tmp_0"
+ ]
+ },
+ "type": "hard_sigmoid"
+ },
+ {
+ "attrs": {
+ "Scale_out": 1.0,
+ "Scale_x": 1.0,
+ "Scale_y": 1.0,
+ "axis": -1,
+ "with_quant_attr": false,
+ "x_data_format": "",
+ "y_data_format": ""
+ },
+ "inputs": {
+ "X": [
+ "conv2d_252.tmp_0"
+ ],
+ "Y": [
+ "hardsigmoid_3.tmp_0"
+ ]
+ },
+ "outputs": {
+ "Out": [
+ "tmp_6"
+ ]
+ },
+ "type": "elementwise_mul"
+ },
+ {
+ "attrs": {
+ "Scale_out": 1.0,
+ "Scale_x": 1.0,
+ "Scale_y": 1.0,
+ "axis": -1,
+ "with_quant_attr": false,
+ "x_data_format": "",
+ "y_data_format": ""
+ },
+ "inputs": {
+ "X": [
+ "conv2d_252.tmp_0"
+ ],
+ "Y": [
+ "tmp_6"
+ ]
+ },
+ "outputs": {
+ "Out": [
+ "tmp_7"
+ ]
+ },
+ "type": "elementwise_add"
+ },
+ {
+ "attrs": {
+ "align_corners": false,
+ "align_mode": 1,
+ "data_layout": "NCHW",
+ "interp_method": "nearest",
+ "out_d": -1,
+ "out_h": -1,
+ "out_w": -1,
+ "scale": [
+ 2.0,
+ 2.0
+ ],
+ "with_quant_attr": false
+ },
+ "inputs": {
+ "X": [
+ "tmp_1"
+ ]
+ },
+ "outputs": {
+ "Out": [
+ "nearest_interp_v2_0.tmp_0"
+ ]
+ },
+ "type": "nearest_interp_v2"
+ },
+ {
+ "attrs": {
+ "Scale_out": 1.0,
+ "Scale_x": 1.0,
+ "Scale_y": 1.0,
+ "axis": -1,
+ "with_quant_attr": false,
+ "x_data_format": "",
+ "y_data_format": ""
+ },
+ "inputs": {
+ "X": [
+ "tmp_3"
+ ],
+ "Y": [
+ "nearest_interp_v2_0.tmp_0"
+ ]
+ },
+ "outputs": {
+ "Out": [
+ "tmp_8"
+ ]
+ },
+ "type": "elementwise_add"
+ },
+ {
+ "attrs": {
+ "align_corners": false,
+ "align_mode": 1,
+ "data_layout": "NCHW",
+ "interp_method": "nearest",
+ "out_d": -1,
+ "out_h": -1,
+ "out_w": -1,
+ "scale": [
+ 2.0,
+ 2.0
+ ],
+ "with_quant_attr": false
+ },
+ "inputs": {
+ "X": [
+ "tmp_8"
+ ]
+ },
+ "outputs": {
+ "Out": [
+ "nearest_interp_v2_1.tmp_0"
+ ]
+ },
+ "type": "nearest_interp_v2"
+ },
+ {
+ "attrs": {
+ "Scale_out": 1.0,
+ "Scale_x": 1.0,
+ "Scale_y": 1.0,
+ "axis": -1,
+ "with_quant_attr": false,
+ "x_data_format": "",
+ "y_data_format": ""
+ },
+ "inputs": {
+ "X": [
+ "tmp_5"
+ ],
+ "Y": [
+ "nearest_interp_v2_1.tmp_0"
+ ]
+ },
+ "outputs": {
+ "Out": [
+ "tmp_9"
+ ]
+ },
+ "type": "elementwise_add"
+ },
+ {
+ "attrs": {
+ "align_corners": false,
+ "align_mode": 1,
+ "data_layout": "NCHW",
+ "interp_method": "nearest",
+ "out_d": -1,
+ "out_h": -1,
+ "out_w": -1,
+ "scale": [
+ 2.0,
+ 2.0
+ ],
+ "with_quant_attr": false
+ },
+ "inputs": {
+ "X": [
+ "tmp_9"
+ ]
+ },
+ "outputs": {
+ "Out": [
+ "nearest_interp_v2_2.tmp_0"
+ ]
+ },
+ "type": "nearest_interp_v2"
+ },
+ {
+ "attrs": {
+ "Scale_out": 1.0,
+ "Scale_x": 1.0,
+ "Scale_y": 1.0,
+ "axis": -1,
+ "with_quant_attr": false,
+ "x_data_format": "",
+ "y_data_format": ""
+ },
+ "inputs": {
+ "X": [
+ "tmp_7"
+ ],
+ "Y": [
+ "nearest_interp_v2_2.tmp_0"
+ ]
+ },
+ "outputs": {
+ "Out": [
+ "tmp_10"
+ ]
+ },
+ "type": "elementwise_add"
+ },
+ {
+ "attrs": {
+ "Scale_in": 1.0,
+ "Scale_in_eltwise": 1.0,
+ "Scale_out": 1.0,
+ "Scale_weights": [
+ 1.0
+ ],
+ "dilations": [
+ 1,
+ 1
+ ],
+ "exhaustive_search": false,
+ "force_fp32_output": false,
+ "fuse_activation": "",
+ "fuse_alpha": 0.0,
+ "fuse_beta": 0.0,
+ "fuse_brelu": false,
+ "fuse_brelu_threshold": 6.0,
+ "fuse_relu": false,
+ "fuse_relu_before_depthwise_conv": false,
+ "fuse_residual_connection": false,
+ "groups": 1,
+ "padding_algorithm": "EXPLICIT",
+ "paddings": [
+ 1,
+ 1
+ ],
+ "strides": [
+ 1,
+ 1
+ ],
+ "use_addto": false,
+ "with_quant_attr": false
+ },
+ "inputs": {
+ "Filter": [
+ "conv2d_68.w_0"
+ ],
+ "Input": [
+ "tmp_1"
+ ]
+ },
+ "outputs": {
+ "Out": [
+ "conv2d_255.tmp_0"
+ ]
+ },
+ "type": "conv2d"
+ },
+ {
+ "attrs": {
+ "adaptive": true,
+ "ceil_mode": false,
+ "exclusive": true,
+ "global_pooling": false,
+ "ksize": [
+ 1,
+ 1
+ ],
+ "padding_algorithm": "EXPLICIT",
+ "paddings": [
+ 0,
+ 0
+ ],
+ "pooling_type": "avg",
+ "strides": [
+ 1,
+ 1
+ ],
+ "with_quant_attr": false
+ },
+ "inputs": {
+ "X": [
+ "conv2d_255.tmp_0"
+ ]
+ },
+ "outputs": {
+ "Out": [
+ "pool2d_4.tmp_0"
+ ]
+ },
+ "type": "pool2d"
+ },
+ {
+ "attrs": {
+ "Scale_in": 1.0,
+ "Scale_in_eltwise": 1.0,
+ "Scale_out": 1.0,
+ "Scale_weights": [
+ 1.0
+ ],
+ "dilations": [
+ 1,
+ 1
+ ],
+ "exhaustive_search": false,
+ "force_fp32_output": false,
+ "fuse_activation": "",
+ "fuse_alpha": 0.0,
+ "fuse_beta": 0.0,
+ "fuse_brelu": false,
+ "fuse_brelu_threshold": 6.0,
+ "fuse_relu": false,
+ "fuse_relu_before_depthwise_conv": false,
+ "fuse_residual_connection": false,
+ "groups": 1,
+ "padding_algorithm": "EXPLICIT",
+ "paddings": [
+ 0,
+ 0
+ ],
+ "strides": [
+ 1,
+ 1
+ ],
+ "use_addto": false,
+ "with_quant_attr": false
+ },
+ "inputs": {
+ "Filter": [
+ "conv2d_69.w_0"
+ ],
+ "Input": [
+ "pool2d_4.tmp_0"
+ ]
+ },
+ "outputs": {
+ "Out": [
+ "conv2d_256.tmp_0"
+ ]
+ },
+ "type": "conv2d"
+ },
+ {
+ "attrs": {
+ "Scale_out": 1.0,
+ "Scale_x": 1.0,
+ "Scale_y": 1.0,
+ "axis": 1,
+ "with_quant_attr": false,
+ "x_data_format": "",
+ "y_data_format": ""
+ },
+ "inputs": {
+ "X": [
+ "conv2d_256.tmp_0"
+ ],
+ "Y": [
+ "conv2d_69.b_0"
+ ]
+ },
+ "outputs": {
+ "Out": [
+ "conv2d_256.tmp_1"
+ ]
+ },
+ "type": "elementwise_add"
+ },
+ {
+ "attrs": {
+ "with_quant_attr": false
+ },
+ "inputs": {
+ "X": [
+ "conv2d_256.tmp_1"
+ ]
+ },
+ "outputs": {
+ "Out": [
+ "relu_16.tmp_0"
+ ]
+ },
+ "type": "relu"
+ },
+ {
+ "attrs": {
+ "Scale_in": 1.0,
+ "Scale_in_eltwise": 1.0,
+ "Scale_out": 1.0,
+ "Scale_weights": [
+ 1.0
+ ],
+ "dilations": [
+ 1,
+ 1
+ ],
+ "exhaustive_search": false,
+ "force_fp32_output": false,
+ "fuse_activation": "",
+ "fuse_alpha": 0.0,
+ "fuse_beta": 0.0,
+ "fuse_brelu": false,
+ "fuse_brelu_threshold": 6.0,
+ "fuse_relu": false,
+ "fuse_relu_before_depthwise_conv": false,
+ "fuse_residual_connection": false,
+ "groups": 1,
+ "padding_algorithm": "EXPLICIT",
+ "paddings": [
+ 0,
+ 0
+ ],
+ "strides": [
+ 1,
+ 1
+ ],
+ "use_addto": false,
+ "with_quant_attr": false
+ },
+ "inputs": {
+ "Filter": [
+ "conv2d_70.w_0"
+ ],
+ "Input": [
+ "relu_16.tmp_0"
+ ]
+ },
+ "outputs": {
+ "Out": [
+ "conv2d_257.tmp_0"
+ ]
+ },
+ "type": "conv2d"
+ },
+ {
+ "attrs": {
+ "Scale_out": 1.0,
+ "Scale_x": 1.0,
+ "Scale_y": 1.0,
+ "axis": 1,
+ "with_quant_attr": false,
+ "x_data_format": "",
+ "y_data_format": ""
+ },
+ "inputs": {
+ "X": [
+ "conv2d_257.tmp_0"
+ ],
+ "Y": [
+ "conv2d_70.b_0"
+ ]
+ },
+ "outputs": {
+ "Out": [
+ "conv2d_257.tmp_1"
+ ]
+ },
+ "type": "elementwise_add"
+ },
+ {
+ "attrs": {
+ "offset": 0.5,
+ "slope": 0.20000000298023224,
+ "with_quant_attr": false
+ },
+ "inputs": {
+ "X": [
+ "conv2d_257.tmp_1"
+ ]
+ },
+ "outputs": {
+ "Out": [
+ "hardsigmoid_4.tmp_0"
+ ]
+ },
+ "type": "hard_sigmoid"
+ },
+ {
+ "attrs": {
+ "Scale_out": 1.0,
+ "Scale_x": 1.0,
+ "Scale_y": 1.0,
+ "axis": -1,
+ "with_quant_attr": false,
+ "x_data_format": "",
+ "y_data_format": ""
+ },
+ "inputs": {
+ "X": [
+ "conv2d_255.tmp_0"
+ ],
+ "Y": [
+ "hardsigmoid_4.tmp_0"
+ ]
+ },
+ "outputs": {
+ "Out": [
+ "tmp_11"
+ ]
+ },
+ "type": "elementwise_mul"
+ },
+ {
+ "attrs": {
+ "Scale_out": 1.0,
+ "Scale_x": 1.0,
+ "Scale_y": 1.0,
+ "axis": -1,
+ "with_quant_attr": false,
+ "x_data_format": "",
+ "y_data_format": ""
+ },
+ "inputs": {
+ "X": [
+ "conv2d_255.tmp_0"
+ ],
+ "Y": [
+ "tmp_11"
+ ]
+ },
+ "outputs": {
+ "Out": [
+ "tmp_12"
+ ]
+ },
+ "type": "elementwise_add"
+ },
+ {
+ "attrs": {
+ "Scale_in": 1.0,
+ "Scale_in_eltwise": 1.0,
+ "Scale_out": 1.0,
+ "Scale_weights": [
+ 1.0
+ ],
+ "dilations": [
+ 1,
+ 1
+ ],
+ "exhaustive_search": false,
+ "force_fp32_output": false,
+ "fuse_activation": "",
+ "fuse_alpha": 0.0,
+ "fuse_beta": 0.0,
+ "fuse_brelu": false,
+ "fuse_brelu_threshold": 6.0,
+ "fuse_relu": false,
+ "fuse_relu_before_depthwise_conv": false,
+ "fuse_residual_connection": false,
+ "groups": 1,
+ "padding_algorithm": "EXPLICIT",
+ "paddings": [
+ 1,
+ 1
+ ],
+ "strides": [
+ 1,
+ 1
+ ],
+ "use_addto": false,
+ "with_quant_attr": false
+ },
+ "inputs": {
+ "Filter": [
+ "conv2d_62.w_0"
+ ],
+ "Input": [
+ "tmp_8"
+ ]
+ },
+ "outputs": {
+ "Out": [
+ "conv2d_258.tmp_0"
+ ]
+ },
+ "type": "conv2d"
+ },
+ {
+ "attrs": {
+ "adaptive": true,
+ "ceil_mode": false,
+ "exclusive": true,
+ "global_pooling": false,
+ "ksize": [
+ 1,
+ 1
+ ],
+ "padding_algorithm": "EXPLICIT",
+ "paddings": [
+ 0,
+ 0
+ ],
+ "pooling_type": "avg",
+ "strides": [
+ 1,
+ 1
+ ],
+ "with_quant_attr": false
+ },
+ "inputs": {
+ "X": [
+ "conv2d_258.tmp_0"
+ ]
+ },
+ "outputs": {
+ "Out": [
+ "pool2d_5.tmp_0"
+ ]
+ },
+ "type": "pool2d"
+ },
+ {
+ "attrs": {
+ "Scale_in": 1.0,
+ "Scale_in_eltwise": 1.0,
+ "Scale_out": 1.0,
+ "Scale_weights": [
+ 1.0
+ ],
+ "dilations": [
+ 1,
+ 1
+ ],
+ "exhaustive_search": false,
+ "force_fp32_output": false,
+ "fuse_activation": "",
+ "fuse_alpha": 0.0,
+ "fuse_beta": 0.0,
+ "fuse_brelu": false,
+ "fuse_brelu_threshold": 6.0,
+ "fuse_relu": false,
+ "fuse_relu_before_depthwise_conv": false,
+ "fuse_residual_connection": false,
+ "groups": 1,
+ "padding_algorithm": "EXPLICIT",
+ "paddings": [
+ 0,
+ 0
+ ],
+ "strides": [
+ 1,
+ 1
+ ],
+ "use_addto": false,
+ "with_quant_attr": false
+ },
+ "inputs": {
+ "Filter": [
+ "conv2d_63.w_0"
+ ],
+ "Input": [
+ "pool2d_5.tmp_0"
+ ]
+ },
+ "outputs": {
+ "Out": [
+ "conv2d_259.tmp_0"
+ ]
+ },
+ "type": "conv2d"
+ },
+ {
+ "attrs": {
+ "Scale_out": 1.0,
+ "Scale_x": 1.0,
+ "Scale_y": 1.0,
+ "axis": 1,
+ "with_quant_attr": false,
+ "x_data_format": "",
+ "y_data_format": ""
+ },
+ "inputs": {
+ "X": [
+ "conv2d_259.tmp_0"
+ ],
+ "Y": [
+ "conv2d_63.b_0"
+ ]
+ },
+ "outputs": {
+ "Out": [
+ "conv2d_259.tmp_1"
+ ]
+ },
+ "type": "elementwise_add"
+ },
+ {
+ "attrs": {
+ "with_quant_attr": false
+ },
+ "inputs": {
+ "X": [
+ "conv2d_259.tmp_1"
+ ]
+ },
+ "outputs": {
+ "Out": [
+ "relu_17.tmp_0"
+ ]
+ },
+ "type": "relu"
+ },
+ {
+ "attrs": {
+ "Scale_in": 1.0,
+ "Scale_in_eltwise": 1.0,
+ "Scale_out": 1.0,
+ "Scale_weights": [
+ 1.0
+ ],
+ "dilations": [
+ 1,
+ 1
+ ],
+ "exhaustive_search": false,
+ "force_fp32_output": false,
+ "fuse_activation": "",
+ "fuse_alpha": 0.0,
+ "fuse_beta": 0.0,
+ "fuse_brelu": false,
+ "fuse_brelu_threshold": 6.0,
+ "fuse_relu": false,
+ "fuse_relu_before_depthwise_conv": false,
+ "fuse_residual_connection": false,
+ "groups": 1,
+ "padding_algorithm": "EXPLICIT",
+ "paddings": [
+ 0,
+ 0
+ ],
+ "strides": [
+ 1,
+ 1
+ ],
+ "use_addto": false,
+ "with_quant_attr": false
+ },
+ "inputs": {
+ "Filter": [
+ "conv2d_64.w_0"
+ ],
+ "Input": [
+ "relu_17.tmp_0"
+ ]
+ },
+ "outputs": {
+ "Out": [
+ "conv2d_260.tmp_0"
+ ]
+ },
+ "type": "conv2d"
+ },
+ {
+ "attrs": {
+ "Scale_out": 1.0,
+ "Scale_x": 1.0,
+ "Scale_y": 1.0,
+ "axis": 1,
+ "with_quant_attr": false,
+ "x_data_format": "",
+ "y_data_format": ""
+ },
+ "inputs": {
+ "X": [
+ "conv2d_260.tmp_0"
+ ],
+ "Y": [
+ "conv2d_64.b_0"
+ ]
+ },
+ "outputs": {
+ "Out": [
+ "conv2d_260.tmp_1"
+ ]
+ },
+ "type": "elementwise_add"
+ },
+ {
+ "attrs": {
+ "offset": 0.5,
+ "slope": 0.20000000298023224,
+ "with_quant_attr": false
+ },
+ "inputs": {
+ "X": [
+ "conv2d_260.tmp_1"
+ ]
+ },
+ "outputs": {
+ "Out": [
+ "hardsigmoid_5.tmp_0"
+ ]
+ },
+ "type": "hard_sigmoid"
+ },
+ {
+ "attrs": {
+ "Scale_out": 1.0,
+ "Scale_x": 1.0,
+ "Scale_y": 1.0,
+ "axis": -1,
+ "with_quant_attr": false,
+ "x_data_format": "",
+ "y_data_format": ""
+ },
+ "inputs": {
+ "X": [
+ "conv2d_258.tmp_0"
+ ],
+ "Y": [
+ "hardsigmoid_5.tmp_0"
+ ]
+ },
+ "outputs": {
+ "Out": [
+ "tmp_13"
+ ]
+ },
+ "type": "elementwise_mul"
+ },
+ {
+ "attrs": {
+ "Scale_out": 1.0,
+ "Scale_x": 1.0,
+ "Scale_y": 1.0,
+ "axis": -1,
+ "with_quant_attr": false,
+ "x_data_format": "",
+ "y_data_format": ""
+ },
+ "inputs": {
+ "X": [
+ "conv2d_258.tmp_0"
+ ],
+ "Y": [
+ "tmp_13"
+ ]
+ },
+ "outputs": {
+ "Out": [
+ "tmp_14"
+ ]
+ },
+ "type": "elementwise_add"
+ },
+ {
+ "attrs": {
+ "Scale_in": 1.0,
+ "Scale_in_eltwise": 1.0,
+ "Scale_out": 1.0,
+ "Scale_weights": [
+ 1.0
+ ],
+ "dilations": [
+ 1,
+ 1
+ ],
+ "exhaustive_search": false,
+ "force_fp32_output": false,
+ "fuse_activation": "",
+ "fuse_alpha": 0.0,
+ "fuse_beta": 0.0,
+ "fuse_brelu": false,
+ "fuse_brelu_threshold": 6.0,
+ "fuse_relu": false,
+ "fuse_relu_before_depthwise_conv": false,
+ "fuse_residual_connection": false,
+ "groups": 1,
+ "padding_algorithm": "EXPLICIT",
+ "paddings": [
+ 1,
+ 1
+ ],
+ "strides": [
+ 1,
+ 1
+ ],
+ "use_addto": false,
+ "with_quant_attr": false
+ },
+ "inputs": {
+ "Filter": [
+ "conv2d_56.w_0"
+ ],
+ "Input": [
+ "tmp_9"
+ ]
+ },
+ "outputs": {
+ "Out": [
+ "conv2d_261.tmp_0"
+ ]
+ },
+ "type": "conv2d"
+ },
+ {
+ "attrs": {
+ "adaptive": true,
+ "ceil_mode": false,
+ "exclusive": true,
+ "global_pooling": false,
+ "ksize": [
+ 1,
+ 1
+ ],
+ "padding_algorithm": "EXPLICIT",
+ "paddings": [
+ 0,
+ 0
+ ],
+ "pooling_type": "avg",
+ "strides": [
+ 1,
+ 1
+ ],
+ "with_quant_attr": false
+ },
+ "inputs": {
+ "X": [
+ "conv2d_261.tmp_0"
+ ]
+ },
+ "outputs": {
+ "Out": [
+ "pool2d_6.tmp_0"
+ ]
+ },
+ "type": "pool2d"
+ },
+ {
+ "attrs": {
+ "Scale_in": 1.0,
+ "Scale_in_eltwise": 1.0,
+ "Scale_out": 1.0,
+ "Scale_weights": [
+ 1.0
+ ],
+ "dilations": [
+ 1,
+ 1
+ ],
+ "exhaustive_search": false,
+ "force_fp32_output": false,
+ "fuse_activation": "",
+ "fuse_alpha": 0.0,
+ "fuse_beta": 0.0,
+ "fuse_brelu": false,
+ "fuse_brelu_threshold": 6.0,
+ "fuse_relu": false,
+ "fuse_relu_before_depthwise_conv": false,
+ "fuse_residual_connection": false,
+ "groups": 1,
+ "padding_algorithm": "EXPLICIT",
+ "paddings": [
+ 0,
+ 0
+ ],
+ "strides": [
+ 1,
+ 1
+ ],
+ "use_addto": false,
+ "with_quant_attr": false
+ },
+ "inputs": {
+ "Filter": [
+ "conv2d_57.w_0"
+ ],
+ "Input": [
+ "pool2d_6.tmp_0"
+ ]
+ },
+ "outputs": {
+ "Out": [
+ "conv2d_262.tmp_0"
+ ]
+ },
+ "type": "conv2d"
+ },
+ {
+ "attrs": {
+ "Scale_out": 1.0,
+ "Scale_x": 1.0,
+ "Scale_y": 1.0,
+ "axis": 1,
+ "with_quant_attr": false,
+ "x_data_format": "",
+ "y_data_format": ""
+ },
+ "inputs": {
+ "X": [
+ "conv2d_262.tmp_0"
+ ],
+ "Y": [
+ "conv2d_57.b_0"
+ ]
+ },
+ "outputs": {
+ "Out": [
+ "conv2d_262.tmp_1"
+ ]
+ },
+ "type": "elementwise_add"
+ },
+ {
+ "attrs": {
+ "with_quant_attr": false
+ },
+ "inputs": {
+ "X": [
+ "conv2d_262.tmp_1"
+ ]
+ },
+ "outputs": {
+ "Out": [
+ "relu_18.tmp_0"
+ ]
+ },
+ "type": "relu"
+ },
+ {
+ "attrs": {
+ "Scale_in": 1.0,
+ "Scale_in_eltwise": 1.0,
+ "Scale_out": 1.0,
+ "Scale_weights": [
+ 1.0
+ ],
+ "dilations": [
+ 1,
+ 1
+ ],
+ "exhaustive_search": false,
+ "force_fp32_output": false,
+ "fuse_activation": "",
+ "fuse_alpha": 0.0,
+ "fuse_beta": 0.0,
+ "fuse_brelu": false,
+ "fuse_brelu_threshold": 6.0,
+ "fuse_relu": false,
+ "fuse_relu_before_depthwise_conv": false,
+ "fuse_residual_connection": false,
+ "groups": 1,
+ "padding_algorithm": "EXPLICIT",
+ "paddings": [
+ 0,
+ 0
+ ],
+ "strides": [
+ 1,
+ 1
+ ],
+ "use_addto": false,
+ "with_quant_attr": false
+ },
+ "inputs": {
+ "Filter": [
+ "conv2d_58.w_0"
+ ],
+ "Input": [
+ "relu_18.tmp_0"
+ ]
+ },
+ "outputs": {
+ "Out": [
+ "conv2d_263.tmp_0"
+ ]
+ },
+ "type": "conv2d"
+ },
+ {
+ "attrs": {
+ "Scale_out": 1.0,
+ "Scale_x": 1.0,
+ "Scale_y": 1.0,
+ "axis": 1,
+ "with_quant_attr": false,
+ "x_data_format": "",
+ "y_data_format": ""
+ },
+ "inputs": {
+ "X": [
+ "conv2d_263.tmp_0"
+ ],
+ "Y": [
+ "conv2d_58.b_0"
+ ]
+ },
+ "outputs": {
+ "Out": [
+ "conv2d_263.tmp_1"
+ ]
+ },
+ "type": "elementwise_add"
+ },
+ {
+ "attrs": {
+ "offset": 0.5,
+ "slope": 0.20000000298023224,
+ "with_quant_attr": false
+ },
+ "inputs": {
+ "X": [
+ "conv2d_263.tmp_1"
+ ]
+ },
+ "outputs": {
+ "Out": [
+ "hardsigmoid_6.tmp_0"
+ ]
+ },
+ "type": "hard_sigmoid"
+ },
+ {
+ "attrs": {
+ "Scale_out": 1.0,
+ "Scale_x": 1.0,
+ "Scale_y": 1.0,
+ "axis": -1,
+ "with_quant_attr": false,
+ "x_data_format": "",
+ "y_data_format": ""
+ },
+ "inputs": {
+ "X": [
+ "conv2d_261.tmp_0"
+ ],
+ "Y": [
+ "hardsigmoid_6.tmp_0"
+ ]
+ },
+ "outputs": {
+ "Out": [
+ "tmp_15"
+ ]
+ },
+ "type": "elementwise_mul"
+ },
+ {
+ "attrs": {
+ "Scale_out": 1.0,
+ "Scale_x": 1.0,
+ "Scale_y": 1.0,
+ "axis": -1,
+ "with_quant_attr": false,
+ "x_data_format": "",
+ "y_data_format": ""
+ },
+ "inputs": {
+ "X": [
+ "conv2d_261.tmp_0"
+ ],
+ "Y": [
+ "tmp_15"
+ ]
+ },
+ "outputs": {
+ "Out": [
+ "tmp_16"
+ ]
+ },
+ "type": "elementwise_add"
+ },
+ {
+ "attrs": {
+ "Scale_in": 1.0,
+ "Scale_in_eltwise": 1.0,
+ "Scale_out": 1.0,
+ "Scale_weights": [
+ 1.0
+ ],
+ "dilations": [
+ 1,
+ 1
+ ],
+ "exhaustive_search": false,
+ "force_fp32_output": false,
+ "fuse_activation": "",
+ "fuse_alpha": 0.0,
+ "fuse_beta": 0.0,
+ "fuse_brelu": false,
+ "fuse_brelu_threshold": 6.0,
+ "fuse_relu": false,
+ "fuse_relu_before_depthwise_conv": false,
+ "fuse_residual_connection": false,
+ "groups": 1,
+ "padding_algorithm": "EXPLICIT",
+ "paddings": [
+ 1,
+ 1
+ ],
+ "strides": [
+ 1,
+ 1
+ ],
+ "use_addto": false,
+ "with_quant_attr": false
+ },
+ "inputs": {
+ "Filter": [
+ "conv2d_50.w_0"
+ ],
+ "Input": [
+ "tmp_10"
+ ]
+ },
+ "outputs": {
+ "Out": [
+ "conv2d_264.tmp_0"
+ ]
+ },
+ "type": "conv2d"
+ },
+ {
+ "attrs": {
+ "adaptive": true,
+ "ceil_mode": false,
+ "exclusive": true,
+ "global_pooling": false,
+ "ksize": [
+ 1,
+ 1
+ ],
+ "padding_algorithm": "EXPLICIT",
+ "paddings": [
+ 0,
+ 0
+ ],
+ "pooling_type": "avg",
+ "strides": [
+ 1,
+ 1
+ ],
+ "with_quant_attr": false
+ },
+ "inputs": {
+ "X": [
+ "conv2d_264.tmp_0"
+ ]
+ },
+ "outputs": {
+ "Out": [
+ "pool2d_7.tmp_0"
+ ]
+ },
+ "type": "pool2d"
+ },
+ {
+ "attrs": {
+ "Scale_in": 1.0,
+ "Scale_in_eltwise": 1.0,
+ "Scale_out": 1.0,
+ "Scale_weights": [
+ 1.0
+ ],
+ "dilations": [
+ 1,
+ 1
+ ],
+ "exhaustive_search": false,
+ "force_fp32_output": false,
+ "fuse_activation": "",
+ "fuse_alpha": 0.0,
+ "fuse_beta": 0.0,
+ "fuse_brelu": false,
+ "fuse_brelu_threshold": 6.0,
+ "fuse_relu": false,
+ "fuse_relu_before_depthwise_conv": false,
+ "fuse_residual_connection": false,
+ "groups": 1,
+ "padding_algorithm": "EXPLICIT",
+ "paddings": [
+ 0,
+ 0
+ ],
+ "strides": [
+ 1,
+ 1
+ ],
+ "use_addto": false,
+ "with_quant_attr": false
+ },
+ "inputs": {
+ "Filter": [
+ "conv2d_51.w_0"
+ ],
+ "Input": [
+ "pool2d_7.tmp_0"
+ ]
+ },
+ "outputs": {
+ "Out": [
+ "conv2d_265.tmp_0"
+ ]
+ },
+ "type": "conv2d"
+ },
+ {
+ "attrs": {
+ "Scale_out": 1.0,
+ "Scale_x": 1.0,
+ "Scale_y": 1.0,
+ "axis": 1,
+ "with_quant_attr": false,
+ "x_data_format": "",
+ "y_data_format": ""
+ },
+ "inputs": {
+ "X": [
+ "conv2d_265.tmp_0"
+ ],
+ "Y": [
+ "conv2d_51.b_0"
+ ]
+ },
+ "outputs": {
+ "Out": [
+ "conv2d_265.tmp_1"
+ ]
+ },
+ "type": "elementwise_add"
+ },
+ {
+ "attrs": {
+ "with_quant_attr": false
+ },
+ "inputs": {
+ "X": [
+ "conv2d_265.tmp_1"
+ ]
+ },
+ "outputs": {
+ "Out": [
+ "relu_19.tmp_0"
+ ]
+ },
+ "type": "relu"
+ },
+ {
+ "attrs": {
+ "Scale_in": 1.0,
+ "Scale_in_eltwise": 1.0,
+ "Scale_out": 1.0,
+ "Scale_weights": [
+ 1.0
+ ],
+ "dilations": [
+ 1,
+ 1
+ ],
+ "exhaustive_search": false,
+ "force_fp32_output": false,
+ "fuse_activation": "",
+ "fuse_alpha": 0.0,
+ "fuse_beta": 0.0,
+ "fuse_brelu": false,
+ "fuse_brelu_threshold": 6.0,
+ "fuse_relu": false,
+ "fuse_relu_before_depthwise_conv": false,
+ "fuse_residual_connection": false,
+ "groups": 1,
+ "padding_algorithm": "EXPLICIT",
+ "paddings": [
+ 0,
+ 0
+ ],
+ "strides": [
+ 1,
+ 1
+ ],
+ "use_addto": false,
+ "with_quant_attr": false
+ },
+ "inputs": {
+ "Filter": [
+ "conv2d_52.w_0"
+ ],
+ "Input": [
+ "relu_19.tmp_0"
+ ]
+ },
+ "outputs": {
+ "Out": [
+ "conv2d_266.tmp_0"
+ ]
+ },
+ "type": "conv2d"
+ },
+ {
+ "attrs": {
+ "Scale_out": 1.0,
+ "Scale_x": 1.0,
+ "Scale_y": 1.0,
+ "axis": 1,
+ "with_quant_attr": false,
+ "x_data_format": "",
+ "y_data_format": ""
+ },
+ "inputs": {
+ "X": [
+ "conv2d_266.tmp_0"
+ ],
+ "Y": [
+ "conv2d_52.b_0"
+ ]
+ },
+ "outputs": {
+ "Out": [
+ "conv2d_266.tmp_1"
+ ]
+ },
+ "type": "elementwise_add"
+ },
+ {
+ "attrs": {
+ "offset": 0.5,
+ "slope": 0.20000000298023224,
+ "with_quant_attr": false
+ },
+ "inputs": {
+ "X": [
+ "conv2d_266.tmp_1"
+ ]
+ },
+ "outputs": {
+ "Out": [
+ "hardsigmoid_7.tmp_0"
+ ]
+ },
+ "type": "hard_sigmoid"
+ },
+ {
+ "attrs": {
+ "Scale_out": 1.0,
+ "Scale_x": 1.0,
+ "Scale_y": 1.0,
+ "axis": -1,
+ "with_quant_attr": false,
+ "x_data_format": "",
+ "y_data_format": ""
+ },
+ "inputs": {
+ "X": [
+ "conv2d_264.tmp_0"
+ ],
+ "Y": [
+ "hardsigmoid_7.tmp_0"
+ ]
+ },
+ "outputs": {
+ "Out": [
+ "tmp_17"
+ ]
+ },
+ "type": "elementwise_mul"
+ },
+ {
+ "attrs": {
+ "Scale_out": 1.0,
+ "Scale_x": 1.0,
+ "Scale_y": 1.0,
+ "axis": -1,
+ "with_quant_attr": false,
+ "x_data_format": "",
+ "y_data_format": ""
+ },
+ "inputs": {
+ "X": [
+ "conv2d_264.tmp_0"
+ ],
+ "Y": [
+ "tmp_17"
+ ]
+ },
+ "outputs": {
+ "Out": [
+ "tmp_18"
+ ]
+ },
+ "type": "elementwise_add"
+ },
+ {
+ "attrs": {
+ "align_corners": false,
+ "align_mode": 1,
+ "data_layout": "NCHW",
+ "interp_method": "nearest",
+ "out_d": -1,
+ "out_h": -1,
+ "out_w": -1,
+ "scale": [
+ 8.0,
+ 8.0
+ ],
+ "with_quant_attr": false
+ },
+ "inputs": {
+ "X": [
+ "tmp_12"
+ ]
+ },
+ "outputs": {
+ "Out": [
+ "nearest_interp_v2_3.tmp_0"
+ ]
+ },
+ "type": "nearest_interp_v2"
+ },
+ {
+ "attrs": {
+ "align_corners": false,
+ "align_mode": 1,
+ "data_layout": "NCHW",
+ "interp_method": "nearest",
+ "out_d": -1,
+ "out_h": -1,
+ "out_w": -1,
+ "scale": [
+ 4.0,
+ 4.0
+ ],
+ "with_quant_attr": false
+ },
+ "inputs": {
+ "X": [
+ "tmp_14"
+ ]
+ },
+ "outputs": {
+ "Out": [
+ "nearest_interp_v2_4.tmp_0"
+ ]
+ },
+ "type": "nearest_interp_v2"
+ },
+ {
+ "attrs": {
+ "align_corners": false,
+ "align_mode": 1,
+ "data_layout": "NCHW",
+ "interp_method": "nearest",
+ "out_d": -1,
+ "out_h": -1,
+ "out_w": -1,
+ "scale": [
+ 2.0,
+ 2.0
+ ],
+ "with_quant_attr": false
+ },
+ "inputs": {
+ "X": [
+ "tmp_16"
+ ]
+ },
+ "outputs": {
+ "Out": [
+ "nearest_interp_v2_5.tmp_0"
+ ]
+ },
+ "type": "nearest_interp_v2"
+ },
+ {
+ "attrs": {
+ "axis": 1,
+ "with_quant_attr": false
+ },
+ "inputs": {
+ "X": [
+ "nearest_interp_v2_3.tmp_0",
+ "nearest_interp_v2_4.tmp_0",
+ "nearest_interp_v2_5.tmp_0",
+ "tmp_18"
+ ]
+ },
+ "outputs": {
+ "Out": [
+ "concat_0.tmp_0"
+ ]
+ },
+ "type": "concat"
+ },
+ {
+ "attrs": {
+ "Scale_in": 1.0,
+ "Scale_in_eltwise": 1.0,
+ "Scale_out": 1.0,
+ "Scale_weights": [
+ 1.0
+ ],
+ "dilations": [
+ 1,
+ 1
+ ],
+ "exhaustive_search": false,
+ "force_fp32_output": false,
+ "fuse_activation": "",
+ "fuse_alpha": 0.0,
+ "fuse_beta": 0.0,
+ "fuse_brelu": false,
+ "fuse_brelu_threshold": 6.0,
+ "fuse_relu": false,
+ "fuse_relu_before_depthwise_conv": false,
+ "fuse_residual_connection": false,
+ "groups": 1,
+ "padding_algorithm": "EXPLICIT",
+ "paddings": [
+ 1,
+ 1
+ ],
+ "strides": [
+ 1,
+ 1
+ ],
+ "use_addto": false,
+ "with_quant_attr": false
+ },
+ "inputs": {
+ "Filter": [
+ "conv2d_71.w_0"
+ ],
+ "Input": [
+ "concat_0.tmp_0"
+ ]
+ },
+ "outputs": {
+ "Out": [
+ "conv2d_267.tmp_0"
+ ]
+ },
+ "type": "conv2d"
+ },
+ {
+ "attrs": {
+ "data_layout": "NCHW",
+ "epsilon": 9.999999747378752e-06,
+ "fuse_with_relu": false,
+ "momentum": 0.8999999761581421,
+ "trainable_statistics": false,
+ "use_global_stats": false,
+ "with_quant_attr": false
+ },
+ "inputs": {
+ "Bias": [
+ "batch_norm_47.b_0"
+ ],
+ "Mean": [
+ "batch_norm_47.w_1"
+ ],
+ "Scale": [
+ "batch_norm_47.w_0"
+ ],
+ "Variance": [
+ "batch_norm_47.w_2"
+ ],
+ "X": [
+ "conv2d_267.tmp_0"
+ ]
+ },
+ "outputs": {
+ "MeanOut": [
+ "batch_norm_47.w_1"
+ ],
+ "Out": [
+ "batch_norm_47.tmp_3"
+ ],
+ "SavedMean": [
+ "batch_norm_47.tmp_0"
+ ],
+ "SavedVariance": [
+ "batch_norm_47.tmp_1"
+ ],
+ "VarianceOut": [
+ "batch_norm_47.w_2"
+ ]
+ },
+ "type": "batchnorm"
+ },
+ {
+ "attrs": {
+ "with_quant_attr": false
+ },
+ "inputs": {
+ "X": [
+ "batch_norm_47.tmp_3"
+ ]
+ },
+ "outputs": {
+ "Out": [
+ "batch_norm_47.tmp_4"
+ ]
+ },
+ "type": "relu"
+ },
+ {
+ "attrs": {
+ "dilations": [
+ 1,
+ 1
+ ],
+ "force_fp32_output": false,
+ "fuse_activation": "",
+ "fuse_alpha": 0.0,
+ "fuse_beta": 0.0,
+ "fuse_relu": false,
+ "groups": 1,
+ "output_padding": [],
+ "output_size": [],
+ "padding_algorithm": "EXPLICIT",
+ "paddings": [
+ 0,
+ 0
+ ],
+ "strides": [
+ 2,
+ 2
+ ],
+ "with_quant_attr": false
+ },
+ "inputs": {
+ "Filter": [
+ "conv2d_transpose_0.w_0"
+ ],
+ "Input": [
+ "batch_norm_47.tmp_4"
+ ]
+ },
+ "outputs": {
+ "Out": [
+ "conv2d_transpose_12.tmp_0"
+ ]
+ },
+ "type": "conv2d_transpose"
+ },
+ {
+ "attrs": {
+ "Scale_out": 1.0,
+ "Scale_x": 1.0,
+ "Scale_y": 1.0,
+ "axis": 1,
+ "with_quant_attr": false,
+ "x_data_format": "",
+ "y_data_format": ""
+ },
+ "inputs": {
+ "X": [
+ "conv2d_transpose_12.tmp_0"
+ ],
+ "Y": [
+ "conv2d_transpose_0.b_0"
+ ]
+ },
+ "outputs": {
+ "Out": [
+ "elementwise_add_10.tmp_0"
+ ]
+ },
+ "type": "elementwise_add"
+ },
+ {
+ "attrs": {
+ "data_layout": "NCHW",
+ "epsilon": 9.999999747378752e-06,
+ "fuse_with_relu": false,
+ "momentum": 0.8999999761581421,
+ "trainable_statistics": false,
+ "use_global_stats": false,
+ "with_quant_attr": false
+ },
+ "inputs": {
+ "Bias": [
+ "batch_norm_48.b_0"
+ ],
+ "Mean": [
+ "batch_norm_48.w_1"
+ ],
+ "Scale": [
+ "batch_norm_48.w_0"
+ ],
+ "Variance": [
+ "batch_norm_48.w_2"
+ ],
+ "X": [
+ "elementwise_add_10.tmp_0"
+ ]
+ },
+ "outputs": {
+ "MeanOut": [
+ "batch_norm_48.w_1"
+ ],
+ "Out": [
+ "batch_norm_48.tmp_3"
+ ],
+ "SavedMean": [
+ "batch_norm_48.tmp_0"
+ ],
+ "SavedVariance": [
+ "batch_norm_48.tmp_1"
+ ],
+ "VarianceOut": [
+ "batch_norm_48.w_2"
+ ]
+ },
+ "type": "batchnorm"
+ },
+ {
+ "attrs": {
+ "with_quant_attr": false
+ },
+ "inputs": {
+ "X": [
+ "batch_norm_48.tmp_3"
+ ]
+ },
+ "outputs": {
+ "Out": [
+ "batch_norm_48.tmp_4"
+ ]
+ },
+ "type": "relu"
+ },
+ {
+ "attrs": {
+ "dilations": [
+ 1,
+ 1
+ ],
+ "force_fp32_output": false,
+ "fuse_activation": "",
+ "fuse_alpha": 0.0,
+ "fuse_beta": 0.0,
+ "fuse_relu": false,
+ "groups": 1,
+ "output_padding": [],
+ "output_size": [],
+ "padding_algorithm": "EXPLICIT",
+ "paddings": [
+ 0,
+ 0
+ ],
+ "strides": [
+ 2,
+ 2
+ ],
+ "with_quant_attr": false
+ },
+ "inputs": {
+ "Filter": [
+ "conv2d_transpose_1.w_0"
+ ],
+ "Input": [
+ "batch_norm_48.tmp_4"
+ ]
+ },
+ "outputs": {
+ "Out": [
+ "conv2d_transpose_13.tmp_0"
+ ]
+ },
+ "type": "conv2d_transpose"
+ },
+ {
+ "attrs": {
+ "Scale_out": 1.0,
+ "Scale_x": 1.0,
+ "Scale_y": 1.0,
+ "axis": 1,
+ "with_quant_attr": false,
+ "x_data_format": "",
+ "y_data_format": ""
+ },
+ "inputs": {
+ "X": [
+ "conv2d_transpose_13.tmp_0"
+ ],
+ "Y": [
+ "conv2d_transpose_1.b_0"
+ ]
+ },
+ "outputs": {
+ "Out": [
+ "elementwise_add_11.tmp_0"
+ ]
+ },
+ "type": "elementwise_add"
+ },
+ {
+ "attrs": {
+ "with_quant_attr": false
+ },
+ "inputs": {
+ "X": [
+ "elementwise_add_11.tmp_0"
+ ]
+ },
+ "outputs": {
+ "Out": [
+ "sigmoid_0.tmp_0"
+ ]
+ },
+ "type": "sigmoid"
+ },
+ {
+ "attrs": {
+ "with_quant_attr": false
+ },
+ "inputs": {
+ "X": [
+ "sigmoid_0.tmp_0"
+ ]
+ },
+ "outputs": {
+ "Out": [
+ "fetch"
+ ]
+ },
+ "type": "fetch"
+ }
+ ],
+ "vars": {
+ "batch_norm_0.b_0": {
+ "name": "batch_norm_0.b_0",
+ "persistable": true,
+ "shape": [
+ 8
+ ]
+ },
+ "batch_norm_0.tmp_0": {
+ "name": "batch_norm_0.tmp_0",
+ "persistable": false,
+ "shape": [
+ 0
+ ]
+ },
+ "batch_norm_0.tmp_1": {
+ "name": "batch_norm_0.tmp_1",
+ "persistable": false,
+ "shape": [
+ 0
+ ]
+ },
+ "batch_norm_0.tmp_2": {
+ "name": "batch_norm_0.tmp_2",
+ "persistable": false,
+ "shape": [
+ 0
+ ]
+ },
+ "batch_norm_0.tmp_3": {
+ "name": "batch_norm_0.tmp_3",
+ "persistable": false,
+ "shape": [
+ 1,
+ 8,
+ 1,
+ 1
+ ]
+ },
+ "batch_norm_0.w_0": {
+ "name": "batch_norm_0.w_0",
+ "persistable": true,
+ "shape": [
+ 8
+ ]
+ },
+ "batch_norm_0.w_1": {
+ "name": "batch_norm_0.w_1",
+ "persistable": true,
+ "shape": [
+ 8
+ ]
+ },
+ "batch_norm_0.w_2": {
+ "name": "batch_norm_0.w_2",
+ "persistable": true,
+ "shape": [
+ 8
+ ]
+ },
+ "batch_norm_1.b_0": {
+ "name": "batch_norm_1.b_0",
+ "persistable": true,
+ "shape": [
+ 8
+ ]
+ },
+ "batch_norm_1.tmp_0": {
+ "name": "batch_norm_1.tmp_0",
+ "persistable": false,
+ "shape": [
+ 0
+ ]
+ },
+ "batch_norm_1.tmp_1": {
+ "name": "batch_norm_1.tmp_1",
+ "persistable": false,
+ "shape": [
+ 0
+ ]
+ },
+ "batch_norm_1.tmp_2": {
+ "name": "batch_norm_1.tmp_2",
+ "persistable": false,
+ "shape": [
+ 0
+ ]
+ },
+ "batch_norm_1.tmp_3": {
+ "name": "batch_norm_1.tmp_3",
+ "persistable": false,
+ "shape": [
+ 1,
+ 8,
+ 1,
+ 1
+ ]
+ },
+ "batch_norm_1.w_0": {
+ "name": "batch_norm_1.w_0",
+ "persistable": true,
+ "shape": [
+ 8
+ ]
+ },
+ "batch_norm_1.w_1": {
+ "name": "batch_norm_1.w_1",
+ "persistable": true,
+ "shape": [
+ 8
+ ]
+ },
+ "batch_norm_1.w_2": {
+ "name": "batch_norm_1.w_2",
+ "persistable": true,
+ "shape": [
+ 8
+ ]
+ },
+ "batch_norm_10.b_0": {
+ "name": "batch_norm_10.b_0",
+ "persistable": true,
+ "shape": [
+ 40
+ ]
+ },
+ "batch_norm_10.tmp_0": {
+ "name": "batch_norm_10.tmp_0",
+ "persistable": false,
+ "shape": [
+ 0
+ ]
+ },
+ "batch_norm_10.tmp_1": {
+ "name": "batch_norm_10.tmp_1",
+ "persistable": false,
+ "shape": [
+ 0
+ ]
+ },
+ "batch_norm_10.tmp_2": {
+ "name": "batch_norm_10.tmp_2",
+ "persistable": false,
+ "shape": [
+ 0
+ ]
+ },
+ "batch_norm_10.tmp_3": {
+ "name": "batch_norm_10.tmp_3",
+ "persistable": false,
+ "shape": [
+ 1,
+ 40,
+ 1,
+ 1
+ ]
+ },
+ "batch_norm_10.w_0": {
+ "name": "batch_norm_10.w_0",
+ "persistable": true,
+ "shape": [
+ 40
+ ]
+ },
+ "batch_norm_10.w_1": {
+ "name": "batch_norm_10.w_1",
+ "persistable": true,
+ "shape": [
+ 40
+ ]
+ },
+ "batch_norm_10.w_2": {
+ "name": "batch_norm_10.w_2",
+ "persistable": true,
+ "shape": [
+ 40
+ ]
+ },
+ "batch_norm_11.b_0": {
+ "name": "batch_norm_11.b_0",
+ "persistable": true,
+ "shape": [
+ 40
+ ]
+ },
+ "batch_norm_11.tmp_0": {
+ "name": "batch_norm_11.tmp_0",
+ "persistable": false,
+ "shape": [
+ 0
+ ]
+ },
+ "batch_norm_11.tmp_1": {
+ "name": "batch_norm_11.tmp_1",
+ "persistable": false,
+ "shape": [
+ 0
+ ]
+ },
+ "batch_norm_11.tmp_2": {
+ "name": "batch_norm_11.tmp_2",
+ "persistable": false,
+ "shape": [
+ 0
+ ]
+ },
+ "batch_norm_11.tmp_3": {
+ "name": "batch_norm_11.tmp_3",
+ "persistable": false,
+ "shape": [
+ 1,
+ 40,
+ 1,
+ 1
+ ]
+ },
+ "batch_norm_11.w_0": {
+ "name": "batch_norm_11.w_0",
+ "persistable": true,
+ "shape": [
+ 40
+ ]
+ },
+ "batch_norm_11.w_1": {
+ "name": "batch_norm_11.w_1",
+ "persistable": true,
+ "shape": [
+ 40
+ ]
+ },
+ "batch_norm_11.w_2": {
+ "name": "batch_norm_11.w_2",
+ "persistable": true,
+ "shape": [
+ 40
+ ]
+ },
+ "batch_norm_12.b_0": {
+ "name": "batch_norm_12.b_0",
+ "persistable": true,
+ "shape": [
+ 24
+ ]
+ },
+ "batch_norm_12.tmp_0": {
+ "name": "batch_norm_12.tmp_0",
+ "persistable": false,
+ "shape": [
+ 0
+ ]
+ },
+ "batch_norm_12.tmp_1": {
+ "name": "batch_norm_12.tmp_1",
+ "persistable": false,
+ "shape": [
+ 0
+ ]
+ },
+ "batch_norm_12.tmp_2": {
+ "name": "batch_norm_12.tmp_2",
+ "persistable": false,
+ "shape": [
+ 0
+ ]
+ },
+ "batch_norm_12.tmp_3": {
+ "name": "batch_norm_12.tmp_3",
+ "persistable": false,
+ "shape": [
+ 1,
+ 24,
+ 1,
+ 1
+ ]
+ },
+ "batch_norm_12.w_0": {
+ "name": "batch_norm_12.w_0",
+ "persistable": true,
+ "shape": [
+ 24
+ ]
+ },
+ "batch_norm_12.w_1": {
+ "name": "batch_norm_12.w_1",
+ "persistable": true,
+ "shape": [
+ 24
+ ]
+ },
+ "batch_norm_12.w_2": {
+ "name": "batch_norm_12.w_2",
+ "persistable": true,
+ "shape": [
+ 24
+ ]
+ },
+ "batch_norm_13.b_0": {
+ "name": "batch_norm_13.b_0",
+ "persistable": true,
+ "shape": [
+ 64
+ ]
+ },
+ "batch_norm_13.tmp_0": {
+ "name": "batch_norm_13.tmp_0",
+ "persistable": false,
+ "shape": [
+ 0
+ ]
+ },
+ "batch_norm_13.tmp_1": {
+ "name": "batch_norm_13.tmp_1",
+ "persistable": false,
+ "shape": [
+ 0
+ ]
+ },
+ "batch_norm_13.tmp_2": {
+ "name": "batch_norm_13.tmp_2",
+ "persistable": false,
+ "shape": [
+ 0
+ ]
+ },
+ "batch_norm_13.tmp_3": {
+ "name": "batch_norm_13.tmp_3",
+ "persistable": false,
+ "shape": [
+ 1,
+ 64,
+ 1,
+ 1
+ ]
+ },
+ "batch_norm_13.w_0": {
+ "name": "batch_norm_13.w_0",
+ "persistable": true,
+ "shape": [
+ 64
+ ]
+ },
+ "batch_norm_13.w_1": {
+ "name": "batch_norm_13.w_1",
+ "persistable": true,
+ "shape": [
+ 64
+ ]
+ },
+ "batch_norm_13.w_2": {
+ "name": "batch_norm_13.w_2",
+ "persistable": true,
+ "shape": [
+ 64
+ ]
+ },
+ "batch_norm_14.b_0": {
+ "name": "batch_norm_14.b_0",
+ "persistable": true,
+ "shape": [
+ 64
+ ]
+ },
+ "batch_norm_14.tmp_0": {
+ "name": "batch_norm_14.tmp_0",
+ "persistable": false,
+ "shape": [
+ 0
+ ]
+ },
+ "batch_norm_14.tmp_1": {
+ "name": "batch_norm_14.tmp_1",
+ "persistable": false,
+ "shape": [
+ 0
+ ]
+ },
+ "batch_norm_14.tmp_2": {
+ "name": "batch_norm_14.tmp_2",
+ "persistable": false,
+ "shape": [
+ 0
+ ]
+ },
+ "batch_norm_14.tmp_3": {
+ "name": "batch_norm_14.tmp_3",
+ "persistable": false,
+ "shape": [
+ 1,
+ 64,
+ 1,
+ 1
+ ]
+ },
+ "batch_norm_14.w_0": {
+ "name": "batch_norm_14.w_0",
+ "persistable": true,
+ "shape": [
+ 64
+ ]
+ },
+ "batch_norm_14.w_1": {
+ "name": "batch_norm_14.w_1",
+ "persistable": true,
+ "shape": [
+ 64
+ ]
+ },
+ "batch_norm_14.w_2": {
+ "name": "batch_norm_14.w_2",
+ "persistable": true,
+ "shape": [
+ 64
+ ]
+ },
+ "batch_norm_15.b_0": {
+ "name": "batch_norm_15.b_0",
+ "persistable": true,
+ "shape": [
+ 24
+ ]
+ },
+ "batch_norm_15.tmp_0": {
+ "name": "batch_norm_15.tmp_0",
+ "persistable": false,
+ "shape": [
+ 0
+ ]
+ },
+ "batch_norm_15.tmp_1": {
+ "name": "batch_norm_15.tmp_1",
+ "persistable": false,
+ "shape": [
+ 0
+ ]
+ },
+ "batch_norm_15.tmp_2": {
+ "name": "batch_norm_15.tmp_2",
+ "persistable": false,
+ "shape": [
+ 0
+ ]
+ },
+ "batch_norm_15.tmp_3": {
+ "name": "batch_norm_15.tmp_3",
+ "persistable": false,
+ "shape": [
+ 1,
+ 24,
+ 1,
+ 1
+ ]
+ },
+ "batch_norm_15.w_0": {
+ "name": "batch_norm_15.w_0",
+ "persistable": true,
+ "shape": [
+ 24
+ ]
+ },
+ "batch_norm_15.w_1": {
+ "name": "batch_norm_15.w_1",
+ "persistable": true,
+ "shape": [
+ 24
+ ]
+ },
+ "batch_norm_15.w_2": {
+ "name": "batch_norm_15.w_2",
+ "persistable": true,
+ "shape": [
+ 24
+ ]
+ },
+ "batch_norm_16.b_0": {
+ "name": "batch_norm_16.b_0",
+ "persistable": true,
+ "shape": [
+ 64
+ ]
+ },
+ "batch_norm_16.tmp_0": {
+ "name": "batch_norm_16.tmp_0",
+ "persistable": false,
+ "shape": [
+ 0
+ ]
+ },
+ "batch_norm_16.tmp_1": {
+ "name": "batch_norm_16.tmp_1",
+ "persistable": false,
+ "shape": [
+ 0
+ ]
+ },
+ "batch_norm_16.tmp_2": {
+ "name": "batch_norm_16.tmp_2",
+ "persistable": false,
+ "shape": [
+ 0
+ ]
+ },
+ "batch_norm_16.tmp_3": {
+ "name": "batch_norm_16.tmp_3",
+ "persistable": false,
+ "shape": [
+ 1,
+ 64,
+ 1,
+ 1
+ ]
+ },
+ "batch_norm_16.w_0": {
+ "name": "batch_norm_16.w_0",
+ "persistable": true,
+ "shape": [
+ 64
+ ]
+ },
+ "batch_norm_16.w_1": {
+ "name": "batch_norm_16.w_1",
+ "persistable": true,
+ "shape": [
+ 64
+ ]
+ },
+ "batch_norm_16.w_2": {
+ "name": "batch_norm_16.w_2",
+ "persistable": true,
+ "shape": [
+ 64
+ ]
+ },
+ "batch_norm_17.b_0": {
+ "name": "batch_norm_17.b_0",
+ "persistable": true,
+ "shape": [
+ 64
+ ]
+ },
+ "batch_norm_17.tmp_0": {
+ "name": "batch_norm_17.tmp_0",
+ "persistable": false,
+ "shape": [
+ 0
+ ]
+ },
+ "batch_norm_17.tmp_1": {
+ "name": "batch_norm_17.tmp_1",
+ "persistable": false,
+ "shape": [
+ 0
+ ]
+ },
+ "batch_norm_17.tmp_2": {
+ "name": "batch_norm_17.tmp_2",
+ "persistable": false,
+ "shape": [
+ 0
+ ]
+ },
+ "batch_norm_17.tmp_3": {
+ "name": "batch_norm_17.tmp_3",
+ "persistable": false,
+ "shape": [
+ 1,
+ 64,
+ 1,
+ 1
+ ]
+ },
+ "batch_norm_17.w_0": {
+ "name": "batch_norm_17.w_0",
+ "persistable": true,
+ "shape": [
+ 64
+ ]
+ },
+ "batch_norm_17.w_1": {
+ "name": "batch_norm_17.w_1",
+ "persistable": true,
+ "shape": [
+ 64
+ ]
+ },
+ "batch_norm_17.w_2": {
+ "name": "batch_norm_17.w_2",
+ "persistable": true,
+ "shape": [
+ 64
+ ]
+ },
+ "batch_norm_18.b_0": {
+ "name": "batch_norm_18.b_0",
+ "persistable": true,
+ "shape": [
+ 24
+ ]
+ },
+ "batch_norm_18.tmp_0": {
+ "name": "batch_norm_18.tmp_0",
+ "persistable": false,
+ "shape": [
+ 0
+ ]
+ },
+ "batch_norm_18.tmp_1": {
+ "name": "batch_norm_18.tmp_1",
+ "persistable": false,
+ "shape": [
+ 0
+ ]
+ },
+ "batch_norm_18.tmp_2": {
+ "name": "batch_norm_18.tmp_2",
+ "persistable": false,
+ "shape": [
+ 0
+ ]
+ },
+ "batch_norm_18.tmp_3": {
+ "name": "batch_norm_18.tmp_3",
+ "persistable": false,
+ "shape": [
+ 1,
+ 24,
+ 1,
+ 1
+ ]
+ },
+ "batch_norm_18.w_0": {
+ "name": "batch_norm_18.w_0",
+ "persistable": true,
+ "shape": [
+ 24
+ ]
+ },
+ "batch_norm_18.w_1": {
+ "name": "batch_norm_18.w_1",
+ "persistable": true,
+ "shape": [
+ 24
+ ]
+ },
+ "batch_norm_18.w_2": {
+ "name": "batch_norm_18.w_2",
+ "persistable": true,
+ "shape": [
+ 24
+ ]
+ },
+ "batch_norm_19.b_0": {
+ "name": "batch_norm_19.b_0",
+ "persistable": true,
+ "shape": [
+ 120
+ ]
+ },
+ "batch_norm_19.tmp_0": {
+ "name": "batch_norm_19.tmp_0",
+ "persistable": false,
+ "shape": [
+ 0
+ ]
+ },
+ "batch_norm_19.tmp_1": {
+ "name": "batch_norm_19.tmp_1",
+ "persistable": false,
+ "shape": [
+ 0
+ ]
+ },
+ "batch_norm_19.tmp_2": {
+ "name": "batch_norm_19.tmp_2",
+ "persistable": false,
+ "shape": [
+ 0
+ ]
+ },
+ "batch_norm_19.tmp_3": {
+ "name": "batch_norm_19.tmp_3",
+ "persistable": false,
+ "shape": [
+ 1,
+ 120,
+ 1,
+ 1
+ ]
+ },
+ "batch_norm_19.w_0": {
+ "name": "batch_norm_19.w_0",
+ "persistable": true,
+ "shape": [
+ 120
+ ]
+ },
+ "batch_norm_19.w_1": {
+ "name": "batch_norm_19.w_1",
+ "persistable": true,
+ "shape": [
+ 120
+ ]
+ },
+ "batch_norm_19.w_2": {
+ "name": "batch_norm_19.w_2",
+ "persistable": true,
+ "shape": [
+ 120
+ ]
+ },
+ "batch_norm_2.b_0": {
+ "name": "batch_norm_2.b_0",
+ "persistable": true,
+ "shape": [
+ 8
+ ]
+ },
+ "batch_norm_2.tmp_0": {
+ "name": "batch_norm_2.tmp_0",
+ "persistable": false,
+ "shape": [
+ 0
+ ]
+ },
+ "batch_norm_2.tmp_1": {
+ "name": "batch_norm_2.tmp_1",
+ "persistable": false,
+ "shape": [
+ 0
+ ]
+ },
+ "batch_norm_2.tmp_2": {
+ "name": "batch_norm_2.tmp_2",
+ "persistable": false,
+ "shape": [
+ 0
+ ]
+ },
+ "batch_norm_2.tmp_3": {
+ "name": "batch_norm_2.tmp_3",
+ "persistable": false,
+ "shape": [
+ 1,
+ 8,
+ 1,
+ 1
+ ]
+ },
+ "batch_norm_2.w_0": {
+ "name": "batch_norm_2.w_0",
+ "persistable": true,
+ "shape": [
+ 8
+ ]
+ },
+ "batch_norm_2.w_1": {
+ "name": "batch_norm_2.w_1",
+ "persistable": true,
+ "shape": [
+ 8
+ ]
+ },
+ "batch_norm_2.w_2": {
+ "name": "batch_norm_2.w_2",
+ "persistable": true,
+ "shape": [
+ 8
+ ]
+ },
+ "batch_norm_20.b_0": {
+ "name": "batch_norm_20.b_0",
+ "persistable": true,
+ "shape": [
+ 120
+ ]
+ },
+ "batch_norm_20.tmp_0": {
+ "name": "batch_norm_20.tmp_0",
+ "persistable": false,
+ "shape": [
+ 0
+ ]
+ },
+ "batch_norm_20.tmp_1": {
+ "name": "batch_norm_20.tmp_1",
+ "persistable": false,
+ "shape": [
+ 0
+ ]
+ },
+ "batch_norm_20.tmp_2": {
+ "name": "batch_norm_20.tmp_2",
+ "persistable": false,
+ "shape": [
+ 0
+ ]
+ },
+ "batch_norm_20.tmp_3": {
+ "name": "batch_norm_20.tmp_3",
+ "persistable": false,
+ "shape": [
+ 1,
+ 120,
+ 1,
+ 1
+ ]
+ },
+ "batch_norm_20.w_0": {
+ "name": "batch_norm_20.w_0",
+ "persistable": true,
+ "shape": [
+ 120
+ ]
+ },
+ "batch_norm_20.w_1": {
+ "name": "batch_norm_20.w_1",
+ "persistable": true,
+ "shape": [
+ 120
+ ]
+ },
+ "batch_norm_20.w_2": {
+ "name": "batch_norm_20.w_2",
+ "persistable": true,
+ "shape": [
+ 120
+ ]
+ },
+ "batch_norm_21.b_0": {
+ "name": "batch_norm_21.b_0",
+ "persistable": true,
+ "shape": [
+ 40
+ ]
+ },
+ "batch_norm_21.tmp_0": {
+ "name": "batch_norm_21.tmp_0",
+ "persistable": false,
+ "shape": [
+ 0
+ ]
+ },
+ "batch_norm_21.tmp_1": {
+ "name": "batch_norm_21.tmp_1",
+ "persistable": false,
+ "shape": [
+ 0
+ ]
+ },
+ "batch_norm_21.tmp_2": {
+ "name": "batch_norm_21.tmp_2",
+ "persistable": false,
+ "shape": [
+ 0
+ ]
+ },
+ "batch_norm_21.tmp_3": {
+ "name": "batch_norm_21.tmp_3",
+ "persistable": false,
+ "shape": [
+ 1,
+ 40,
+ 1,
+ 1
+ ]
+ },
+ "batch_norm_21.w_0": {
+ "name": "batch_norm_21.w_0",
+ "persistable": true,
+ "shape": [
+ 40
+ ]
+ },
+ "batch_norm_21.w_1": {
+ "name": "batch_norm_21.w_1",
+ "persistable": true,
+ "shape": [
+ 40
+ ]
+ },
+ "batch_norm_21.w_2": {
+ "name": "batch_norm_21.w_2",
+ "persistable": true,
+ "shape": [
+ 40
+ ]
+ },
+ "batch_norm_22.b_0": {
+ "name": "batch_norm_22.b_0",
+ "persistable": true,
+ "shape": [
+ 104
+ ]
+ },
+ "batch_norm_22.tmp_0": {
+ "name": "batch_norm_22.tmp_0",
+ "persistable": false,
+ "shape": [
+ 0
+ ]
+ },
+ "batch_norm_22.tmp_1": {
+ "name": "batch_norm_22.tmp_1",
+ "persistable": false,
+ "shape": [
+ 0
+ ]
+ },
+ "batch_norm_22.tmp_2": {
+ "name": "batch_norm_22.tmp_2",
+ "persistable": false,
+ "shape": [
+ 0
+ ]
+ },
+ "batch_norm_22.tmp_3": {
+ "name": "batch_norm_22.tmp_3",
+ "persistable": false,
+ "shape": [
+ 1,
+ 104,
+ 1,
+ 1
+ ]
+ },
+ "batch_norm_22.w_0": {
+ "name": "batch_norm_22.w_0",
+ "persistable": true,
+ "shape": [
+ 104
+ ]
+ },
+ "batch_norm_22.w_1": {
+ "name": "batch_norm_22.w_1",
+ "persistable": true,
+ "shape": [
+ 104
+ ]
+ },
+ "batch_norm_22.w_2": {
+ "name": "batch_norm_22.w_2",
+ "persistable": true,
+ "shape": [
+ 104
+ ]
+ },
+ "batch_norm_23.b_0": {
+ "name": "batch_norm_23.b_0",
+ "persistable": true,
+ "shape": [
+ 104
+ ]
+ },
+ "batch_norm_23.tmp_0": {
+ "name": "batch_norm_23.tmp_0",
+ "persistable": false,
+ "shape": [
+ 0
+ ]
+ },
+ "batch_norm_23.tmp_1": {
+ "name": "batch_norm_23.tmp_1",
+ "persistable": false,
+ "shape": [
+ 0
+ ]
+ },
+ "batch_norm_23.tmp_2": {
+ "name": "batch_norm_23.tmp_2",
+ "persistable": false,
+ "shape": [
+ 0
+ ]
+ },
+ "batch_norm_23.tmp_3": {
+ "name": "batch_norm_23.tmp_3",
+ "persistable": false,
+ "shape": [
+ 1,
+ 104,
+ 1,
+ 1
+ ]
+ },
+ "batch_norm_23.w_0": {
+ "name": "batch_norm_23.w_0",
+ "persistable": true,
+ "shape": [
+ 104
+ ]
+ },
+ "batch_norm_23.w_1": {
+ "name": "batch_norm_23.w_1",
+ "persistable": true,
+ "shape": [
+ 104
+ ]
+ },
+ "batch_norm_23.w_2": {
+ "name": "batch_norm_23.w_2",
+ "persistable": true,
+ "shape": [
+ 104
+ ]
+ },
+ "batch_norm_24.b_0": {
+ "name": "batch_norm_24.b_0",
+ "persistable": true,
+ "shape": [
+ 40
+ ]
+ },
+ "batch_norm_24.tmp_0": {
+ "name": "batch_norm_24.tmp_0",
+ "persistable": false,
+ "shape": [
+ 0
+ ]
+ },
+ "batch_norm_24.tmp_1": {
+ "name": "batch_norm_24.tmp_1",
+ "persistable": false,
+ "shape": [
+ 0
+ ]
+ },
+ "batch_norm_24.tmp_2": {
+ "name": "batch_norm_24.tmp_2",
+ "persistable": false,
+ "shape": [
+ 0
+ ]
+ },
+ "batch_norm_24.tmp_3": {
+ "name": "batch_norm_24.tmp_3",
+ "persistable": false,
+ "shape": [
+ 1,
+ 40,
+ 1,
+ 1
+ ]
+ },
+ "batch_norm_24.w_0": {
+ "name": "batch_norm_24.w_0",
+ "persistable": true,
+ "shape": [
+ 40
+ ]
+ },
+ "batch_norm_24.w_1": {
+ "name": "batch_norm_24.w_1",
+ "persistable": true,
+ "shape": [
+ 40
+ ]
+ },
+ "batch_norm_24.w_2": {
+ "name": "batch_norm_24.w_2",
+ "persistable": true,
+ "shape": [
+ 40
+ ]
+ },
+ "batch_norm_25.b_0": {
+ "name": "batch_norm_25.b_0",
+ "persistable": true,
+ "shape": [
+ 96
+ ]
+ },
+ "batch_norm_25.tmp_0": {
+ "name": "batch_norm_25.tmp_0",
+ "persistable": false,
+ "shape": [
+ 0
+ ]
+ },
+ "batch_norm_25.tmp_1": {
+ "name": "batch_norm_25.tmp_1",
+ "persistable": false,
+ "shape": [
+ 0
+ ]
+ },
+ "batch_norm_25.tmp_2": {
+ "name": "batch_norm_25.tmp_2",
+ "persistable": false,
+ "shape": [
+ 0
+ ]
+ },
+ "batch_norm_25.tmp_3": {
+ "name": "batch_norm_25.tmp_3",
+ "persistable": false,
+ "shape": [
+ 1,
+ 96,
+ 1,
+ 1
+ ]
+ },
+ "batch_norm_25.w_0": {
+ "name": "batch_norm_25.w_0",
+ "persistable": true,
+ "shape": [
+ 96
+ ]
+ },
+ "batch_norm_25.w_1": {
+ "name": "batch_norm_25.w_1",
+ "persistable": true,
+ "shape": [
+ 96
+ ]
+ },
+ "batch_norm_25.w_2": {
+ "name": "batch_norm_25.w_2",
+ "persistable": true,
+ "shape": [
+ 96
+ ]
+ },
+ "batch_norm_26.b_0": {
+ "name": "batch_norm_26.b_0",
+ "persistable": true,
+ "shape": [
+ 96
+ ]
+ },
+ "batch_norm_26.tmp_0": {
+ "name": "batch_norm_26.tmp_0",
+ "persistable": false,
+ "shape": [
+ 0
+ ]
+ },
+ "batch_norm_26.tmp_1": {
+ "name": "batch_norm_26.tmp_1",
+ "persistable": false,
+ "shape": [
+ 0
+ ]
+ },
+ "batch_norm_26.tmp_2": {
+ "name": "batch_norm_26.tmp_2",
+ "persistable": false,
+ "shape": [
+ 0
+ ]
+ },
+ "batch_norm_26.tmp_3": {
+ "name": "batch_norm_26.tmp_3",
+ "persistable": false,
+ "shape": [
+ 1,
+ 96,
+ 1,
+ 1
+ ]
+ },
+ "batch_norm_26.w_0": {
+ "name": "batch_norm_26.w_0",
+ "persistable": true,
+ "shape": [
+ 96
+ ]
+ },
+ "batch_norm_26.w_1": {
+ "name": "batch_norm_26.w_1",
+ "persistable": true,
+ "shape": [
+ 96
+ ]
+ },
+ "batch_norm_26.w_2": {
+ "name": "batch_norm_26.w_2",
+ "persistable": true,
+ "shape": [
+ 96
+ ]
+ },
+ "batch_norm_27.b_0": {
+ "name": "batch_norm_27.b_0",
+ "persistable": true,
+ "shape": [
+ 40
+ ]
+ },
+ "batch_norm_27.tmp_0": {
+ "name": "batch_norm_27.tmp_0",
+ "persistable": false,
+ "shape": [
+ 0
+ ]
+ },
+ "batch_norm_27.tmp_1": {
+ "name": "batch_norm_27.tmp_1",
+ "persistable": false,
+ "shape": [
+ 0
+ ]
+ },
+ "batch_norm_27.tmp_2": {
+ "name": "batch_norm_27.tmp_2",
+ "persistable": false,
+ "shape": [
+ 0
+ ]
+ },
+ "batch_norm_27.tmp_3": {
+ "name": "batch_norm_27.tmp_3",
+ "persistable": false,
+ "shape": [
+ 1,
+ 40,
+ 1,
+ 1
+ ]
+ },
+ "batch_norm_27.w_0": {
+ "name": "batch_norm_27.w_0",
+ "persistable": true,
+ "shape": [
+ 40
+ ]
+ },
+ "batch_norm_27.w_1": {
+ "name": "batch_norm_27.w_1",
+ "persistable": true,
+ "shape": [
+ 40
+ ]
+ },
+ "batch_norm_27.w_2": {
+ "name": "batch_norm_27.w_2",
+ "persistable": true,
+ "shape": [
+ 40
+ ]
+ },
+ "batch_norm_28.b_0": {
+ "name": "batch_norm_28.b_0",
+ "persistable": true,
+ "shape": [
+ 96
+ ]
+ },
+ "batch_norm_28.tmp_0": {
+ "name": "batch_norm_28.tmp_0",
+ "persistable": false,
+ "shape": [
+ 0
+ ]
+ },
+ "batch_norm_28.tmp_1": {
+ "name": "batch_norm_28.tmp_1",
+ "persistable": false,
+ "shape": [
+ 0
+ ]
+ },
+ "batch_norm_28.tmp_2": {
+ "name": "batch_norm_28.tmp_2",
+ "persistable": false,
+ "shape": [
+ 0
+ ]
+ },
+ "batch_norm_28.tmp_3": {
+ "name": "batch_norm_28.tmp_3",
+ "persistable": false,
+ "shape": [
+ 1,
+ 96,
+ 1,
+ 1
+ ]
+ },
+ "batch_norm_28.w_0": {
+ "name": "batch_norm_28.w_0",
+ "persistable": true,
+ "shape": [
+ 96
+ ]
+ },
+ "batch_norm_28.w_1": {
+ "name": "batch_norm_28.w_1",
+ "persistable": true,
+ "shape": [
+ 96
+ ]
+ },
+ "batch_norm_28.w_2": {
+ "name": "batch_norm_28.w_2",
+ "persistable": true,
+ "shape": [
+ 96
+ ]
+ },
+ "batch_norm_29.b_0": {
+ "name": "batch_norm_29.b_0",
+ "persistable": true,
+ "shape": [
+ 96
+ ]
+ },
+ "batch_norm_29.tmp_0": {
+ "name": "batch_norm_29.tmp_0",
+ "persistable": false,
+ "shape": [
+ 0
+ ]
+ },
+ "batch_norm_29.tmp_1": {
+ "name": "batch_norm_29.tmp_1",
+ "persistable": false,
+ "shape": [
+ 0
+ ]
+ },
+ "batch_norm_29.tmp_2": {
+ "name": "batch_norm_29.tmp_2",
+ "persistable": false,
+ "shape": [
+ 0
+ ]
+ },
+ "batch_norm_29.tmp_3": {
+ "name": "batch_norm_29.tmp_3",
+ "persistable": false,
+ "shape": [
+ 1,
+ 96,
+ 1,
+ 1
+ ]
+ },
+ "batch_norm_29.w_0": {
+ "name": "batch_norm_29.w_0",
+ "persistable": true,
+ "shape": [
+ 96
+ ]
+ },
+ "batch_norm_29.w_1": {
+ "name": "batch_norm_29.w_1",
+ "persistable": true,
+ "shape": [
+ 96
+ ]
+ },
+ "batch_norm_29.w_2": {
+ "name": "batch_norm_29.w_2",
+ "persistable": true,
+ "shape": [
+ 96
+ ]
+ },
+ "batch_norm_3.b_0": {
+ "name": "batch_norm_3.b_0",
+ "persistable": true,
+ "shape": [
+ 8
+ ]
+ },
+ "batch_norm_3.tmp_0": {
+ "name": "batch_norm_3.tmp_0",
+ "persistable": false,
+ "shape": [
+ 0
+ ]
+ },
+ "batch_norm_3.tmp_1": {
+ "name": "batch_norm_3.tmp_1",
+ "persistable": false,
+ "shape": [
+ 0
+ ]
+ },
+ "batch_norm_3.tmp_2": {
+ "name": "batch_norm_3.tmp_2",
+ "persistable": false,
+ "shape": [
+ 0
+ ]
+ },
+ "batch_norm_3.tmp_3": {
+ "name": "batch_norm_3.tmp_3",
+ "persistable": false,
+ "shape": [
+ 1,
+ 8,
+ 1,
+ 1
+ ]
+ },
+ "batch_norm_3.w_0": {
+ "name": "batch_norm_3.w_0",
+ "persistable": true,
+ "shape": [
+ 8
+ ]
+ },
+ "batch_norm_3.w_1": {
+ "name": "batch_norm_3.w_1",
+ "persistable": true,
+ "shape": [
+ 8
+ ]
+ },
+ "batch_norm_3.w_2": {
+ "name": "batch_norm_3.w_2",
+ "persistable": true,
+ "shape": [
+ 8
+ ]
+ },
+ "batch_norm_30.b_0": {
+ "name": "batch_norm_30.b_0",
+ "persistable": true,
+ "shape": [
+ 40
+ ]
+ },
+ "batch_norm_30.tmp_0": {
+ "name": "batch_norm_30.tmp_0",
+ "persistable": false,
+ "shape": [
+ 0
+ ]
+ },
+ "batch_norm_30.tmp_1": {
+ "name": "batch_norm_30.tmp_1",
+ "persistable": false,
+ "shape": [
+ 0
+ ]
+ },
+ "batch_norm_30.tmp_2": {
+ "name": "batch_norm_30.tmp_2",
+ "persistable": false,
+ "shape": [
+ 0
+ ]
+ },
+ "batch_norm_30.tmp_3": {
+ "name": "batch_norm_30.tmp_3",
+ "persistable": false,
+ "shape": [
+ 1,
+ 40,
+ 1,
+ 1
+ ]
+ },
+ "batch_norm_30.w_0": {
+ "name": "batch_norm_30.w_0",
+ "persistable": true,
+ "shape": [
+ 40
+ ]
+ },
+ "batch_norm_30.w_1": {
+ "name": "batch_norm_30.w_1",
+ "persistable": true,
+ "shape": [
+ 40
+ ]
+ },
+ "batch_norm_30.w_2": {
+ "name": "batch_norm_30.w_2",
+ "persistable": true,
+ "shape": [
+ 40
+ ]
+ },
+ "batch_norm_31.b_0": {
+ "name": "batch_norm_31.b_0",
+ "persistable": true,
+ "shape": [
+ 240
+ ]
+ },
+ "batch_norm_31.tmp_0": {
+ "name": "batch_norm_31.tmp_0",
+ "persistable": false,
+ "shape": [
+ 0
+ ]
+ },
+ "batch_norm_31.tmp_1": {
+ "name": "batch_norm_31.tmp_1",
+ "persistable": false,
+ "shape": [
+ 0
+ ]
+ },
+ "batch_norm_31.tmp_2": {
+ "name": "batch_norm_31.tmp_2",
+ "persistable": false,
+ "shape": [
+ 0
+ ]
+ },
+ "batch_norm_31.tmp_3": {
+ "name": "batch_norm_31.tmp_3",
+ "persistable": false,
+ "shape": [
+ 1,
+ 240,
+ 1,
+ 1
+ ]
+ },
+ "batch_norm_31.w_0": {
+ "name": "batch_norm_31.w_0",
+ "persistable": true,
+ "shape": [
+ 240
+ ]
+ },
+ "batch_norm_31.w_1": {
+ "name": "batch_norm_31.w_1",
+ "persistable": true,
+ "shape": [
+ 240
+ ]
+ },
+ "batch_norm_31.w_2": {
+ "name": "batch_norm_31.w_2",
+ "persistable": true,
+ "shape": [
+ 240
+ ]
+ },
+ "batch_norm_32.b_0": {
+ "name": "batch_norm_32.b_0",
+ "persistable": true,
+ "shape": [
+ 240
+ ]
+ },
+ "batch_norm_32.tmp_0": {
+ "name": "batch_norm_32.tmp_0",
+ "persistable": false,
+ "shape": [
+ 0
+ ]
+ },
+ "batch_norm_32.tmp_1": {
+ "name": "batch_norm_32.tmp_1",
+ "persistable": false,
+ "shape": [
+ 0
+ ]
+ },
+ "batch_norm_32.tmp_2": {
+ "name": "batch_norm_32.tmp_2",
+ "persistable": false,
+ "shape": [
+ 0
+ ]
+ },
+ "batch_norm_32.tmp_3": {
+ "name": "batch_norm_32.tmp_3",
+ "persistable": false,
+ "shape": [
+ 1,
+ 240,
+ 1,
+ 1
+ ]
+ },
+ "batch_norm_32.w_0": {
+ "name": "batch_norm_32.w_0",
+ "persistable": true,
+ "shape": [
+ 240
+ ]
+ },
+ "batch_norm_32.w_1": {
+ "name": "batch_norm_32.w_1",
+ "persistable": true,
+ "shape": [
+ 240
+ ]
+ },
+ "batch_norm_32.w_2": {
+ "name": "batch_norm_32.w_2",
+ "persistable": true,
+ "shape": [
+ 240
+ ]
+ },
+ "batch_norm_33.b_0": {
+ "name": "batch_norm_33.b_0",
+ "persistable": true,
+ "shape": [
+ 56
+ ]
+ },
+ "batch_norm_33.tmp_0": {
+ "name": "batch_norm_33.tmp_0",
+ "persistable": false,
+ "shape": [
+ 0
+ ]
+ },
+ "batch_norm_33.tmp_1": {
+ "name": "batch_norm_33.tmp_1",
+ "persistable": false,
+ "shape": [
+ 0
+ ]
+ },
+ "batch_norm_33.tmp_2": {
+ "name": "batch_norm_33.tmp_2",
+ "persistable": false,
+ "shape": [
+ 0
+ ]
+ },
+ "batch_norm_33.tmp_3": {
+ "name": "batch_norm_33.tmp_3",
+ "persistable": false,
+ "shape": [
+ 1,
+ 56,
+ 1,
+ 1
+ ]
+ },
+ "batch_norm_33.w_0": {
+ "name": "batch_norm_33.w_0",
+ "persistable": true,
+ "shape": [
+ 56
+ ]
+ },
+ "batch_norm_33.w_1": {
+ "name": "batch_norm_33.w_1",
+ "persistable": true,
+ "shape": [
+ 56
+ ]
+ },
+ "batch_norm_33.w_2": {
+ "name": "batch_norm_33.w_2",
+ "persistable": true,
+ "shape": [
+ 56
+ ]
+ },
+ "batch_norm_34.b_0": {
+ "name": "batch_norm_34.b_0",
+ "persistable": true,
+ "shape": [
+ 336
+ ]
+ },
+ "batch_norm_34.tmp_0": {
+ "name": "batch_norm_34.tmp_0",
+ "persistable": false,
+ "shape": [
+ 0
+ ]
+ },
+ "batch_norm_34.tmp_1": {
+ "name": "batch_norm_34.tmp_1",
+ "persistable": false,
+ "shape": [
+ 0
+ ]
+ },
+ "batch_norm_34.tmp_2": {
+ "name": "batch_norm_34.tmp_2",
+ "persistable": false,
+ "shape": [
+ 0
+ ]
+ },
+ "batch_norm_34.tmp_3": {
+ "name": "batch_norm_34.tmp_3",
+ "persistable": false,
+ "shape": [
+ 1,
+ 336,
+ 1,
+ 1
+ ]
+ },
+ "batch_norm_34.w_0": {
+ "name": "batch_norm_34.w_0",
+ "persistable": true,
+ "shape": [
+ 336
+ ]
+ },
+ "batch_norm_34.w_1": {
+ "name": "batch_norm_34.w_1",
+ "persistable": true,
+ "shape": [
+ 336
+ ]
+ },
+ "batch_norm_34.w_2": {
+ "name": "batch_norm_34.w_2",
+ "persistable": true,
+ "shape": [
+ 336
+ ]
+ },
+ "batch_norm_35.b_0": {
+ "name": "batch_norm_35.b_0",
+ "persistable": true,
+ "shape": [
+ 336
+ ]
+ },
+ "batch_norm_35.tmp_0": {
+ "name": "batch_norm_35.tmp_0",
+ "persistable": false,
+ "shape": [
+ 0
+ ]
+ },
+ "batch_norm_35.tmp_1": {
+ "name": "batch_norm_35.tmp_1",
+ "persistable": false,
+ "shape": [
+ 0
+ ]
+ },
+ "batch_norm_35.tmp_2": {
+ "name": "batch_norm_35.tmp_2",
+ "persistable": false,
+ "shape": [
+ 0
+ ]
+ },
+ "batch_norm_35.tmp_3": {
+ "name": "batch_norm_35.tmp_3",
+ "persistable": false,
+ "shape": [
+ 1,
+ 336,
+ 1,
+ 1
+ ]
+ },
+ "batch_norm_35.w_0": {
+ "name": "batch_norm_35.w_0",
+ "persistable": true,
+ "shape": [
+ 336
+ ]
+ },
+ "batch_norm_35.w_1": {
+ "name": "batch_norm_35.w_1",
+ "persistable": true,
+ "shape": [
+ 336
+ ]
+ },
+ "batch_norm_35.w_2": {
+ "name": "batch_norm_35.w_2",
+ "persistable": true,
+ "shape": [
+ 336
+ ]
+ },
+ "batch_norm_36.b_0": {
+ "name": "batch_norm_36.b_0",
+ "persistable": true,
+ "shape": [
+ 56
+ ]
+ },
+ "batch_norm_36.tmp_0": {
+ "name": "batch_norm_36.tmp_0",
+ "persistable": false,
+ "shape": [
+ 0
+ ]
+ },
+ "batch_norm_36.tmp_1": {
+ "name": "batch_norm_36.tmp_1",
+ "persistable": false,
+ "shape": [
+ 0
+ ]
+ },
+ "batch_norm_36.tmp_2": {
+ "name": "batch_norm_36.tmp_2",
+ "persistable": false,
+ "shape": [
+ 0
+ ]
+ },
+ "batch_norm_36.tmp_3": {
+ "name": "batch_norm_36.tmp_3",
+ "persistable": false,
+ "shape": [
+ 1,
+ 56,
+ 1,
+ 1
+ ]
+ },
+ "batch_norm_36.w_0": {
+ "name": "batch_norm_36.w_0",
+ "persistable": true,
+ "shape": [
+ 56
+ ]
+ },
+ "batch_norm_36.w_1": {
+ "name": "batch_norm_36.w_1",
+ "persistable": true,
+ "shape": [
+ 56
+ ]
+ },
+ "batch_norm_36.w_2": {
+ "name": "batch_norm_36.w_2",
+ "persistable": true,
+ "shape": [
+ 56
+ ]
+ },
+ "batch_norm_37.b_0": {
+ "name": "batch_norm_37.b_0",
+ "persistable": true,
+ "shape": [
+ 336
+ ]
+ },
+ "batch_norm_37.tmp_0": {
+ "name": "batch_norm_37.tmp_0",
+ "persistable": false,
+ "shape": [
+ 0
+ ]
+ },
+ "batch_norm_37.tmp_1": {
+ "name": "batch_norm_37.tmp_1",
+ "persistable": false,
+ "shape": [
+ 0
+ ]
+ },
+ "batch_norm_37.tmp_2": {
+ "name": "batch_norm_37.tmp_2",
+ "persistable": false,
+ "shape": [
+ 0
+ ]
+ },
+ "batch_norm_37.tmp_3": {
+ "name": "batch_norm_37.tmp_3",
+ "persistable": false,
+ "shape": [
+ 1,
+ 336,
+ 1,
+ 1
+ ]
+ },
+ "batch_norm_37.w_0": {
+ "name": "batch_norm_37.w_0",
+ "persistable": true,
+ "shape": [
+ 336
+ ]
+ },
+ "batch_norm_37.w_1": {
+ "name": "batch_norm_37.w_1",
+ "persistable": true,
+ "shape": [
+ 336
+ ]
+ },
+ "batch_norm_37.w_2": {
+ "name": "batch_norm_37.w_2",
+ "persistable": true,
+ "shape": [
+ 336
+ ]
+ },
+ "batch_norm_38.b_0": {
+ "name": "batch_norm_38.b_0",
+ "persistable": true,
+ "shape": [
+ 336
+ ]
+ },
+ "batch_norm_38.tmp_0": {
+ "name": "batch_norm_38.tmp_0",
+ "persistable": false,
+ "shape": [
+ 0
+ ]
+ },
+ "batch_norm_38.tmp_1": {
+ "name": "batch_norm_38.tmp_1",
+ "persistable": false,
+ "shape": [
+ 0
+ ]
+ },
+ "batch_norm_38.tmp_2": {
+ "name": "batch_norm_38.tmp_2",
+ "persistable": false,
+ "shape": [
+ 0
+ ]
+ },
+ "batch_norm_38.tmp_3": {
+ "name": "batch_norm_38.tmp_3",
+ "persistable": false,
+ "shape": [
+ 1,
+ 336,
+ 1,
+ 1
+ ]
+ },
+ "batch_norm_38.w_0": {
+ "name": "batch_norm_38.w_0",
+ "persistable": true,
+ "shape": [
+ 336
+ ]
+ },
+ "batch_norm_38.w_1": {
+ "name": "batch_norm_38.w_1",
+ "persistable": true,
+ "shape": [
+ 336
+ ]
+ },
+ "batch_norm_38.w_2": {
+ "name": "batch_norm_38.w_2",
+ "persistable": true,
+ "shape": [
+ 336
+ ]
+ },
+ "batch_norm_39.b_0": {
+ "name": "batch_norm_39.b_0",
+ "persistable": true,
+ "shape": [
+ 80
+ ]
+ },
+ "batch_norm_39.tmp_0": {
+ "name": "batch_norm_39.tmp_0",
+ "persistable": false,
+ "shape": [
+ 0
+ ]
+ },
+ "batch_norm_39.tmp_1": {
+ "name": "batch_norm_39.tmp_1",
+ "persistable": false,
+ "shape": [
+ 0
+ ]
+ },
+ "batch_norm_39.tmp_2": {
+ "name": "batch_norm_39.tmp_2",
+ "persistable": false,
+ "shape": [
+ 0
+ ]
+ },
+ "batch_norm_39.tmp_3": {
+ "name": "batch_norm_39.tmp_3",
+ "persistable": false,
+ "shape": [
+ 1,
+ 80,
+ 1,
+ 1
+ ]
+ },
+ "batch_norm_39.w_0": {
+ "name": "batch_norm_39.w_0",
+ "persistable": true,
+ "shape": [
+ 80
+ ]
+ },
+ "batch_norm_39.w_1": {
+ "name": "batch_norm_39.w_1",
+ "persistable": true,
+ "shape": [
+ 80
+ ]
+ },
+ "batch_norm_39.w_2": {
+ "name": "batch_norm_39.w_2",
+ "persistable": true,
+ "shape": [
+ 80
+ ]
+ },
+ "batch_norm_4.b_0": {
+ "name": "batch_norm_4.b_0",
+ "persistable": true,
+ "shape": [
+ 32
+ ]
+ },
+ "batch_norm_4.tmp_0": {
+ "name": "batch_norm_4.tmp_0",
+ "persistable": false,
+ "shape": [
+ 0
+ ]
+ },
+ "batch_norm_4.tmp_1": {
+ "name": "batch_norm_4.tmp_1",
+ "persistable": false,
+ "shape": [
+ 0
+ ]
+ },
+ "batch_norm_4.tmp_2": {
+ "name": "batch_norm_4.tmp_2",
+ "persistable": false,
+ "shape": [
+ 0
+ ]
+ },
+ "batch_norm_4.tmp_3": {
+ "name": "batch_norm_4.tmp_3",
+ "persistable": false,
+ "shape": [
+ 1,
+ 32,
+ 1,
+ 1
+ ]
+ },
+ "batch_norm_4.w_0": {
+ "name": "batch_norm_4.w_0",
+ "persistable": true,
+ "shape": [
+ 32
+ ]
+ },
+ "batch_norm_4.w_1": {
+ "name": "batch_norm_4.w_1",
+ "persistable": true,
+ "shape": [
+ 32
+ ]
+ },
+ "batch_norm_4.w_2": {
+ "name": "batch_norm_4.w_2",
+ "persistable": true,
+ "shape": [
+ 32
+ ]
+ },
+ "batch_norm_40.b_0": {
+ "name": "batch_norm_40.b_0",
+ "persistable": true,
+ "shape": [
+ 480
+ ]
+ },
+ "batch_norm_40.tmp_0": {
+ "name": "batch_norm_40.tmp_0",
+ "persistable": false,
+ "shape": [
+ 0
+ ]
+ },
+ "batch_norm_40.tmp_1": {
+ "name": "batch_norm_40.tmp_1",
+ "persistable": false,
+ "shape": [
+ 0
+ ]
+ },
+ "batch_norm_40.tmp_2": {
+ "name": "batch_norm_40.tmp_2",
+ "persistable": false,
+ "shape": [
+ 0
+ ]
+ },
+ "batch_norm_40.tmp_3": {
+ "name": "batch_norm_40.tmp_3",
+ "persistable": false,
+ "shape": [
+ 1,
+ 480,
+ 1,
+ 1
+ ]
+ },
+ "batch_norm_40.w_0": {
+ "name": "batch_norm_40.w_0",
+ "persistable": true,
+ "shape": [
+ 480
+ ]
+ },
+ "batch_norm_40.w_1": {
+ "name": "batch_norm_40.w_1",
+ "persistable": true,
+ "shape": [
+ 480
+ ]
+ },
+ "batch_norm_40.w_2": {
+ "name": "batch_norm_40.w_2",
+ "persistable": true,
+ "shape": [
+ 480
+ ]
+ },
+ "batch_norm_41.b_0": {
+ "name": "batch_norm_41.b_0",
+ "persistable": true,
+ "shape": [
+ 480
+ ]
+ },
+ "batch_norm_41.tmp_0": {
+ "name": "batch_norm_41.tmp_0",
+ "persistable": false,
+ "shape": [
+ 0
+ ]
+ },
+ "batch_norm_41.tmp_1": {
+ "name": "batch_norm_41.tmp_1",
+ "persistable": false,
+ "shape": [
+ 0
+ ]
+ },
+ "batch_norm_41.tmp_2": {
+ "name": "batch_norm_41.tmp_2",
+ "persistable": false,
+ "shape": [
+ 0
+ ]
+ },
+ "batch_norm_41.tmp_3": {
+ "name": "batch_norm_41.tmp_3",
+ "persistable": false,
+ "shape": [
+ 1,
+ 480,
+ 1,
+ 1
+ ]
+ },
+ "batch_norm_41.w_0": {
+ "name": "batch_norm_41.w_0",
+ "persistable": true,
+ "shape": [
+ 480
+ ]
+ },
+ "batch_norm_41.w_1": {
+ "name": "batch_norm_41.w_1",
+ "persistable": true,
+ "shape": [
+ 480
+ ]
+ },
+ "batch_norm_41.w_2": {
+ "name": "batch_norm_41.w_2",
+ "persistable": true,
+ "shape": [
+ 480
+ ]
+ },
+ "batch_norm_42.b_0": {
+ "name": "batch_norm_42.b_0",
+ "persistable": true,
+ "shape": [
+ 80
+ ]
+ },
+ "batch_norm_42.tmp_0": {
+ "name": "batch_norm_42.tmp_0",
+ "persistable": false,
+ "shape": [
+ 0
+ ]
+ },
+ "batch_norm_42.tmp_1": {
+ "name": "batch_norm_42.tmp_1",
+ "persistable": false,
+ "shape": [
+ 0
+ ]
+ },
+ "batch_norm_42.tmp_2": {
+ "name": "batch_norm_42.tmp_2",
+ "persistable": false,
+ "shape": [
+ 0
+ ]
+ },
+ "batch_norm_42.tmp_3": {
+ "name": "batch_norm_42.tmp_3",
+ "persistable": false,
+ "shape": [
+ 1,
+ 80,
+ 1,
+ 1
+ ]
+ },
+ "batch_norm_42.w_0": {
+ "name": "batch_norm_42.w_0",
+ "persistable": true,
+ "shape": [
+ 80
+ ]
+ },
+ "batch_norm_42.w_1": {
+ "name": "batch_norm_42.w_1",
+ "persistable": true,
+ "shape": [
+ 80
+ ]
+ },
+ "batch_norm_42.w_2": {
+ "name": "batch_norm_42.w_2",
+ "persistable": true,
+ "shape": [
+ 80
+ ]
+ },
+ "batch_norm_43.b_0": {
+ "name": "batch_norm_43.b_0",
+ "persistable": true,
+ "shape": [
+ 480
+ ]
+ },
+ "batch_norm_43.tmp_0": {
+ "name": "batch_norm_43.tmp_0",
+ "persistable": false,
+ "shape": [
+ 0
+ ]
+ },
+ "batch_norm_43.tmp_1": {
+ "name": "batch_norm_43.tmp_1",
+ "persistable": false,
+ "shape": [
+ 0
+ ]
+ },
+ "batch_norm_43.tmp_2": {
+ "name": "batch_norm_43.tmp_2",
+ "persistable": false,
+ "shape": [
+ 0
+ ]
+ },
+ "batch_norm_43.tmp_3": {
+ "name": "batch_norm_43.tmp_3",
+ "persistable": false,
+ "shape": [
+ 1,
+ 480,
+ 1,
+ 1
+ ]
+ },
+ "batch_norm_43.w_0": {
+ "name": "batch_norm_43.w_0",
+ "persistable": true,
+ "shape": [
+ 480
+ ]
+ },
+ "batch_norm_43.w_1": {
+ "name": "batch_norm_43.w_1",
+ "persistable": true,
+ "shape": [
+ 480
+ ]
+ },
+ "batch_norm_43.w_2": {
+ "name": "batch_norm_43.w_2",
+ "persistable": true,
+ "shape": [
+ 480
+ ]
+ },
+ "batch_norm_44.b_0": {
+ "name": "batch_norm_44.b_0",
+ "persistable": true,
+ "shape": [
+ 480
+ ]
+ },
+ "batch_norm_44.tmp_0": {
+ "name": "batch_norm_44.tmp_0",
+ "persistable": false,
+ "shape": [
+ 0
+ ]
+ },
+ "batch_norm_44.tmp_1": {
+ "name": "batch_norm_44.tmp_1",
+ "persistable": false,
+ "shape": [
+ 0
+ ]
+ },
+ "batch_norm_44.tmp_2": {
+ "name": "batch_norm_44.tmp_2",
+ "persistable": false,
+ "shape": [
+ 0
+ ]
+ },
+ "batch_norm_44.tmp_3": {
+ "name": "batch_norm_44.tmp_3",
+ "persistable": false,
+ "shape": [
+ 1,
+ 480,
+ 1,
+ 1
+ ]
+ },
+ "batch_norm_44.w_0": {
+ "name": "batch_norm_44.w_0",
+ "persistable": true,
+ "shape": [
+ 480
+ ]
+ },
+ "batch_norm_44.w_1": {
+ "name": "batch_norm_44.w_1",
+ "persistable": true,
+ "shape": [
+ 480
+ ]
+ },
+ "batch_norm_44.w_2": {
+ "name": "batch_norm_44.w_2",
+ "persistable": true,
+ "shape": [
+ 480
+ ]
+ },
+ "batch_norm_45.b_0": {
+ "name": "batch_norm_45.b_0",
+ "persistable": true,
+ "shape": [
+ 80
+ ]
+ },
+ "batch_norm_45.tmp_0": {
+ "name": "batch_norm_45.tmp_0",
+ "persistable": false,
+ "shape": [
+ 0
+ ]
+ },
+ "batch_norm_45.tmp_1": {
+ "name": "batch_norm_45.tmp_1",
+ "persistable": false,
+ "shape": [
+ 0
+ ]
+ },
+ "batch_norm_45.tmp_2": {
+ "name": "batch_norm_45.tmp_2",
+ "persistable": false,
+ "shape": [
+ 0
+ ]
+ },
+ "batch_norm_45.tmp_3": {
+ "name": "batch_norm_45.tmp_3",
+ "persistable": false,
+ "shape": [
+ 1,
+ 80,
+ 1,
+ 1
+ ]
+ },
+ "batch_norm_45.w_0": {
+ "name": "batch_norm_45.w_0",
+ "persistable": true,
+ "shape": [
+ 80
+ ]
+ },
+ "batch_norm_45.w_1": {
+ "name": "batch_norm_45.w_1",
+ "persistable": true,
+ "shape": [
+ 80
+ ]
+ },
+ "batch_norm_45.w_2": {
+ "name": "batch_norm_45.w_2",
+ "persistable": true,
+ "shape": [
+ 80
+ ]
+ },
+ "batch_norm_46.b_0": {
+ "name": "batch_norm_46.b_0",
+ "persistable": true,
+ "shape": [
+ 480
+ ]
+ },
+ "batch_norm_46.tmp_0": {
+ "name": "batch_norm_46.tmp_0",
+ "persistable": false,
+ "shape": [
+ 0
+ ]
+ },
+ "batch_norm_46.tmp_1": {
+ "name": "batch_norm_46.tmp_1",
+ "persistable": false,
+ "shape": [
+ 0
+ ]
+ },
+ "batch_norm_46.tmp_2": {
+ "name": "batch_norm_46.tmp_2",
+ "persistable": false,
+ "shape": [
+ 0
+ ]
+ },
+ "batch_norm_46.tmp_3": {
+ "name": "batch_norm_46.tmp_3",
+ "persistable": false,
+ "shape": [
+ 1,
+ 480,
+ 1,
+ 1
+ ]
+ },
+ "batch_norm_46.w_0": {
+ "name": "batch_norm_46.w_0",
+ "persistable": true,
+ "shape": [
+ 480
+ ]
+ },
+ "batch_norm_46.w_1": {
+ "name": "batch_norm_46.w_1",
+ "persistable": true,
+ "shape": [
+ 480
+ ]
+ },
+ "batch_norm_46.w_2": {
+ "name": "batch_norm_46.w_2",
+ "persistable": true,
+ "shape": [
+ 480
+ ]
+ },
+ "batch_norm_47.b_0": {
+ "name": "batch_norm_47.b_0",
+ "persistable": true,
+ "shape": [
+ 24
+ ]
+ },
+ "batch_norm_47.tmp_0": {
+ "name": "batch_norm_47.tmp_0",
+ "persistable": false,
+ "shape": [
+ 0
+ ]
+ },
+ "batch_norm_47.tmp_1": {
+ "name": "batch_norm_47.tmp_1",
+ "persistable": false,
+ "shape": [
+ 0
+ ]
+ },
+ "batch_norm_47.tmp_2": {
+ "name": "batch_norm_47.tmp_2",
+ "persistable": false,
+ "shape": [
+ 0
+ ]
+ },
+ "batch_norm_47.tmp_3": {
+ "name": "batch_norm_47.tmp_3",
+ "persistable": false,
+ "shape": [
+ 1,
+ 24,
+ 8,
+ 8
+ ]
+ },
+ "batch_norm_47.tmp_4": {
+ "name": "batch_norm_47.tmp_4",
+ "persistable": false,
+ "shape": [
+ 1,
+ 24,
+ 8,
+ 8
+ ]
+ },
+ "batch_norm_47.w_0": {
+ "name": "batch_norm_47.w_0",
+ "persistable": true,
+ "shape": [
+ 24
+ ]
+ },
+ "batch_norm_47.w_1": {
+ "name": "batch_norm_47.w_1",
+ "persistable": true,
+ "shape": [
+ 24
+ ]
+ },
+ "batch_norm_47.w_2": {
+ "name": "batch_norm_47.w_2",
+ "persistable": true,
+ "shape": [
+ 24
+ ]
+ },
+ "batch_norm_48.b_0": {
+ "name": "batch_norm_48.b_0",
+ "persistable": true,
+ "shape": [
+ 24
+ ]
+ },
+ "batch_norm_48.tmp_0": {
+ "name": "batch_norm_48.tmp_0",
+ "persistable": false,
+ "shape": [
+ 0
+ ]
+ },
+ "batch_norm_48.tmp_1": {
+ "name": "batch_norm_48.tmp_1",
+ "persistable": false,
+ "shape": [
+ 0
+ ]
+ },
+ "batch_norm_48.tmp_2": {
+ "name": "batch_norm_48.tmp_2",
+ "persistable": false,
+ "shape": [
+ 0
+ ]
+ },
+ "batch_norm_48.tmp_3": {
+ "name": "batch_norm_48.tmp_3",
+ "persistable": false,
+ "shape": [
+ 1,
+ 24,
+ 16,
+ 16
+ ]
+ },
+ "batch_norm_48.tmp_4": {
+ "name": "batch_norm_48.tmp_4",
+ "persistable": false,
+ "shape": [
+ 1,
+ 24,
+ 16,
+ 16
+ ]
+ },
+ "batch_norm_48.w_0": {
+ "name": "batch_norm_48.w_0",
+ "persistable": true,
+ "shape": [
+ 24
+ ]
+ },
+ "batch_norm_48.w_1": {
+ "name": "batch_norm_48.w_1",
+ "persistable": true,
+ "shape": [
+ 24
+ ]
+ },
+ "batch_norm_48.w_2": {
+ "name": "batch_norm_48.w_2",
+ "persistable": true,
+ "shape": [
+ 24
+ ]
+ },
+ "batch_norm_5.b_0": {
+ "name": "batch_norm_5.b_0",
+ "persistable": true,
+ "shape": [
+ 32
+ ]
+ },
+ "batch_norm_5.tmp_0": {
+ "name": "batch_norm_5.tmp_0",
+ "persistable": false,
+ "shape": [
+ 0
+ ]
+ },
+ "batch_norm_5.tmp_1": {
+ "name": "batch_norm_5.tmp_1",
+ "persistable": false,
+ "shape": [
+ 0
+ ]
+ },
+ "batch_norm_5.tmp_2": {
+ "name": "batch_norm_5.tmp_2",
+ "persistable": false,
+ "shape": [
+ 0
+ ]
+ },
+ "batch_norm_5.tmp_3": {
+ "name": "batch_norm_5.tmp_3",
+ "persistable": false,
+ "shape": [
+ 1,
+ 32,
+ 1,
+ 1
+ ]
+ },
+ "batch_norm_5.w_0": {
+ "name": "batch_norm_5.w_0",
+ "persistable": true,
+ "shape": [
+ 32
+ ]
+ },
+ "batch_norm_5.w_1": {
+ "name": "batch_norm_5.w_1",
+ "persistable": true,
+ "shape": [
+ 32
+ ]
+ },
+ "batch_norm_5.w_2": {
+ "name": "batch_norm_5.w_2",
+ "persistable": true,
+ "shape": [
+ 32
+ ]
+ },
+ "batch_norm_6.b_0": {
+ "name": "batch_norm_6.b_0",
+ "persistable": true,
+ "shape": [
+ 16
+ ]
+ },
+ "batch_norm_6.tmp_0": {
+ "name": "batch_norm_6.tmp_0",
+ "persistable": false,
+ "shape": [
+ 0
+ ]
+ },
+ "batch_norm_6.tmp_1": {
+ "name": "batch_norm_6.tmp_1",
+ "persistable": false,
+ "shape": [
+ 0
+ ]
+ },
+ "batch_norm_6.tmp_2": {
+ "name": "batch_norm_6.tmp_2",
+ "persistable": false,
+ "shape": [
+ 0
+ ]
+ },
+ "batch_norm_6.tmp_3": {
+ "name": "batch_norm_6.tmp_3",
+ "persistable": false,
+ "shape": [
+ 1,
+ 16,
+ 1,
+ 1
+ ]
+ },
+ "batch_norm_6.w_0": {
+ "name": "batch_norm_6.w_0",
+ "persistable": true,
+ "shape": [
+ 16
+ ]
+ },
+ "batch_norm_6.w_1": {
+ "name": "batch_norm_6.w_1",
+ "persistable": true,
+ "shape": [
+ 16
+ ]
+ },
+ "batch_norm_6.w_2": {
+ "name": "batch_norm_6.w_2",
+ "persistable": true,
+ "shape": [
+ 16
+ ]
+ },
+ "batch_norm_7.b_0": {
+ "name": "batch_norm_7.b_0",
+ "persistable": true,
+ "shape": [
+ 40
+ ]
+ },
+ "batch_norm_7.tmp_0": {
+ "name": "batch_norm_7.tmp_0",
+ "persistable": false,
+ "shape": [
+ 0
+ ]
+ },
+ "batch_norm_7.tmp_1": {
+ "name": "batch_norm_7.tmp_1",
+ "persistable": false,
+ "shape": [
+ 0
+ ]
+ },
+ "batch_norm_7.tmp_2": {
+ "name": "batch_norm_7.tmp_2",
+ "persistable": false,
+ "shape": [
+ 0
+ ]
+ },
+ "batch_norm_7.tmp_3": {
+ "name": "batch_norm_7.tmp_3",
+ "persistable": false,
+ "shape": [
+ 1,
+ 40,
+ 1,
+ 1
+ ]
+ },
+ "batch_norm_7.w_0": {
+ "name": "batch_norm_7.w_0",
+ "persistable": true,
+ "shape": [
+ 40
+ ]
+ },
+ "batch_norm_7.w_1": {
+ "name": "batch_norm_7.w_1",
+ "persistable": true,
+ "shape": [
+ 40
+ ]
+ },
+ "batch_norm_7.w_2": {
+ "name": "batch_norm_7.w_2",
+ "persistable": true,
+ "shape": [
+ 40
+ ]
+ },
+ "batch_norm_8.b_0": {
+ "name": "batch_norm_8.b_0",
+ "persistable": true,
+ "shape": [
+ 40
+ ]
+ },
+ "batch_norm_8.tmp_0": {
+ "name": "batch_norm_8.tmp_0",
+ "persistable": false,
+ "shape": [
+ 0
+ ]
+ },
+ "batch_norm_8.tmp_1": {
+ "name": "batch_norm_8.tmp_1",
+ "persistable": false,
+ "shape": [
+ 0
+ ]
+ },
+ "batch_norm_8.tmp_2": {
+ "name": "batch_norm_8.tmp_2",
+ "persistable": false,
+ "shape": [
+ 0
+ ]
+ },
+ "batch_norm_8.tmp_3": {
+ "name": "batch_norm_8.tmp_3",
+ "persistable": false,
+ "shape": [
+ 1,
+ 40,
+ 1,
+ 1
+ ]
+ },
+ "batch_norm_8.w_0": {
+ "name": "batch_norm_8.w_0",
+ "persistable": true,
+ "shape": [
+ 40
+ ]
+ },
+ "batch_norm_8.w_1": {
+ "name": "batch_norm_8.w_1",
+ "persistable": true,
+ "shape": [
+ 40
+ ]
+ },
+ "batch_norm_8.w_2": {
+ "name": "batch_norm_8.w_2",
+ "persistable": true,
+ "shape": [
+ 40
+ ]
+ },
+ "batch_norm_9.b_0": {
+ "name": "batch_norm_9.b_0",
+ "persistable": true,
+ "shape": [
+ 16
+ ]
+ },
+ "batch_norm_9.tmp_0": {
+ "name": "batch_norm_9.tmp_0",
+ "persistable": false,
+ "shape": [
+ 0
+ ]
+ },
+ "batch_norm_9.tmp_1": {
+ "name": "batch_norm_9.tmp_1",
+ "persistable": false,
+ "shape": [
+ 0
+ ]
+ },
+ "batch_norm_9.tmp_2": {
+ "name": "batch_norm_9.tmp_2",
+ "persistable": false,
+ "shape": [
+ 0
+ ]
+ },
+ "batch_norm_9.tmp_3": {
+ "name": "batch_norm_9.tmp_3",
+ "persistable": false,
+ "shape": [
+ 1,
+ 16,
+ 1,
+ 1
+ ]
+ },
+ "batch_norm_9.w_0": {
+ "name": "batch_norm_9.w_0",
+ "persistable": true,
+ "shape": [
+ 16
+ ]
+ },
+ "batch_norm_9.w_1": {
+ "name": "batch_norm_9.w_1",
+ "persistable": true,
+ "shape": [
+ 16
+ ]
+ },
+ "batch_norm_9.w_2": {
+ "name": "batch_norm_9.w_2",
+ "persistable": true,
+ "shape": [
+ 16
+ ]
+ },
+ "concat_0.tmp_0": {
+ "name": "concat_0.tmp_0",
+ "persistable": false,
+ "shape": [
+ 1,
+ 96,
+ 8,
+ 8
+ ]
+ },
+ "conv2d_0.w_0": {
+ "name": "conv2d_0.w_0",
+ "persistable": true,
+ "shape": [
+ 8,
+ 3,
+ 3,
+ 3
+ ]
+ },
+ "conv2d_1.w_0": {
+ "name": "conv2d_1.w_0",
+ "persistable": true,
+ "shape": [
+ 8,
+ 8,
+ 1,
+ 1
+ ]
+ },
+ "conv2d_10.w_0": {
+ "name": "conv2d_10.w_0",
+ "persistable": true,
+ "shape": [
+ 40,
+ 16,
+ 1,
+ 1
+ ]
+ },
+ "conv2d_11.w_0": {
+ "name": "conv2d_11.w_0",
+ "persistable": true,
+ "shape": [
+ 40,
+ 1,
+ 5,
+ 5
+ ]
+ },
+ "conv2d_12.w_0": {
+ "name": "conv2d_12.w_0",
+ "persistable": true,
+ "shape": [
+ 24,
+ 40,
+ 1,
+ 1
+ ]
+ },
+ "conv2d_13.w_0": {
+ "name": "conv2d_13.w_0",
+ "persistable": true,
+ "shape": [
+ 64,
+ 24,
+ 1,
+ 1
+ ]
+ },
+ "conv2d_14.w_0": {
+ "name": "conv2d_14.w_0",
+ "persistable": true,
+ "shape": [
+ 64,
+ 1,
+ 5,
+ 5
+ ]
+ },
+ "conv2d_15.w_0": {
+ "name": "conv2d_15.w_0",
+ "persistable": true,
+ "shape": [
+ 24,
+ 64,
+ 1,
+ 1
+ ]
+ },
+ "conv2d_16.w_0": {
+ "name": "conv2d_16.w_0",
+ "persistable": true,
+ "shape": [
+ 64,
+ 24,
+ 1,
+ 1
+ ]
+ },
+ "conv2d_17.w_0": {
+ "name": "conv2d_17.w_0",
+ "persistable": true,
+ "shape": [
+ 64,
+ 1,
+ 5,
+ 5
+ ]
+ },
+ "conv2d_18.w_0": {
+ "name": "conv2d_18.w_0",
+ "persistable": true,
+ "shape": [
+ 24,
+ 64,
+ 1,
+ 1
+ ]
+ },
+ "conv2d_19.w_0": {
+ "name": "conv2d_19.w_0",
+ "persistable": true,
+ "shape": [
+ 120,
+ 24,
+ 1,
+ 1
+ ]
+ },
+ "conv2d_2.w_0": {
+ "name": "conv2d_2.w_0",
+ "persistable": true,
+ "shape": [
+ 8,
+ 1,
+ 3,
+ 3
+ ]
+ },
+ "conv2d_20.w_0": {
+ "name": "conv2d_20.w_0",
+ "persistable": true,
+ "shape": [
+ 120,
+ 1,
+ 3,
+ 3
+ ]
+ },
+ "conv2d_21.w_0": {
+ "name": "conv2d_21.w_0",
+ "persistable": true,
+ "shape": [
+ 40,
+ 120,
+ 1,
+ 1
+ ]
+ },
+ "conv2d_211.tmp_0": {
+ "name": "conv2d_211.tmp_0",
+ "persistable": false,
+ "shape": [
+ 1,
+ 8,
+ 1,
+ 1
+ ]
+ },
+ "conv2d_212.tmp_0": {
+ "name": "conv2d_212.tmp_0",
+ "persistable": false,
+ "shape": [
+ 1,
+ 8,
+ 1,
+ 1
+ ]
+ },
+ "conv2d_213.tmp_0": {
+ "name": "conv2d_213.tmp_0",
+ "persistable": false,
+ "shape": [
+ 1,
+ 8,
+ 1,
+ 1
+ ]
+ },
+ "conv2d_214.tmp_0": {
+ "name": "conv2d_214.tmp_0",
+ "persistable": false,
+ "shape": [
+ 1,
+ 32,
+ 1,
+ 1
+ ]
+ },
+ "conv2d_215.tmp_0": {
+ "name": "conv2d_215.tmp_0",
+ "persistable": false,
+ "shape": [
+ 1,
+ 16,
+ 1,
+ 1
+ ]
+ },
+ "conv2d_216.tmp_0": {
+ "name": "conv2d_216.tmp_0",
+ "persistable": false,
+ "shape": [
+ 1,
+ 40,
+ 1,
+ 1
+ ]
+ },
+ "conv2d_217.tmp_0": {
+ "name": "conv2d_217.tmp_0",
+ "persistable": false,
+ "shape": [
+ 1,
+ 16,
+ 1,
+ 1
+ ]
+ },
+ "conv2d_218.tmp_0": {
+ "name": "conv2d_218.tmp_0",
+ "persistable": false,
+ "shape": [
+ 1,
+ 40,
+ 1,
+ 1
+ ]
+ },
+ "conv2d_219.tmp_0": {
+ "name": "conv2d_219.tmp_0",
+ "persistable": false,
+ "shape": [
+ 1,
+ 24,
+ 1,
+ 1
+ ]
+ },
+ "conv2d_22.w_0": {
+ "name": "conv2d_22.w_0",
+ "persistable": true,
+ "shape": [
+ 104,
+ 40,
+ 1,
+ 1
+ ]
+ },
+ "conv2d_220.tmp_0": {
+ "name": "conv2d_220.tmp_0",
+ "persistable": false,
+ "shape": [
+ 1,
+ 64,
+ 1,
+ 1
+ ]
+ },
+ "conv2d_221.tmp_0": {
+ "name": "conv2d_221.tmp_0",
+ "persistable": false,
+ "shape": [
+ 1,
+ 24,
+ 1,
+ 1
+ ]
+ },
+ "conv2d_222.tmp_0": {
+ "name": "conv2d_222.tmp_0",
+ "persistable": false,
+ "shape": [
+ 1,
+ 64,
+ 1,
+ 1
+ ]
+ },
+ "conv2d_223.tmp_0": {
+ "name": "conv2d_223.tmp_0",
+ "persistable": false,
+ "shape": [
+ 1,
+ 24,
+ 1,
+ 1
+ ]
+ },
+ "conv2d_224.tmp_0": {
+ "name": "conv2d_224.tmp_0",
+ "persistable": false,
+ "shape": [
+ 1,
+ 120,
+ 1,
+ 1
+ ]
+ },
+ "conv2d_225.tmp_0": {
+ "name": "conv2d_225.tmp_0",
+ "persistable": false,
+ "shape": [
+ 1,
+ 40,
+ 1,
+ 1
+ ]
+ },
+ "conv2d_226.tmp_0": {
+ "name": "conv2d_226.tmp_0",
+ "persistable": false,
+ "shape": [
+ 1,
+ 104,
+ 1,
+ 1
+ ]
+ },
+ "conv2d_227.tmp_0": {
+ "name": "conv2d_227.tmp_0",
+ "persistable": false,
+ "shape": [
+ 1,
+ 40,
+ 1,
+ 1
+ ]
+ },
+ "conv2d_228.tmp_0": {
+ "name": "conv2d_228.tmp_0",
+ "persistable": false,
+ "shape": [
+ 1,
+ 96,
+ 1,
+ 1
+ ]
+ },
+ "conv2d_229.tmp_0": {
+ "name": "conv2d_229.tmp_0",
+ "persistable": false,
+ "shape": [
+ 1,
+ 40,
+ 1,
+ 1
+ ]
+ },
+ "conv2d_23.w_0": {
+ "name": "conv2d_23.w_0",
+ "persistable": true,
+ "shape": [
+ 104,
+ 1,
+ 3,
+ 3
+ ]
+ },
+ "conv2d_230.tmp_0": {
+ "name": "conv2d_230.tmp_0",
+ "persistable": false,
+ "shape": [
+ 1,
+ 96,
+ 1,
+ 1
+ ]
+ },
+ "conv2d_231.tmp_0": {
+ "name": "conv2d_231.tmp_0",
+ "persistable": false,
+ "shape": [
+ 1,
+ 40,
+ 1,
+ 1
+ ]
+ },
+ "conv2d_232.tmp_0": {
+ "name": "conv2d_232.tmp_0",
+ "persistable": false,
+ "shape": [
+ 1,
+ 240,
+ 1,
+ 1
+ ]
+ },
+ "conv2d_233.tmp_0": {
+ "name": "conv2d_233.tmp_0",
+ "persistable": false,
+ "shape": [
+ 1,
+ 56,
+ 1,
+ 1
+ ]
+ },
+ "conv2d_234.tmp_0": {
+ "name": "conv2d_234.tmp_0",
+ "persistable": false,
+ "shape": [
+ 1,
+ 336,
+ 1,
+ 1
+ ]
+ },
+ "conv2d_235.tmp_0": {
+ "name": "conv2d_235.tmp_0",
+ "persistable": false,
+ "shape": [
+ 1,
+ 56,
+ 1,
+ 1
+ ]
+ },
+ "conv2d_236.tmp_0": {
+ "name": "conv2d_236.tmp_0",
+ "persistable": false,
+ "shape": [
+ 1,
+ 336,
+ 1,
+ 1
+ ]
+ },
+ "conv2d_237.tmp_0": {
+ "name": "conv2d_237.tmp_0",
+ "persistable": false,
+ "shape": [
+ 1,
+ 80,
+ 1,
+ 1
+ ]
+ },
+ "conv2d_238.tmp_0": {
+ "name": "conv2d_238.tmp_0",
+ "persistable": false,
+ "shape": [
+ 1,
+ 480,
+ 1,
+ 1
+ ]
+ },
+ "conv2d_239.tmp_0": {
+ "name": "conv2d_239.tmp_0",
+ "persistable": false,
+ "shape": [
+ 1,
+ 80,
+ 1,
+ 1
+ ]
+ },
+ "conv2d_24.w_0": {
+ "name": "conv2d_24.w_0",
+ "persistable": true,
+ "shape": [
+ 40,
+ 104,
+ 1,
+ 1
+ ]
+ },
+ "conv2d_240.tmp_0": {
+ "name": "conv2d_240.tmp_0",
+ "persistable": false,
+ "shape": [
+ 1,
+ 480,
+ 1,
+ 1
+ ]
+ },
+ "conv2d_241.tmp_0": {
+ "name": "conv2d_241.tmp_0",
+ "persistable": false,
+ "shape": [
+ 1,
+ 80,
+ 1,
+ 1
+ ]
+ },
+ "conv2d_242.tmp_0": {
+ "name": "conv2d_242.tmp_0",
+ "persistable": false,
+ "shape": [
+ 1,
+ 480,
+ 1,
+ 1
+ ]
+ },
+ "conv2d_243.tmp_0": {
+ "name": "conv2d_243.tmp_0",
+ "persistable": false,
+ "shape": [
+ 1,
+ 96,
+ 1,
+ 1
+ ]
+ },
+ "conv2d_244.tmp_0": {
+ "name": "conv2d_244.tmp_0",
+ "persistable": false,
+ "shape": [
+ 1,
+ 24,
+ 1,
+ 1
+ ]
+ },
+ "conv2d_244.tmp_1": {
+ "name": "conv2d_244.tmp_1",
+ "persistable": false,
+ "shape": [
+ 1,
+ 24,
+ 1,
+ 1
+ ]
+ },
+ "conv2d_245.tmp_0": {
+ "name": "conv2d_245.tmp_0",
+ "persistable": false,
+ "shape": [
+ 1,
+ 96,
+ 1,
+ 1
+ ]
+ },
+ "conv2d_245.tmp_1": {
+ "name": "conv2d_245.tmp_1",
+ "persistable": false,
+ "shape": [
+ 1,
+ 96,
+ 1,
+ 1
+ ]
+ },
+ "conv2d_246.tmp_0": {
+ "name": "conv2d_246.tmp_0",
+ "persistable": false,
+ "shape": [
+ 1,
+ 96,
+ 1,
+ 1
+ ]
+ },
+ "conv2d_247.tmp_0": {
+ "name": "conv2d_247.tmp_0",
+ "persistable": false,
+ "shape": [
+ 1,
+ 24,
+ 1,
+ 1
+ ]
+ },
+ "conv2d_247.tmp_1": {
+ "name": "conv2d_247.tmp_1",
+ "persistable": false,
+ "shape": [
+ 1,
+ 24,
+ 1,
+ 1
+ ]
+ },
+ "conv2d_248.tmp_0": {
+ "name": "conv2d_248.tmp_0",
+ "persistable": false,
+ "shape": [
+ 1,
+ 96,
+ 1,
+ 1
+ ]
+ },
+ "conv2d_248.tmp_1": {
+ "name": "conv2d_248.tmp_1",
+ "persistable": false,
+ "shape": [
+ 1,
+ 96,
+ 1,
+ 1
+ ]
+ },
+ "conv2d_249.tmp_0": {
+ "name": "conv2d_249.tmp_0",
+ "persistable": false,
+ "shape": [
+ 1,
+ 96,
+ 1,
+ 1
+ ]
+ },
+ "conv2d_25.w_0": {
+ "name": "conv2d_25.w_0",
+ "persistable": true,
+ "shape": [
+ 96,
+ 40,
+ 1,
+ 1
+ ]
+ },
+ "conv2d_250.tmp_0": {
+ "name": "conv2d_250.tmp_0",
+ "persistable": false,
+ "shape": [
+ 1,
+ 24,
+ 1,
+ 1
+ ]
+ },
+ "conv2d_250.tmp_1": {
+ "name": "conv2d_250.tmp_1",
+ "persistable": false,
+ "shape": [
+ 1,
+ 24,
+ 1,
+ 1
+ ]
+ },
+ "conv2d_251.tmp_0": {
+ "name": "conv2d_251.tmp_0",
+ "persistable": false,
+ "shape": [
+ 1,
+ 96,
+ 1,
+ 1
+ ]
+ },
+ "conv2d_251.tmp_1": {
+ "name": "conv2d_251.tmp_1",
+ "persistable": false,
+ "shape": [
+ 1,
+ 96,
+ 1,
+ 1
+ ]
+ },
+ "conv2d_252.tmp_0": {
+ "name": "conv2d_252.tmp_0",
+ "persistable": false,
+ "shape": [
+ 1,
+ 96,
+ 1,
+ 1
+ ]
+ },
+ "conv2d_253.tmp_0": {
+ "name": "conv2d_253.tmp_0",
+ "persistable": false,
+ "shape": [
+ 1,
+ 24,
+ 1,
+ 1
+ ]
+ },
+ "conv2d_253.tmp_1": {
+ "name": "conv2d_253.tmp_1",
+ "persistable": false,
+ "shape": [
+ 1,
+ 24,
+ 1,
+ 1
+ ]
+ },
+ "conv2d_254.tmp_0": {
+ "name": "conv2d_254.tmp_0",
+ "persistable": false,
+ "shape": [
+ 1,
+ 96,
+ 1,
+ 1
+ ]
+ },
+ "conv2d_254.tmp_1": {
+ "name": "conv2d_254.tmp_1",
+ "persistable": false,
+ "shape": [
+ 1,
+ 96,
+ 1,
+ 1
+ ]
+ },
+ "conv2d_255.tmp_0": {
+ "name": "conv2d_255.tmp_0",
+ "persistable": false,
+ "shape": [
+ 1,
+ 24,
+ 1,
+ 1
+ ]
+ },
+ "conv2d_256.tmp_0": {
+ "name": "conv2d_256.tmp_0",
+ "persistable": false,
+ "shape": [
+ 1,
+ 6,
+ 1,
+ 1
+ ]
+ },
+ "conv2d_256.tmp_1": {
+ "name": "conv2d_256.tmp_1",
+ "persistable": false,
+ "shape": [
+ 1,
+ 6,
+ 1,
+ 1
+ ]
+ },
+ "conv2d_257.tmp_0": {
+ "name": "conv2d_257.tmp_0",
+ "persistable": false,
+ "shape": [
+ 1,
+ 24,
+ 1,
+ 1
+ ]
+ },
+ "conv2d_257.tmp_1": {
+ "name": "conv2d_257.tmp_1",
+ "persistable": false,
+ "shape": [
+ 1,
+ 24,
+ 1,
+ 1
+ ]
+ },
+ "conv2d_258.tmp_0": {
+ "name": "conv2d_258.tmp_0",
+ "persistable": false,
+ "shape": [
+ 1,
+ 24,
+ 2,
+ 2
+ ]
+ },
+ "conv2d_259.tmp_0": {
+ "name": "conv2d_259.tmp_0",
+ "persistable": false,
+ "shape": [
+ 1,
+ 6,
+ 1,
+ 1
+ ]
+ },
+ "conv2d_259.tmp_1": {
+ "name": "conv2d_259.tmp_1",
+ "persistable": false,
+ "shape": [
+ 1,
+ 6,
+ 1,
+ 1
+ ]
+ },
+ "conv2d_26.w_0": {
+ "name": "conv2d_26.w_0",
+ "persistable": true,
+ "shape": [
+ 96,
+ 1,
+ 3,
+ 3
+ ]
+ },
+ "conv2d_260.tmp_0": {
+ "name": "conv2d_260.tmp_0",
+ "persistable": false,
+ "shape": [
+ 1,
+ 24,
+ 1,
+ 1
+ ]
+ },
+ "conv2d_260.tmp_1": {
+ "name": "conv2d_260.tmp_1",
+ "persistable": false,
+ "shape": [
+ 1,
+ 24,
+ 1,
+ 1
+ ]
+ },
+ "conv2d_261.tmp_0": {
+ "name": "conv2d_261.tmp_0",
+ "persistable": false,
+ "shape": [
+ 1,
+ 24,
+ 4,
+ 4
+ ]
+ },
+ "conv2d_262.tmp_0": {
+ "name": "conv2d_262.tmp_0",
+ "persistable": false,
+ "shape": [
+ 1,
+ 6,
+ 1,
+ 1
+ ]
+ },
+ "conv2d_262.tmp_1": {
+ "name": "conv2d_262.tmp_1",
+ "persistable": false,
+ "shape": [
+ 1,
+ 6,
+ 1,
+ 1
+ ]
+ },
+ "conv2d_263.tmp_0": {
+ "name": "conv2d_263.tmp_0",
+ "persistable": false,
+ "shape": [
+ 1,
+ 24,
+ 1,
+ 1
+ ]
+ },
+ "conv2d_263.tmp_1": {
+ "name": "conv2d_263.tmp_1",
+ "persistable": false,
+ "shape": [
+ 1,
+ 24,
+ 1,
+ 1
+ ]
+ },
+ "conv2d_264.tmp_0": {
+ "name": "conv2d_264.tmp_0",
+ "persistable": false,
+ "shape": [
+ 1,
+ 24,
+ 8,
+ 8
+ ]
+ },
+ "conv2d_265.tmp_0": {
+ "name": "conv2d_265.tmp_0",
+ "persistable": false,
+ "shape": [
+ 1,
+ 6,
+ 1,
+ 1
+ ]
+ },
+ "conv2d_265.tmp_1": {
+ "name": "conv2d_265.tmp_1",
+ "persistable": false,
+ "shape": [
+ 1,
+ 6,
+ 1,
+ 1
+ ]
+ },
+ "conv2d_266.tmp_0": {
+ "name": "conv2d_266.tmp_0",
+ "persistable": false,
+ "shape": [
+ 1,
+ 24,
+ 1,
+ 1
+ ]
+ },
+ "conv2d_266.tmp_1": {
+ "name": "conv2d_266.tmp_1",
+ "persistable": false,
+ "shape": [
+ 1,
+ 24,
+ 1,
+ 1
+ ]
+ },
+ "conv2d_267.tmp_0": {
+ "name": "conv2d_267.tmp_0",
+ "persistable": false,
+ "shape": [
+ 1,
+ 24,
+ 8,
+ 8
+ ]
+ },
+ "conv2d_27.w_0": {
+ "name": "conv2d_27.w_0",
+ "persistable": true,
+ "shape": [
+ 40,
+ 96,
+ 1,
+ 1
+ ]
+ },
+ "conv2d_28.w_0": {
+ "name": "conv2d_28.w_0",
+ "persistable": true,
+ "shape": [
+ 96,
+ 40,
+ 1,
+ 1
+ ]
+ },
+ "conv2d_29.w_0": {
+ "name": "conv2d_29.w_0",
+ "persistable": true,
+ "shape": [
+ 96,
+ 1,
+ 3,
+ 3
+ ]
+ },
+ "conv2d_3.w_0": {
+ "name": "conv2d_3.w_0",
+ "persistable": true,
+ "shape": [
+ 8,
+ 8,
+ 1,
+ 1
+ ]
+ },
+ "conv2d_30.w_0": {
+ "name": "conv2d_30.w_0",
+ "persistable": true,
+ "shape": [
+ 40,
+ 96,
+ 1,
+ 1
+ ]
+ },
+ "conv2d_31.w_0": {
+ "name": "conv2d_31.w_0",
+ "persistable": true,
+ "shape": [
+ 240,
+ 40,
+ 1,
+ 1
+ ]
+ },
+ "conv2d_32.w_0": {
+ "name": "conv2d_32.w_0",
+ "persistable": true,
+ "shape": [
+ 240,
+ 1,
+ 3,
+ 3
+ ]
+ },
+ "conv2d_33.w_0": {
+ "name": "conv2d_33.w_0",
+ "persistable": true,
+ "shape": [
+ 56,
+ 240,
+ 1,
+ 1
+ ]
+ },
+ "conv2d_34.w_0": {
+ "name": "conv2d_34.w_0",
+ "persistable": true,
+ "shape": [
+ 336,
+ 56,
+ 1,
+ 1
+ ]
+ },
+ "conv2d_35.w_0": {
+ "name": "conv2d_35.w_0",
+ "persistable": true,
+ "shape": [
+ 336,
+ 1,
+ 3,
+ 3
+ ]
+ },
+ "conv2d_36.w_0": {
+ "name": "conv2d_36.w_0",
+ "persistable": true,
+ "shape": [
+ 56,
+ 336,
+ 1,
+ 1
+ ]
+ },
+ "conv2d_37.w_0": {
+ "name": "conv2d_37.w_0",
+ "persistable": true,
+ "shape": [
+ 336,
+ 56,
+ 1,
+ 1
+ ]
+ },
+ "conv2d_38.w_0": {
+ "name": "conv2d_38.w_0",
+ "persistable": true,
+ "shape": [
+ 336,
+ 1,
+ 5,
+ 5
+ ]
+ },
+ "conv2d_39.w_0": {
+ "name": "conv2d_39.w_0",
+ "persistable": true,
+ "shape": [
+ 80,
+ 336,
+ 1,
+ 1
+ ]
+ },
+ "conv2d_4.w_0": {
+ "name": "conv2d_4.w_0",
+ "persistable": true,
+ "shape": [
+ 32,
+ 8,
+ 1,
+ 1
+ ]
+ },
+ "conv2d_40.w_0": {
+ "name": "conv2d_40.w_0",
+ "persistable": true,
+ "shape": [
+ 480,
+ 80,
+ 1,
+ 1
+ ]
+ },
+ "conv2d_41.w_0": {
+ "name": "conv2d_41.w_0",
+ "persistable": true,
+ "shape": [
+ 480,
+ 1,
+ 5,
+ 5
+ ]
+ },
+ "conv2d_42.w_0": {
+ "name": "conv2d_42.w_0",
+ "persistable": true,
+ "shape": [
+ 80,
+ 480,
+ 1,
+ 1
+ ]
+ },
+ "conv2d_43.w_0": {
+ "name": "conv2d_43.w_0",
+ "persistable": true,
+ "shape": [
+ 480,
+ 80,
+ 1,
+ 1
+ ]
+ },
+ "conv2d_44.w_0": {
+ "name": "conv2d_44.w_0",
+ "persistable": true,
+ "shape": [
+ 480,
+ 1,
+ 5,
+ 5
+ ]
+ },
+ "conv2d_45.w_0": {
+ "name": "conv2d_45.w_0",
+ "persistable": true,
+ "shape": [
+ 80,
+ 480,
+ 1,
+ 1
+ ]
+ },
+ "conv2d_46.w_0": {
+ "name": "conv2d_46.w_0",
+ "persistable": true,
+ "shape": [
+ 480,
+ 80,
+ 1,
+ 1
+ ]
+ },
+ "conv2d_47.w_0": {
+ "name": "conv2d_47.w_0",
+ "persistable": true,
+ "shape": [
+ 96,
+ 16,
+ 1,
+ 1
+ ]
+ },
+ "conv2d_48.b_0": {
+ "name": "conv2d_48.b_0",
+ "persistable": true,
+ "shape": [
+ 24
+ ]
+ },
+ "conv2d_48.w_0": {
+ "name": "conv2d_48.w_0",
+ "persistable": true,
+ "shape": [
+ 24,
+ 96,
+ 1,
+ 1
+ ]
+ },
+ "conv2d_49.b_0": {
+ "name": "conv2d_49.b_0",
+ "persistable": true,
+ "shape": [
+ 96
+ ]
+ },
+ "conv2d_49.w_0": {
+ "name": "conv2d_49.w_0",
+ "persistable": true,
+ "shape": [
+ 96,
+ 24,
+ 1,
+ 1
+ ]
+ },
+ "conv2d_5.w_0": {
+ "name": "conv2d_5.w_0",
+ "persistable": true,
+ "shape": [
+ 32,
+ 1,
+ 3,
+ 3
+ ]
+ },
+ "conv2d_50.w_0": {
+ "name": "conv2d_50.w_0",
+ "persistable": true,
+ "shape": [
+ 24,
+ 96,
+ 3,
+ 3
+ ]
+ },
+ "conv2d_51.b_0": {
+ "name": "conv2d_51.b_0",
+ "persistable": true,
+ "shape": [
+ 6
+ ]
+ },
+ "conv2d_51.w_0": {
+ "name": "conv2d_51.w_0",
+ "persistable": true,
+ "shape": [
+ 6,
+ 24,
+ 1,
+ 1
+ ]
+ },
+ "conv2d_52.b_0": {
+ "name": "conv2d_52.b_0",
+ "persistable": true,
+ "shape": [
+ 24
+ ]
+ },
+ "conv2d_52.w_0": {
+ "name": "conv2d_52.w_0",
+ "persistable": true,
+ "shape": [
+ 24,
+ 6,
+ 1,
+ 1
+ ]
+ },
+ "conv2d_53.w_0": {
+ "name": "conv2d_53.w_0",
+ "persistable": true,
+ "shape": [
+ 96,
+ 24,
+ 1,
+ 1
+ ]
+ },
+ "conv2d_54.b_0": {
+ "name": "conv2d_54.b_0",
+ "persistable": true,
+ "shape": [
+ 24
+ ]
+ },
+ "conv2d_54.w_0": {
+ "name": "conv2d_54.w_0",
+ "persistable": true,
+ "shape": [
+ 24,
+ 96,
+ 1,
+ 1
+ ]
+ },
+ "conv2d_55.b_0": {
+ "name": "conv2d_55.b_0",
+ "persistable": true,
+ "shape": [
+ 96
+ ]
+ },
+ "conv2d_55.w_0": {
+ "name": "conv2d_55.w_0",
+ "persistable": true,
+ "shape": [
+ 96,
+ 24,
+ 1,
+ 1
+ ]
+ },
+ "conv2d_56.w_0": {
+ "name": "conv2d_56.w_0",
+ "persistable": true,
+ "shape": [
+ 24,
+ 96,
+ 3,
+ 3
+ ]
+ },
+ "conv2d_57.b_0": {
+ "name": "conv2d_57.b_0",
+ "persistable": true,
+ "shape": [
+ 6
+ ]
+ },
+ "conv2d_57.w_0": {
+ "name": "conv2d_57.w_0",
+ "persistable": true,
+ "shape": [
+ 6,
+ 24,
+ 1,
+ 1
+ ]
+ },
+ "conv2d_58.b_0": {
+ "name": "conv2d_58.b_0",
+ "persistable": true,
+ "shape": [
+ 24
+ ]
+ },
+ "conv2d_58.w_0": {
+ "name": "conv2d_58.w_0",
+ "persistable": true,
+ "shape": [
+ 24,
+ 6,
+ 1,
+ 1
+ ]
+ },
+ "conv2d_59.w_0": {
+ "name": "conv2d_59.w_0",
+ "persistable": true,
+ "shape": [
+ 96,
+ 56,
+ 1,
+ 1
+ ]
+ },
+ "conv2d_6.w_0": {
+ "name": "conv2d_6.w_0",
+ "persistable": true,
+ "shape": [
+ 16,
+ 32,
+ 1,
+ 1
+ ]
+ },
+ "conv2d_60.b_0": {
+ "name": "conv2d_60.b_0",
+ "persistable": true,
+ "shape": [
+ 24
+ ]
+ },
+ "conv2d_60.w_0": {
+ "name": "conv2d_60.w_0",
+ "persistable": true,
+ "shape": [
+ 24,
+ 96,
+ 1,
+ 1
+ ]
+ },
+ "conv2d_61.b_0": {
+ "name": "conv2d_61.b_0",
+ "persistable": true,
+ "shape": [
+ 96
+ ]
+ },
+ "conv2d_61.w_0": {
+ "name": "conv2d_61.w_0",
+ "persistable": true,
+ "shape": [
+ 96,
+ 24,
+ 1,
+ 1
+ ]
+ },
+ "conv2d_62.w_0": {
+ "name": "conv2d_62.w_0",
+ "persistable": true,
+ "shape": [
+ 24,
+ 96,
+ 3,
+ 3
+ ]
+ },
+ "conv2d_63.b_0": {
+ "name": "conv2d_63.b_0",
+ "persistable": true,
+ "shape": [
+ 6
+ ]
+ },
+ "conv2d_63.w_0": {
+ "name": "conv2d_63.w_0",
+ "persistable": true,
+ "shape": [
+ 6,
+ 24,
+ 1,
+ 1
+ ]
+ },
+ "conv2d_64.b_0": {
+ "name": "conv2d_64.b_0",
+ "persistable": true,
+ "shape": [
+ 24
+ ]
+ },
+ "conv2d_64.w_0": {
+ "name": "conv2d_64.w_0",
+ "persistable": true,
+ "shape": [
+ 24,
+ 6,
+ 1,
+ 1
+ ]
+ },
+ "conv2d_65.w_0": {
+ "name": "conv2d_65.w_0",
+ "persistable": true,
+ "shape": [
+ 96,
+ 480,
+ 1,
+ 1
+ ]
+ },
+ "conv2d_66.b_0": {
+ "name": "conv2d_66.b_0",
+ "persistable": true,
+ "shape": [
+ 24
+ ]
+ },
+ "conv2d_66.w_0": {
+ "name": "conv2d_66.w_0",
+ "persistable": true,
+ "shape": [
+ 24,
+ 96,
+ 1,
+ 1
+ ]
+ },
+ "conv2d_67.b_0": {
+ "name": "conv2d_67.b_0",
+ "persistable": true,
+ "shape": [
+ 96
+ ]
+ },
+ "conv2d_67.w_0": {
+ "name": "conv2d_67.w_0",
+ "persistable": true,
+ "shape": [
+ 96,
+ 24,
+ 1,
+ 1
+ ]
+ },
+ "conv2d_68.w_0": {
+ "name": "conv2d_68.w_0",
+ "persistable": true,
+ "shape": [
+ 24,
+ 96,
+ 3,
+ 3
+ ]
+ },
+ "conv2d_69.b_0": {
+ "name": "conv2d_69.b_0",
+ "persistable": true,
+ "shape": [
+ 6
+ ]
+ },
+ "conv2d_69.w_0": {
+ "name": "conv2d_69.w_0",
+ "persistable": true,
+ "shape": [
+ 6,
+ 24,
+ 1,
+ 1
+ ]
+ },
+ "conv2d_7.w_0": {
+ "name": "conv2d_7.w_0",
+ "persistable": true,
+ "shape": [
+ 40,
+ 16,
+ 1,
+ 1
+ ]
+ },
+ "conv2d_70.b_0": {
+ "name": "conv2d_70.b_0",
+ "persistable": true,
+ "shape": [
+ 24
+ ]
+ },
+ "conv2d_70.w_0": {
+ "name": "conv2d_70.w_0",
+ "persistable": true,
+ "shape": [
+ 24,
+ 6,
+ 1,
+ 1
+ ]
+ },
+ "conv2d_71.w_0": {
+ "name": "conv2d_71.w_0",
+ "persistable": true,
+ "shape": [
+ 24,
+ 96,
+ 3,
+ 3
+ ]
+ },
+ "conv2d_8.w_0": {
+ "name": "conv2d_8.w_0",
+ "persistable": true,
+ "shape": [
+ 40,
+ 1,
+ 3,
+ 3
+ ]
+ },
+ "conv2d_9.w_0": {
+ "name": "conv2d_9.w_0",
+ "persistable": true,
+ "shape": [
+ 16,
+ 40,
+ 1,
+ 1
+ ]
+ },
+ "conv2d_transpose_0.b_0": {
+ "name": "conv2d_transpose_0.b_0",
+ "persistable": true,
+ "shape": [
+ 24
+ ]
+ },
+ "conv2d_transpose_0.w_0": {
+ "name": "conv2d_transpose_0.w_0",
+ "persistable": true,
+ "shape": [
+ 24,
+ 24,
+ 2,
+ 2
+ ]
+ },
+ "conv2d_transpose_1.b_0": {
+ "name": "conv2d_transpose_1.b_0",
+ "persistable": true,
+ "shape": [
+ 1
+ ]
+ },
+ "conv2d_transpose_1.w_0": {
+ "name": "conv2d_transpose_1.w_0",
+ "persistable": true,
+ "shape": [
+ 24,
+ 1,
+ 2,
+ 2
+ ]
+ },
+ "conv2d_transpose_12.tmp_0": {
+ "name": "conv2d_transpose_12.tmp_0",
+ "persistable": false,
+ "shape": [
+ 1,
+ 24,
+ 16,
+ 16
+ ]
+ },
+ "conv2d_transpose_13.tmp_0": {
+ "name": "conv2d_transpose_13.tmp_0",
+ "persistable": false,
+ "shape": [
+ 1,
+ 1,
+ 32,
+ 32
+ ]
+ },
+ "depthwise_conv2d_0.tmp_0": {
+ "name": "depthwise_conv2d_0.tmp_0",
+ "persistable": false,
+ "shape": [
+ 1,
+ 8,
+ 1,
+ 1
+ ]
+ },
+ "depthwise_conv2d_1.tmp_0": {
+ "name": "depthwise_conv2d_1.tmp_0",
+ "persistable": false,
+ "shape": [
+ 1,
+ 32,
+ 1,
+ 1
+ ]
+ },
+ "depthwise_conv2d_10.tmp_0": {
+ "name": "depthwise_conv2d_10.tmp_0",
+ "persistable": false,
+ "shape": [
+ 1,
+ 240,
+ 1,
+ 1
+ ]
+ },
+ "depthwise_conv2d_11.tmp_0": {
+ "name": "depthwise_conv2d_11.tmp_0",
+ "persistable": false,
+ "shape": [
+ 1,
+ 336,
+ 1,
+ 1
+ ]
+ },
+ "depthwise_conv2d_12.tmp_0": {
+ "name": "depthwise_conv2d_12.tmp_0",
+ "persistable": false,
+ "shape": [
+ 1,
+ 336,
+ 1,
+ 1
+ ]
+ },
+ "depthwise_conv2d_13.tmp_0": {
+ "name": "depthwise_conv2d_13.tmp_0",
+ "persistable": false,
+ "shape": [
+ 1,
+ 480,
+ 1,
+ 1
+ ]
+ },
+ "depthwise_conv2d_14.tmp_0": {
+ "name": "depthwise_conv2d_14.tmp_0",
+ "persistable": false,
+ "shape": [
+ 1,
+ 480,
+ 1,
+ 1
+ ]
+ },
+ "depthwise_conv2d_2.tmp_0": {
+ "name": "depthwise_conv2d_2.tmp_0",
+ "persistable": false,
+ "shape": [
+ 1,
+ 40,
+ 1,
+ 1
+ ]
+ },
+ "depthwise_conv2d_3.tmp_0": {
+ "name": "depthwise_conv2d_3.tmp_0",
+ "persistable": false,
+ "shape": [
+ 1,
+ 40,
+ 1,
+ 1
+ ]
+ },
+ "depthwise_conv2d_4.tmp_0": {
+ "name": "depthwise_conv2d_4.tmp_0",
+ "persistable": false,
+ "shape": [
+ 1,
+ 64,
+ 1,
+ 1
+ ]
+ },
+ "depthwise_conv2d_5.tmp_0": {
+ "name": "depthwise_conv2d_5.tmp_0",
+ "persistable": false,
+ "shape": [
+ 1,
+ 64,
+ 1,
+ 1
+ ]
+ },
+ "depthwise_conv2d_6.tmp_0": {
+ "name": "depthwise_conv2d_6.tmp_0",
+ "persistable": false,
+ "shape": [
+ 1,
+ 120,
+ 1,
+ 1
+ ]
+ },
+ "depthwise_conv2d_7.tmp_0": {
+ "name": "depthwise_conv2d_7.tmp_0",
+ "persistable": false,
+ "shape": [
+ 1,
+ 104,
+ 1,
+ 1
+ ]
+ },
+ "depthwise_conv2d_8.tmp_0": {
+ "name": "depthwise_conv2d_8.tmp_0",
+ "persistable": false,
+ "shape": [
+ 1,
+ 96,
+ 1,
+ 1
+ ]
+ },
+ "depthwise_conv2d_9.tmp_0": {
+ "name": "depthwise_conv2d_9.tmp_0",
+ "persistable": false,
+ "shape": [
+ 1,
+ 96,
+ 1,
+ 1
+ ]
+ },
+ "elementwise_add_0": {
+ "name": "elementwise_add_0",
+ "persistable": false,
+ "shape": [
+ 1,
+ 8,
+ 1,
+ 1
+ ]
+ },
+ "elementwise_add_1": {
+ "name": "elementwise_add_1",
+ "persistable": false,
+ "shape": [
+ 1,
+ 16,
+ 1,
+ 1
+ ]
+ },
+ "elementwise_add_10.tmp_0": {
+ "name": "elementwise_add_10.tmp_0",
+ "persistable": false,
+ "shape": [
+ 1,
+ 24,
+ 16,
+ 16
+ ]
+ },
+ "elementwise_add_11.tmp_0": {
+ "name": "elementwise_add_11.tmp_0",
+ "persistable": false,
+ "shape": [
+ 1,
+ 1,
+ 32,
+ 32
+ ]
+ },
+ "elementwise_add_2": {
+ "name": "elementwise_add_2",
+ "persistable": false,
+ "shape": [
+ 1,
+ 24,
+ 1,
+ 1
+ ]
+ },
+ "elementwise_add_3": {
+ "name": "elementwise_add_3",
+ "persistable": false,
+ "shape": [
+ 1,
+ 24,
+ 1,
+ 1
+ ]
+ },
+ "elementwise_add_4": {
+ "name": "elementwise_add_4",
+ "persistable": false,
+ "shape": [
+ 1,
+ 40,
+ 1,
+ 1
+ ]
+ },
+ "elementwise_add_5": {
+ "name": "elementwise_add_5",
+ "persistable": false,
+ "shape": [
+ 1,
+ 40,
+ 1,
+ 1
+ ]
+ },
+ "elementwise_add_6": {
+ "name": "elementwise_add_6",
+ "persistable": false,
+ "shape": [
+ 1,
+ 40,
+ 1,
+ 1
+ ]
+ },
+ "elementwise_add_7": {
+ "name": "elementwise_add_7",
+ "persistable": false,
+ "shape": [
+ 1,
+ 56,
+ 1,
+ 1
+ ]
+ },
+ "elementwise_add_8": {
+ "name": "elementwise_add_8",
+ "persistable": false,
+ "shape": [
+ 1,
+ 80,
+ 1,
+ 1
+ ]
+ },
+ "elementwise_add_9": {
+ "name": "elementwise_add_9",
+ "persistable": false,
+ "shape": [
+ 1,
+ 80,
+ 1,
+ 1
+ ]
+ },
+ "hardsigmoid_0.tmp_0": {
+ "name": "hardsigmoid_0.tmp_0",
+ "persistable": false,
+ "shape": [
+ 1,
+ 96,
+ 1,
+ 1
+ ]
+ },
+ "hardsigmoid_1.tmp_0": {
+ "name": "hardsigmoid_1.tmp_0",
+ "persistable": false,
+ "shape": [
+ 1,
+ 96,
+ 1,
+ 1
+ ]
+ },
+ "hardsigmoid_2.tmp_0": {
+ "name": "hardsigmoid_2.tmp_0",
+ "persistable": false,
+ "shape": [
+ 1,
+ 96,
+ 1,
+ 1
+ ]
+ },
+ "hardsigmoid_3.tmp_0": {
+ "name": "hardsigmoid_3.tmp_0",
+ "persistable": false,
+ "shape": [
+ 1,
+ 96,
+ 1,
+ 1
+ ]
+ },
+ "hardsigmoid_4.tmp_0": {
+ "name": "hardsigmoid_4.tmp_0",
+ "persistable": false,
+ "shape": [
+ 1,
+ 24,
+ 1,
+ 1
+ ]
+ },
+ "hardsigmoid_5.tmp_0": {
+ "name": "hardsigmoid_5.tmp_0",
+ "persistable": false,
+ "shape": [
+ 1,
+ 24,
+ 1,
+ 1
+ ]
+ },
+ "hardsigmoid_6.tmp_0": {
+ "name": "hardsigmoid_6.tmp_0",
+ "persistable": false,
+ "shape": [
+ 1,
+ 24,
+ 1,
+ 1
+ ]
+ },
+ "hardsigmoid_7.tmp_0": {
+ "name": "hardsigmoid_7.tmp_0",
+ "persistable": false,
+ "shape": [
+ 1,
+ 24,
+ 1,
+ 1
+ ]
+ },
+ "hardswish_0.tmp_0": {
+ "name": "hardswish_0.tmp_0",
+ "persistable": false,
+ "shape": [
+ 1,
+ 8,
+ 1,
+ 1
+ ]
+ },
+ "hardswish_1.tmp_0": {
+ "name": "hardswish_1.tmp_0",
+ "persistable": false,
+ "shape": [
+ 1,
+ 120,
+ 1,
+ 1
+ ]
+ },
+ "hardswish_10.tmp_0": {
+ "name": "hardswish_10.tmp_0",
+ "persistable": false,
+ "shape": [
+ 1,
+ 240,
+ 1,
+ 1
+ ]
+ },
+ "hardswish_11.tmp_0": {
+ "name": "hardswish_11.tmp_0",
+ "persistable": false,
+ "shape": [
+ 1,
+ 336,
+ 1,
+ 1
+ ]
+ },
+ "hardswish_12.tmp_0": {
+ "name": "hardswish_12.tmp_0",
+ "persistable": false,
+ "shape": [
+ 1,
+ 336,
+ 1,
+ 1
+ ]
+ },
+ "hardswish_13.tmp_0": {
+ "name": "hardswish_13.tmp_0",
+ "persistable": false,
+ "shape": [
+ 1,
+ 336,
+ 1,
+ 1
+ ]
+ },
+ "hardswish_14.tmp_0": {
+ "name": "hardswish_14.tmp_0",
+ "persistable": false,
+ "shape": [
+ 1,
+ 336,
+ 1,
+ 1
+ ]
+ },
+ "hardswish_15.tmp_0": {
+ "name": "hardswish_15.tmp_0",
+ "persistable": false,
+ "shape": [
+ 1,
+ 480,
+ 1,
+ 1
+ ]
+ },
+ "hardswish_16.tmp_0": {
+ "name": "hardswish_16.tmp_0",
+ "persistable": false,
+ "shape": [
+ 1,
+ 480,
+ 1,
+ 1
+ ]
+ },
+ "hardswish_17.tmp_0": {
+ "name": "hardswish_17.tmp_0",
+ "persistable": false,
+ "shape": [
+ 1,
+ 480,
+ 1,
+ 1
+ ]
+ },
+ "hardswish_18.tmp_0": {
+ "name": "hardswish_18.tmp_0",
+ "persistable": false,
+ "shape": [
+ 1,
+ 480,
+ 1,
+ 1
+ ]
+ },
+ "hardswish_19.tmp_0": {
+ "name": "hardswish_19.tmp_0",
+ "persistable": false,
+ "shape": [
+ 1,
+ 480,
+ 1,
+ 1
+ ]
+ },
+ "hardswish_2.tmp_0": {
+ "name": "hardswish_2.tmp_0",
+ "persistable": false,
+ "shape": [
+ 1,
+ 120,
+ 1,
+ 1
+ ]
+ },
+ "hardswish_3.tmp_0": {
+ "name": "hardswish_3.tmp_0",
+ "persistable": false,
+ "shape": [
+ 1,
+ 104,
+ 1,
+ 1
+ ]
+ },
+ "hardswish_4.tmp_0": {
+ "name": "hardswish_4.tmp_0",
+ "persistable": false,
+ "shape": [
+ 1,
+ 104,
+ 1,
+ 1
+ ]
+ },
+ "hardswish_5.tmp_0": {
+ "name": "hardswish_5.tmp_0",
+ "persistable": false,
+ "shape": [
+ 1,
+ 96,
+ 1,
+ 1
+ ]
+ },
+ "hardswish_6.tmp_0": {
+ "name": "hardswish_6.tmp_0",
+ "persistable": false,
+ "shape": [
+ 1,
+ 96,
+ 1,
+ 1
+ ]
+ },
+ "hardswish_7.tmp_0": {
+ "name": "hardswish_7.tmp_0",
+ "persistable": false,
+ "shape": [
+ 1,
+ 96,
+ 1,
+ 1
+ ]
+ },
+ "hardswish_8.tmp_0": {
+ "name": "hardswish_8.tmp_0",
+ "persistable": false,
+ "shape": [
+ 1,
+ 96,
+ 1,
+ 1
+ ]
+ },
+ "hardswish_9.tmp_0": {
+ "name": "hardswish_9.tmp_0",
+ "persistable": false,
+ "shape": [
+ 1,
+ 240,
+ 1,
+ 1
+ ]
+ },
+ "nearest_interp_v2_0.tmp_0": {
+ "name": "nearest_interp_v2_0.tmp_0",
+ "persistable": false,
+ "shape": [
+ 1,
+ 96,
+ 2,
+ 2
+ ]
+ },
+ "nearest_interp_v2_1.tmp_0": {
+ "name": "nearest_interp_v2_1.tmp_0",
+ "persistable": false,
+ "shape": [
+ 1,
+ 96,
+ 4,
+ 4
+ ]
+ },
+ "nearest_interp_v2_2.tmp_0": {
+ "name": "nearest_interp_v2_2.tmp_0",
+ "persistable": false,
+ "shape": [
+ 1,
+ 96,
+ 8,
+ 8
+ ]
+ },
+ "nearest_interp_v2_3.tmp_0": {
+ "name": "nearest_interp_v2_3.tmp_0",
+ "persistable": false,
+ "shape": [
+ 1,
+ 24,
+ 8,
+ 8
+ ]
+ },
+ "nearest_interp_v2_4.tmp_0": {
+ "name": "nearest_interp_v2_4.tmp_0",
+ "persistable": false,
+ "shape": [
+ 1,
+ 24,
+ 8,
+ 8
+ ]
+ },
+ "nearest_interp_v2_5.tmp_0": {
+ "name": "nearest_interp_v2_5.tmp_0",
+ "persistable": false,
+ "shape": [
+ 1,
+ 24,
+ 8,
+ 8
+ ]
+ },
+ "pool2d_0.tmp_0": {
+ "name": "pool2d_0.tmp_0",
+ "persistable": false,
+ "shape": [
+ 1,
+ 96,
+ 1,
+ 1
+ ]
+ },
+ "pool2d_1.tmp_0": {
+ "name": "pool2d_1.tmp_0",
+ "persistable": false,
+ "shape": [
+ 1,
+ 96,
+ 1,
+ 1
+ ]
+ },
+ "pool2d_2.tmp_0": {
+ "name": "pool2d_2.tmp_0",
+ "persistable": false,
+ "shape": [
+ 1,
+ 96,
+ 1,
+ 1
+ ]
+ },
+ "pool2d_3.tmp_0": {
+ "name": "pool2d_3.tmp_0",
+ "persistable": false,
+ "shape": [
+ 1,
+ 96,
+ 1,
+ 1
+ ]
+ },
+ "pool2d_4.tmp_0": {
+ "name": "pool2d_4.tmp_0",
+ "persistable": false,
+ "shape": [
+ 1,
+ 24,
+ 1,
+ 1
+ ]
+ },
+ "pool2d_5.tmp_0": {
+ "name": "pool2d_5.tmp_0",
+ "persistable": false,
+ "shape": [
+ 1,
+ 24,
+ 1,
+ 1
+ ]
+ },
+ "pool2d_6.tmp_0": {
+ "name": "pool2d_6.tmp_0",
+ "persistable": false,
+ "shape": [
+ 1,
+ 24,
+ 1,
+ 1
+ ]
+ },
+ "pool2d_7.tmp_0": {
+ "name": "pool2d_7.tmp_0",
+ "persistable": false,
+ "shape": [
+ 1,
+ 24,
+ 1,
+ 1
+ ]
+ },
+ "relu_0.tmp_0": {
+ "name": "relu_0.tmp_0",
+ "persistable": false,
+ "shape": [
+ 1,
+ 8,
+ 1,
+ 1
+ ]
+ },
+ "relu_1.tmp_0": {
+ "name": "relu_1.tmp_0",
+ "persistable": false,
+ "shape": [
+ 1,
+ 8,
+ 1,
+ 1
+ ]
+ },
+ "relu_10.tmp_0": {
+ "name": "relu_10.tmp_0",
+ "persistable": false,
+ "shape": [
+ 1,
+ 64,
+ 1,
+ 1
+ ]
+ },
+ "relu_11.tmp_0": {
+ "name": "relu_11.tmp_0",
+ "persistable": false,
+ "shape": [
+ 1,
+ 64,
+ 1,
+ 1
+ ]
+ },
+ "relu_12.tmp_0": {
+ "name": "relu_12.tmp_0",
+ "persistable": false,
+ "shape": [
+ 1,
+ 24,
+ 1,
+ 1
+ ]
+ },
+ "relu_13.tmp_0": {
+ "name": "relu_13.tmp_0",
+ "persistable": false,
+ "shape": [
+ 1,
+ 24,
+ 1,
+ 1
+ ]
+ },
+ "relu_14.tmp_0": {
+ "name": "relu_14.tmp_0",
+ "persistable": false,
+ "shape": [
+ 1,
+ 24,
+ 1,
+ 1
+ ]
+ },
+ "relu_15.tmp_0": {
+ "name": "relu_15.tmp_0",
+ "persistable": false,
+ "shape": [
+ 1,
+ 24,
+ 1,
+ 1
+ ]
+ },
+ "relu_16.tmp_0": {
+ "name": "relu_16.tmp_0",
+ "persistable": false,
+ "shape": [
+ 1,
+ 6,
+ 1,
+ 1
+ ]
+ },
+ "relu_17.tmp_0": {
+ "name": "relu_17.tmp_0",
+ "persistable": false,
+ "shape": [
+ 1,
+ 6,
+ 1,
+ 1
+ ]
+ },
+ "relu_18.tmp_0": {
+ "name": "relu_18.tmp_0",
+ "persistable": false,
+ "shape": [
+ 1,
+ 6,
+ 1,
+ 1
+ ]
+ },
+ "relu_19.tmp_0": {
+ "name": "relu_19.tmp_0",
+ "persistable": false,
+ "shape": [
+ 1,
+ 6,
+ 1,
+ 1
+ ]
+ },
+ "relu_2.tmp_0": {
+ "name": "relu_2.tmp_0",
+ "persistable": false,
+ "shape": [
+ 1,
+ 32,
+ 1,
+ 1
+ ]
+ },
+ "relu_3.tmp_0": {
+ "name": "relu_3.tmp_0",
+ "persistable": false,
+ "shape": [
+ 1,
+ 32,
+ 1,
+ 1
+ ]
+ },
+ "relu_4.tmp_0": {
+ "name": "relu_4.tmp_0",
+ "persistable": false,
+ "shape": [
+ 1,
+ 40,
+ 1,
+ 1
+ ]
+ },
+ "relu_5.tmp_0": {
+ "name": "relu_5.tmp_0",
+ "persistable": false,
+ "shape": [
+ 1,
+ 40,
+ 1,
+ 1
+ ]
+ },
+ "relu_6.tmp_0": {
+ "name": "relu_6.tmp_0",
+ "persistable": false,
+ "shape": [
+ 1,
+ 40,
+ 1,
+ 1
+ ]
+ },
+ "relu_7.tmp_0": {
+ "name": "relu_7.tmp_0",
+ "persistable": false,
+ "shape": [
+ 1,
+ 40,
+ 1,
+ 1
+ ]
+ },
+ "relu_8.tmp_0": {
+ "name": "relu_8.tmp_0",
+ "persistable": false,
+ "shape": [
+ 1,
+ 64,
+ 1,
+ 1
+ ]
+ },
+ "relu_9.tmp_0": {
+ "name": "relu_9.tmp_0",
+ "persistable": false,
+ "shape": [
+ 1,
+ 64,
+ 1,
+ 1
+ ]
+ },
+ "sigmoid_0.tmp_0": {
+ "name": "sigmoid_0.tmp_0",
+ "persistable": false,
+ "shape": [
+ 1,
+ 1,
+ 32,
+ 32
+ ]
+ },
+ "tmp_0": {
+ "name": "tmp_0",
+ "persistable": false,
+ "shape": [
+ 1,
+ 96,
+ 1,
+ 1
+ ]
+ },
+ "tmp_1": {
+ "name": "tmp_1",
+ "persistable": false,
+ "shape": [
+ 1,
+ 96,
+ 1,
+ 1
+ ]
+ },
+ "tmp_10": {
+ "name": "tmp_10",
+ "persistable": false,
+ "shape": [
+ 1,
+ 96,
+ 8,
+ 8
+ ]
+ },
+ "tmp_11": {
+ "name": "tmp_11",
+ "persistable": false,
+ "shape": [
+ 1,
+ 24,
+ 1,
+ 1
+ ]
+ },
+ "tmp_12": {
+ "name": "tmp_12",
+ "persistable": false,
+ "shape": [
+ 1,
+ 24,
+ 1,
+ 1
+ ]
+ },
+ "tmp_13": {
+ "name": "tmp_13",
+ "persistable": false,
+ "shape": [
+ 1,
+ 24,
+ 2,
+ 2
+ ]
+ },
+ "tmp_14": {
+ "name": "tmp_14",
+ "persistable": false,
+ "shape": [
+ 1,
+ 24,
+ 2,
+ 2
+ ]
+ },
+ "tmp_15": {
+ "name": "tmp_15",
+ "persistable": false,
+ "shape": [
+ 1,
+ 24,
+ 4,
+ 4
+ ]
+ },
+ "tmp_16": {
+ "name": "tmp_16",
+ "persistable": false,
+ "shape": [
+ 1,
+ 24,
+ 4,
+ 4
+ ]
+ },
+ "tmp_17": {
+ "name": "tmp_17",
+ "persistable": false,
+ "shape": [
+ 1,
+ 24,
+ 8,
+ 8
+ ]
+ },
+ "tmp_18": {
+ "name": "tmp_18",
+ "persistable": false,
+ "shape": [
+ 1,
+ 24,
+ 8,
+ 8
+ ]
+ },
+ "tmp_2": {
+ "name": "tmp_2",
+ "persistable": false,
+ "shape": [
+ 1,
+ 96,
+ 1,
+ 1
+ ]
+ },
+ "tmp_3": {
+ "name": "tmp_3",
+ "persistable": false,
+ "shape": [
+ 1,
+ 96,
+ 1,
+ 1
+ ]
+ },
+ "tmp_4": {
+ "name": "tmp_4",
+ "persistable": false,
+ "shape": [
+ 1,
+ 96,
+ 1,
+ 1
+ ]
+ },
+ "tmp_5": {
+ "name": "tmp_5",
+ "persistable": false,
+ "shape": [
+ 1,
+ 96,
+ 1,
+ 1
+ ]
+ },
+ "tmp_6": {
+ "name": "tmp_6",
+ "persistable": false,
+ "shape": [
+ 1,
+ 96,
+ 1,
+ 1
+ ]
+ },
+ "tmp_7": {
+ "name": "tmp_7",
+ "persistable": false,
+ "shape": [
+ 1,
+ 96,
+ 1,
+ 1
+ ]
+ },
+ "tmp_8": {
+ "name": "tmp_8",
+ "persistable": false,
+ "shape": [
+ 1,
+ 96,
+ 2,
+ 2
+ ]
+ },
+ "tmp_9": {
+ "name": "tmp_9",
+ "persistable": false,
+ "shape": [
+ 1,
+ 96,
+ 4,
+ 4
+ ]
+ },
+ "x": {
+ "name": "x",
+ "persistable": false,
+ "shape": [
+ 1,
+ 3,
+ 1,
+ 1
+ ]
+ }
+ }
+}
\ No newline at end of file
diff --git a/services/_utils/ocr.js b/services/_utils/ocr.js
new file mode 100644
index 0000000..6aa168f
--- /dev/null
+++ b/services/_utils/ocr.js
@@ -0,0 +1,21 @@
+import * as paddlejs from '@paddlejs/paddlejs-core';
+import '@paddlejs/paddlejs-backend-webgl';
+
+const plugin = requirePlugin("paddlejs-plugin");
+plugin.register(paddlejs, wx);
+
+export const Paddlejs = new paddlejs.Runner({
+ modelPath: '/resources/paddle.json',
+ feedShape: {
+ fw: 224,
+ fh: 224
+ },
+ fill: '#fff',
+ targetSize: {
+ height: 224,
+ width: 224
+ },
+ mean: [0.485, 0.456, 0.406],
+ std: [0.229, 0.224, 0.225],
+ // needPreheat: true
+})
\ No newline at end of file