Skip to content

  • 体验新版
    • 正在加载...
  • 登录
  • PaddlePaddle
  • PaddleSeg
  • Issue
  • #366

P
PaddleSeg
  • 项目概览

PaddlePaddle / PaddleSeg

通知 289
Star 8
Fork 1
  • 代码
    • 文件
    • 提交
    • 分支
    • Tags
    • 贡献者
    • 分支图
    • Diff
  • Issue 53
    • 列表
    • 看板
    • 标记
    • 里程碑
  • 合并请求 3
  • Wiki 0
    • Wiki
  • 分析
    • 仓库
    • DevOps
  • 项目成员
  • Pages
P
PaddleSeg
  • 项目概览
    • 项目概览
    • 详情
    • 发布
  • 仓库
    • 仓库
    • 文件
    • 提交
    • 分支
    • 标签
    • 贡献者
    • 分支图
    • 比较
  • Issue 53
    • Issue 53
    • 列表
    • 看板
    • 标记
    • 里程碑
  • 合并请求 3
    • 合并请求 3
  • Pages
  • 分析
    • 分析
    • 仓库分析
    • DevOps
  • Wiki 0
    • Wiki
  • 成员
    • 成员
  • 收起侧边栏
  • 动态
  • 分支图
  • 创建新Issue
  • 提交
  • Issue看板
已关闭
开放中
Opened 9月 01, 2020 by saxon_zh@saxon_zhGuest

deeplabv3p_xception65_optic模型剪裁后导出维度报错

Created by: L-lei

问题:请问我怎样可以导出推理模型呢?

下面列出一些版本与错误信息 python版本:3.5 paddleslim版本: 1.1.1 paddlepaddle版本:1.8.3.post107

使用模型deeplabv3p_xception65_optic剪裁训练输出 epoch=100 step=4760 lr=0.00004 loss=0.0572 step/sec=6.184 | ETA 00:00:06 epoch=100 step=4770 lr=0.00004 loss=0.0587 step/sec=6.321 | ETA 00:00:04 epoch=100 step=4780 lr=0.00004 loss=0.0563 step/sec=6.432 | ETA 00:00:03 epoch=100 step=4790 lr=0.00003 loss=0.0652 step/sec=6.317 | ETA 00:00:01 epoch=100 step=4800 lr=0.00003 loss=0.0633 step/sec=6.357 | ETA 00:00:00 最后得到params文件大小4.9M 直接用pdseg下面export_model.py导出中间也没报错,在推理的时候报错 InvalidArgumentError: The number of input's channels should be equal to filter's channels * groups for Op(Conv). But received: the input's channels is 6, the input's shape is [1, 6, 256, 256]; the filter's channels is 1, the filter's shape is [6, 1, 3, 3]; the groups is 64, the data_format is NCHW. The error may come from wrong data_format setting. [Hint: Expected input_channels == filter_dims[1] * groups, but received input_channels:6 != filter_dims[1] * groups:64.] at (/paddle/paddle/fluid/operators/conv_op.cc:94) [operator < depthwise_conv2d > error]

后来我尝试修改export_model.py文件在pruner.prune中报错 InvalidArgumentError: The number of input's channels should be equal to filter's channels * groups for Op(Conv). But received: the input's channels is 6, the input's shape is [-1, 6, 256, 256]; the filter's channels is 1, the filter's shape is [-52, 1, 3, 3]; the groups is -52, the data_format is NCHW. The error may come from wrong data_format setting. [Hint: Expected input_channels == filter_dims[1] * groups, but received input_channels:6 != filter_dims[1] * groups:-52.] at (/paddle/paddle/fluid/operators/conv_op.cc:94) [operator < depthwise_conv2d > error] 是在执行infer_shape中的[xception_65/entry_flow/block1/separable_conv1/depthwise/weights, relu_2.tmp_0]出现

下面是选择裁剪的卷积处理 pruned_params = [] pruned_ratios = [] for x in infer_prog.list_vars(): if isinstance(x, fluid.framework.Parameter): k=x.name if 'weights' in k: if 'conv1/weights' in k or 'conv2/weights' in k or 'entry_flow' in k or 'middle_flow' in k or 'exit_flow' in k \ : pruned_params.append(k) if 'shortcut' in k: pruned_ratios.append(0.2) else: pruned_ratios.append(0.9)

附带所有卷积参数: xception_65/entry_flow/conv1/weights (32, 3, 3, 3) xception_65/entry_flow/conv1/BatchNorm/gamma (32,) xception_65/entry_flow/conv1/BatchNorm/beta (32,) xception_65/entry_flow/conv1/BatchNorm/moving_mean (32,) xception_65/entry_flow/conv1/BatchNorm/moving_variance (32,) xception_65/entry_flow/conv2/weights (64, 32, 3, 3) xception_65/entry_flow/conv2/BatchNorm/gamma (64,) xception_65/entry_flow/conv2/BatchNorm/beta (64,) xception_65/entry_flow/conv2/BatchNorm/moving_mean (64,) xception_65/entry_flow/conv2/BatchNorm/moving_variance (64,) xception_65/entry_flow/block1/separable_conv1/depthwise/weights (64, 1, 3, 3) xception_65/entry_flow/block1/separable_conv1/depthwise/BatchNorm/gamma (64,) xception_65/entry_flow/block1/separable_conv1/depthwise/BatchNorm/beta (64,) xception_65/entry_flow/block1/separable_conv1/depthwise/BatchNorm/moving_mean (64,) xception_65/entry_flow/block1/separable_conv1/depthwise/BatchNorm/moving_variance (64,) xception_65/entry_flow/block1/separable_conv1/pointwise/weights (128, 64, 1, 1) xception_65/entry_flow/block1/separable_conv1/pointwise/BatchNorm/gamma (128,) xception_65/entry_flow/block1/separable_conv1/pointwise/BatchNorm/beta (128,) xception_65/entry_flow/block1/separable_conv1/pointwise/BatchNorm/moving_mean (128,) xception_65/entry_flow/block1/separable_conv1/pointwise/BatchNorm/moving_variance (128,) xception_65/entry_flow/block1/separable_conv2/depthwise/weights (128, 1, 3, 3) xception_65/entry_flow/block1/separable_conv2/depthwise/BatchNorm/gamma (128,) xception_65/entry_flow/block1/separable_conv2/depthwise/BatchNorm/beta (128,) xception_65/entry_flow/block1/separable_conv2/depthwise/BatchNorm/moving_mean (128,) xception_65/entry_flow/block1/separable_conv2/depthwise/BatchNorm/moving_variance (128,) xception_65/entry_flow/block1/separable_conv2/pointwise/weights (128, 128, 1, 1) xception_65/entry_flow/block1/separable_conv2/pointwise/BatchNorm/gamma (128,) xception_65/entry_flow/block1/separable_conv2/pointwise/BatchNorm/beta (128,) xception_65/entry_flow/block1/separable_conv2/pointwise/BatchNorm/moving_mean (128,) xception_65/entry_flow/block1/separable_conv2/pointwise/BatchNorm/moving_variance (128,) xception_65/entry_flow/block1/separable_conv3/depthwise/weights (128, 1, 3, 3) xception_65/entry_flow/block1/separable_conv3/depthwise/BatchNorm/gamma (128,) xception_65/entry_flow/block1/separable_conv3/depthwise/BatchNorm/beta (128,) xception_65/entry_flow/block1/separable_conv3/depthwise/BatchNorm/moving_mean (128,) xception_65/entry_flow/block1/separable_conv3/depthwise/BatchNorm/moving_variance (128,) xception_65/entry_flow/block1/separable_conv3/pointwise/weights (128, 128, 1, 1) xception_65/entry_flow/block1/separable_conv3/pointwise/BatchNorm/gamma (128,) xception_65/entry_flow/block1/separable_conv3/pointwise/BatchNorm/beta (128,) xception_65/entry_flow/block1/separable_conv3/pointwise/BatchNorm/moving_mean (128,) xception_65/entry_flow/block1/separable_conv3/pointwise/BatchNorm/moving_variance (128,) xception_65/entry_flow/block1/shortcut/weights (128, 64, 1, 1) xception_65/entry_flow/block1/shortcut/BatchNorm/gamma (128,) xception_65/entry_flow/block1/shortcut/BatchNorm/beta (128,) xception_65/entry_flow/block1/shortcut/BatchNorm/moving_mean (128,) xception_65/entry_flow/block1/shortcut/BatchNorm/moving_variance (128,) xception_65/entry_flow/block2/separable_conv1/depthwise/weights (128, 1, 3, 3) xception_65/entry_flow/block2/separable_conv1/depthwise/BatchNorm/gamma (128,) xception_65/entry_flow/block2/separable_conv1/depthwise/BatchNorm/beta (128,) xception_65/entry_flow/block2/separable_conv1/depthwise/BatchNorm/moving_mean (128,) xception_65/entry_flow/block2/separable_conv1/depthwise/BatchNorm/moving_variance (128,) xception_65/entry_flow/block2/separable_conv1/pointwise/weights (256, 128, 1, 1) xception_65/entry_flow/block2/separable_conv1/pointwise/BatchNorm/gamma (256,) xception_65/entry_flow/block2/separable_conv1/pointwise/BatchNorm/beta (256,) xception_65/entry_flow/block2/separable_conv1/pointwise/BatchNorm/moving_mean (256,) xception_65/entry_flow/block2/separable_conv1/pointwise/BatchNorm/moving_variance (256,) xception_65/entry_flow/block2/separable_conv2/depthwise/weights (256, 1, 3, 3) xception_65/entry_flow/block2/separable_conv2/depthwise/BatchNorm/gamma (256,) xception_65/entry_flow/block2/separable_conv2/depthwise/BatchNorm/beta (256,) xception_65/entry_flow/block2/separable_conv2/depthwise/BatchNorm/moving_mean (256,) xception_65/entry_flow/block2/separable_conv2/depthwise/BatchNorm/moving_variance (256,) xception_65/entry_flow/block2/separable_conv2/pointwise/weights (256, 256, 1, 1) xception_65/entry_flow/block2/separable_conv2/pointwise/BatchNorm/gamma (256,) xception_65/entry_flow/block2/separable_conv2/pointwise/BatchNorm/beta (256,) xception_65/entry_flow/block2/separable_conv2/pointwise/BatchNorm/moving_mean (256,) xception_65/entry_flow/block2/separable_conv2/pointwise/BatchNorm/moving_variance (256,) xception_65/entry_flow/block2/separable_conv3/depthwise/weights (256, 1, 3, 3) xception_65/entry_flow/block2/separable_conv3/depthwise/BatchNorm/gamma (256,) xception_65/entry_flow/block2/separable_conv3/depthwise/BatchNorm/beta (256,) xception_65/entry_flow/block2/separable_conv3/depthwise/BatchNorm/moving_mean (256,) xception_65/entry_flow/block2/separable_conv3/depthwise/BatchNorm/moving_variance (256,) xception_65/entry_flow/block2/separable_conv3/pointwise/weights (256, 256, 1, 1) xception_65/entry_flow/block2/separable_conv3/pointwise/BatchNorm/gamma (256,) xception_65/entry_flow/block2/separable_conv3/pointwise/BatchNorm/beta (256,) xception_65/entry_flow/block2/separable_conv3/pointwise/BatchNorm/moving_mean (256,) xception_65/entry_flow/block2/separable_conv3/pointwise/BatchNorm/moving_variance (256,) xception_65/entry_flow/block2/shortcut/weights (256, 128, 1, 1) xception_65/entry_flow/block2/shortcut/BatchNorm/gamma (256,) xception_65/entry_flow/block2/shortcut/BatchNorm/beta (256,) xception_65/entry_flow/block2/shortcut/BatchNorm/moving_mean (256,) xception_65/entry_flow/block2/shortcut/BatchNorm/moving_variance (256,) xception_65/entry_flow/block3/separable_conv1/depthwise/weights (256, 1, 3, 3) xception_65/entry_flow/block3/separable_conv1/depthwise/BatchNorm/gamma (256,) xception_65/entry_flow/block3/separable_conv1/depthwise/BatchNorm/beta (256,) xception_65/entry_flow/block3/separable_conv1/depthwise/BatchNorm/moving_mean (256,) xception_65/entry_flow/block3/separable_conv1/depthwise/BatchNorm/moving_variance (256,) xception_65/entry_flow/block3/separable_conv1/pointwise/weights (728, 256, 1, 1) xception_65/entry_flow/block3/separable_conv1/pointwise/BatchNorm/gamma (728,) xception_65/entry_flow/block3/separable_conv1/pointwise/BatchNorm/beta (728,) xception_65/entry_flow/block3/separable_conv1/pointwise/BatchNorm/moving_mean (728,) xception_65/entry_flow/block3/separable_conv1/pointwise/BatchNorm/moving_variance (728,) xception_65/entry_flow/block3/separable_conv2/depthwise/weights (728, 1, 3, 3) xception_65/entry_flow/block3/separable_conv2/depthwise/BatchNorm/gamma (728,) xception_65/entry_flow/block3/separable_conv2/depthwise/BatchNorm/beta (728,) xception_65/entry_flow/block3/separable_conv2/depthwise/BatchNorm/moving_mean (728,) xception_65/entry_flow/block3/separable_conv2/depthwise/BatchNorm/moving_variance (728,) xception_65/entry_flow/block3/separable_conv2/pointwise/weights (728, 728, 1, 1) xception_65/entry_flow/block3/separable_conv2/pointwise/BatchNorm/gamma (728,) xception_65/entry_flow/block3/separable_conv2/pointwise/BatchNorm/beta (728,) xception_65/entry_flow/block3/separable_conv2/pointwise/BatchNorm/moving_mean (728,) xception_65/entry_flow/block3/separable_conv2/pointwise/BatchNorm/moving_variance (728,) xception_65/entry_flow/block3/separable_conv3/depthwise/weights (728, 1, 3, 3) xception_65/entry_flow/block3/separable_conv3/depthwise/BatchNorm/gamma (728,) xception_65/entry_flow/block3/separable_conv3/depthwise/BatchNorm/beta (728,) xception_65/entry_flow/block3/separable_conv3/depthwise/BatchNorm/moving_mean (728,) xception_65/entry_flow/block3/separable_conv3/depthwise/BatchNorm/moving_variance (728,) xception_65/entry_flow/block3/separable_conv3/pointwise/weights (728, 728, 1, 1) xception_65/entry_flow/block3/separable_conv3/pointwise/BatchNorm/gamma (728,) xception_65/entry_flow/block3/separable_conv3/pointwise/BatchNorm/beta (728,) xception_65/entry_flow/block3/separable_conv3/pointwise/BatchNorm/moving_mean (728,) xception_65/entry_flow/block3/separable_conv3/pointwise/BatchNorm/moving_variance (728,) xception_65/entry_flow/block3/shortcut/weights (728, 256, 1, 1) xception_65/entry_flow/block3/shortcut/BatchNorm/gamma (728,) xception_65/entry_flow/block3/shortcut/BatchNorm/beta (728,) xception_65/entry_flow/block3/shortcut/BatchNorm/moving_mean (728,) xception_65/entry_flow/block3/shortcut/BatchNorm/moving_variance (728,) xception_65/middle_flow/block1/separable_conv1/depthwise/weights (728, 1, 3, 3) xception_65/middle_flow/block1/separable_conv1/depthwise/BatchNorm/gamma (728,) xception_65/middle_flow/block1/separable_conv1/depthwise/BatchNorm/beta (728,) xception_65/middle_flow/block1/separable_conv1/depthwise/BatchNorm/moving_mean (728,) xception_65/middle_flow/block1/separable_conv1/depthwise/BatchNorm/moving_variance (728,) xception_65/middle_flow/block1/separable_conv1/pointwise/weights (728, 728, 1, 1) xception_65/middle_flow/block1/separable_conv1/pointwise/BatchNorm/gamma (728,) xception_65/middle_flow/block1/separable_conv1/pointwise/BatchNorm/beta (728,) xception_65/middle_flow/block1/separable_conv1/pointwise/BatchNorm/moving_mean (728,) xception_65/middle_flow/block1/separable_conv1/pointwise/BatchNorm/moving_variance (728,) xception_65/middle_flow/block1/separable_conv2/depthwise/weights (728, 1, 3, 3) xception_65/middle_flow/block1/separable_conv2/depthwise/BatchNorm/gamma (728,) xception_65/middle_flow/block1/separable_conv2/depthwise/BatchNorm/beta (728,) xception_65/middle_flow/block1/separable_conv2/depthwise/BatchNorm/moving_mean (728,) xception_65/middle_flow/block1/separable_conv2/depthwise/BatchNorm/moving_variance (728,) xception_65/middle_flow/block1/separable_conv2/pointwise/weights (728, 728, 1, 1) xception_65/middle_flow/block1/separable_conv2/pointwise/BatchNorm/gamma (728,) xception_65/middle_flow/block1/separable_conv2/pointwise/BatchNorm/beta (728,) xception_65/middle_flow/block1/separable_conv2/pointwise/BatchNorm/moving_mean (728,) xception_65/middle_flow/block1/separable_conv2/pointwise/BatchNorm/moving_variance (728,) xception_65/middle_flow/block1/separable_conv3/depthwise/weights (728, 1, 3, 3) xception_65/middle_flow/block1/separable_conv3/depthwise/BatchNorm/gamma (728,) xception_65/middle_flow/block1/separable_conv3/depthwise/BatchNorm/beta (728,) xception_65/middle_flow/block1/separable_conv3/depthwise/BatchNorm/moving_mean (728,) xception_65/middle_flow/block1/separable_conv3/depthwise/BatchNorm/moving_variance (728,) xception_65/middle_flow/block1/separable_conv3/pointwise/weights (728, 728, 1, 1) xception_65/middle_flow/block1/separable_conv3/pointwise/BatchNorm/gamma (728,) xception_65/middle_flow/block1/separable_conv3/pointwise/BatchNorm/beta (728,) xception_65/middle_flow/block1/separable_conv3/pointwise/BatchNorm/moving_mean (728,) xception_65/middle_flow/block1/separable_conv3/pointwise/BatchNorm/moving_variance (728,) xception_65/middle_flow/block2/separable_conv1/depthwise/weights (728, 1, 3, 3) xception_65/middle_flow/block2/separable_conv1/depthwise/BatchNorm/gamma (728,) xception_65/middle_flow/block2/separable_conv1/depthwise/BatchNorm/beta (728,) xception_65/middle_flow/block2/separable_conv1/depthwise/BatchNorm/moving_mean (728,) xception_65/middle_flow/block2/separable_conv1/depthwise/BatchNorm/moving_variance (728,) xception_65/middle_flow/block2/separable_conv1/pointwise/weights (728, 728, 1, 1) xception_65/middle_flow/block2/separable_conv1/pointwise/BatchNorm/gamma (728,) xception_65/middle_flow/block2/separable_conv1/pointwise/BatchNorm/beta (728,) xception_65/middle_flow/block2/separable_conv1/pointwise/BatchNorm/moving_mean (728,) xception_65/middle_flow/block2/separable_conv1/pointwise/BatchNorm/moving_variance (728,) xception_65/middle_flow/block2/separable_conv2/depthwise/weights (728, 1, 3, 3) xception_65/middle_flow/block2/separable_conv2/depthwise/BatchNorm/gamma (728,) xception_65/middle_flow/block2/separable_conv2/depthwise/BatchNorm/beta (728,) xception_65/middle_flow/block2/separable_conv2/depthwise/BatchNorm/moving_mean (728,) xception_65/middle_flow/block2/separable_conv2/depthwise/BatchNorm/moving_variance (728,) xception_65/middle_flow/block2/separable_conv2/pointwise/weights (728, 728, 1, 1) xception_65/middle_flow/block2/separable_conv2/pointwise/BatchNorm/gamma (728,) xception_65/middle_flow/block2/separable_conv2/pointwise/BatchNorm/beta (728,) xception_65/middle_flow/block2/separable_conv2/pointwise/BatchNorm/moving_mean (728,) xception_65/middle_flow/block2/separable_conv2/pointwise/BatchNorm/moving_variance (728,) xception_65/middle_flow/block2/separable_conv3/depthwise/weights (728, 1, 3, 3) xception_65/middle_flow/block2/separable_conv3/depthwise/BatchNorm/gamma (728,) xception_65/middle_flow/block2/separable_conv3/depthwise/BatchNorm/beta (728,) xception_65/middle_flow/block2/separable_conv3/depthwise/BatchNorm/moving_mean (728,) xception_65/middle_flow/block2/separable_conv3/depthwise/BatchNorm/moving_variance (728,) xception_65/middle_flow/block2/separable_conv3/pointwise/weights (728, 728, 1, 1) xception_65/middle_flow/block2/separable_conv3/pointwise/BatchNorm/gamma (728,) xception_65/middle_flow/block2/separable_conv3/pointwise/BatchNorm/beta (728,) xception_65/middle_flow/block2/separable_conv3/pointwise/BatchNorm/moving_mean (728,) xception_65/middle_flow/block2/separable_conv3/pointwise/BatchNorm/moving_variance (728,) xception_65/middle_flow/block3/separable_conv1/depthwise/weights (728, 1, 3, 3) xception_65/middle_flow/block3/separable_conv1/depthwise/BatchNorm/gamma (728,) xception_65/middle_flow/block3/separable_conv1/depthwise/BatchNorm/beta (728,) xception_65/middle_flow/block3/separable_conv1/depthwise/BatchNorm/moving_mean (728,) xception_65/middle_flow/block3/separable_conv1/depthwise/BatchNorm/moving_variance (728,) xception_65/middle_flow/block3/separable_conv1/pointwise/weights (728, 728, 1, 1) xception_65/middle_flow/block3/separable_conv1/pointwise/BatchNorm/gamma (728,) xception_65/middle_flow/block3/separable_conv1/pointwise/BatchNorm/beta (728,) xception_65/middle_flow/block3/separable_conv1/pointwise/BatchNorm/moving_mean (728,) xception_65/middle_flow/block3/separable_conv1/pointwise/BatchNorm/moving_variance (728,) xception_65/middle_flow/block3/separable_conv2/depthwise/weights (728, 1, 3, 3) xception_65/middle_flow/block3/separable_conv2/depthwise/BatchNorm/gamma (728,) xception_65/middle_flow/block3/separable_conv2/depthwise/BatchNorm/beta (728,) xception_65/middle_flow/block3/separable_conv2/depthwise/BatchNorm/moving_mean (728,) xception_65/middle_flow/block3/separable_conv2/depthwise/BatchNorm/moving_variance (728,) xception_65/middle_flow/block3/separable_conv2/pointwise/weights (728, 728, 1, 1) xception_65/middle_flow/block3/separable_conv2/pointwise/BatchNorm/gamma (728,) xception_65/middle_flow/block3/separable_conv2/pointwise/BatchNorm/beta (728,) xception_65/middle_flow/block3/separable_conv2/pointwise/BatchNorm/moving_mean (728,) xception_65/middle_flow/block3/separable_conv2/pointwise/BatchNorm/moving_variance (728,) xception_65/middle_flow/block3/separable_conv3/depthwise/weights (728, 1, 3, 3) xception_65/middle_flow/block3/separable_conv3/depthwise/BatchNorm/gamma (728,) xception_65/middle_flow/block3/separable_conv3/depthwise/BatchNorm/beta (728,) xception_65/middle_flow/block3/separable_conv3/depthwise/BatchNorm/moving_mean (728,) xception_65/middle_flow/block3/separable_conv3/depthwise/BatchNorm/moving_variance (728,) xception_65/middle_flow/block3/separable_conv3/pointwise/weights (728, 728, 1, 1) xception_65/middle_flow/block3/separable_conv3/pointwise/BatchNorm/gamma (728,) xception_65/middle_flow/block3/separable_conv3/pointwise/BatchNorm/beta (728,) xception_65/middle_flow/block3/separable_conv3/pointwise/BatchNorm/moving_mean (728,) xception_65/middle_flow/block3/separable_conv3/pointwise/BatchNorm/moving_variance (728,) xception_65/middle_flow/block4/separable_conv1/depthwise/weights (728, 1, 3, 3) xception_65/middle_flow/block4/separable_conv1/depthwise/BatchNorm/gamma (728,) xception_65/middle_flow/block4/separable_conv1/depthwise/BatchNorm/beta (728,) xception_65/middle_flow/block4/separable_conv1/depthwise/BatchNorm/moving_mean (728,) xception_65/middle_flow/block4/separable_conv1/depthwise/BatchNorm/moving_variance (728,) xception_65/middle_flow/block4/separable_conv1/pointwise/weights (728, 728, 1, 1) xception_65/middle_flow/block4/separable_conv1/pointwise/BatchNorm/gamma (728,) xception_65/middle_flow/block4/separable_conv1/pointwise/BatchNorm/beta (728,) xception_65/middle_flow/block4/separable_conv1/pointwise/BatchNorm/moving_mean (728,) xception_65/middle_flow/block4/separable_conv1/pointwise/BatchNorm/moving_variance (728,) xception_65/middle_flow/block4/separable_conv2/depthwise/weights (728, 1, 3, 3) xception_65/middle_flow/block4/separable_conv2/depthwise/BatchNorm/gamma (728,) xception_65/middle_flow/block4/separable_conv2/depthwise/BatchNorm/beta (728,) xception_65/middle_flow/block4/separable_conv2/depthwise/BatchNorm/moving_mean (728,) xception_65/middle_flow/block4/separable_conv2/depthwise/BatchNorm/moving_variance (728,) xception_65/middle_flow/block4/separable_conv2/pointwise/weights (728, 728, 1, 1) xception_65/middle_flow/block4/separable_conv2/pointwise/BatchNorm/gamma (728,) xception_65/middle_flow/block4/separable_conv2/pointwise/BatchNorm/beta (728,) xception_65/middle_flow/block4/separable_conv2/pointwise/BatchNorm/moving_mean (728,) xception_65/middle_flow/block4/separable_conv2/pointwise/BatchNorm/moving_variance (728,) xception_65/middle_flow/block4/separable_conv3/depthwise/weights (728, 1, 3, 3) xception_65/middle_flow/block4/separable_conv3/depthwise/BatchNorm/gamma (728,) xception_65/middle_flow/block4/separable_conv3/depthwise/BatchNorm/beta (728,) xception_65/middle_flow/block4/separable_conv3/depthwise/BatchNorm/moving_mean (728,) xception_65/middle_flow/block4/separable_conv3/depthwise/BatchNorm/moving_variance (728,) xception_65/middle_flow/block4/separable_conv3/pointwise/weights (728, 728, 1, 1) xception_65/middle_flow/block4/separable_conv3/pointwise/BatchNorm/gamma (728,) xception_65/middle_flow/block4/separable_conv3/pointwise/BatchNorm/beta (728,) xception_65/middle_flow/block4/separable_conv3/pointwise/BatchNorm/moving_mean (728,) xception_65/middle_flow/block4/separable_conv3/pointwise/BatchNorm/moving_variance (728,) xception_65/middle_flow/block5/separable_conv1/depthwise/weights (728, 1, 3, 3) xception_65/middle_flow/block5/separable_conv1/depthwise/BatchNorm/gamma (728,) xception_65/middle_flow/block5/separable_conv1/depthwise/BatchNorm/beta (728,) xception_65/middle_flow/block5/separable_conv1/depthwise/BatchNorm/moving_mean (728,) xception_65/middle_flow/block5/separable_conv1/depthwise/BatchNorm/moving_variance (728,) xception_65/middle_flow/block5/separable_conv1/pointwise/weights (728, 728, 1, 1) xception_65/middle_flow/block5/separable_conv1/pointwise/BatchNorm/gamma (728,) xception_65/middle_flow/block5/separable_conv1/pointwise/BatchNorm/beta (728,) xception_65/middle_flow/block5/separable_conv1/pointwise/BatchNorm/moving_mean (728,) xception_65/middle_flow/block5/separable_conv1/pointwise/BatchNorm/moving_variance (728,) xception_65/middle_flow/block5/separable_conv2/depthwise/weights (728, 1, 3, 3) xception_65/middle_flow/block5/separable_conv2/depthwise/BatchNorm/gamma (728,) xception_65/middle_flow/block5/separable_conv2/depthwise/BatchNorm/beta (728,) xception_65/middle_flow/block5/separable_conv2/depthwise/BatchNorm/moving_mean (728,) xception_65/middle_flow/block5/separable_conv2/depthwise/BatchNorm/moving_variance (728,) xception_65/middle_flow/block5/separable_conv2/pointwise/weights (728, 728, 1, 1) xception_65/middle_flow/block5/separable_conv2/pointwise/BatchNorm/gamma (728,) xception_65/middle_flow/block5/separable_conv2/pointwise/BatchNorm/beta (728,) xception_65/middle_flow/block5/separable_conv2/pointwise/BatchNorm/moving_mean (728,) xception_65/middle_flow/block5/separable_conv2/pointwise/BatchNorm/moving_variance (728,) xception_65/middle_flow/block5/separable_conv3/depthwise/weights (728, 1, 3, 3) xception_65/middle_flow/block5/separable_conv3/depthwise/BatchNorm/gamma (728,) xception_65/middle_flow/block5/separable_conv3/depthwise/BatchNorm/beta (728,) xception_65/middle_flow/block5/separable_conv3/depthwise/BatchNorm/moving_mean (728,) xception_65/middle_flow/block5/separable_conv3/depthwise/BatchNorm/moving_variance (728,) xception_65/middle_flow/block5/separable_conv3/pointwise/weights (728, 728, 1, 1) xception_65/middle_flow/block5/separable_conv3/pointwise/BatchNorm/gamma (728,) xception_65/middle_flow/block5/separable_conv3/pointwise/BatchNorm/beta (728,) xception_65/middle_flow/block5/separable_conv3/pointwise/BatchNorm/moving_mean (728,) xception_65/middle_flow/block5/separable_conv3/pointwise/BatchNorm/moving_variance (728,) xception_65/middle_flow/block6/separable_conv1/depthwise/weights (728, 1, 3, 3) xception_65/middle_flow/block6/separable_conv1/depthwise/BatchNorm/gamma (728,) xception_65/middle_flow/block6/separable_conv1/depthwise/BatchNorm/beta (728,) xception_65/middle_flow/block6/separable_conv1/depthwise/BatchNorm/moving_mean (728,) xception_65/middle_flow/block6/separable_conv1/depthwise/BatchNorm/moving_variance (728,) xception_65/middle_flow/block6/separable_conv1/pointwise/weights (728, 728, 1, 1) xception_65/middle_flow/block6/separable_conv1/pointwise/BatchNorm/gamma (728,) xception_65/middle_flow/block6/separable_conv1/pointwise/BatchNorm/beta (728,) xception_65/middle_flow/block6/separable_conv1/pointwise/BatchNorm/moving_mean (728,) xception_65/middle_flow/block6/separable_conv1/pointwise/BatchNorm/moving_variance (728,) xception_65/middle_flow/block6/separable_conv2/depthwise/weights (728, 1, 3, 3) xception_65/middle_flow/block6/separable_conv2/depthwise/BatchNorm/gamma (728,) xception_65/middle_flow/block6/separable_conv2/depthwise/BatchNorm/beta (728,) xception_65/middle_flow/block6/separable_conv2/depthwise/BatchNorm/moving_mean (728,) xception_65/middle_flow/block6/separable_conv2/depthwise/BatchNorm/moving_variance (728,) xception_65/middle_flow/block6/separable_conv2/pointwise/weights (728, 728, 1, 1) xception_65/middle_flow/block6/separable_conv2/pointwise/BatchNorm/gamma (728,) xception_65/middle_flow/block6/separable_conv2/pointwise/BatchNorm/beta (728,) xception_65/middle_flow/block6/separable_conv2/pointwise/BatchNorm/moving_mean (728,) xception_65/middle_flow/block6/separable_conv2/pointwise/BatchNorm/moving_variance (728,) xception_65/middle_flow/block6/separable_conv3/depthwise/weights (728, 1, 3, 3) xception_65/middle_flow/block6/separable_conv3/depthwise/BatchNorm/gamma (728,) xception_65/middle_flow/block6/separable_conv3/depthwise/BatchNorm/beta (728,) xception_65/middle_flow/block6/separable_conv3/depthwise/BatchNorm/moving_mean (728,) xception_65/middle_flow/block6/separable_conv3/depthwise/BatchNorm/moving_variance (728,) xception_65/middle_flow/block6/separable_conv3/pointwise/weights (728, 728, 1, 1) xception_65/middle_flow/block6/separable_conv3/pointwise/BatchNorm/gamma (728,) xception_65/middle_flow/block6/separable_conv3/pointwise/BatchNorm/beta (728,) xception_65/middle_flow/block6/separable_conv3/pointwise/BatchNorm/moving_mean (728,) xception_65/middle_flow/block6/separable_conv3/pointwise/BatchNorm/moving_variance (728,) xception_65/middle_flow/block7/separable_conv1/depthwise/weights (728, 1, 3, 3) xception_65/middle_flow/block7/separable_conv1/depthwise/BatchNorm/gamma (728,) xception_65/middle_flow/block7/separable_conv1/depthwise/BatchNorm/beta (728,) xception_65/middle_flow/block7/separable_conv1/depthwise/BatchNorm/moving_mean (728,) xception_65/middle_flow/block7/separable_conv1/depthwise/BatchNorm/moving_variance (728,) xception_65/middle_flow/block7/separable_conv1/pointwise/weights (728, 728, 1, 1) xception_65/middle_flow/block7/separable_conv1/pointwise/BatchNorm/gamma (728,) xception_65/middle_flow/block7/separable_conv1/pointwise/BatchNorm/beta (728,) xception_65/middle_flow/block7/separable_conv1/pointwise/BatchNorm/moving_mean (728,) xception_65/middle_flow/block7/separable_conv1/pointwise/BatchNorm/moving_variance (728,) xception_65/middle_flow/block7/separable_conv2/depthwise/weights (728, 1, 3, 3) xception_65/middle_flow/block7/separable_conv2/depthwise/BatchNorm/gamma (728,) xception_65/middle_flow/block7/separable_conv2/depthwise/BatchNorm/beta (728,) xception_65/middle_flow/block7/separable_conv2/depthwise/BatchNorm/moving_mean (728,) xception_65/middle_flow/block7/separable_conv2/depthwise/BatchNorm/moving_variance (728,) xception_65/middle_flow/block7/separable_conv2/pointwise/weights (728, 728, 1, 1) xception_65/middle_flow/block7/separable_conv2/pointwise/BatchNorm/gamma (728,) xception_65/middle_flow/block7/separable_conv2/pointwise/BatchNorm/beta (728,) xception_65/middle_flow/block7/separable_conv2/pointwise/BatchNorm/moving_mean (728,) xception_65/middle_flow/block7/separable_conv2/pointwise/BatchNorm/moving_variance (728,) xception_65/middle_flow/block7/separable_conv3/depthwise/weights (728, 1, 3, 3) xception_65/middle_flow/block7/separable_conv3/depthwise/BatchNorm/gamma (728,) xception_65/middle_flow/block7/separable_conv3/depthwise/BatchNorm/beta (728,) xception_65/middle_flow/block7/separable_conv3/depthwise/BatchNorm/moving_mean (728,) xception_65/middle_flow/block7/separable_conv3/depthwise/BatchNorm/moving_variance (728,) xception_65/middle_flow/block7/separable_conv3/pointwise/weights (728, 728, 1, 1) xception_65/middle_flow/block7/separable_conv3/pointwise/BatchNorm/gamma (728,) xception_65/middle_flow/block7/separable_conv3/pointwise/BatchNorm/beta (728,) xception_65/middle_flow/block7/separable_conv3/pointwise/BatchNorm/moving_mean (728,) xception_65/middle_flow/block7/separable_conv3/pointwise/BatchNorm/moving_variance (728,) xception_65/middle_flow/block8/separable_conv1/depthwise/weights (728, 1, 3, 3) xception_65/middle_flow/block8/separable_conv1/depthwise/BatchNorm/gamma (728,) xception_65/middle_flow/block8/separable_conv1/depthwise/BatchNorm/beta (728,) xception_65/middle_flow/block8/separable_conv1/depthwise/BatchNorm/moving_mean (728,) xception_65/middle_flow/block8/separable_conv1/depthwise/BatchNorm/moving_variance (728,) xception_65/middle_flow/block8/separable_conv1/pointwise/weights (728, 728, 1, 1) xception_65/middle_flow/block8/separable_conv1/pointwise/BatchNorm/gamma (728,) xception_65/middle_flow/block8/separable_conv1/pointwise/BatchNorm/beta (728,) xception_65/middle_flow/block8/separable_conv1/pointwise/BatchNorm/moving_mean (728,) xception_65/middle_flow/block8/separable_conv1/pointwise/BatchNorm/moving_variance (728,) xception_65/middle_flow/block8/separable_conv2/depthwise/weights (728, 1, 3, 3) xception_65/middle_flow/block8/separable_conv2/depthwise/BatchNorm/gamma (728,) xception_65/middle_flow/block8/separable_conv2/depthwise/BatchNorm/beta (728,) xception_65/middle_flow/block8/separable_conv2/depthwise/BatchNorm/moving_mean (728,) xception_65/middle_flow/block8/separable_conv2/depthwise/BatchNorm/moving_variance (728,) xception_65/middle_flow/block8/separable_conv2/pointwise/weights (728, 728, 1, 1) xception_65/middle_flow/block8/separable_conv2/pointwise/BatchNorm/gamma (728,) xception_65/middle_flow/block8/separable_conv2/pointwise/BatchNorm/beta (728,) xception_65/middle_flow/block8/separable_conv2/pointwise/BatchNorm/moving_mean (728,) xception_65/middle_flow/block8/separable_conv2/pointwise/BatchNorm/moving_variance (728,) xception_65/middle_flow/block8/separable_conv3/depthwise/weights (728, 1, 3, 3) xception_65/middle_flow/block8/separable_conv3/depthwise/BatchNorm/gamma (728,) xception_65/middle_flow/block8/separable_conv3/depthwise/BatchNorm/beta (728,) xception_65/middle_flow/block8/separable_conv3/depthwise/BatchNorm/moving_mean (728,) xception_65/middle_flow/block8/separable_conv3/depthwise/BatchNorm/moving_variance (728,) xception_65/middle_flow/block8/separable_conv3/pointwise/weights (728, 728, 1, 1) xception_65/middle_flow/block8/separable_conv3/pointwise/BatchNorm/gamma (728,) xception_65/middle_flow/block8/separable_conv3/pointwise/BatchNorm/beta (728,) xception_65/middle_flow/block8/separable_conv3/pointwise/BatchNorm/moving_mean (728,) xception_65/middle_flow/block8/separable_conv3/pointwise/BatchNorm/moving_variance (728,) xception_65/middle_flow/block9/separable_conv1/depthwise/weights (728, 1, 3, 3) xception_65/middle_flow/block9/separable_conv1/depthwise/BatchNorm/gamma (728,) xception_65/middle_flow/block9/separable_conv1/depthwise/BatchNorm/beta (728,) xception_65/middle_flow/block9/separable_conv1/depthwise/BatchNorm/moving_mean (728,) xception_65/middle_flow/block9/separable_conv1/depthwise/BatchNorm/moving_variance (728,) xception_65/middle_flow/block9/separable_conv1/pointwise/weights (728, 728, 1, 1) xception_65/middle_flow/block9/separable_conv1/pointwise/BatchNorm/gamma (728,) xception_65/middle_flow/block9/separable_conv1/pointwise/BatchNorm/beta (728,) xception_65/middle_flow/block9/separable_conv1/pointwise/BatchNorm/moving_mean (728,) xception_65/middle_flow/block9/separable_conv1/pointwise/BatchNorm/moving_variance (728,) xception_65/middle_flow/block9/separable_conv2/depthwise/weights (728, 1, 3, 3) xception_65/middle_flow/block9/separable_conv2/depthwise/BatchNorm/gamma (728,) xception_65/middle_flow/block9/separable_conv2/depthwise/BatchNorm/beta (728,) xception_65/middle_flow/block9/separable_conv2/depthwise/BatchNorm/moving_mean (728,) xception_65/middle_flow/block9/separable_conv2/depthwise/BatchNorm/moving_variance (728,) xception_65/middle_flow/block9/separable_conv2/pointwise/weights (728, 728, 1, 1) xception_65/middle_flow/block9/separable_conv2/pointwise/BatchNorm/gamma (728,) xception_65/middle_flow/block9/separable_conv2/pointwise/BatchNorm/beta (728,) xception_65/middle_flow/block9/separable_conv2/pointwise/BatchNorm/moving_mean (728,) xception_65/middle_flow/block9/separable_conv2/pointwise/BatchNorm/moving_variance (728,) xception_65/middle_flow/block9/separable_conv3/depthwise/weights (728, 1, 3, 3) xception_65/middle_flow/block9/separable_conv3/depthwise/BatchNorm/gamma (728,) xception_65/middle_flow/block9/separable_conv3/depthwise/BatchNorm/beta (728,) xception_65/middle_flow/block9/separable_conv3/depthwise/BatchNorm/moving_mean (728,) xception_65/middle_flow/block9/separable_conv3/depthwise/BatchNorm/moving_variance (728,) xception_65/middle_flow/block9/separable_conv3/pointwise/weights (728, 728, 1, 1) xception_65/middle_flow/block9/separable_conv3/pointwise/BatchNorm/gamma (728,) xception_65/middle_flow/block9/separable_conv3/pointwise/BatchNorm/beta (728,) xception_65/middle_flow/block9/separable_conv3/pointwise/BatchNorm/moving_mean (728,) xception_65/middle_flow/block9/separable_conv3/pointwise/BatchNorm/moving_variance (728,) xception_65/middle_flow/block10/separable_conv1/depthwise/weights (728, 1, 3, 3) xception_65/middle_flow/block10/separable_conv1/depthwise/BatchNorm/gamma (728,) xception_65/middle_flow/block10/separable_conv1/depthwise/BatchNorm/beta (728,) xception_65/middle_flow/block10/separable_conv1/depthwise/BatchNorm/moving_mean (728,) xception_65/middle_flow/block10/separable_conv1/depthwise/BatchNorm/moving_variance (728,) xception_65/middle_flow/block10/separable_conv1/pointwise/weights (728, 728, 1, 1) xception_65/middle_flow/block10/separable_conv1/pointwise/BatchNorm/gamma (728,) xception_65/middle_flow/block10/separable_conv1/pointwise/BatchNorm/beta (728,) xception_65/middle_flow/block10/separable_conv1/pointwise/BatchNorm/moving_mean (728,) xception_65/middle_flow/block10/separable_conv1/pointwise/BatchNorm/moving_variance (728,) xception_65/middle_flow/block10/separable_conv2/depthwise/weights (728, 1, 3, 3) xception_65/middle_flow/block10/separable_conv2/depthwise/BatchNorm/gamma (728,) xception_65/middle_flow/block10/separable_conv2/depthwise/BatchNorm/beta (728,) xception_65/middle_flow/block10/separable_conv2/depthwise/BatchNorm/moving_mean (728,) xception_65/middle_flow/block10/separable_conv2/depthwise/BatchNorm/moving_variance (728,) xception_65/middle_flow/block10/separable_conv2/pointwise/weights (728, 728, 1, 1) xception_65/middle_flow/block10/separable_conv2/pointwise/BatchNorm/gamma (728,) xception_65/middle_flow/block10/separable_conv2/pointwise/BatchNorm/beta (728,) xception_65/middle_flow/block10/separable_conv2/pointwise/BatchNorm/moving_mean (728,) xception_65/middle_flow/block10/separable_conv2/pointwise/BatchNorm/moving_variance (728,) xception_65/middle_flow/block10/separable_conv3/depthwise/weights (728, 1, 3, 3) xception_65/middle_flow/block10/separable_conv3/depthwise/BatchNorm/gamma (728,) xception_65/middle_flow/block10/separable_conv3/depthwise/BatchNorm/beta (728,) xception_65/middle_flow/block10/separable_conv3/depthwise/BatchNorm/moving_mean (728,) xception_65/middle_flow/block10/separable_conv3/depthwise/BatchNorm/moving_variance (728,) xception_65/middle_flow/block10/separable_conv3/pointwise/weights (728, 728, 1, 1) xception_65/middle_flow/block10/separable_conv3/pointwise/BatchNorm/gamma (728,) xception_65/middle_flow/block10/separable_conv3/pointwise/BatchNorm/beta (728,) xception_65/middle_flow/block10/separable_conv3/pointwise/BatchNorm/moving_mean (728,) xception_65/middle_flow/block10/separable_conv3/pointwise/BatchNorm/moving_variance (728,) xception_65/middle_flow/block11/separable_conv1/depthwise/weights (728, 1, 3, 3) xception_65/middle_flow/block11/separable_conv1/depthwise/BatchNorm/gamma (728,) xception_65/middle_flow/block11/separable_conv1/depthwise/BatchNorm/beta (728,) xception_65/middle_flow/block11/separable_conv1/depthwise/BatchNorm/moving_mean (728,) xception_65/middle_flow/block11/separable_conv1/depthwise/BatchNorm/moving_variance (728,) xception_65/middle_flow/block11/separable_conv1/pointwise/weights (728, 728, 1, 1) xception_65/middle_flow/block11/separable_conv1/pointwise/BatchNorm/gamma (728,) xception_65/middle_flow/block11/separable_conv1/pointwise/BatchNorm/beta (728,) xception_65/middle_flow/block11/separable_conv1/pointwise/BatchNorm/moving_mean (728,) xception_65/middle_flow/block11/separable_conv1/pointwise/BatchNorm/moving_variance (728,) xception_65/middle_flow/block11/separable_conv2/depthwise/weights (728, 1, 3, 3) xception_65/middle_flow/block11/separable_conv2/depthwise/BatchNorm/gamma (728,) xception_65/middle_flow/block11/separable_conv2/depthwise/BatchNorm/beta (728,) xception_65/middle_flow/block11/separable_conv2/depthwise/BatchNorm/moving_mean (728,) xception_65/middle_flow/block11/separable_conv2/depthwise/BatchNorm/moving_variance (728,) xception_65/middle_flow/block11/separable_conv2/pointwise/weights (728, 728, 1, 1) xception_65/middle_flow/block11/separable_conv2/pointwise/BatchNorm/gamma (728,) xception_65/middle_flow/block11/separable_conv2/pointwise/BatchNorm/beta (728,) xception_65/middle_flow/block11/separable_conv2/pointwise/BatchNorm/moving_mean (728,) xception_65/middle_flow/block11/separable_conv2/pointwise/BatchNorm/moving_variance (728,) xception_65/middle_flow/block11/separable_conv3/depthwise/weights (728, 1, 3, 3) xception_65/middle_flow/block11/separable_conv3/depthwise/BatchNorm/gamma (728,) xception_65/middle_flow/block11/separable_conv3/depthwise/BatchNorm/beta (728,) xception_65/middle_flow/block11/separable_conv3/depthwise/BatchNorm/moving_mean (728,) xception_65/middle_flow/block11/separable_conv3/depthwise/BatchNorm/moving_variance (728,) xception_65/middle_flow/block11/separable_conv3/pointwise/weights (728, 728, 1, 1) xception_65/middle_flow/block11/separable_conv3/pointwise/BatchNorm/gamma (728,) xception_65/middle_flow/block11/separable_conv3/pointwise/BatchNorm/beta (728,) xception_65/middle_flow/block11/separable_conv3/pointwise/BatchNorm/moving_mean (728,) xception_65/middle_flow/block11/separable_conv3/pointwise/BatchNorm/moving_variance (728,) xception_65/middle_flow/block12/separable_conv1/depthwise/weights (728, 1, 3, 3) xception_65/middle_flow/block12/separable_conv1/depthwise/BatchNorm/gamma (728,) xception_65/middle_flow/block12/separable_conv1/depthwise/BatchNorm/beta (728,) xception_65/middle_flow/block12/separable_conv1/depthwise/BatchNorm/moving_mean (728,) xception_65/middle_flow/block12/separable_conv1/depthwise/BatchNorm/moving_variance (728,) xception_65/middle_flow/block12/separable_conv1/pointwise/weights (728, 728, 1, 1) xception_65/middle_flow/block12/separable_conv1/pointwise/BatchNorm/gamma (728,) xception_65/middle_flow/block12/separable_conv1/pointwise/BatchNorm/beta (728,) xception_65/middle_flow/block12/separable_conv1/pointwise/BatchNorm/moving_mean (728,) xception_65/middle_flow/block12/separable_conv1/pointwise/BatchNorm/moving_variance (728,) xception_65/middle_flow/block12/separable_conv2/depthwise/weights (728, 1, 3, 3) xception_65/middle_flow/block12/separable_conv2/depthwise/BatchNorm/gamma (728,) xception_65/middle_flow/block12/separable_conv2/depthwise/BatchNorm/beta (728,) xception_65/middle_flow/block12/separable_conv2/depthwise/BatchNorm/moving_mean (728,) xception_65/middle_flow/block12/separable_conv2/depthwise/BatchNorm/moving_variance (728,) xception_65/middle_flow/block12/separable_conv2/pointwise/weights (728, 728, 1, 1) xception_65/middle_flow/block12/separable_conv2/pointwise/BatchNorm/gamma (728,) xception_65/middle_flow/block12/separable_conv2/pointwise/BatchNorm/beta (728,) xception_65/middle_flow/block12/separable_conv2/pointwise/BatchNorm/moving_mean (728,) xception_65/middle_flow/block12/separable_conv2/pointwise/BatchNorm/moving_variance (728,) xception_65/middle_flow/block12/separable_conv3/depthwise/weights (728, 1, 3, 3) xception_65/middle_flow/block12/separable_conv3/depthwise/BatchNorm/gamma (728,) xception_65/middle_flow/block12/separable_conv3/depthwise/BatchNorm/beta (728,) xception_65/middle_flow/block12/separable_conv3/depthwise/BatchNorm/moving_mean (728,) xception_65/middle_flow/block12/separable_conv3/depthwise/BatchNorm/moving_variance (728,) xception_65/middle_flow/block12/separable_conv3/pointwise/weights (728, 728, 1, 1) xception_65/middle_flow/block12/separable_conv3/pointwise/BatchNorm/gamma (728,) xception_65/middle_flow/block12/separable_conv3/pointwise/BatchNorm/beta (728,) xception_65/middle_flow/block12/separable_conv3/pointwise/BatchNorm/moving_mean (728,) xception_65/middle_flow/block12/separable_conv3/pointwise/BatchNorm/moving_variance (728,) xception_65/middle_flow/block13/separable_conv1/depthwise/weights (728, 1, 3, 3) xception_65/middle_flow/block13/separable_conv1/depthwise/BatchNorm/gamma (728,) xception_65/middle_flow/block13/separable_conv1/depthwise/BatchNorm/beta (728,) xception_65/middle_flow/block13/separable_conv1/depthwise/BatchNorm/moving_mean (728,) xception_65/middle_flow/block13/separable_conv1/depthwise/BatchNorm/moving_variance (728,) xception_65/middle_flow/block13/separable_conv1/pointwise/weights (728, 728, 1, 1) xception_65/middle_flow/block13/separable_conv1/pointwise/BatchNorm/gamma (728,) xception_65/middle_flow/block13/separable_conv1/pointwise/BatchNorm/beta (728,) xception_65/middle_flow/block13/separable_conv1/pointwise/BatchNorm/moving_mean (728,) xception_65/middle_flow/block13/separable_conv1/pointwise/BatchNorm/moving_variance (728,) xception_65/middle_flow/block13/separable_conv2/depthwise/weights (728, 1, 3, 3) xception_65/middle_flow/block13/separable_conv2/depthwise/BatchNorm/gamma (728,) xception_65/middle_flow/block13/separable_conv2/depthwise/BatchNorm/beta (728,) xception_65/middle_flow/block13/separable_conv2/depthwise/BatchNorm/moving_mean (728,) xception_65/middle_flow/block13/separable_conv2/depthwise/BatchNorm/moving_variance (728,) xception_65/middle_flow/block13/separable_conv2/pointwise/weights (728, 728, 1, 1) xception_65/middle_flow/block13/separable_conv2/pointwise/BatchNorm/gamma (728,) xception_65/middle_flow/block13/separable_conv2/pointwise/BatchNorm/beta (728,) xception_65/middle_flow/block13/separable_conv2/pointwise/BatchNorm/moving_mean (728,) xception_65/middle_flow/block13/separable_conv2/pointwise/BatchNorm/moving_variance (728,) xception_65/middle_flow/block13/separable_conv3/depthwise/weights (728, 1, 3, 3) xception_65/middle_flow/block13/separable_conv3/depthwise/BatchNorm/gamma (728,) xception_65/middle_flow/block13/separable_conv3/depthwise/BatchNorm/beta (728,) xception_65/middle_flow/block13/separable_conv3/depthwise/BatchNorm/moving_mean (728,) xception_65/middle_flow/block13/separable_conv3/depthwise/BatchNorm/moving_variance (728,) xception_65/middle_flow/block13/separable_conv3/pointwise/weights (728, 728, 1, 1) xception_65/middle_flow/block13/separable_conv3/pointwise/BatchNorm/gamma (728,) xception_65/middle_flow/block13/separable_conv3/pointwise/BatchNorm/beta (728,) xception_65/middle_flow/block13/separable_conv3/pointwise/BatchNorm/moving_mean (728,) xception_65/middle_flow/block13/separable_conv3/pointwise/BatchNorm/moving_variance (728,) xception_65/middle_flow/block14/separable_conv1/depthwise/weights (728, 1, 3, 3) xception_65/middle_flow/block14/separable_conv1/depthwise/BatchNorm/gamma (728,) xception_65/middle_flow/block14/separable_conv1/depthwise/BatchNorm/beta (728,) xception_65/middle_flow/block14/separable_conv1/depthwise/BatchNorm/moving_mean (728,) xception_65/middle_flow/block14/separable_conv1/depthwise/BatchNorm/moving_variance (728,) xception_65/middle_flow/block14/separable_conv1/pointwise/weights (728, 728, 1, 1) xception_65/middle_flow/block14/separable_conv1/pointwise/BatchNorm/gamma (728,) xception_65/middle_flow/block14/separable_conv1/pointwise/BatchNorm/beta (728,) xception_65/middle_flow/block14/separable_conv1/pointwise/BatchNorm/moving_mean (728,) xception_65/middle_flow/block14/separable_conv1/pointwise/BatchNorm/moving_variance (728,) xception_65/middle_flow/block14/separable_conv2/depthwise/weights (728, 1, 3, 3) xception_65/middle_flow/block14/separable_conv2/depthwise/BatchNorm/gamma (728,) xception_65/middle_flow/block14/separable_conv2/depthwise/BatchNorm/beta (728,) xception_65/middle_flow/block14/separable_conv2/depthwise/BatchNorm/moving_mean (728,) xception_65/middle_flow/block14/separable_conv2/depthwise/BatchNorm/moving_variance (728,) xception_65/middle_flow/block14/separable_conv2/pointwise/weights (728, 728, 1, 1) xception_65/middle_flow/block14/separable_conv2/pointwise/BatchNorm/gamma (728,) xception_65/middle_flow/block14/separable_conv2/pointwise/BatchNorm/beta (728,) xception_65/middle_flow/block14/separable_conv2/pointwise/BatchNorm/moving_mean (728,) xception_65/middle_flow/block14/separable_conv2/pointwise/BatchNorm/moving_variance (728,) xception_65/middle_flow/block14/separable_conv3/depthwise/weights (728, 1, 3, 3) xception_65/middle_flow/block14/separable_conv3/depthwise/BatchNorm/gamma (728,) xception_65/middle_flow/block14/separable_conv3/depthwise/BatchNorm/beta (728,) xception_65/middle_flow/block14/separable_conv3/depthwise/BatchNorm/moving_mean (728,) xception_65/middle_flow/block14/separable_conv3/depthwise/BatchNorm/moving_variance (728,) xception_65/middle_flow/block14/separable_conv3/pointwise/weights (728, 728, 1, 1) xception_65/middle_flow/block14/separable_conv3/pointwise/BatchNorm/gamma (728,) xception_65/middle_flow/block14/separable_conv3/pointwise/BatchNorm/beta (728,) xception_65/middle_flow/block14/separable_conv3/pointwise/BatchNorm/moving_mean (728,) xception_65/middle_flow/block14/separable_conv3/pointwise/BatchNorm/moving_variance (728,) xception_65/middle_flow/block15/separable_conv1/depthwise/weights (728, 1, 3, 3) xception_65/middle_flow/block15/separable_conv1/depthwise/BatchNorm/gamma (728,) xception_65/middle_flow/block15/separable_conv1/depthwise/BatchNorm/beta (728,) xception_65/middle_flow/block15/separable_conv1/depthwise/BatchNorm/moving_mean (728,) xception_65/middle_flow/block15/separable_conv1/depthwise/BatchNorm/moving_variance (728,) xception_65/middle_flow/block15/separable_conv1/pointwise/weights (728, 728, 1, 1) xception_65/middle_flow/block15/separable_conv1/pointwise/BatchNorm/gamma (728,) xception_65/middle_flow/block15/separable_conv1/pointwise/BatchNorm/beta (728,) xception_65/middle_flow/block15/separable_conv1/pointwise/BatchNorm/moving_mean (728,) xception_65/middle_flow/block15/separable_conv1/pointwise/BatchNorm/moving_variance (728,) xception_65/middle_flow/block15/separable_conv2/depthwise/weights (728, 1, 3, 3) xception_65/middle_flow/block15/separable_conv2/depthwise/BatchNorm/gamma (728,) xception_65/middle_flow/block15/separable_conv2/depthwise/BatchNorm/beta (728,) xception_65/middle_flow/block15/separable_conv2/depthwise/BatchNorm/moving_mean (728,) xception_65/middle_flow/block15/separable_conv2/depthwise/BatchNorm/moving_variance (728,) xception_65/middle_flow/block15/separable_conv2/pointwise/weights (728, 728, 1, 1) xception_65/middle_flow/block15/separable_conv2/pointwise/BatchNorm/gamma (728,) xception_65/middle_flow/block15/separable_conv2/pointwise/BatchNorm/beta (728,) xception_65/middle_flow/block15/separable_conv2/pointwise/BatchNorm/moving_mean (728,) xception_65/middle_flow/block15/separable_conv2/pointwise/BatchNorm/moving_variance (728,) xception_65/middle_flow/block15/separable_conv3/depthwise/weights (728, 1, 3, 3) xception_65/middle_flow/block15/separable_conv3/depthwise/BatchNorm/gamma (728,) xception_65/middle_flow/block15/separable_conv3/depthwise/BatchNorm/beta (728,) xception_65/middle_flow/block15/separable_conv3/depthwise/BatchNorm/moving_mean (728,) xception_65/middle_flow/block15/separable_conv3/depthwise/BatchNorm/moving_variance (728,) xception_65/middle_flow/block15/separable_conv3/pointwise/weights (728, 728, 1, 1) xception_65/middle_flow/block15/separable_conv3/pointwise/BatchNorm/gamma (728,) xception_65/middle_flow/block15/separable_conv3/pointwise/BatchNorm/beta (728,) xception_65/middle_flow/block15/separable_conv3/pointwise/BatchNorm/moving_mean (728,) xception_65/middle_flow/block15/separable_conv3/pointwise/BatchNorm/moving_variance (728,) xception_65/middle_flow/block16/separable_conv1/depthwise/weights (728, 1, 3, 3) xception_65/middle_flow/block16/separable_conv1/depthwise/BatchNorm/gamma (728,) xception_65/middle_flow/block16/separable_conv1/depthwise/BatchNorm/beta (728,) xception_65/middle_flow/block16/separable_conv1/depthwise/BatchNorm/moving_mean (728,) xception_65/middle_flow/block16/separable_conv1/depthwise/BatchNorm/moving_variance (728,) xception_65/middle_flow/block16/separable_conv1/pointwise/weights (728, 728, 1, 1) xception_65/middle_flow/block16/separable_conv1/pointwise/BatchNorm/gamma (728,) xception_65/middle_flow/block16/separable_conv1/pointwise/BatchNorm/beta (728,) xception_65/middle_flow/block16/separable_conv1/pointwise/BatchNorm/moving_mean (728,) xception_65/middle_flow/block16/separable_conv1/pointwise/BatchNorm/moving_variance (728,) xception_65/middle_flow/block16/separable_conv2/depthwise/weights (728, 1, 3, 3) xception_65/middle_flow/block16/separable_conv2/depthwise/BatchNorm/gamma (728,) xception_65/middle_flow/block16/separable_conv2/depthwise/BatchNorm/beta (728,) xception_65/middle_flow/block16/separable_conv2/depthwise/BatchNorm/moving_mean (728,) xception_65/middle_flow/block16/separable_conv2/depthwise/BatchNorm/moving_variance (728,) xception_65/middle_flow/block16/separable_conv2/pointwise/weights (728, 728, 1, 1) xception_65/middle_flow/block16/separable_conv2/pointwise/BatchNorm/gamma (728,) xception_65/middle_flow/block16/separable_conv2/pointwise/BatchNorm/beta (728,) xception_65/middle_flow/block16/separable_conv2/pointwise/BatchNorm/moving_mean (728,) xception_65/middle_flow/block16/separable_conv2/pointwise/BatchNorm/moving_variance (728,) xception_65/middle_flow/block16/separable_conv3/depthwise/weights (728, 1, 3, 3) xception_65/middle_flow/block16/separable_conv3/depthwise/BatchNorm/gamma (728,) xception_65/middle_flow/block16/separable_conv3/depthwise/BatchNorm/beta (728,) xception_65/middle_flow/block16/separable_conv3/depthwise/BatchNorm/moving_mean (728,) xception_65/middle_flow/block16/separable_conv3/depthwise/BatchNorm/moving_variance (728,) xception_65/middle_flow/block16/separable_conv3/pointwise/weights (728, 728, 1, 1) xception_65/middle_flow/block16/separable_conv3/pointwise/BatchNorm/gamma (728,) xception_65/middle_flow/block16/separable_conv3/pointwise/BatchNorm/beta (728,) xception_65/middle_flow/block16/separable_conv3/pointwise/BatchNorm/moving_mean (728,) xception_65/middle_flow/block16/separable_conv3/pointwise/BatchNorm/moving_variance (728,) xception_65/exit_flow/block1/separable_conv1/depthwise/weights (728, 1, 3, 3) xception_65/exit_flow/block1/separable_conv1/depthwise/BatchNorm/gamma (728,) xception_65/exit_flow/block1/separable_conv1/depthwise/BatchNorm/beta (728,) xception_65/exit_flow/block1/separable_conv1/depthwise/BatchNorm/moving_mean (728,) xception_65/exit_flow/block1/separable_conv1/depthwise/BatchNorm/moving_variance (728,) xception_65/exit_flow/block1/separable_conv1/pointwise/weights (728, 728, 1, 1) xception_65/exit_flow/block1/separable_conv1/pointwise/BatchNorm/gamma (728,) xception_65/exit_flow/block1/separable_conv1/pointwise/BatchNorm/beta (728,) xception_65/exit_flow/block1/separable_conv1/pointwise/BatchNorm/moving_mean (728,) xception_65/exit_flow/block1/separable_conv1/pointwise/BatchNorm/moving_variance (728,) xception_65/exit_flow/block1/separable_conv2/depthwise/weights (728, 1, 3, 3) xception_65/exit_flow/block1/separable_conv2/depthwise/BatchNorm/gamma (728,) xception_65/exit_flow/block1/separable_conv2/depthwise/BatchNorm/beta (728,) xception_65/exit_flow/block1/separable_conv2/depthwise/BatchNorm/moving_mean (728,) xception_65/exit_flow/block1/separable_conv2/depthwise/BatchNorm/moving_variance (728,) xception_65/exit_flow/block1/separable_conv2/pointwise/weights (1024, 728, 1, 1) xception_65/exit_flow/block1/separable_conv2/pointwise/BatchNorm/gamma (1024,) xception_65/exit_flow/block1/separable_conv2/pointwise/BatchNorm/beta (1024,) xception_65/exit_flow/block1/separable_conv2/pointwise/BatchNorm/moving_mean (1024,) xception_65/exit_flow/block1/separable_conv2/pointwise/BatchNorm/moving_variance (1024,) xception_65/exit_flow/block1/separable_conv3/depthwise/weights (1024, 1, 3, 3) xception_65/exit_flow/block1/separable_conv3/depthwise/BatchNorm/gamma (1024,) xception_65/exit_flow/block1/separable_conv3/depthwise/BatchNorm/beta (1024,) xception_65/exit_flow/block1/separable_conv3/depthwise/BatchNorm/moving_mean (1024,) xception_65/exit_flow/block1/separable_conv3/depthwise/BatchNorm/moving_variance (1024,) xception_65/exit_flow/block1/separable_conv3/pointwise/weights (1024, 1024, 1, 1) xception_65/exit_flow/block1/separable_conv3/pointwise/BatchNorm/gamma (1024,) xception_65/exit_flow/block1/separable_conv3/pointwise/BatchNorm/beta (1024,) xception_65/exit_flow/block1/separable_conv3/pointwise/BatchNorm/moving_mean (1024,) xception_65/exit_flow/block1/separable_conv3/pointwise/BatchNorm/moving_variance (1024,) xception_65/exit_flow/block1/shortcut/weights (1024, 728, 1, 1) xception_65/exit_flow/block1/shortcut/BatchNorm/gamma (1024,) xception_65/exit_flow/block1/shortcut/BatchNorm/beta (1024,) xception_65/exit_flow/block1/shortcut/BatchNorm/moving_mean (1024,) xception_65/exit_flow/block1/shortcut/BatchNorm/moving_variance (1024,) xception_65/exit_flow/block2/separable_conv1/depthwise/weights (1024, 1, 3, 3) xception_65/exit_flow/block2/separable_conv1/depthwise/BatchNorm/gamma (1024,) xception_65/exit_flow/block2/separable_conv1/depthwise/BatchNorm/beta (1024,) xception_65/exit_flow/block2/separable_conv1/depthwise/BatchNorm/moving_mean (1024,) xception_65/exit_flow/block2/separable_conv1/depthwise/BatchNorm/moving_variance (1024,) xception_65/exit_flow/block2/separable_conv1/pointwise/weights (1536, 1024, 1, 1) xception_65/exit_flow/block2/separable_conv1/pointwise/BatchNorm/gamma (1536,) xception_65/exit_flow/block2/separable_conv1/pointwise/BatchNorm/beta (1536,) xception_65/exit_flow/block2/separable_conv1/pointwise/BatchNorm/moving_mean (1536,) xception_65/exit_flow/block2/separable_conv1/pointwise/BatchNorm/moving_variance (1536,) xception_65/exit_flow/block2/separable_conv2/depthwise/weights (1536, 1, 3, 3) xception_65/exit_flow/block2/separable_conv2/depthwise/BatchNorm/gamma (1536,) xception_65/exit_flow/block2/separable_conv2/depthwise/BatchNorm/beta (1536,) xception_65/exit_flow/block2/separable_conv2/depthwise/BatchNorm/moving_mean (1536,) xception_65/exit_flow/block2/separable_conv2/depthwise/BatchNorm/moving_variance (1536,) xception_65/exit_flow/block2/separable_conv2/pointwise/weights (1536, 1536, 1, 1) xception_65/exit_flow/block2/separable_conv2/pointwise/BatchNorm/gamma (1536,) xception_65/exit_flow/block2/separable_conv2/pointwise/BatchNorm/beta (1536,) xception_65/exit_flow/block2/separable_conv2/pointwise/BatchNorm/moving_mean (1536,) xception_65/exit_flow/block2/separable_conv2/pointwise/BatchNorm/moving_variance (1536,) xception_65/exit_flow/block2/separable_conv3/depthwise/weights (1536, 1, 3, 3) xception_65/exit_flow/block2/separable_conv3/depthwise/BatchNorm/gamma (1536,) xception_65/exit_flow/block2/separable_conv3/depthwise/BatchNorm/beta (1536,) xception_65/exit_flow/block2/separable_conv3/depthwise/BatchNorm/moving_mean (1536,) xception_65/exit_flow/block2/separable_conv3/depthwise/BatchNorm/moving_variance (1536,) xception_65/exit_flow/block2/separable_conv3/pointwise/weights (2048, 1536, 1, 1) xception_65/exit_flow/block2/separable_conv3/pointwise/BatchNorm/gamma (2048,) xception_65/exit_flow/block2/separable_conv3/pointwise/BatchNorm/beta (2048,) xception_65/exit_flow/block2/separable_conv3/pointwise/BatchNorm/moving_mean (2048,) xception_65/exit_flow/block2/separable_conv3/pointwise/BatchNorm/moving_variance (2048,) encoder/image_pool/weights (256, 2048, 1, 1) encoder/image_pool/BatchNorm/gamma (256,) encoder/image_pool/BatchNorm/beta (256,) encoder/image_pool/BatchNorm/moving_mean (256,) encoder/image_pool/BatchNorm/moving_variance (256,) encoder/aspp0/weights (256, 2048, 1, 1) encoder/aspp0/BatchNorm/gamma (256,) encoder/aspp0/BatchNorm/beta (256,) encoder/aspp0/BatchNorm/moving_mean (256,) encoder/aspp0/BatchNorm/moving_variance (256,) encoder/aspp1/depthwise/weights (2048, 1, 3, 3) encoder/aspp1/depthwise/BatchNorm/gamma (2048,) encoder/aspp1/depthwise/BatchNorm/beta (2048,) encoder/aspp1/depthwise/BatchNorm/moving_mean (2048,) encoder/aspp1/depthwise/BatchNorm/moving_variance (2048,) encoder/aspp1/pointwise/weights (256, 2048, 1, 1) encoder/aspp1/pointwise/BatchNorm/gamma (256,) encoder/aspp1/pointwise/BatchNorm/beta (256,) encoder/aspp1/pointwise/BatchNorm/moving_mean (256,) encoder/aspp1/pointwise/BatchNorm/moving_variance (256,) encoder/aspp2/depthwise/weights (2048, 1, 3, 3) encoder/aspp2/depthwise/BatchNorm/gamma (2048,) encoder/aspp2/depthwise/BatchNorm/beta (2048,) encoder/aspp2/depthwise/BatchNorm/moving_mean (2048,) encoder/aspp2/depthwise/BatchNorm/moving_variance (2048,) encoder/aspp2/pointwise/weights (256, 2048, 1, 1) encoder/aspp2/pointwise/BatchNorm/gamma (256,) encoder/aspp2/pointwise/BatchNorm/beta (256,) encoder/aspp2/pointwise/BatchNorm/moving_mean (256,) encoder/aspp2/pointwise/BatchNorm/moving_variance (256,) encoder/aspp3/depthwise/weights (2048, 1, 3, 3) encoder/aspp3/depthwise/BatchNorm/gamma (2048,) encoder/aspp3/depthwise/BatchNorm/beta (2048,) encoder/aspp3/depthwise/BatchNorm/moving_mean (2048,) encoder/aspp3/depthwise/BatchNorm/moving_variance (2048,) encoder/aspp3/pointwise/weights (256, 2048, 1, 1) encoder/aspp3/pointwise/BatchNorm/gamma (256,) encoder/aspp3/pointwise/BatchNorm/beta (256,) encoder/aspp3/pointwise/BatchNorm/moving_mean (256,) encoder/aspp3/pointwise/BatchNorm/moving_variance (256,) encoder/concat/weights (256, 1280, 1, 1) encoder/concat/BatchNorm/gamma (256,) encoder/concat/BatchNorm/beta (256,) encoder/concat/BatchNorm/moving_mean (256,) encoder/concat/BatchNorm/moving_variance (256,) decoder/concat/weights (48, 256, 1, 1) decoder/concat/BatchNorm/gamma (48,) decoder/concat/BatchNorm/beta (48,) decoder/concat/BatchNorm/moving_mean (48,) decoder/concat/BatchNorm/moving_variance (48,) decoder/separable_conv1/depthwise/weights (304, 1, 3, 3) decoder/separable_conv1/depthwise/BatchNorm/gamma (304,) decoder/separable_conv1/depthwise/BatchNorm/beta (304,) decoder/separable_conv1/depthwise/BatchNorm/moving_mean (304,) decoder/separable_conv1/depthwise/BatchNorm/moving_variance (304,) decoder/separable_conv1/pointwise/weights (256, 304, 1, 1) decoder/separable_conv1/pointwise/BatchNorm/gamma (256,) decoder/separable_conv1/pointwise/BatchNorm/beta (256,) decoder/separable_conv1/pointwise/BatchNorm/moving_mean (256,) decoder/separable_conv1/pointwise/BatchNorm/moving_variance (256,) decoder/separable_conv2/depthwise/weights (256, 1, 3, 3) decoder/separable_conv2/depthwise/BatchNorm/gamma (256,) decoder/separable_conv2/depthwise/BatchNorm/beta (256,) decoder/separable_conv2/depthwise/BatchNorm/moving_mean (256,) decoder/separable_conv2/depthwise/BatchNorm/moving_variance (256,) decoder/separable_conv2/pointwise/weights (256, 256, 1, 1) decoder/separable_conv2/pointwise/BatchNorm/gamma (256,) decoder/separable_conv2/pointwise/BatchNorm/beta (256,) decoder/separable_conv2/pointwise/BatchNorm/moving_mean (256,) decoder/separable_conv2/pointwise/BatchNorm/moving_variance (256,) logit/weights (3, 256, 1, 1) logit/biases (3,)

指派人
分配到
无
里程碑
无
分配里程碑
工时统计
无
截止日期
无
标识: paddlepaddle/PaddleSeg#366
渝ICP备2023009037号

京公网安备11010502055752号

网络110报警服务 Powered by GitLab CE v13.7
开源知识
Git 入门 Pro Git 电子书 在线学 Git
Markdown 基础入门 IT 技术知识开源图谱
帮助
使用手册 反馈建议 博客
《GitCode 隐私声明》 《GitCode 服务条款》 关于GitCode
Powered by GitLab CE v13.7