(self, root, test_envs, hparams)
| 221 | CHECKPOINT_FREQ = 300 |
| 222 | ENVIRONMENTS = ["C", "L", "S", "V"] |
| 223 | def __init__(self, root, test_envs, hparams): |
| 224 | self.dir = os.path.join(root, "VLCS/") |
| 225 | super().__init__(self.dir, test_envs, hparams['data_augmentation'], hparams) |
| 226 | |
| 227 | class PACS(MultipleEnvironmentImageFolder): |
| 228 | CHECKPOINT_FREQ = 300 |