iconLogo
Published:2025/12/3 19:30:34

タイトル & 超要約:整数オンリーDNN爆誕!メモリも電力も節約しちゃうぞ☆

I. 研究の概要

  1. 研究の目的

    • DNN(Deep Neural Network)を、整数計算だけで動かす「NITRO-D」を開発したよ!
    • 浮動小数点(FP)計算だとメモリ食うし、組み込みデバイス(スマホとか)じゃ使えない問題があったの。
    • NITRO-DはFP計算ゼロ!メモリ減、電力減、時間短縮を実現しちゃう💖
    • IoTとかエッジコンピューティング(色んなデバイス)でAIが使えるようになるかもね!
  2. 研究の背景

    • DNNを賢くするには、計算とメモリを節約するのが大事!
    • モデルのサイズを小さくして計算速くする「量子化」って技術があるけど、学習はFP計算に頼ってたんだよね。
    • IoTデバイスとかFP計算できない場所だと、整数計算だけで動かすのが必須なの!
    • 今まで、整数計算だけのはMLP(シンプルな構造)しかなくて、複雑なCNN(画像とかに強い)には向かなかった😭
    • この問題を解決して、CNNを整数計算だけで動かすのが今回の研究だよ!

II. 研究の詳細

続きは「らくらく論文」アプリで

NITRO-D: Native Integer-only Training of Deep Convolutional Neural Networks

Alberto Pirillo / Luca Colombo / Manuel Roveri

Quantization is a pivotal technique for managing the growing computational and memory demands of Deep Neural Networks (DNNs). By reducing the number of bits used to represent weights and activations (typically from 32-bit Floating-Point (FP) to 16-bit or 8-bit integers), quantization reduces memory footprint, energy consumption, and execution time of DNNs. However, most existing methods typically target DNN inference, while training still relies on FP operations, limiting applicability in environments where FP arithmetic is unavailable. To date, only one prior work has addressed integer-only training, and only for Multi-Layer Perceptron (MLP) architectures. This paper introduces NITRO-D, a novel framework for training deep integer-only Convolutional Neural Networks (CNNs) that operate entirely in the integer domain for both training and inference. NITRO-D enables training of integer CNNs without requiring a separate quantization scheme. Specifically, it introduces a novel architecture that integrates multiple local-loss blocks, which include the proposed NITRO-Scaling layer and NITRO-ReLU activation function. The proposed framework also features a novel learning algorithm that employs local error signals and leverages IntegerSGD, an optimizer specifically designed for integer computations. NITRO-D is implemented as an open-source Python library. Extensive evaluations on state-of-the-art image recognition datasets demonstrate its effectiveness. For integer-only MLPs, NITRO-D improves test accuracy by up to +5.96% over the state-of-the-art. It also successfully trains integer-only CNNs, reducing memory requirements and energy consumption by up to 76.14% and 32.42%, respectively, compared to the traditional FP backpropagation algorithm.

cs / cs.LG / cs.AI / cs.CV / cs.NE