-
Notifications
You must be signed in to change notification settings - Fork 14
/
data.py
624 lines (476 loc) · 17.7 KB
/
data.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
print("start data import")
from tensorflow.python.platform import flags
from imageio import imread
import tensorflow as tf
import io
import lmdb
from PIL import Image
import json
from torch.utils.data import Dataset
import pickle
import os.path as osp
import os
import numpy as np
import time
from scipy.misc import imread, imresize
from skimage.color import rgb2grey
from torchvision.datasets import CIFAR10, MNIST, SVHN, CIFAR100, ImageFolder, LSUNClass
from torchvision import transforms
import torch
import torchvision
import pandas as pd
from imageio import imwrite
from absl import flags
import errno
import codecs
from torch.utils import data
import random
print("end data import")
def cutout(mask_color=(0, 0, 0)):
mask_size_half = FLAGS.cutout_mask_size // 2
offset = 1 if FLAGS.cutout_mask_size % 2 == 0 else 0
def _cutout(image):
image = np.asarray(image).copy()
if np.random.random() > FLAGS.cutout_prob:
return image
h, w = image.shape[:2]
if FLAGS.cutout_inside:
cxmin, cxmax = mask_size_half, w + offset - mask_size_half
cymin, cymax = mask_size_half, h + offset - mask_size_half
else:
cxmin, cxmax = 0, w + offset
cymin, cymax = 0, h + offset
cx = np.random.randint(cxmin, cxmax)
cy = np.random.randint(cymin, cymax)
xmin = cx - mask_size_half
ymin = cy - mask_size_half
xmax = xmin + FLAGS.cutout_mask_size
ymax = ymin + FLAGS.cutout_mask_size
xmin = max(0, xmin)
ymin = max(0, ymin)
xmax = min(w, xmax)
ymax = min(h, ymax)
image[:, ymin:ymax, xmin:xmax] = np.array(mask_color)[:, None, None]
return image
return _cutout
class CelebAHQ(Dataset):
def __init__(self, cond_idx=1, filter_idx=0):
self.path = "/datasets01/celebAHQ/081318/imgHQ{:05}.npy"
self.labels = pd.read_csv("/private/home/yilundu/list_attr_celeba.txt", sep="\s+", skiprows=1)
self.hq_labels = pd.read_csv("/private/home/yilundu/image_list.txt", sep="\s+")
self.cond_idx = cond_idx
self.filter_idx = filter_idx
def __len__(self):
return self.hq_labels.shape[0]
def __getitem__(self, index):
info = self.hq_labels.iloc[index]
info = self.labels.iloc[info.orig_idx]
path = self.path.format(index)
im = np.load(path)
im = im[0].transpose((1, 2, 0))
image_size = 128
im = imresize(im, (image_size, image_size))
im = im / 256
im = im + np.random.uniform(0, 1 / 256., im.shape)
label = int(info.iloc[self.cond_idx])
if label == -1:
label = 0
label = np.eye(2)[label]
im_corrupt = np.random.uniform(
0, 1, size=(image_size, image_size, 3))
return im_corrupt, im, label
class ImageNet(Dataset):
def __init__(self, cond_idx=1, filter_idx=0):
self.path = "/datasets01_101/imagenet_full_size/061417/train"
self.folders = [osp.join(self.path, d) for d in os.listdir(self.path)]
self.images = []
self.labels = []
for i, folder in enumerate(self.folders):
im_path = [osp.join(folder, im) for im in os.listdir(folder)]
self.images.extend(im_path)
self.labels.extend([i] * len(im_path))
def __len__(self):
return len(self.images)
def __getitem__(self, index):
path = self.images[index]
im = imread(path)
if len(im.shape) == 2:
im = np.tile(im[:, :, None], (1, 1, 3))
else:
im = im[:, :, :3]
image_size = 128
im = imresize(im, (image_size, image_size))
im = im / 256
im = im + np.random.uniform(0, 1 / 256., im.shape)
im_corrupt = np.random.uniform(0, 1, size=(image_size, image_size, 3))
label = np.eye(1000)[self.labels[index]]
return im_corrupt, im, label
class LSUNBed(Dataset):
def __init__(self, cond_idx=1, filter_idx=0):
self.path = "/datasets01_101/lsun-pytorch/11222017"
lmdb_path = osp.join(self.path, "bedroom_train_lmdb")
self.env = lmdb.open(lmdb_path, max_readers=1, readonly=True, lock=False,
readahead=False, meminit=False)
self.keys = pickle.load(open("lsun_bed_cache.p", "rb"))
def __len__(self):
return len(self.keys)
def __getitem__(self, index):
img, target = None, torch.zeros(1)
env = self.env
with env.begin(write=False) as txn:
imgbuf = txn.get(self.keys[index])
buf = io.BytesIO()
buf.write(imgbuf)
buf.seek(0)
im = np.array(Image.open(buf).convert('RGB'))
image_size = 128
im = imresize(im, (image_size, image_size))
im = im / 256
im = im + np.random.uniform(0, 1 / 256., im.shape)
im_corrupt = np.random.uniform(0, 1, size=(image_size, image_size, 3))
return im_corrupt, im, target
class CelebA(Dataset):
def __init__(self, cond_idx=1, filter_idx=0):
self.path = "/datasets01/CelebA/CelebA/072017/img_align_celeba/"
self.labels = pd.read_csv("/private/home/yilundu/list_attr_celeba.txt", sep="\s+", skiprows=1)
self.cond_idx = cond_idx
self.filter_idx = filter_idx
if filter_idx != 0:
mask = (self.labels.to_numpy()[:, self.cond_idx] == filter_idx)
self.labels = self.labels[mask].reset_index()
def __len__(self):
return self.labels.shape[0]
def __getitem__(self, index):
if FLAGS.single:
index = 0
info = self.labels.iloc[index]
if self.filter_idx != 0:
fname = info['index']
else:
fname = info.name
path = osp.join(self.path, fname)
im = imread(path)
im = imresize(im, (128, 128))
image_size = 128
im = im / 255.
label = int(info.iloc[self.cond_idx])
if label == -1:
label = 0
label = np.eye(2)[label]
if FLAGS.datasource == 'default':
im_corrupt = im + 0.3 * np.random.randn(image_size, image_size, 3)
elif FLAGS.datasource == 'random':
im_corrupt = np.random.uniform(
0, 1, size=(image_size, image_size, 3))
return im_corrupt, im, label
class CelebaSmall(Dataset):
def __init__(self, cond_idx=1, filter_idx=0):
self.path = "/datasets01/CelebA/CelebA/072017/img_align_celeba/"
self.labels = pd.read_csv("/private/home/yilundu/list_attr_celeba.txt", sep="\s+", skiprows=1)
self.cond_idx = cond_idx
self.filter_idx = filter_idx
if filter_idx != 0:
mask = (self.labels.to_numpy()[:, self.cond_idx] == filter_idx)
self.labels = self.labels[mask].reset_index()
def __len__(self):
return self.labels.shape[0]
def __getitem__(self, index):
info = self.labels.iloc[index]
if self.filter_idx != 0:
fname = info['index']
else:
fname = info.name
path = osp.join(self.path, fname)
im = imread(path)
im = imresize(im, (32, 32))
image_size = 32
# print(im.max())
# print(im.min())
im = im / 256.
im = im + np.random.uniform(0, 1/256., im.shape)
label = int(info.iloc[self.cond_idx])
if label == -1:
label = 0
label = np.eye(2)[label]
im_corrupt = np.random.uniform(
0, 1, size=(image_size, image_size, 3))
return im_corrupt, im, label
class Cifar10(Dataset):
def __init__(
self,
FLAGS,
train=True,
full=False,
augment=False,
noise=True,
rescale=1.0):
if augment:
transform_list = [
torchvision.transforms.RandomCrop(32, padding=4),
torchvision.transforms.RandomHorizontalFlip(),
torchvision.transforms.ToTensor(),
]
transform = transforms.Compose(transform_list)
else:
transform = transforms.ToTensor()
self.full = full
self.data = CIFAR10(
"data/cifar10",
transform=transform,
train=train,
download=True)
self.test_data = CIFAR10(
"data/cifar10",
transform=transform,
train=False,
download=True)
self.one_hot_map = np.eye(10)
self.noise = noise
self.rescale = rescale
self.FLAGS = FLAGS
def __len__(self):
if self.full:
return len(self.data) + len(self.test_data)
else:
return len(self.data)
def __getitem__(self, index):
FLAGS = self.FLAGS
if self.full:
if index >= len(self.data):
im, label = self.test_data[index - len(self.data)]
else:
im, label = self.data[index]
else:
im, label = self.data[index]
im = np.transpose(im, (1, 2, 0)).numpy()
image_size = 32
label = self.one_hot_map[label]
im = im * 255 / 256
im = im * self.rescale + \
np.random.uniform(0, 1 / 256., im.shape)
# np.random.seed((index + int(time.time() * 1e7)) % 2**32)
im_corrupt = np.random.uniform(
0.0, self.rescale, (image_size, image_size, 3))
return torch.Tensor(im_corrupt), torch.Tensor(im), label
class STLDataset(Dataset):
def __init__(
self,
FLAGS,
train=True,
full=False,
augment=False,
noise=True,
rescale=1.0):
transform_list = [
torchvision.transforms.Resize(48),
torchvision.transforms.RandomHorizontalFlip(),
torchvision.transforms.ToTensor(),
]
transform = transforms.Compose(transform_list)
self.full = full
self.data = CIFAR10(
"data/cifar10",
transform=transform,
train=train,
download=True)
self.test_data = CIFAR10(
"data/cifar10",
transform=transform,
train=False,
download=True)
self.one_hot_map = np.eye(10)
self.noise = noise
self.rescale = rescale
self.FLAGS = FLAGS
def __len__(self):
if self.full:
return len(self.data) + len(self.test_data)
else:
return len(self.data)
def __getitem__(self, index):
FLAGS = self.FLAGS
if self.full:
if index >= len(self.data):
im, label = self.test_data[index - len(self.data)]
else:
im, label = self.data[index]
else:
im, label = self.data[index]
im = np.transpose(im, (1, 2, 0)).numpy()
image_size = 48
label = self.one_hot_map[label]
im = im * 255 / 256
im = im * self.rescale + \
np.random.uniform(0, 1 / 256., im.shape)
# np.random.seed((index + int(time.time() * 1e7)) % 2**32)
im_corrupt = np.random.uniform(
0.0, self.rescale, (image_size, image_size, 3))
return torch.Tensor(im_corrupt), torch.Tensor(im), label
class Cifar100(Dataset):
def __init__(self, FLAGS, train=True, augment=False):
transform = transforms.ToTensor()
self.one_hot_map = np.eye(100)
self.data = CIFAR100(
"/tmp/cifar100",
transform=transform,
train=train,
download=True)
def __len__(self):
return len(self.data)
def __getitem__(self, index):
im, label = self.data[0]
im = np.transpose(im, (1, 2, 0)).numpy()
image_size = 32
label = self.one_hot_map[label]
im = im * 255 / 256
im = im + \
np.random.uniform(0, 1 / 256., im.shape)
im_corrupt = np.random.uniform(
0.0, 1.0, (image_size, image_size, 3))
return im_corrupt, im, label
class Svhn(Dataset):
def __init__(self, train=True, augment=False):
transform = transforms.ToTensor()
self.data = SVHN("/tmp/svhn", transform=transform, download=True)
self.one_hot_map = np.eye(10)
def __len__(self):
return len(self.data)
def __getitem__(self, index):
im, label = self.data[index]
im = np.transpose(im, (1, 2, 0)).numpy()
image_size = 32
label = self.one_hot_map[label]
im = im * 255 / 256.
im = im + np.random.uniform(0, 1 / 256, im.shape)
im_corrupt = np.random.uniform(
0.0, 1.0, (image_size, image_size, 3))
return im_corrupt, im, label
class Mnist(Dataset):
def __init__(self, train=True, rescale=1.0):
self.data = MNIST(
"data/mnist",
transform=transforms.ToTensor(),
download=True, train=train)
self.labels = np.eye(10)
def __len__(self):
return len(self.data)
def __getitem__(self, index):
im, label = self.data[index]
label = self.labels[label]
im = im.squeeze()
im = im.numpy() / 256 * 255 + np.random.uniform(0, 1. / 256, (28, 28))
im = np.clip(im, 0, 1)
s = 28
im_corrupt = np.random.uniform(0, 1, (s, s, 1))
im = im[:, :, None]
return torch.Tensor(im_corrupt), torch.Tensor(im), label
class AugmentedMnist(Dataset):
def __init__(self, train=True, rescale=1.0):
self.data = MNIST(
"data/mnist",
transform=transforms.ToTensor(),
download=True, train=train)
self.labels = np.eye(10)
self.rescale = rescale
def __len__(self):
return len(self.data)
def __getitem__(self, index):
i1 = index
i2 = np.random.randint(0, len(self.data))
i3 = np.random.randint(0, len(self.data))
_, label = self.data[i1]
im1, im2, im3 = self.data[i1][0], self.data[i2][0], self.data[i3][0]
im = np.stack([im1.squeeze(), im2.squeeze(), im3.squeeze()], axis=2)
im = im / 256 * 255 + np.random.uniform(0, 1. / 256, (28, 28, 3))
im = im * self.rescale
image_size = 28
if FLAGS.datasource == 'default':
im_corrupt = im + 0.3 * np.random.randn(image_size, image_size)
elif FLAGS.datasource == 'random':
im_corrupt = np.random.uniform(0, self.rescale, (28, 28, 3))
return im_corrupt, im, label
class Textures(Dataset):
def __init__(self, train=True, augment=False):
self.dataset = ImageFolder("/private/home/yilundu/sandbox/ebm_code_release_pytorch/data/dtd/images")
def __len__(self):
return 2 * len(self.dataset)
def __getitem__(self, index):
idx = index % (len(self.dataset))
im, label = self.dataset[idx]
im = np.array(im)[:32, :32] / 255
im = im + np.random.uniform(-1 / 512, 1 / 512, im.shape)
return im, im, label
class ImageNetFull(Dataset):
def __init__(self, train=True, augment=False):
base_path = "/datasets01_101/imagenet_full_size/061417/train"
folders = os.listdir(base_path)
folders = sorted(folders)
self.folders = folders
list_ims = []
list_labels = []
for i, folder in enumerate(folders):
new_path = osp.join(base_path, folder)
ims = os.listdir(new_path)
for im in ims:
list_ims.append(osp.join(new_path, im))
list_labels.append(i)
rix = np.random.permutation(len(list_labels))
self.xs = [list_ims[rx] for rx in rix]
self.labels = [list_labels[rx] for rx in rix]
self.one_hot_map = np.eye(1000)
def __len__(self):
return len(self.labels)
def __getitem__(self, index):
label = self.labels[index]
path = self.xs[index]
im = imresize(imread(path), (128, 128))
im = im / 255
if len(im.shape) == 2:
im = np.tile(im[:, :, None], (1, 1, 3))
im = im[:, :, :3]
label = self.one_hot_map[label]
im = im + np.random.uniform(-1 / 512, 1 / 512, im.shape)
np.random.seed((index + int(time.time() * 1e7)) % 2**32)
im_corrupt = np.random.uniform(
0.0, 1.0, (128, 128, 3))
return im_corrupt, im, label
class CelebAHQOverfit(Dataset):
def __init__(self):
self.path = "/datasets01/celebAHQ/081318/imgHQ{:05}.npy"
self.labels = pd.read_csv("/private/home/yilundu/list_attr_celeba.txt", sep="\s+", skiprows=1)
self.hq_labels = pd.read_csv("/private/home/yilundu/image_list.txt", sep="\s+")
self.idx_values = [1, -1, 1, 1]
self.idx_idx = [39, 20, 19, 33]
self.idxs = self.generate_idx()
def __len__(self):
return len(self.idxs)
def generate_idx(self):
idxs = []
for i in range(self.hq_labels.shape[0]):
info = self.hq_labels.iloc[i]
info = self.labels.iloc[info.orig_idx]
vals = [info.iloc[ix] for ix in self.idx_idx]
valid = np.prod([(v == l) for v, l in zip(vals, self.idx_values)])
if valid:
idxs.append(i)
return idxs
def __getitem__(self, index):
index = self.idxs[index]
info = self.hq_labels.iloc[index]
info = self.labels.iloc[info.orig_idx]
path = self.path.format(index)
im = np.load(path)
im = im[0].transpose((1, 2, 0))
image_size = 128
im = imresize(im, (image_size, image_size))
im = im / 256
im = im + np.random.uniform(0, 1 / 256., im.shape)
im = im.transpose((2, 0, 1))
im = torch.Tensor(im)
return im, torch.Tensor(self.idx_values)
if __name__ == "__main__":
dataset = LSUNBed()
data = dataset[1]
import pdb
pdb.set_trace()
print("here")