X-Git-Url: https://fleuret.org/cgi-bin/gitweb/gitweb.cgi?p=pysvrt.git;a=blobdiff_plain;f=test-svrt.py;h=5c16069d3ce7ff0bced73eb5d079a9e20a74b1b5;hp=6b5f8264c28ca8ad63abcc930d521933863ee83c;hb=231c2b2d912d7480af0ce9512b12a909a4fe2a3d;hpb=44bd6cf57f00009c7049dcd3e5600f12f2f41de5 diff --git a/test-svrt.py b/test-svrt.py index 6b5f826..5c16069 100755 --- a/test-svrt.py +++ b/test-svrt.py @@ -34,12 +34,17 @@ from torch.nn import functional as fn from torchvision import datasets, transforms, utils -from _ext import svrt +import svrt -train_set = svrt.generate_vignettes(12, 64) +labels = torch.LongTensor(12).zero_() +labels.narrow(0, 0, labels.size(0)//2).fill_(1) -print(str(type(train_set)), train_set.size()) +x = svrt.generate_vignettes(4, labels) -train_set.div_(255) +x = x.view(x.size(0), 1, x.size(1), x.size(2)) -torchvision.utils.save_image(train_set.view(train_set.size(0), 1, train_set.size(1), train_set.size(2)), 'example.png') +x.div_(255) + +torchvision.utils.save_image(x, 'example.png') + +print('Wrote example.png')