Hi Refath,
Welcome to the forums, where some of us who have been around longer try to answer questions as best we can.
Since this is a time series classification problem, you may get better answers in a different part of the forums:
You will find the latest and most effective techniques there.
As for suggestions, first run one_batch() on the Learner to make absolutely sure that the proper batch is being sent to the model. Remember that conv1d expects a channel dimension to be part of the input tensor.
Other ideas:
-
100 points is not many to characterize a semi-periodic time series. You would need enough to specify the shape of each period in order to distinguish their shapes. If your eye cannot see the differences from 100 points, the model is unlikely to learn them.
-
FCN may not be smart enough to make the classification. Linear+ReLU at best makes a piecewise linear approximation. You are asking it to discern between periodic time series with very similar waveform shapes. FCN might not be able to “see” the difference between cubic and quadratic.
-
It certainly looks like overfitting. Another way to think of it is that generalization is as good as it gets, and the model has gone on to memorize the training set of only 90 members.
My suggestion is to start with an example of the FCN model that works exactly as expected. Then in small steps modify the input data to be what you want it to classify. You might find the specific cause of bad performance that way.
HTH a little,
Malcolm