# Copyright 2022-present, Lorenzo Bonicelli, Pietro Buzzega, Matteo Boschini, Angelo Porrello, Simone Calderara.
# All rights reserved.
# This source code is licensed under the license found in the
# LICENSE file in the root directory of this source tree.
from typing import Tuple
import numpy as np
import torch
import torch.nn.functional as F
import torchvision.transforms as transforms
from PIL import Image
from torchvision.datasets import MNIST
from datasets.transforms.permutation import Permutation
from datasets.utils.continual_dataset import ContinualDataset, fix_class_names_order, store_masked_loaders
from utils.conf import base_path
from datasets.utils import set_default_from_args
[docs]
class MyMNIST(MNIST):
"""
Overrides the MNIST dataset to change the getitem function.
"""
def __init__(self, root, train=True, transform=None,
target_transform=None, download=False) -> None:
super(MyMNIST, self).__init__(root, train, transform,
target_transform, download)
def __getitem__(self, index: int) -> Tuple[Image.Image, int, Image.Image]:
"""
Gets the requested element from the dataset.
Args:
index: index of the element to be returned
Returns:
tuple: (image, target) where target is index of the target class.
"""
img, target = self.data[index], int(self.targets[index])
# doing this so that it is consistent with all other datasets
# to return a PIL Image
img = Image.fromarray(img.numpy(), mode='L')
if self.transform is not None:
img = self.transform(img)
if self.target_transform is not None:
target = self.target_transform(target)
return img, target, img
[docs]
class PermutedMNIST(ContinualDataset):
"""Permuted MNIST Dataset.
Creates a dataset composed by a sequence of tasks, each containing a
different permutation of the pixels of the MNIST dataset.
Args:
NAME (str): name of the dataset
SETTING (str): setting of the experiment
N_CLASSES_PER_TASK (int): number of classes in each task
N_TASKS (int): number of tasks
SIZE (tuple): size of the images
"""
NAME = 'perm-mnist'
SETTING = 'domain-il'
N_CLASSES_PER_TASK = 10
N_TASKS = 20
SIZE = (28, 28)
[docs]
def get_data_loaders(self) -> Tuple[torch.utils.data.DataLoader, torch.utils.data.DataLoader]:
transform = transforms.Compose((transforms.ToTensor(), Permutation(np.prod(PermutedMNIST.SIZE))))
train_dataset = MyMNIST(base_path() + 'MNIST',
train=True, download=True, transform=transform)
test_dataset = MNIST(base_path() + 'MNIST',
train=False, download=True, transform=transform)
train, test = store_masked_loaders(train_dataset, test_dataset, self)
return train, test
[docs]
@set_default_from_args("backbone")
def get_backbone():
return "mnistmlp"
[docs]
@staticmethod
def get_loss():
return F.cross_entropy
[docs]
@set_default_from_args('batch_size')
def get_batch_size(self) -> int:
return 128
[docs]
@set_default_from_args('n_epochs')
def get_epochs(self):
return 1
[docs]
def get_class_names(self):
if self.class_names is not None:
return self.class_names
classes = MNIST(base_path() + 'MNIST', train=True, download=True).classes
classes = [c.split('-')[1].strip() for c in classes]
classes = fix_class_names_order(classes, self.args)
self.class_names = classes
return self.class_names