Remove accidental pdb import
authorA. Unique TensorFlower <gardener@tensorflow.org>
Tue, 6 Mar 2018 18:52:26 +0000 (10:52 -0800)
committerTensorFlower Gardener <gardener@tensorflow.org>
Tue, 6 Mar 2018 18:55:59 +0000 (10:55 -0800)
PiperOrigin-RevId: 188046246

tensorflow/contrib/distributions/python/ops/bijectors/batch_normalization.py

index e47a3e0..be72ff3 100644 (file)
@@ -190,7 +190,6 @@ class BatchNormalization(bijector.Bijector):
     # Broadcasting only necessary for single-axis batch norm where the axis is
     # not the last dimension
     broadcast_shape = [1] * ndims
-    # import pdb; pdb.set_trace()
     broadcast_shape[self.batchnorm.axis[0]] = (
         input_shape[self.batchnorm.axis[0]])
     def _broadcast(v):