lx7555
lx7555
I want to evaluate cityscapes datasets,because I try to reproduce the fcn score results from pip2pip by using https://github.com/junyanz/pytorch-CycleGAN-and-pix2pix code. I try many ways.I can not get any results when...
Thank you. As your suggestion, train_loader = get_train_loader(args, dataset_real, args.height, args.width, args.batch_size, args.workers, args.num_instances, iters, trainset=pseudo_labeled_dataset_relabel) mean real data using the unlabeled dataset (pseudo_labeled) while train_loader = get_train_loader(args, dataset_real, args.height,...
Thank you! So as you mentioned, how to use "adding labeled real-world data to synthetic data" in your paper? I mean how to change the label state for real-world data?...
Maybe? train_loader = get_train_loader(args, dataset_real, args.height, args.width, args.batch_size, args.workers, args.num_instances, iters, trainset=dataset_real.train + dataset_syne.train means real data using the labeled dataset (real-labeled) while syne data using the labeled dataset.
> Yes. Thank you
I want to evaluate cityscapes datasets,because I try to reproduce the fcn score results from pip2pip by using https://github.com/junyanz/pytorch-CycleGAN-and-pix2pix code. I try many ways.I can not get any results when...