sbarratt/inception-score-pytorch

What does 'splits' mean

njuhang opened this issue · 1 comments

inception model takes in 3 channels input, how to compute IS on single channel image?

inception model takes in 3 channels input, how to compute IS on single channel image?

Hi Njuhang, you will have to convert it into a 3 channel images. You can either duplicate the 1 channel two times (let me know if this works since I haven't tested it) or you could convert your image into a RBG image. The idea here is then that specific values within the Red, Blue and Green channels will result in a grey image (which will work as I have tested it).