I'm implementing an Artificial Neural Network, which requires me to first run the simulation, just to calculate my weights. Referred to as the Training step. Only then can I run the actual simulation, using the previously calculated weights.
This is causing me some trouble, as I can't programmatically re-run the simulation, after I loop through it once.
So my questions is: Is there a way to re-run a simulation after it finishes running, while preserving values for future simulations?
Thanks
Kanhar