3b4beaad8809d24d2537821dbd21ec0c268e7cee,tests/ops/tensorflow/ops_test.py,TensorflowOpsTest,testConv2d,#TensorflowOpsTest#,40

Before Change



    def testConv2d(self):
        with self.test_session():
            self.assertEqual(0,1)

    def testDeconv2d(self):
        with self.test_session():
            self.assertEqual(0,1)

After Change



    def testConv2d(self):
        with self.test_session():
            net = ops.conv2d(tf.constant(1., shape=[1, 3, 3, 3]), 3, 3, 1, 1, 3)
            self.assertEqual(ops.shape(net)[1], 3)

    def testDeconv2d(self):
        with self.test_session():
Italian Trulli
In pattern: SUPERPATTERN

Frequency: 3

Non-data size: 5

Instances


Project Name: HyperGAN/HyperGAN
Commit Name: 3b4beaad8809d24d2537821dbd21ec0c268e7cee
Time: 2017-05-20
Author: martyn@255bits.com
File Name: tests/ops/tensorflow/ops_test.py
Class Name: TensorflowOpsTest
Method Name: testConv2d


Project Name: HyperGAN/HyperGAN
Commit Name: 3b4beaad8809d24d2537821dbd21ec0c268e7cee
Time: 2017-05-20
Author: martyn@255bits.com
File Name: tests/ops/tensorflow/ops_test.py
Class Name: TensorflowOpsTest
Method Name: testDeconv2d


Project Name: HyperGAN/HyperGAN
Commit Name: 619b3d6bf4f7813895e97926ed0093591c1f41f0
Time: 2017-05-21
Author: martyn@255bits.com
File Name: tests/discriminators/pyramid_discriminator_test.py
Class Name: PyramidDiscriminatorTest
Method Name: testCreate