paper-with-me

홈 › Papers

LEARNING TO SHARE: SIMULTANEOUS PARAMETER TYING AND SPARSIFICATION IN DEEP LEARNING

2018-01-01 · ICLR 2018 1 · Dejiao Zhang, Haozhu Wang, Mario Figueiredo, Laura Balzano

Deep neural networks (DNNs) usually contain millions, maybe billions, of parameters/weights, making both storage and computation very expensive. This has motivated a large body of work to reduce the complexity of the neural network by using sparsity-inducing regularizers. Another well-known approach for controlling the complexity of DNNs is parameter sharing/tying, where certain sets of weights are forced to share a common value. Some forms of weight sharing are hard-wired to express certain in- variances, with a notable example being the shift-invariance of convolutional layers. However, there may be other groups of weights that may be tied together during the learning process, thus further re- ducing the complexity of the network. In this paper, we adopt a recently proposed sparsity-inducing regularizer, named GrOWL (group ordered weighted l1), which encourages sparsity and, simulta- neously, learns which groups of parameters should share a common value. GrOWL has been proven effective in linear regression, being able to identify and cope with strongly correlated covariates. Unlike standard sparsity-inducing regularizers (e.g., l1 a.k.a. Lasso), GrOWL not only eliminates unimportant neurons by setting all the corresponding weights to zero, but also explicitly identifies strongly correlated neurons by tying the corresponding weights to a common value. This ability of GrOWL motivates the following two-stage procedure: (i) use GrOWL regularization in the training process to simultaneously identify significant neurons and groups of parameter that should be tied together; (ii) retrain the network, enforcing the structure that was unveiled in the previous phase, i.e., keeping only the significant neurons and enforcing the learned tying structure. We evaluate the proposed approach on several benchmark datasets, showing that it can dramatically compress the network with slight or even no loss on generalization performance.

📄 PDF Abstract BibTeX

Code (1)

Dejiao2018/GrOWL 공식 구현 tf

Similar Papers 제목 키워드 기반

Beyond Weight Tying: Learning Joint Input-Output Embeddings for Neural Machine Translation

2018-08-31 · WS 2018 10 · Nikolaos Pappas, Lesly Miculicich Werlen, James Henderson

Tying the weights of the target word embeddings with the target word classifiers of neural machine translation models leads to faster training and often to better translation quality. Given the success of this parameter …

DecoderMachine TranslationTranslationWord Embeddings

Semantic-Guided Dynamic Sparsification for Pre-Trained Model-based Class-Incremental Learning

2026-01-29 · Ruiqi Liu, Boyu Diao, Zijia An, Runjie Shao 외 arxiv

Class-Incremental Learning (CIL) requires a model to continually learn new classes without forgetting old ones. A common and efficient solution freezes a pre-trained model and employs lightweight adapters, whose paramete…

class-incremental learning

Tying the Loop -- Tied Expert Layers in Mixture-of-Experts Language Models

2026-06-15 · Martin Jaggi arxiv

Mixture-of-Experts (MoE) architectures efficiently scale Large Language Models (LLMs) by activating only a small fraction of their experts per token, yet the full parameter count - dominated by the expert parameters - mu…

Weight Tying Biases Token Embeddings Towards the Output Space

2026-03-27 · Antonio Lopardo, Avyukth Harish, Catherine Arnett, Akshat Gupta arxiv

Weight tying, i.e. sharing parameters between input and output embedding matrices, is common practice in language model design, yet its impact on the learned embedding space remains poorly understood. In this paper, we s…

How to represent a word and predict it, too: Improving tied architectures for language modelling

2018-10-01 · EMNLP 2018 10 · Kristina Gulordava, Laura Aina, Gemma Boleda

Recent state-of-the-art neural language models share the representations of words given by the input and output mappings. We propose a simple modification to these architectures that decouples the hidden state from the w…

Language ModellingPredictionRepresentation LearningWord Embeddings