CharlesHEaster / NeuralNet

My attempt to create a framework to create and train neural networks through fitness evolution.
0 stars 0 forks source link

Trial log #13

Closed CharlesHEaster closed 3 years ago

CharlesHEaster commented 3 years ago

Log to facilitate restarting an unfinished trial if the trial is halted intentionally or unintentionally.

CharlesHEaster commented 3 years ago

I have almost accomplished this with the working file. It needs inputHistory printed for each inputHistoryNode. Also, remove the inputHistory part if not inputHistory type InputNode. Lastly find out why scores are printed as 0.

CharlesHEaster commented 3 years ago

and output legend

CharlesHEaster commented 3 years ago

It needs inputHistory printed for each inputHistoryNode.

No it doesn't. The save point is between each cycle. So the histories would be cleared and not important.

CharlesHEaster commented 3 years ago

Scores were 0 because netowrks weren't run yet. Needed to add theBest to the save file. All sorted, now to add the Trial.load(Path path) and Network.load(String str) functions. It's a big one, which is new to me, but it's important so wish me luck