12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667 |
- # Copyright 2015 The TensorFlow Authors. All Rights Reserved.
- #
- # Licensed under the Apache License, Version 2.0 (the "License");
- # you may not use this file except in compliance with the License.
- # You may obtain a copy of the License at
- #
- # http://www.apache.org/licenses/LICENSE-2.0
- #
- # Unless required by applicable law or agreed to in writing, software
- # distributed under the License is distributed on an "AS IS" BASIS,
- # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- # See the License for the specific language governing permissions and
- # limitations under the License.
- # ==============================================================================
- """Tests for cifar10 input."""
- from __future__ import absolute_import
- from __future__ import division
- from __future__ import print_function
- import os
- import tensorflow as tf
- import cifar10_input
- class CIFAR10InputTest(tf.test.TestCase):
- def _record(self, label, red, green, blue):
- image_size = 32 * 32
- record = bytes(bytearray([label] + [red] * image_size +
- [green] * image_size + [blue] * image_size))
- expected = [[[red, green, blue]] * 32] * 32
- return record, expected
- def testSimple(self):
- labels = [9, 3, 0]
- records = [self._record(labels[0], 0, 128, 255),
- self._record(labels[1], 255, 0, 1),
- self._record(labels[2], 254, 255, 0)]
- contents = b"".join([record for record, _ in records])
- expected = [expected for _, expected in records]
- filename = os.path.join(self.get_temp_dir(), "cifar")
- open(filename, "wb").write(contents)
- with self.test_session() as sess:
- q = tf.FIFOQueue(99, [tf.string], shapes=())
- q.enqueue([filename]).run()
- q.close().run()
- result = cifar10_input.read_cifar10(q)
- for i in range(3):
- key, label, uint8image = sess.run([
- result.key, result.label, result.uint8image])
- self.assertEqual("%s:%d" % (filename, i), tf.compat.as_text(key))
- self.assertEqual(labels[i], label)
- self.assertAllEqual(expected[i], uint8image)
- with self.assertRaises(tf.errors.OutOfRangeError):
- sess.run([result.key, result.uint8image])
- if __name__ == "__main__":
- tf.test.main()
|