X-Git-Url: https://www.fleuret.org/cgi-bin/gitweb/gitweb.cgi?p=pysvrt.git;a=blobdiff_plain;f=test-svrt.py;h=ad3677a97e69d181a25d7035317e4c9085ad5ad2;hp=92fc5544b114ac0061e06c995b471fae1d816d67;hb=HEAD;hpb=f542d0542b1e51ca7dd12bc6b96f6a299371ae8d diff --git a/test-svrt.py b/test-svrt.py index 92fc554..ad3677a 100755 --- a/test-svrt.py +++ b/test-svrt.py @@ -19,21 +19,34 @@ # General Public License for more details. # # You should have received a copy of the GNU General Public License -# along with selector. If not, see . +# along with svrt. If not, see . import time import torch +import torchvision from torch import optim from torch import FloatTensor as Tensor from torch.autograd import Variable from torch import nn from torch.nn import functional as fn + from torchvision import datasets, transforms, utils -from _ext import svrt +import svrt + +labels = torch.LongTensor(12).zero_() +labels.narrow(0, 0, labels.size(0)//2).fill_(1) + +x = svrt.generate_vignettes(4, labels) + +print('compression factor {:f}'.format(x.storage().size() / svrt.compress(x.storage()).size())) + +x = x.view(x.size(0), 1, x.size(1), x.size(2)) + +x.div_(255) -train_set = svrt.generate_vignettes(12, 1234) +torchvision.utils.save_image(x, 'example.png') -print(str(type(train_set)), train_set.size()) +print('Wrote example.png')