Closed MolGen closed 6 years ago
Could you clarify what is the benefit of using input_shape = [None, 1000, 1, 4] instead of input_shape = [None, 1000, 4]?
input_shape = [None, 1000, 1, 4]
input_shape = [None, 1000, 4]
For historical reasons, I use conv2d. I will modify the code to use conv1d and a more concise shape in the future.
Could you clarify what is the benefit of using
input_shape = [None, 1000, 1, 4]
instead ofinput_shape = [None, 1000, 4]
?