Nandeesh1bytenand.hashnode.dev·Apr 17, 2023Compression of deep neural networks: P-1Since the inception of the Deep Neural Network, their complexity has been increasing. For a small comparison, look at the table below [1]. ArchitectureModel parameters (in Millions)Alex-Net60Basic-L2440 Alex-Net was introduced in 2012. The current m...54 readsML
Jordan Hsujordanhsu.dev·Mar 10, 2020The Lottery Ticket Hypothesis: Finding Sparse, Trainable Neural Networkspaper link: https://arxiv.org/abs/1803.03635 Published in ICLR 2019 前景提要 樂透彩券的特性為一堆彩券中,真正中獎的只有那幾張,本文藉由樂透彩券來比喻神經網路的架構,真正對整體預測結果有關鍵影響的sub-network(中獎彩券)可能只有一小部分,其他的部分(沒中獎的)就可以prune掉,來加速模型的訓練時間和降低複雜度 本文方法 文章中對彩票假設的正式定義為:一個隨機初始化的密集神經網絡包含一個初始化的子網絡,在單獨訓練時,最...Paper ReadingAI