Tensorflow 中的扩张卷积
Dialated Convolutions in Tensorflow
我如何使用 dialated convolutions in Tensorfow in a network exactly like the one described here 除了使用普通的 5x5 感受野,我使用 2-dialated 3x3 感受野(最终应该是 5x5,只有 9 个非零权重)。
在tensorflow
中你可以使用tf.nn.atrous_conv2d()
来实现扩张卷积,参数rate
将定义你想要应用的扩张。
我如何使用 dialated convolutions in Tensorfow in a network exactly like the one described here 除了使用普通的 5x5 感受野,我使用 2-dialated 3x3 感受野(最终应该是 5x5,只有 9 个非零权重)。
在tensorflow
中你可以使用tf.nn.atrous_conv2d()
来实现扩张卷积,参数rate
将定义你想要应用的扩张。