| 18 | } |
| 19 | |
| 20 | void Pruner::prune(NeuralNet *network, Trainer *networkTrainer) { |
| 21 | prune(network, networkTrainer->getInitialWeights(), networkTrainer->getWeightChanges(), networkTrainer->getGradients()); |
| 22 | } |
| 23 | |
| 24 | void Pruner::prune(NeuralNet *network, const std::vector< std::vector< std::vector<double> > > &initialWeights, const std::vector< std::vector< std::vector< std::vector<double> > > > &weightChanges, const std::vector< std::vector< std::vector< std::vector<double> > > > &gradients) { |
| 25 |
no test coverage detected