-
Notifications
You must be signed in to change notification settings - Fork 53
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
High error on time-series data #1
Comments
@Cherryvr: I'm terribly sorry about the lateness of my reply. Due to illness I have been unable to work. Regarding your problem, two ideas spring to mind: 1) I have never tried the convolution operations on 1D data and there might be an error in my implementation. 2) Have you remembered to scale your input to a reasonable range (a clasic mistake and when dealing with neural nets)? You want a reasonable scale between your input and your weights, also, make sure that the activation function doesn't squash the signal. Feel free to ignore this post as I realize that you have probably moved on since then! :) |
Oh, it's okay! I am actually super thankful for being able to receive a reply even. I was worrying that my question was just a stupid one. >< Thank you so much for taking the time to answer. :)) I'm curious, is it possible to do 1D convolution on your GPU-enabled code deeppy? Once again, thank you so much for all the help! And hope you are all well now. :) |
Thank you! :) I have only tried 2D convolutions with DeepPy. I guess faking 1D convolution layers (that is, 2D with one side being 1) should work. Let me know if you should run into any problems. |
Thank you so much for making such readable code for beginners in convolutional neural networks like me.
I am trying to get some results with this code using time-series, xyz acceleration data.
As opposed to images which are 2D, 3-channel data, time-series are 1D, 3-channel data. I have run the cnn_mnist examples included in this code, and have achieved satisfactory results. However, with the scaled time-series data that I have, I couldn't get any decent results with the same parameters and layer configurations. I suppose convolution computation for 1D and 2D is entirely different, and that I need to apply internal modifications if I want this to work. Please see below for the code I used.
Do I need to make modifications on the matrix operations level (convolution)? Where is this part in the code?
Note: I am also a python beginner, but I can understand the basic hierarchy of the code.
Code:
The text was updated successfully, but these errors were encountered: