Minor update.
[pysvrt.git] / test-svrt.py
1 #!/usr/bin/env python
2
3 #  svrt is the ``Synthetic Visual Reasoning Test'', an image
4 #  generator for evaluating classification performance of machine
5 #  learning systems, humans and primates.
6 #
7 #  Copyright (c) 2017 Idiap Research Institute, http://www.idiap.ch/
8 #  Written by Francois Fleuret <francois.fleuret@idiap.ch>
9 #
10 #  This file is part of svrt.
11 #
12 #  svrt is free software: you can redistribute it and/or modify it
13 #  under the terms of the GNU General Public License version 3 as
14 #  published by the Free Software Foundation.
15 #
16 #  svrt is distributed in the hope that it will be useful, but
17 #  WITHOUT ANY WARRANTY; without even the implied warranty of
18 #  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
19 #  General Public License for more details.
20 #
21 #  You should have received a copy of the GNU General Public License
22 #  along with svrt.  If not, see <http://www.gnu.org/licenses/>.
23
24 import time
25
26 import torch
27 import torchvision
28
29 from torch import optim
30 from torch import FloatTensor as Tensor
31 from torch.autograd import Variable
32 from torch import nn
33 from torch.nn import functional as fn
34
35 from torchvision import datasets, transforms, utils
36
37 import svrt
38
39 labels = torch.LongTensor(12).zero_()
40 labels.narrow(0, 0, labels.size(0)//2).fill_(1)
41
42 x = svrt.generate_vignettes(4, labels)
43
44 print('compression factor {:f}'.format(x.storage().size() / svrt.compress(x.storage()).size()))
45
46 x = x.view(x.size(0), 1, x.size(1), x.size(2))
47
48 x.div_(255)
49
50 torchvision.utils.save_image(x, 'example.png')
51
52 print('Wrote example.png')