Hi team,
I'm trying to understand your code. In this line below it looks like you are feeding a 4D tensor of shape [batch, feature, stocks, length] to a Conv1D layer:
|
x = self.bn_start(self.start_conv(x)) |
Am I misunderstanding something? Otherwise, wouldn't this raise an error? as Conv1D is expecting a 3D tensor of shape [batch, num_channels, length]. I appreciate any insight you can give. Thanks!
Hi team,
I'm trying to understand your code. In this line below it looks like you are feeding a 4D tensor of shape [batch, feature, stocks, length] to a Conv1D layer:
DeepTrader/src/model/ASU.py
Line 159 in 4b00b2a
Am I misunderstanding something? Otherwise, wouldn't this raise an error? as Conv1D is expecting a 3D tensor of shape [batch, num_channels, length]. I appreciate any insight you can give. Thanks!