I'm working with your repo. In your model.py file bellow code should three layer but this add just only one Conv1D Layer
conv = ZeroPadding1D(padding=(0, 2048))(x)
for l in range(conv_layers):
x = Conv1D(filters=fc_size, name='conv_{}'.format(l+1), kernel_size=11, padding='valid', activation='relu', strides=2)(conv)
Hello @robmsmt,
I'm working with your repo. In your
model.py
file bellow code should three layer but this add just only oneConv1D
LayerThis is the model summary I get,
What could be the possible reason. Thanks in advance