-
Notifications
You must be signed in to change notification settings - Fork 10
/
visdac.py
76 lines (58 loc) · 2.12 KB
/
visdac.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
from __future__ import print_function
from PIL import Image
import os
import os.path
import numpy as np
import sys
import torch.utils.data as data
import glob
class VISDAC(data.Dataset):
def __init__(self, root, domain, train=True, transform=None, from_file=False):
self.train = train
self.transform = transform
if domain == 'source':
domain = 'train'
else:
if self.train:
domain = 'validation'
else:
domain = 'test'
if not from_file:
data = []
labels = []
for c in range(12):
files = glob.glob(os.path.join(root,domain,str(c),"*"))
data.extend(files)
labels.extend([c]*len(files))
np.random.seed(1234)
idx = np.random.permutation(len(data))
self.data = np.array(data)[idx]
self.labels = np.array(labels)[idx]
test_perc = 20
test_len = len(self.data)*test_perc//100
if domain == 'source':
if self.train:
self.data = self.data[test_len:]
self.labels = self.labels[test_len:]
else:
self.data = self.data[:test_len]
self.labels = self.labels[:test_len]
else:
self.data = np.load(os.path.join(root, domain+"_imgs.npy"))
self.labels = np.load(os.path.join(root, domain+"_labels.npy"))
def __getitem__(self, index):
"""
Args:
index (int): Index
Returns:
tuple: (image, target) where target is index of the target class.
"""
img, target = self.data[index], self.labels[index]
# doing this so that it is consistent with all other datasets
# to return a PIL Image
img = Image.open(img)
if self.transform is not None:
img = self.transform(img)
return img, target, index
def __len__(self):
return len(self.data)