質問

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.

役に立ちましたか?

解決

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

他のヒント

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

ライセンス: CC-BY-SA帰属
所属していません datascience.stackexchange
scroll top