wangtingyang
wangtingyang
The forward method of InpaintingModel is as follows: def forward(self, images, edges, masks): images_masked = (images * (1 - masks).float()) + masks inputs = torch.cat((images_masked, edges), dim=1) outputs = self.generator(inputs)...
My computer configuration is not very good, but MAX_ITERS default is 2e6, Is this parameter too big?Not only does this take a lot of time to train, but it should...
Traceback (most recent call last): File "tools/merge_lists_single_task.py", line 48, in main(args) File "tools/merge_lists_single_task.py", line 18, in main train_files, train_labels = read_kv(osp.join(db_dir, 'train.txt')) File "/home/software_mount/wty/dgd_person_reid/tools/../utils/core.py", line 45, in read_kv arr =...
I want install pytorch-encoding on torch==1.2.0, where can i found old version?