Meta-set icon indicating copy to clipboard operation
Meta-set copied to clipboard

Automatic model evaluation (AutoEval) in CVPR'21&TPAMI'22

Results 2 Meta-set issues
Sort by recently updated
recently updated
newest added

Thank you for your attention! Please download the datasets for coco classification setup in [here](https://anu365-my.sharepoint.com/:u:/g/personal/u6854640_anu_edu_au/EVwMYZdEYodCtRtGeiVR1doBUnExqoYJGOrvLzwFw28j_w?e=9GS2zN). The zip file contains two parts. **The first part** is coco datasets: 1) a training...

**[Pretrained MNIST model](https://drive.google.com/file/d/1-_M2FAY8stVhfo6uQv6bpdn-6yBEMLfp/view?usp=sharing)** **USPS** **[DATASET](https://drive.google.com/file/d/1Bo6KlZbNEk-pNae9JI2uWAeVtgxmWKPS/view?usp=sharing)** ``` class USPS(data.Dataset): def __init__(self, root, train=True, transform=None, target_transform=None): super(USPS, self).__init__() self.root = root self.transform = transform self.target_transform = target_transform filename = 'usps.bz2' if train...