May I ask two questions of your FCN code please?
-
Traditional sequential data is of three dimensions: (batch_size, sequence_length, sequence_dimension). Why the data is four dimension in your code?
-
In your paper, you stated that "the features are fed into a global average pooling layer instead of a fully connected layer." But you implemented the fully connected layer
out = keras.layers.Dense(nb_classes, activation='softmax')(full). Why is that?
Thank you in advance.
May I ask two questions of your FCN code please?
Traditional sequential data is of three dimensions: (batch_size, sequence_length, sequence_dimension). Why the data is four dimension in your code?
In your paper, you stated that "the features are fed into a global average pooling layer instead of a fully connected layer." But you implemented the fully connected layer
out = keras.layers.Dense(nb_classes, activation='softmax')(full). Why is that?Thank you in advance.