from typing import Tuple
import torch
import torch.nn.functional as F
import torchvision.transforms as transforms
from timm import create_model
from datasets.seq_cifar100 import TCIFAR100, MyCIFAR100
from datasets.transforms.denormalization import DeNormalize
from datasets.utils.continual_dataset import (ContinualDataset,
store_masked_loaders)
from utils.conf import base_path
[docs]
class SequentialCIFAR100224(ContinualDataset):
"""
The Sequential CIFAR100 dataset with 224x224 resolution with ViT-B/16.
Args:
NAME (str): name of the dataset.
SETTING (str): setting of the dataset.
N_CLASSES_PER_TASK (int): number of classes per task.
N_TASKS (int): number of tasks.
N_CLASSES (int): number of classes.
SIZE (tuple): size of the images.
MEAN (tuple): mean of the dataset.
STD (tuple): standard deviation of the dataset.
TRANSFORM (torchvision.transforms): transformation to apply to the data.
TEST_TRANSFORM (torchvision.transforms): transformation to apply to the test data.
"""
NAME = 'seq-cifar100-224'
SETTING = 'class-il'
N_CLASSES_PER_TASK = 10
N_TASKS = 10
N_CLASSES = 100
SIZE = (224, 224)
MEAN, STD = (0, 0, 0), (1, 1, 1) # Normalized in [0,1] as in L2P paper
TRANSFORM = transforms.Compose(
[transforms.Resize(224),
transforms.RandomCrop(224, padding=28),
transforms.RandomHorizontalFlip(),
transforms.ToTensor(),
transforms.Normalize(MEAN, STD)]
)
TEST_TRANSFORM = transforms.Compose(
[transforms.Resize(224), transforms.ToTensor(), transforms.Normalize(MEAN, STD)])
[docs]
def get_data_loaders(self) -> Tuple[torch.utils.data.DataLoader, torch.utils.data.DataLoader]:
transform = self.TRANSFORM
test_transform = self.TEST_TRANSFORM
train_dataset = MyCIFAR100(base_path() + 'CIFAR100', train=True,
download=True, transform=transform)
test_dataset = TCIFAR100(base_path() + 'CIFAR100', train=False,
download=True, transform=test_transform)
train, test = store_masked_loaders(train_dataset, test_dataset, self)
return train, test
[docs]
@staticmethod
def get_backbone(hookme=False):
model_name = 'vit_base_patch16_224'
return create_model(
model_name,
pretrained=True,
num_classes=SequentialCIFAR100224.N_CLASSES
)
[docs]
@staticmethod
def get_loss():
return F.cross_entropy
[docs]
@staticmethod
def get_epochs():
return 5
[docs]
@staticmethod
def get_batch_size():
return 128