<?xml version="1.0" encoding="utf-8"?><feed xmlns="http://www.w3.org/2005/Atom" ><generator uri="https://jekyllrb.com/" version="3.10.0">Jekyll</generator><link href="https://avivnavon.github.io/feed.xml" rel="self" type="application/atom+xml" /><link href="https://avivnavon.github.io/" rel="alternate" type="text/html" /><updated>2026-01-14T13:18:59+00:00</updated><id>https://avivnavon.github.io/feed.xml</id><title type="html">Aviv Navon</title><subtitle>Aviv Navon. Deep and Machine Learning.</subtitle><author><name>Aviv Navon</name></author><entry><title type="html">Parameter Sharing in Deep Learning</title><link href="https://avivnavon.github.io/blog/parameter-sharing-in-deep-learning/" rel="alternate" type="text/html" title="Parameter Sharing in Deep Learning" /><published>2019-12-04T00:00:00+00:00</published><updated>2019-12-04T00:00:00+00:00</updated><id>https://avivnavon.github.io/blog/parameter-sharing-in-deep-learning</id><content type="html" xml:base="https://avivnavon.github.io/blog/parameter-sharing-in-deep-learning/"><![CDATA[<!-- MathJax -->
<script type="text/javascript" async="" src="https://cdnjs.cloudflare.com/ajax/libs/mathjax/2.7.5/MathJax.js?config=TeX-MML-AM_CHTML">
</script>

<p>In a <a href="2019-05-03-the-power-of-mtl.md">previous post</a> I have talked about multitask learning (MTL) and demonstrated the power of MTL compared to Single-Task Learning (STL) approaches. In this post, I will stay under the general topic of MTL, and present a different approach for MTL using parameter sharing in neural networks. Also, I will provide the relevant code for the main models (in PyTorch). Lastly, I will show an interesting use of MTL, to achieve high accuracy in tasks for which data is scarce.</p>

<h3 id="mtl-for-deep-learning">MTL for Deep Learning</h3>

<p>The two dominant approaches for performing MTL with neural networks are hard and soft parameter sharing, in which we seek to learn shared or “similar” hidden representation(s) for the different tasks. In order to impose these similarities between tasks, the model is simultaneously learned for all tasks and with some constraint or regularization on the relationship between related parameters.</p>

<p>There are some more complex methods for MTL with neural networks (see e.g. [<a href="#[1]">1</a>], [<a href="#[2]">2</a>]), which I won’t cover here. More examples can be found in [<a href="#[3]">3</a>], [<a href="#[4]">4</a>].</p>

<h4 id="hard-parameter-sharing">Hard Parameter Sharing</h4>

<p>Perhaps the most widely used approach for MTL with NNs is <em>hard parameter sharing</em> ([<a href="#[5]">5</a>]), in which we learn a common space representation for all tasks (i.e. completely share weights/parameters between tasks). This shared feature space is used to model the different tasks, usually with additional, task-specific layers (that are learned independently for each task). Hard parameter sharing acts as regularization and reduces the risk of overfitting, as the model learns a representation that will (hopefully) generalize well for all tasks.</p>

<p align="center">
<img src="/assets/sharing-is-caring/mtl_hard.png" />
</p>
<p style="text-align: center;"> 
	<font color="#696b70" size="4">
		<i>Example of hard parameter sharing architecture. Source: <a href="https://ruder.io/multi-task/index.html#softparametersharing">An Overview of Multi-Task Learning in Deep Neural Networks</a></i>.
	</font>
</p>

<p>Recently, Andrej Karpathy from Tesla <a href="https://slideslive.com/38917690/multitask-learning-in-the-wilderness">gave a talk</a> about how multitask learning (with hard parameter sharing) is used for building Tesla’s Autopilot. He also reviewed some of the fundamental challenges and open questions in MTL.
In natural language processing (NLP), MTL was utilized to train a single model without any task-specific modules or parameters, for solving ten NLP tasks ([<a href="#[6]">6</a>]).</p>

<p>A simple implementation of hard parameter sharing with feed-forward NN is given below. You can control the number of layers to share, and the number of task-specific layers.</p>

<!-- 
<details><summary>Show/hide code</summary>
<p>

<script src="https://gist.github.com/AvivNavon/cf2071ffaadfb11dded915f7f4bd638e.js"></script>

</p>
</details>
 -->

<p><strong>Click on code to expand/collapse</strong></p>

<style>
.expander {
	-webkit-mask-image: linear-gradient(to bottom, black 20%, transparent 100%);
	mask-image: linear-gradient(to bottom, black 20%, transparent 100%);
    height: 300px;
    overflow: hidden;
    cursor: pointer;
    overflow: ellipsis;
}
</style>

<div class="expander">
		<script src="https://gist.github.com/AvivNavon/cf2071ffaadfb11dded915f7f4bd638e.js"></script>
</div>

<script>
window.addEventListener("load", function(){
	$(".expander").click(function() {
	    if ($(this).hasClass("expander")) {
	        $(this).removeClass("expander");
	    }
	    else {
	         $(this).addClass("expander");
	    }
	});
});

</script>

<h4 id="soft-parameter-sharing">Soft Parameter Sharing</h4>

<p>Instead of sharing exactly the same value of the parameters, in <em>soft parameter sharing</em>, we add a constraint to encourage similarities among related parameters. More specifically, we learn a model for each task and penalize the distance between the different models’ parameters. Unlike hard sharing, this approach gives more flexibility for the tasks by only loosely coupling the shared space representations.</p>

<p align="center">
<img src="/assets/sharing-is-caring/mtl_soft.png" />
</p>
<p style="text-align: center;"> 
	<font color="#696b70" size="4">
		<i>Example of soft parameter sharing architecture. Source: <a href="https://ruder.io/multi-task/index.html#softparametersharing">An Overview of Multi-Task Learning in Deep Neural Networks</a></i>.
	</font>
</p>

<p>Assume we are interested in learning 2 tasks, \(A\) and \(B\), and denote the \(i\)th layer parameters for task \(j\) by \(W_i^{(j)}\). One possible approach to impose similarities between corresponding parameters is to augment our loss function with an additional loss term,</p>

\[\mathcal{L}=\ell + \sum_{S(L)} \lambda_i \Vert W_i^{(A)}-W_i^{(B)}\Vert_F^{2}\]

<p>where \(\ell\) is the original loss function for both tasks (e.g. sum of losses), and \(\Vert\cdot\Vert_F^{2}\) is the squared Frobenius norm. [<a href="#[7]">7</a>] proposed a similar approach for cross-lingual parameter sharing in NLP.</p>

<p>Another approach is to penalize the nuclear or trace norm of the tensor obtained by stacking together \(W_i^{A}\) and \(W_i^{B}\). The traced norm is defined as the sum of singular values \(\Vert W \Vert = \sum_i \sigma_i\). This penalty was originally proposed in the context of linear models (see e.g. [<a href="#[8]">8</a>]), to replace rank constraints in Reduced Rank Regression. This type of penalty encourages sparsity in the factor space and at the same time gives shrinkage coefficient estimates and thus conducts dimension reduction and estimation simultaneously.</p>

<p>An implementation of soft parameter sharing with \(L_2\) regularization is given below.</p>

<!-- <details><summary>Show/hide code</summary>
<p>

<script src="https://gist.github.com/AvivNavon/fd9a98448bbf50352eaf8583fd36ec78.js"></script>

</p>
</details> -->

<p><strong>Click on code to expand/collapse</strong></p>

<div class="expander">
	<script src="https://gist.github.com/AvivNavon/fd9a98448bbf50352eaf8583fd36ec78.js"></script>
</div>

<h2 id="mtl-for-handling-scarce-data">MTL for Handling Scarce Data</h2>

<p>As promised, I will show how MTL can be used in cases where data is scarce for some of the tasks, but available for others. Consider a time series of the daily taxi rides in NYC for two vendors. Assume we have about one year and ten months of training data for vendor \(A\), but only ~3 months of data for vendor \(B\). In this case, it is impossible to model the yearly seasonality by using an STL approach for modeling task \(B\). Instead, we will use MTL with hard sharing to model both tasks, hence making it possible to learn yearly and holiday effects for task \(B\) using ~3 months of data only (!). We mask the loss associated with missing observations (from task \(B\)), to explicitly exclude unobserved values from all calculations and weights updates. The results of forecasting 90 days into the “future” are shown in the figure below (and are mind-blowing 🤯),</p>

<p align="center">
<img src="/assets/sharing-is-caring/ts-scarce.png" />
</p>
<p style="text-align: center;"> 
	<font color="#696b70" size="4">
		<i>Overcoming scarce data using multitask learning.</i>
	</font>
</p>

<p>To emphasize how awesome this is, here’s the result of fitting Facebook’s <a href="https://github.com/facebook/prophet">Prophet</a>, a single task learning method, to the 3 months of training data for task \(B\):</p>

<p align="center">
<img src="/assets/sharing-is-caring/ts-vs-prophet.png" />
</p>
<p style="text-align: center;"> 
	<font color="#696b70" size="4">
		<i>Multitask learning vs. Prophet (STL).</i>
	</font>
</p>

<p>Nice!</p>

<h2 id="conclusion">Conclusion</h2>

<p>In this post, I have introduced two methods of MTL for deep learning, hard and soft parameter sharing. In addition, I have shown how MTL can be utilized to boost performance in cases where data is scarce for some of the tasks.</p>

<p>I hope you have found this post useful. For any questions, comments or corrections, please leave a comment below.</p>

<hr />

<h2 id="references">References</h2>

<p><a name="[1]"></a>[1] Long, M., &amp; Wang, J. (2015). <a href="http://arxiv.org/abs/1506.02117">Learning Multiple Tasks with Deep Relationship Networks</a>. arXiv Preprint arXiv:1506.02117.<br />
<a name="[2]"></a>[2] Misra, I., Shrivastava, A., Gupta, A., &amp; Hebert, M. (2016). <a href="https://doi.org/10.1109/CVPR.2016.433">Cross-stitch Networks for Multi-task Learning</a>. In Proceedings of the IEEE Conference on Computer Vision and Pattern Recognition.<br />
<a name="[3]"></a>[3] Zhang, Yu, and Qiang Yang. <a href="https://arxiv.org/pdf/1707.08114.pdf">A survey on multi-task learning</a>. arXiv preprint arXiv:1707.08114 (2017).<br />
<a name="[4]"></a>[4] Ruder, S., 2017. <a href="https://arxiv.org/abs/1706.05098">An overview of multi-task learning in deep neural networks</a>. arXiv preprint arXiv:1706.05098.<br />
<a name="[5]"></a>[5] Caruana, R. Multitask learning: A knowledge-based source of inductive bias. Proceedings of the Tenth International Conference on Machine Learning. 1993<br />
<a name="[6]"></a>[6] McCann, B., Keskar, N.S., Xiong, C. and Socher, R., 2018. <a href="https://arxiv.org/abs/1806.08730">The natural language decathlon: Multitask learning as question answering.</a> arXiv preprint arXiv:1806.08730.<br />
<a name="[7]"></a>[7] Duong, L., Cohn, T., Bird, S. and Cook, P., 2015, July. <a href="https://www.aclweb.org/anthology/P15-2139.pdf">Low resource dependency parsing: Cross-lingual parameter sharing in a neural network parser</a>. In Proceedings of the 53rd Annual Meeting of the Association for Computational Linguistics and the 7th International Joint Conference on Natural Language Processing (Volume 2: Short Papers) (pp. 845-850).<br />
<a name="[8]"></a>[8] Yuan, Ming, Ali Ekici, Zhaosong Lu, and Renato Monteiro (2007). <a href="https://rss.onlinelibrary.wiley.com/doi/full/10.1111/j.1467-9868.2007.00591.x">Dimension reduction and coefficient estimation in
multivariate linear regression</a>. In: Journal of the Royal Statistical Society: Series B (Statistical Methodology) 69.3, pp. 329–346.<br /></p>]]></content><author><name>Aviv Navon</name></author><category term="blog" /><category term="machine learning" /><category term="multitask learning" /><category term="deep learning" /><category term="pytorch" /><summary type="html"><![CDATA[]]></summary><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="https://avivnavon.github.io/assets/sharing-is-caring/opt_3.jpg" /><media:content medium="image" url="https://avivnavon.github.io/assets/sharing-is-caring/opt_3.jpg" xmlns:media="http://search.yahoo.com/mrss/" /></entry><entry><title type="html">The Power of Multitask Learning</title><link href="https://avivnavon.github.io/blog/the-power-of-mtl/" rel="alternate" type="text/html" title="The Power of Multitask Learning" /><published>2019-05-03T00:00:00+00:00</published><updated>2019-05-03T00:00:00+00:00</updated><id>https://avivnavon.github.io/blog/the-power-of-mtl</id><content type="html" xml:base="https://avivnavon.github.io/blog/the-power-of-mtl/"><![CDATA[<!-- MathJax -->
<script type="text/javascript" async="" src="https://cdnjs.cloudflare.com/ajax/libs/mathjax/2.7.5/MathJax.js?config=TeX-MML-AM_CHTML">
</script>

<p>One of the fundamentals of the human learning process is that multiple tasks are learned in parallel, and not as independent tasks. Throughout this process, knowledge and experiences acquired in one task, are shared and transferred to the others. This general idea has been adopted in machine learning (ML) as well and has been shown to be beneficial in terms of learning efficiency and prediction accuracy. This subfield of ML is referred to as Multi-Task Learning (MTL).</p>

<p>In this post we will familiarize ourselves with the general concept of MTL and demonstrate the power of MTL compared to Single-Task Learning (STL) approaches, over the problem of multidimensional time-series forecasting.</p>

<h2 id="motivation">Motivation</h2>

<p>Multitask learning is an approach in which multiple learning tasks are solved simultaneously, in order to improve the generalization performance of the single tasks, by leveraging the information contained in the training signals of other tasks. In other words, MTL aims to improve the accuracy of task-specific models, by utilizing similarities and relations between the different problems.</p>

<p>In some cases, our main goal is indeed to optimize the model’s performance over a set of tasks, however, typically in ML, we are only interested in optimizing for a single task (e.g. STL regression/classification frameworks). Even if that is the case, it has been shown that adding additional learning problems (often referred to as auxiliary tasks), will allow us to improve upon our main (original) task. In the latter, MTL can be viewed as a regularization method, in which regularization is induced by optimizing the model’s performance over all tasks.</p>

<h2 id="background">Background</h2>

<p>Many approaches have been developed in order to learn multiple tasks simultaneously (see e.g. <a href="https://arxiv.org/pdf/1707.08114.pdf">[1]</a>, <a href="https://arxiv.org/abs/1706.05098">[2]</a>). Perhaps the most common approaches nowadays use (deep) neural networks (NN), in which information is transferred across tasks through hard/soft parameter sharing. The more “classical” ML approaches use linear models and kernel methods (and sometimes involves Bayesian approaches). In general, we can divide these approaches into two classes:</p>

<ul>
  <li><strong><em>Feature learning approaches</em></strong>, which involve either <em>feature selection</em> across tasks through norm regularization, or <em>feature transformation</em> (e.g. parameter sharing in NNs).</li>
  <li><strong><em>Task relation learning approaches</em></strong>, in which task relations are used to enforce similarities between related tasks. These relations are assumed to be known a priori, or learned directly from the data.</li>
</ul>

<p>To keep things simple, we are going to focus on a simple (and commonly used) linear approach, which induces cross-task feature selection (i.e. feature learning approache).</p>

<h2 id="problem-formulation">Problem Formulation</h2>

<p>In the general case, each task might consist of its own training data, however, in many cases, the same set of explanatory variables, \(X\in\mathbb{R}^{n\times p}\), is used to model the different target variables, \(\textbf{y}_i \in \mathbb{R}^n\) for \(i=1,...,q\). For example, an on-demand transportation company may attempt forecasting demand and supply in different time frames and geographic locations. The general task of modeling multiple responses using a joint set of covariates can be expressed using multivariate regression (MR), or multiple response regression — a generalization of the classical regression model to regressing \(q &gt; 1\) responses on \(p\) predictors. The multivariate regression model is given by,</p>

\[Y=XB+E\]

<p>where \(Y\in\mathbb{R}^{n\times q}\) denote the response matrix, \(B\) is a \(p \times q\) regression coefficient matrix, and \(E\) is an \(n \times q\) error matrix. A naive approach to the MR problem is to apply one of the STL methods, i.e. lasso, ridge, etc. to each of the \(q\) tasks independently. However, in many cases, the different problems are related, and this oversimplified approach fails to utilize all the information contained in the data.</p>

<h2 id="shared-information">Shared Information</h2>

<p>The multivariate regression framework naturally induces a group structure over the coefficient matrix, in which every explanatory variable, \(\textbf{x}_{j}\) for \(j = 1, ..., p\), corresponds to
a group of \(q\) coefficients, \(B_j\).</p>

<p align="center">
<img src="/assets/the-power-of-mtl/group_structure_plasma.png" />
</p>
<p style="text-align: center;"> 
	<font color="#696b70">
		<i>The multivariate regression framework naturally induces a group structure over the coefficient matrix.</i> 
	</font>
</p>

<p>One popular and simple approach for MTL that utilized this group structure, is the group lasso (see e.g. <a href="https://www.stat.wisc.edu/~myuan/papers/glasso.final.pdf">[3]</a>, <a href="https://people.eecs.berkeley.edu/~jordan/papers/obozinski-wainwright-jordan-nips08.pdf">[4]</a>), in which a lasso-like penalty is placed over pre-defined groups of coefficients (this penalty is also referred to as \(L_1/L_2\)-penalty). The group lasso objective function is given by,</p>

\[\arg\min_{B} \Vert Y-XB\Vert_F^2 + \lambda \sum_{j=1}^p \Vert B_j\Vert_2\]

<p>where \(\lambda\) is a regularization parameter \(\Vert \cdot \Vert_F\) is the Frobenius norm, and \(B_j\) is the \(j\)th row of \(B\). The \(L_1/L_2\)-penalty encourages coefficients within the same group to share a similar absolute value, and essentially perform cross-task variable selection, in which a variable (corresponds to a row in \(B\)) is either selected or omitted from all tasks. Thus, this method allows us to learn a common sparsity structure, and to recover the joint support — the set of variables that are relevant for all tasks.</p>

<p>Next, we compare the results of applying the MTL approach of group lasso to the STL lasso approach (applied for each task independently).</p>

<!-- <script src="https://gist.github.com/AvivNavon/7edd9e35ccd5c54f7cd25ccccaa1539d.js"></script> -->

<h2 id="forecasting-taxi-rides">Forecasting Taxi Rides</h2>

<p>We use the <a href="https://www.kaggle.com/chicago/chicago-taxi-trips-bq">Chicago Taxicabs dataset</a> which includes taxi trips from 2013 to mid. 2017, reported to the City of Chicago. We utilize the Fourier series to model the periodic effects of our multivariate time-series, similar to <a href="https://peerj.com/preprints/3190.pdf">[5]</a>, <a href="https://www.sciencedirect.com/science/article/pii/S0169716105800458">[6]</a>. For a seasonal period \(P\), this involves generating \(2\cdot N_p\) features of the form,</p>

\[X_P(t)=\left\{\cos\left(\frac{2\pi nt}{P}\right), \sin\left(\frac{2\pi nt}{P}\right)\right\}_{n=1,...,N_p}\]

<p>In addition, we incorporate covariates for the modeling of a piecewise linear trend. These transformations shift the multivariate time-series problem into a feature space with \(p = 70\), where the linear assumption is appropriate.</p>

<p align="center">
<img src="/assets/the-power-of-mtl/mtl-scaled-w-axes.png" />
</p>
<p style="text-align: center;"> 
	<font color="#696b70">
		<i>The daily number of rides (scaled) for 4 Taxi vendors in Chicago.</i> 
	</font>
</p>

<p>We predict the future number of rides for 4 providers, using the simulated historical forecasts (SHF) approach of <a href="https://peerj.com/preprints/3190.pdf">[5]</a>, for producing \(K=32\) forecasts at various cutoff points in the history. For cutoff \(k = 0, ..., K −1\), we use the first \(n_{train,k} = n_{start} +k \cdot 7\) days for training, and the next \(n_{test} = 7\) observations for the test set. We then evaluate the performance of the model by the mean squared error (MSE), averaged over all tasks,</p>

\[\text{MSE}_k=\frac{1}{n_{test}}\cdot\frac{1}{q}\sum_{t\in T_k}\sum_{j=1}^{q}(y_{j,t}-\hat{y}_{j,t})\]

<p align="center">
<img src="/assets/the-power-of-mtl/mtl-shf-moving-hline.gif" />
</p>
<p style="text-align: center;"> 
	<font color="#696b70">
		<i>SHF example for a single task.</i> 
	</font>
</p>

<p>For this data, we get a 2.2% decrease in MSE (in favor of the MTL approach). Although the boost in performance is not mind-blowing, it’s not bad considering we have only tweaked the penalty term in the objective function, to encourage shared sparsity structure between tasks.</p>

<p align="center">
<img src="/assets/the-power-of-mtl/sparsity_structure.png" />
</p>
<p style="text-align: center;"> 
	<font color="#696b70">
		<i>The sparsity structure for the STL lasso (top) and the MTL group lasso (bottom), at a single cutoff, with zero entries colored in yellow.</i> 
	</font>
</p>

<p>We’ve mentioned that the group lasso penalty produces the same sparsity structure across all tasks. The above plot shows the transposed coefficient matrices (rows for tasks and columns for variables), \(B^T\), for the STL lasso (top) and the MTL group lasso (bottom), with zero entries colored in yellow. We can see that the sparsity structure is indeed shared among tasks in the MTL model, whereas each STL model has its own sparsity structure.</p>

<h2 id="conclusion">Conclusion</h2>

<p>In this post we have introduced the concept of multitask learning and demonstrated it’s power through a simple example of multidimensional time-series forecasting, using group lasso. This model, essentially assumes that the error terms for the different tasks are independent, and that the within-group similarities arise solely through a joint sparsity structure. There are other models that allow one to capture more complex relationships and relatedness among tasks (see e.g. <a href="http://users.stat.umn.edu/~arothman/mrce.pdf">[7]</a>, <a href="https://arxiv.org/abs/1812.03662">[8]</a>), but we will leave this for future posts.</p>

<p>The code for producing all results and visualizations is available at my <a href="https://github.com/AvivNavon/radss/">GitHub repo</a>.</p>

<h2 id="references-and-further-readings">References and Further Readings</h2>

<p>[1] <a href="https://arxiv.org/pdf/1707.08114.pdf">Zhang, Yu, and Qiang Yang. “A survey on multi-task learning.” arXiv preprint arXiv:1707.08114 (2017).</a><br />
[2] <a href="https://arxiv.org/abs/1706.05098">Ruder, S., 2017. An overview of multi-task learning in deep neural networks. arXiv preprint arXiv:1706.05098.</a><br />
[3] <a href="https://www.stat.wisc.edu/~myuan/papers/glasso.final.pdf">Yuan, Ming and Yi Lin (2006). “Model selection and estimation in regression with grouped variables.” In: Journal of the Royal Statistical Society: Series B (Statistical Methodology) 68.1, pp. 49–67.</a><br />
[4] <a href="https://people.eecs.berkeley.edu/~jordan/papers/obozinski-wainwright-jordan-nips08.pdf">Obozinski, Guillaume R, Martin J Wainwright, and Michael I Jordan (2009). “High-dimensional support union recovery in multivariate regression.” In: Advances in Neural Information Processing Systems, pp. 1217–1224.</a><br />
[5] <a href="https://peerj.com/preprints/3190.pdf">Sean J. Taylor, Benjamin Letham (2018) Forecasting at scale. The American Statistician 72(1):37-45</a><br />
[6] <a href="https://www.sciencedirect.com/science/article/pii/S0169716105800458">Andrew, Harvey C and Shephard Neil (1993). “Structural time series models.” In: Econometrics. Vol. 11. Handbook of Statistics. Elsevier, pp. 261–302.</a><br />
[7] <a href="http://users.stat.umn.edu/~arothman/mrce.pdf">Rothman, A.J., Levina, E. and Zhu, J., 2010. Sparse multivariate regression with covariance estimation. Journal of Computational and Graphical Statistics, 19(4), pp.947-962.</a><br />
[8] <a href="https://arxiv.org/abs/1812.03662">Navon, A. and Rosset, S., 2018. Capturing Between-Tasks Covariance and Similarities Using Multivariate Linear Mixed Models. arXiv preprint arXiv:1812.03662.</a><br /></p>

<hr />]]></content><author><name>Aviv Navon</name></author><category term="blog" /><category term="machine learning" /><category term="multitask learning" /><category term="sparsity" /><summary type="html"><![CDATA[]]></summary></entry></feed>