input_shape = (genre_features.train_X.shape[1], genre_features.train_X.shape[2],1) print("Build CNN model ...") model = Sequential() model.add(Conv2D(24, (5, 5), strides=(1, 1), input_shape=input_shape)) model.add(AveragePooling2D((2, 2), strides=(2,2))) model.add(Ac...
out = F.conv._conv_nd( File "/usr/local/lib/python3.10/dist-packages/paddle/nn/functional/conv.py", line 133, in _conv_nd pre_bias = _C_ops.conv2d( ValueError: (InvalidArgument) The input of Op(Conv) should be a 4-D or 5-D Tensor. But received: input's dimension is 3, in...
CV-ZhangXin/LDConvPublic NotificationsYou must be signed in to change notification settings Fork3 Star101 New issue Have a question about this project?Sign up for a free GitHub account to open an issue and contact its maintainers and the community. ...