-
Notifications
You must be signed in to change notification settings - Fork 0
/
utils.py
37 lines (27 loc) · 959 Bytes
/
utils.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
import numpy
import torch.utils.data
class Dataset(torch.utils.data.Dataset):
"""
PyTorch wrapper for a numpy dataset.
@param dataset Numpy array representing the dataset.
"""
def __init__(self, dataset):
self.dataset = dataset
def __len__(self):
return numpy.shape(self.dataset)[0]
def __getitem__(self, index):
return self.dataset[index]
class LabelledDataset(torch.utils.data.Dataset):
"""
PyTorch wrapper for a numpy dataset and its associated labels.
@param dataset Numpy array representing the dataset.
@param labels One-dimensional array of the same length as dataset with
non-negative int values.
"""
def __init__(self, dataset, labels):
self.dataset = dataset
self.labels = labels
def __len__(self):
return numpy.shape(self.dataset)[0]
def __getitem__(self, index):
return self.dataset[index], self.labels[index]