test_storage.py 4.7 KB
Newer Older
S
superjom 已提交
1
import random
S
superjom 已提交
2
import time
S
superjom 已提交
3
import unittest
S
superjom 已提交
4
from PIL import Image
S
superjom 已提交
5 6 7 8

import numpy as np

import storage
S
superjom 已提交
9

S
superjom 已提交
10

S
superjom 已提交
11
class StorageTest(unittest.TestCase):
S
superjom 已提交
12
    def setUp(self):
S
superjom 已提交
13
        self.dir = "./tmp/storage_test"
14
        self.writer = storage.LogWriter(
S
superjom 已提交
15
            self.dir, sync_cycle=1).as_mode("train")
S
superjom 已提交
16 17 18

    def test_scalar(self):
        print 'test write'
S
superjom 已提交
19
        scalar = self.writer.scalar("model/scalar/min")
S
superjom 已提交
20
        # scalar.set_caption("model/scalar/min")
S
superjom 已提交
21
        for i in range(10):
S
superjom 已提交
22
            scalar.add_record(i, float(i))
S
superjom 已提交
23

S
superjom 已提交
24
        print 'test read'
25
        self.reader = storage.LogReader(self.dir)
S
superjom 已提交
26 27 28 29 30 31 32 33 34
        with self.reader.mode("train") as reader:
            scalar = reader.scalar("model/scalar/min")
            self.assertEqual(scalar.caption(), "train")
            records = scalar.records()
            ids = scalar.ids()
            self.assertTrue(np.equal(records, [float(i) for i in range(10)]).all())
            self.assertTrue(np.equal(ids, [float(i) for i in range(10)]).all())
            print 'records', records
            print 'ids', ids
S
superjom 已提交
35

S
superjom 已提交
36 37
    def test_image(self):
        tag = "layer1/layer2/image0"
S
superjom 已提交
38
        image_writer = self.writer.image(tag, 10, 1)
S
superjom 已提交
39 40
        num_passes = 10
        num_samples = 100
41
        shape = [10, 10, 3]
S
superjom 已提交
42 43 44 45

        for pass_ in xrange(num_passes):
            image_writer.start_sampling()
            for ins in xrange(num_samples):
S
superjom 已提交
46
                index = image_writer.is_sample_taken()
S
superjom 已提交
47 48 49 50 51 52
                if index != -1:
                    data = np.random.random(shape) * 256
                    data = np.ndarray.flatten(data)
                    image_writer.set_sample(index, shape, list(data))
            image_writer.finish_sampling()

53
        self.reader = storage.LogReader(self.dir)
S
superjom 已提交
54 55 56 57
        with self.reader.mode("train") as reader:
            image_reader = reader.image(tag)
            self.assertEqual(image_reader.caption(), tag)
            self.assertEqual(image_reader.num_records(), num_passes)
S
superjom 已提交
58

S
superjom 已提交
59 60 61 62
            image_record = image_reader.record(0, 1)
            self.assertTrue(np.equal(image_record.shape(), shape).all())
            data = image_record.data()
            self.assertEqual(len(data), np.prod(shape))
S
superjom 已提交
63

S
superjom 已提交
64 65 66
            image_tags = reader.tags("image")
            self.assertTrue(image_tags)
            self.assertEqual(len(image_tags), 1)
S
superjom 已提交
67

S
superjom 已提交
68 69 70 71 72 73 74 75 76 77 78 79
    def test_check_image(self):
        '''
        check whether the storage will keep image data consistent
        '''
        print 'check image'
        tag = "layer1/check/image1"
        image_writer = self.writer.image(tag, 10, 1)

        image = Image.open("./dog.jpg")
        shape = [image.size[1], image.size[0], 3]
        origin_data = np.array(image.getdata()).flatten()

80
        self.reader = storage.LogReader(self.dir)
S
superjom 已提交
81
        with self.reader.mode("train") as reader:
S
superjom 已提交
82

S
superjom 已提交
83 84 85 86
            image_writer.start_sampling()
            index = image_writer.is_sample_taken()
            image_writer.set_sample(index, shape, list(origin_data))
            image_writer.finish_sampling()
S
superjom 已提交
87

S
superjom 已提交
88
            # read and check whether the original image will be displayed
S
superjom 已提交
89

S
superjom 已提交
90 91 92 93
            image_reader = reader.image(tag)
            image_record = image_reader.record(0, 0)
            data = image_record.data()
            shape = image_record.shape()
S
superjom 已提交
94

S
superjom 已提交
95 96 97 98 99 100 101
            PIL_image_shape = (shape[0] * shape[1], shape[2])
            data = np.array(data, dtype='uint8').reshape(PIL_image_shape)
            print 'origin', origin_data.flatten()
            print 'data', data.flatten()
            image = Image.fromarray(data.reshape(shape))
            # manully check the image and found that nothing wrong with the image storage.
            # image.show()
S
superjom 已提交
102

S
superjom 已提交
103 104 105
            # after scale, elements are changed.
            # self.assertTrue(
            #     np.equal(origin_data.reshape(PIL_image_shape), data).all())
S
superjom 已提交
106

S
superjom 已提交
107 108 109 110 111 112
    def test_with_syntax(self):
        with self.writer.mode("train") as writer:
            scalar = writer.scalar("model/scalar/average")
            for i in range(10):
                scalar.add_record(i, float(i))

113
        self.reader = storage.LogReader(self.dir)
S
superjom 已提交
114 115 116 117
        with self.reader.mode("train") as reader:
            scalar = reader.scalar("model/scalar/average")
            self.assertEqual(scalar.caption(), "train")

S
superjom 已提交
118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133
    def test_modes(self):
        dir = "./tmp/storagetest0"
        store = storage.LogWriter(
            self.dir, sync_cycle=1)

        scalars = []

        for i in range(10):
            with store.mode("mode-%d" % i) as writer:
                scalar = writer.scalar("add/scalar0")
                scalars.append(scalar)

        for scalar in scalars[:-1]:
            for i in range(10):
                scalar.add_record(i, float(i))

S
superjom 已提交
134

S
superjom 已提交
135 136 137

if __name__ == '__main__':
    unittest.main()