| 1845 | } |
| 1846 | |
| 1847 | void Training::resetNeuronStatistics() |
| 1848 | { |
| 1849 | for (vector<Element>::iterator it = elements.begin(); |
| 1850 | it != elements.end(); ++it) |
| 1851 | { |
| 1852 | for (auto& nn : it->neuralNetworks) nn.second.resetNeuronStatistics(); |
| 1853 | } |
| 1854 | return; |
| 1855 | } |
| 1856 | |
| 1857 | void Training::writeUpdaterStatus(bool append, |
| 1858 | string const fileNameFormat) const |
nothing calls this directly
no outgoing calls
no test coverage detected