Closed dongyun-kim-arch closed 3 years ago
Everything looks good in terms of inputs and models. I've seen these artifacts before, mainly when working on harder domains like yours here. To help with this, I found the MoCo-basrd similarity loss can help (it is similar to the ID similarity loss for faces). If the MoCo loss doesn't improve results, you could look into working with ReStyle which builds on pSp and showed much better results on more challenging domains.
Thank you for the advice! From your advice, I changed the loss to MoCo loss, and the result is getting better compared to previous one I guess.
I would like to ask you regarding my result. I trained it around half a day and got this result (I am using rtx 3090 as eGPU). It seems that the model captures the overall shape but when I goes into detail of building, it doesn't look great, lost lots of detail.... So, do you think this is due to short training time or there could be some problems such as dataset or domain? If you advice some future direction, that would be so helpful!
Thank you!
It could also be that pSp is simply not strong enough to invert and reconstruct these challenging images accurately enough. If you still don't see an improvement, you could check out ReStyle, which showed much better results on non-facial domains. Hopefully, you'll be able to get better reconstructions there.
Hello! Thanks for this amazing model and well documented description.
I am trying to train my own dataset(buildings), but trained results are pretty weird, especially weird pattern covers the whole part. This pattern wasn't shown in my generated images by stylegan model, but it doesn't disappear in 25000epoch.
This is my training dataset and random images generated by stylegan.
and this is my training options.
--workers=8 --batch_size=8 --test_batch_size=8 --test_workers=8 --val_interval=2500 --save_interval=5000 --encoder_type=GradualStyleEncoder --start_from_latent_avg --lpips_lambda=0.8 --l2_lambda=1 --id_lambda=0.1
Do you have any insight or thought what's wrong here....?