Skip to content
Snippets Groups Projects
Commit e0bf4ab7 authored by David Lanzendörfer's avatar David Lanzendörfer
Browse files

Fix issue with arrays

parent c1f77780
No related branches found
No related tags found
Loading
......@@ -135,5 +135,5 @@ def load_weights_and_biases(server,weights_and_biases):
write_value_multi_array(server, "DECODER", "WEIGHTS", weights_and_biases['decoder']['weights'])
write_value_multi_array(server, "DECODER", "RWEIGHTS", weights_and_biases['decoder']['rnn_weights'])
write_value_array(server, "HIDDEN", "BIAS", weights_and_biases['hidden']['biases'])
write_value_array(server, "HIDDEN", "WEIGHTS", weights_and_biases['hidden']['weights'])
write_value_array(server, "HIDDEN", "RWEIGHTS", weights_and_biases['hidden']['rnn_weights'])
write_value_multi_array(server, "HIDDEN", "WEIGHTS", weights_and_biases['hidden']['weights'])
write_value_multi_array(server, "HIDDEN", "RWEIGHTS", weights_and_biases['hidden']['rnn_weights'])
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment