I'd like to ensure my understanding is correct, as the documentation is a little unclear.
My real goal is to remove any previous state that may be retained in the network from previous evaluations / forward passes.
This ensures there is no chance of information leakage between successive trials (fitness measurements).
What does
.reset()
method do onNeat
struct?I'd like to ensure my understanding is correct, as the documentation is a little unclear.
My real goal is to remove any previous state that may be retained in the network from previous evaluations / forward passes. This ensures there is no chance of information leakage between successive trials (fitness measurements).
Will the
.reset()
method do this?Thank you!