generated images using the provided pretrained model contain colorful specks.???
fido20160817 opened this issue · 2 comments
fido20160817 commented
justinpinkney commented
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.
fido20160817 commented
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!