open-mmlab / mmgeneration

MMGeneration is a powerful toolkit for generative models, based on PyTorch and MMCV.
https://mmgeneration.readthedocs.io/en/latest/
Apache License 2.0
1.89k stars 227 forks source link

"assert self.is_domain_reachable" #491

Open ghost opened 1 year ago

ghost commented 1 year ago

Hi,

I attempted to train pix2pix using my own data. I used pix2pix_vanilla_unet_bn_facades_b1x1_80k.py as my config; I divided the dataset into train and test with paired images

It runs smoothly until it saved the 10000 iteration and show the following error message: "assert self.is_domain_reachable( AssertionError: A domain is not reachable, available domain list is ['B']"

In my case, A and B is the translation I want to achieve.

Can you help? Thanks!

Tao