模型可视化工具——Netron

lmdb_test.prototxt文件示例内容如下,

name: "LMDB_test"
layer {
  name: "data"
  type: "AnnotatedData"
  top: "data"
  top: "label"
  include {
    phase: TEST
  }
  transform_param {
    scale: 0.00392156862745
    mean_value: 0
    mean_value: 0
    mean_value: 0
    resize_param {
      prob: 1
      resize_mode: WARP
      height: 240
      width: 320
      interp_mode: LINEAR
      height_scale: 240
      width_scale: 320
    }
  }
  data_param {
    source: "./data/test.lmdb"
    batch_size: 8
    backend: LMDB
    threads: 4
    parser_threads: 4
  }
  annotated_data_param {
    label_map_file: "./data/label_map_file.prototxt"
  }
}

layer {
  name: "output"
  type: "DataOutput"
  bottom: "data"
  bottom: "label"
  data_output_param {
    data_type: DETECTION
  }
}

使用Netron工具显示如下,

模型可视化工具——Netron_第1张图片

参考:

http://ethereon.github.io/netscope/#/editor

https://blog.csdn.net/leviopku/article/details/81980249

https://blog.csdn.net/qqqzmy/article/details/86060131

待更新

你可能感兴趣的:(开发环境配置汇总,Caffe)