-
Notifications
You must be signed in to change notification settings - Fork 254
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
Faster predection #228
Comments
I think what you are looking for is MemoryDataLayer. |
I don't think that MemoryDataLayer solves the problem. If I understand @dryden3 correctly, I'm having the same problem. I'm using a Neural Net for regression of dynamics, so my inputs and outputs of training are observed system values shifted by a time step. To evaluate the model's performance in recreating dynamics, I need to feed initial system conditions forward, then take those outputs and feed them forward, eventually building up a trial path of the system. Currently, I'm doing
If I build |
You can access the
Make sure indices, dimensions, etc. match. |
Is there any way to make a prediction on a network other than defining a new data layer, creating a network, loading the network from a snapshot, than forwarding it? A function that takes in the input to the layer and a net and returns the output with out having to read from disc would be ideal. Thanks for you help!
The text was updated successfully, but these errors were encountered: