モノのインターネット(IoT)の開発により、ネットワークの端にデータがますます現れています。ネットワークのエッジでタスクを処理することで、個人のプライバシーリークやサーバーの過負荷の問題を効果的に解決できます。その結果、それは大きな注目を集め、実質的な進歩を遂げました。この進歩には、MobileNetやShuffleNetなどの効率的な畳み込みニューラルネットワーク(CNN)モデルが含まれます。ただし、これらのネットワークはすべて共通のネットワークモデルとして表示され、通常、適用時に複数のターゲットを識別する必要があります。そのため、入力のサイズは非常に大きくなります。特定のケースでは、ターゲットのみを分類する必要があります。したがって、計算を削減するために小さな入力ネットワークを設計できます。さらに、他の効率的なニューラルネットワークモデルは、主に携帯電話向けに設計されています。携帯電話のメモリアクセスは高速であるため、グループコンボリューションを使用できます。特に、このペーパーでは、最近広く使用されているグループコンボリューションは、メモリアクセスが非常に遅いデバイスには適していません。したがって、このホワイトペーパーのEdgeCNNは、メモリアクセス速度とコンピューティングリソースが低いエッジコンピューティングデバイス向けに設計されています。 EdgeCNNは、Raspberry Pi 3B +で1.37フレーム/秒の速度で正常に実行されました。 FER-2013およびRAF-DBデータセットの表情分類の精度は、Raspberry Pi 3B +と互換性のある他の提案されたネットワークよりも優れています。 EdgeCNNの実装は、https://github.com/yangshunzhi1994/EdgeCNNで入手できます。
With the development of Internet of Things (IoT), data is increasingly appearing on the edge of the network. Processing tasks on the edge of the network can effectively solve the problems of personal privacy leaks and server overload. As a result, it has attracted a great deal of attention and made substantial progress. This progress includes efficient convolutional neural network (CNN) models such as MobileNet and ShuffleNet. However, all of these networks appear as a common network model and they usually need to identify multiple targets when applied. So the size of the input is very large. In some specific cases, only the target needs to be classified. Therefore, a small input network can be designed to reduce computation. In addition, other efficient neural network models are primarily designed for mobile phones. Mobile phones have faster memory access, which allows them to use group convolution. In particular, this paper finds that the recently widely used group convolution is not suitable for devices with very slow memory access. Therefore, the EdgeCNN of this paper is designed for edge computing devices with low memory access speed and low computing resources. EdgeCNN has been run successfully on the Raspberry Pi 3B+ at a speed of 1.37 frames per second. The accuracy of facial expression classification for the FER-2013 and RAF-DB datasets outperforms other proposed networks that are compatible with the Raspberry Pi 3B+. The implementation of EdgeCNN is available at https://github.com/yangshunzhi1994/EdgeCNN