LGNEMLNov 17, 2020

ZORB: A Derivative-Free Backpropagation Algorithm for Neural Networks

arXiv:2011.08895v18 citations
AI Analysis

This work addresses the problem of slow training times for deep neural networks, offering a potentially much faster alternative to gradient descent for practitioners.

This paper introduces Zeroth-Order Relaxed Backpropagation (ZORB), a derivative-free algorithm for training neural networks. ZORB uses the pseudoinverse of targets for backpropagation, achieving a 300x speedup over Adam on MNIST with comparable error rates, without hyperparameter tuning.

Gradient descent and backpropagation have enabled neural networks to achieve remarkable results in many real-world applications. Despite ongoing success, training a neural network with gradient descent can be a slow and strenuous affair. We present a simple yet faster training algorithm called Zeroth-Order Relaxed Backpropagation (ZORB). Instead of calculating gradients, ZORB uses the pseudoinverse of targets to backpropagate information. ZORB is designed to reduce the time required to train deep neural networks without penalizing performance. To illustrate the speed up, we trained a feed-forward neural network with 11 layers on MNIST and observed that ZORB converged 300 times faster than Adam while achieving a comparable error rate, without any hyperparameter tuning. We also broaden the scope of ZORB to convolutional neural networks, and apply it to subsamples of the CIFAR-10 dataset. Experiments on standard classification and regression benchmarks demonstrate ZORB's advantage over traditional backpropagation with Gradient Descent.

Code Implementations2 repos
Foundations

The foundational work for this paper's niche, ranked by how specifically the neighbourhood builds on it — not by global fame.

Your Notes