美文网首页我爱编程
Conv2d dimension orders of Tenso

Conv2d dimension orders of Tenso

作者: Platanuses | 来源:发表于2018-02-26 16:45 被阅读27次

conv2d

Tensorflow

x, y: [batch, height, width, depth]
core: [height, width, depth_in, depth_out]

iOS BNNS

x, y: [batch, depth, height, width]
core: [depth_out, depth_in, height, width]

1st full-conn after conv2d/pooling

Tensorflow

weights: [[height, width, depth].squeeze, size_y]

iOS

weights: [size_y, [depth, height, width].squeeze]

相关文章

网友评论

    本文标题:Conv2d dimension orders of Tenso

    本文链接:https://www.haomeiwen.com/subject/ttmyxftx.html