FFCL: Forward-Forward Net with Cortical Loops, Training and Inference on Edge Without Backpropagation
Ali Karkehabadi, Houman Homayoun, Avesta Sasan
TL;DR
The paper tackles memory and compute bottlenecks of backpropagation for edge deployment by building on Forward-Forward Learning (FFL). It introduces two variants: Forward-Forward Direct Labeling (FFDL), which feeds labels directly to every layer, and Forward-Forward Cortical Loops (FFCL), which adds bidirectional, cortical-like feedback via unrolled networks with weight sharing. Across MNIST, Fashion-MNIST, and CIFAR-10, these methods achieve higher per-layer and final accuracies while substantially reducing inference FLOPs relative to FFL. The results indicate strong potential for memory-efficient, on-device learning with minimal activation-storing requirements, enabling practical edge deployment of forward-forward schemes.
Abstract
The Forward-Forward Learning (FFL) algorithm is a recently proposed solution for training neural networks without needing memory-intensive backpropagation. During training, labels accompany input data, classifying them as positive or negative inputs. Each layer learns its response to these inputs independently. In this study, we enhance the FFL with the following contributions: 1) We optimize label processing by segregating label and feature forwarding between layers, enhancing learning performance. 2) By revising label integration, we enhance the inference process, reduce computational complexity, and improve performance. 3) We introduce feedback loops akin to cortical loops in the brain, where information cycles through and returns to earlier neurons, enabling layers to combine complex features from previous layers with lower-level features, enhancing learning efficiency.
