π€ AI Summary
To address the high computational cost, substantial memory footprint, and poor modularity of backpropagation (BP), this paper proposes a scalable Forward-Forward (FF) training framework. Methodologically, it introduces three key innovations: (1) the first adaptation of FF to modern convolutional architectures (e.g., MobileNetV3, ResNet18), featuring a convolutional-feature-space-specific loss function; (2) a hybrid βin-block backpropagation + inter-block FFβ paradigm that balances training stability and modular decomposition; and (3) integration of block-wise training, few-shot fine-tuning, and transfer learning strategies. Experiments on standard image classification benchmarks demonstrate that pure FF achieves accuracy comparable to BP; the hybrid paradigm surpasses the BP baseline in accuracy on ResNet18 while maintaining comparable training speed; and the approach exhibitsζΎθ robustness and adaptability under data-scarce and cross-domain transfer scenarios.
π Abstract
We propose a scalable Forward-Forward (FF) algorithm that eliminates the need for backpropagation by training each layer separately. Unlike backpropagation, FF avoids backward gradients and can be more modular and memory efficient, making it appealing for large networks. We extend FF to modern convolutional architectures, such as MobileNetV3 and ResNet18, by introducing a new way to compute losses for convolutional layers. Experiments show that our method achieves performance comparable to standard backpropagation. Furthermore, when we divide the network into blocks, such as the residual blocks in ResNet, and apply backpropagation only within each block, but not across blocks, our hybrid design tends to outperform backpropagation baselines while maintaining a similar training speed. Finally, we present experiments on small datasets and transfer learning that confirm the adaptability of our method.