LGCVNEJan 23, 2023

Efficient Training Under Limited Resources

arXiv:2301.09264v11 citationsh-index: 27Has Code
AI Analysis

This work addresses efficiency challenges for practitioners with constrained computational resources, but it is incremental as it builds on existing methods like NAS and HPO.

The paper tackled the problem of training deep neural networks efficiently under limited resources, such as time and data, by combining neural architecture search, hyperparameter optimization, and data augmentation, achieving 86.0% accuracy on a tiny subset of Mini-ImageNet in the ICLR 2021 HAET Challenge.

Training time budget and size of the dataset are among the factors affecting the performance of a Deep Neural Network (DNN). This paper shows that Neural Architecture Search (NAS), Hyper Parameters Optimization (HPO), and Data Augmentation help DNNs perform much better while these two factors are limited. However, searching for an optimal architecture and the best hyperparameter values besides a good combination of data augmentation techniques under low resources requires many experiments. We present our approach to achieving such a goal in three steps: reducing training epoch time by compressing the model while maintaining the performance compared to the original model, preventing model overfitting when the dataset is small, and performing the hyperparameter tuning. We used NOMAD, which is a blackbox optimization software based on a derivative-free algorithm to do NAS and HPO. Our work achieved an accuracy of 86.0 % on a tiny subset of Mini-ImageNet at the ICLR 2021 Hardware Aware Efficient Training (HAET) Challenge and won second place in the competition. The competition results can be found at haet2021.github.io/challenge and our source code can be found at github.com/DouniaLakhmiri/ICLR\_HAET2021.

Code Implementations1 repo
Foundations

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

Your Notes