justinpinkney/awesome-pretrained-stylegan2

generated images using the provided pretrained model contain colorful specks.???

fido20160817 opened this issue · 2 comments

the generated images using the provided pretrained model in these links contain colorful specks. For example, dataset: faces (FFHQ config-f). Anybody knows what's wrong with this?
2VUHC27r9J

This is because the values of your image are going outside the standard range and wrapping round. You need to clamp you values between 0-255 before you convert to uint8.

This is because the values of your image are going outside the standard range and wrapping round. You need to clamp you values between 0-255 before you convert to uint8.

I see. Thanks for your response!