2019-06-01から1ヶ月間の記事一覧

Dynamic Distribution Pruning for Efficient Network Architecture Search (2019)

分類 Neural Architecture Search 特徴 ・構造探索の圧倒的な高速性。 アルゴリズム 探索空間を動的にpruningする。 探索空間はDARTSと同じで、全結合DAGによるnormal/reduction cellの組み合わせ。 EMアルゴリズムライクにSGDで探索。 エッジを表すone-hot …

EfficientNet: Rethinking Model Scaling for Convolutional Neural Networks (2019)

分類 Model Scaling 特徴 ・精度低下を最小に抑える構造のパラメータ(width, depth, resolution)調整のバランシング(Compound Scaling)。 ネットワーク構造 MnasNet[1]で構築されたベースネットは以下。 [1]Tan, M., Chen, B., Pang, R., Vasudevan, V.,…

Learning Fully Dense Neural Networks for Image Semantic Segmentation (2019)

分類 Sematic Segmentation 特徴 ・DenseNetの構造を応用。 ・adaptive aggregation(入力の1/8の解像度にそろえてconcat) ネットワーク構造 adaptive aggregationの模式図 性能 ・PASCAL VOC 2012のmIoUで、DeepLabv3+を超える。 ・パラメータ数は113.1M。…