-
Notifications
You must be signed in to change notification settings - Fork 145
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
Data preparation for the time series regression #7
Comments
Agreed, a simple pseudocode example would be great. When this paper was reviewed for Nature, was there additional code supplied to the review team? If so, I would be happy to make a PR with some documentation. |
@PolKul My latest fork does simple X,y prediction but includes significant refactoring. |
@PolKul @nightvision04 the code in this repo is for reproducing/documenting the experiments of the paper. A cleanup ready-to-use implementation of the CfCs with examples can be found here: https://ncps.readthedocs.io/en/latest/ |
Closing this issue with Mathias's link to our documentation page: https://ncps.readthedocs.io/en/latest/ |
I'm trying to adopt CfC network from your PyTorch example (person_atcivity) to make a timeseries regression. Given one dimensional array of floating-point numbers (lets consider them equally spaced in time) how can I feed them into the network? As I understand your current PyTorch implementation works as a classifier, that is the Labels array should be finite number of classes. But in case of regression we have floating point values as output. Also how should we structure the inputs? Lets say we have 10 last values of the timeseries as input and we want to predict 11th value, how do we do that? If you can provide a short pseudocode example it would be much appreciated. Thanks.
The text was updated successfully, but these errors were encountered: