1d Convolution For Vector
I'm learning to understand how to use the convolutional neural network with 1d convolution: Here is a homework example: import numpy as np import keras from keras.models import Seq
Solution 1:
Look closely at the error message: your input is two-dimensional and your convolution layer expects three dimensions...
Post a Comment for "1d Convolution For Vector"