Skip to content
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

when i use the load net to forcast, the performance is so bad! #47

Open
xinsuinizhuan opened this issue Nov 4, 2019 · 2 comments
Open

Comments

@xinsuinizhuan
Copy link

No description provided.

@josephjaspers
Copy link
Owner

Sorry for the late response, what is the model and layers of the neural-network you are using?

@xinsuinizhuan
Copy link
Author

Sorry for the late response, what is the model and layers of the neural-network you are using?

this:
auto make_lstm_network() {
return BC::nn::neuralnetwork(
BC::nn::lstm(BC::host_tag(), 96 * 10, 1024),
BC::nn::lstm(BC::host_tag(), 1024, 512),
BC::nn::lstm(BC::host_tag(), 512, 216),
BC::nn::feedforward(BC::host_tag(), 216, 192),
BC::nn::logistic(BC::host_tag(), 192),
BC::nn::logging_output_layer(BC::host_tag(), 192, BC::nn::RMSE).skip_every(100)
);
}
using network_type = decltype(make_lstm_network());

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants