Domanda

While attempting an assignment, I found that shape of the input image was (600,64,64,3). I thought 3 stood for the number of channels but it's listed as the 4th dimension. What does this mean? This is in reference to convolutional neural networks.

È stato utile?

Soluzione

The fourth dimension is because it is referring to either the full dataset(train/test) Or an individual batch.

600 - Number of images in the dataset or batch
64 x 64 - Size of each image
3 - Number of channels

Altri suggerimenti

600 can be the number of images of shape 64x64x3 and not only one image.

Autorizzato sotto: CC-BY-SA insieme a attribuzione
scroll top