Skip to content

ncdia.dataloader

ncdia.dataloader.base

build_dataloader(kwargs)

Build data loader.

Parameters:

  • kwargs (dict): Arguments for DataLoader. Contains the following:
    • dataset (dict): Dataset configuration.
    • other arguments for DataLoader, such as batch_size, shuffle, etc.

Returns:

  • loader (DataLoader): Data loader.

ncdia.dataloader.tools

Implements some of the commonly used dataloaders

ncdia.dataloader.datasets

Implements some of the commonly used datasets, including:

  • CIFAR100
  • CUB200
  • Caltech101
  • Food101
  • ImageNet
  • ImageNetR
  • BM200

ncdia.dataloader.augmentations

Implements some of the commonly used augmentation methods.