variance_reduced_neural_networks icon indicating copy to clipboard operation
variance_reduced_neural_networks copied to clipboard

Implementation of SVRG and SAGA optimization algorithms for deep learning topics.

Results 2 variance_reduced_neural_networks issues
Sort by recently updated
recently updated
newest added

Where exactly is the equation (3) in the main paper implemented in the SAGA algorithm?

self.partial_grad(inputs, labels, loss_function).data[0] causes error. So I changed it to self.partial_grad(inputs, labels, loss_function).item()