Skip to content Skip to sidebar Skip to footer

LSTM-CNN To Classify Sequences Of Images

I got an assignment and stuck with it while going down the rabbit hole of learning PyTorch, LSTM and cnn. Provided the well known MNIST library I take combinations of 4 numbers and

Solution 1:

Change your input size from 28 to 784. (784=28*28).

Input size argument is the number of features in one element of the sequence, so the number of feature of an mnist image, so the number of pixels which is width*hight of the image.


Post a Comment for "LSTM-CNN To Classify Sequences Of Images"