NeuralNetwork doesn't setBias after load()
Brought to you by:
michaelgollin,
ralfberger
When the value function from a neural network is loaded
from file, the layers' bias is never set. This causes
the network to not work properly after being loaded.
setBias() should probably be called as the last
instruction of the NeuralNetwork( const std::string&
fileName ) constructor, or at the end of the
NeuralNetwork::load() function.
Logged In: YES
user_id=535772
Will be fixed in the next version. Until then you can use
setBias() manually after loading the valuefunction as a
workaround.