Week2 asgnment 2

before using the mobilenet architecture we are using below command to reshape input data
IMG_SHAPE = IMG_SIZE + (3,)
why we are performing this step?

Hey, IMG_SIZE does not accommodate for the colour channels and just the dimension of the images, so when we do a + (3,), we’re adding the colour channels for our images.