Closed smorford closed 5 years ago
The R code itself looks good to me,- did you try running the Python version and see if you get the same results? Is the original Python version supposed to be working with multivariate data?
Thanks skeydan. I found that if I reduced the number of features in the training data, the model worked correctly. This can be closed.
Hi all, I'm looking for some assistance with implementing the FCN architecture on multivariate time-series data. I've attempted to translate the FCN architecture from this python implementation. I'm new to using deep learning frameworks, so it's very likely I'm implementing this incorrectly.
My input is a 3 dimensional array [samples, time step,feature]. My response variable is a 1d array with five classes, encoded as integers 0 through 4.
I can train the model, but the predict result returns (roughly) the fractional total of each of the classes for every sample. I'm wondering if anyone can point me to what I'm doing wrong.
The code segment below will download the training data from a google cloud bucket (~111MB - beware!)
Any help would be greatly appreciated.