summaryrefslogtreecommitdiff
path: root/res/TensorFlowPythonExamples/examples/atrous_conv2d/__init__.py
blob: c430749f3fb3f97dc8e7a3c212e105f95c29d91e (plain)
1
2
3
4
5
6
7
8
9
10
import tensorflow as tf
import numpy as np

tf.compat.v1.disable_eager_execution()

in_ = tf.compat.v1.placeholder(tf.float32, shape=(1, 32, 32, 3), name="Hole")

filters = np.random.uniform(low=-1., high=1, size=[5, 5, 3, 32]).astype(np.float32)

op_ = tf.compat.v1.nn.atrous_conv2d(in_, filters, 2, "VALID")