|
skimage.transform.pyramid_expand(one_map, sigma=20, |
Hi guys,
I think depending on your version of scikit-image the function pyramid_expand might require the flag multichannel
Hence:
one_map = \
skimage.transform.pyramid_expand(one_map, sigma=20,
upscale=vis_size // att_sze)
Should become:
one_map = \
skimage.transform.pyramid_expand(one_map, sigma=20,
upscale=vis_size // att_sze,
multichannel=True)
Hope this can be of some help to anyone that encounter an issue related to expanding all the channels.
Best wishes,
cycle-image-gan/miscc/utils.py
Line 131 in de61bef
Hi guys,
I think depending on your version of scikit-image the function
pyramid_expandmight require the flag multichannelHence:
Should become:
Hope this can be of some help to anyone that encounter an issue related to expanding all the channels.
Best wishes,