File size: 222 Bytes
5fee096 | 1 2 3 4 5 6 7 8 9 | # -----------------
# Custom Transfrom : Define your own custom transform function, and add to the list
custom_trfm_names = ['_convert_to_rgb']
def _convert_to_rgb(img):
return img.convert('RGB')
# ----------------- |