Template:Short description Multi-task learning (MTL) is a subfield of machine learning in which multiple learning tasks are solved at the same time, while exploiting commonalities and differences across tasks. This can result in improved learning efficiency and prediction accuracy for the task-specific models, when compared to training the models separately.<ref>Baxter, J. (2000). A model of inductive bias learning" Journal of Artificial Intelligence Research 12:149--198, On-line paper</ref><ref>Thrun, S. (1996). Is learning the n-th thing any easier than learning the first?. In Advances in Neural Information Processing Systems 8, pp. 640--646. MIT Press. Paper at Citeseer</ref><ref name=":2">Template:Cite journal</ref> Inherently, Multi-task learning is a multi-objective optimization problem having trade-offs between different tasks.<ref>Multi-Task Learning as Multi-Objective Optimization Part of Advances in Neural Information Processing Systems 31 (NeurIPS 2018), https://proceedings.neurips.cc/paper/2018/hash/432aca3a1e345e339f35a30c8f65edce-Abstract.html</ref> Early versions of MTL were called "hints".<ref>Suddarth, S., Kergosien, Y. (1990). Rule-injection hints as a means of improving network performance and learning time. EURASIP Workshop. Neural Networks pp. 120-129. Lecture Notes in Computer Science. Springer.</ref><ref>Template:Cite journal</ref>

In a widely cited 1997 paper, Rich Caruana gave the following characterization:

Multitask Learning is an approach to inductive transfer that improves generalization by using the domain information contained in the training signals of related tasks as an inductive bias. It does this by learning tasks in parallel while using a shared representation; what is learned for each task can help other tasks be learned better.<ref name=":2"/>

In the classification context, MTL aims to improve the performance of multiple classification tasks by learning them jointly. One example is a spam-filter, which can be treated as distinct but related classification tasks across different users. To make this more concrete, consider that different people have different distributions of features which distinguish spam emails from legitimate ones, for example an English speaker may find that all emails in Russian are spam, not so for Russian speakers. Yet there is a definite commonality in this classification task across users, for example one common feature might be text related to money transfer. Solving each user's spam classification problem jointly via MTL can let the solutions inform each other and improve performance.Template:Citation needed Further examples of settings for MTL include multiclass classification and multi-label classification.<ref name=":1">Template:Cite arXiv</ref>

Multi-task learning works because regularization induced by requiring an algorithm to perform well on a related task can be superior to regularization that prevents overfitting by penalizing all complexity uniformly. One situation where MTL may be particularly helpful is if the tasks share significant commonalities and are generally slightly under sampled.<ref name=":bmdl"/> However, as discussed below, MTL has also been shown to be beneficial for learning unrelated tasks.<ref name=":bmdl"/><ref name=":3">Romera-Paredes, B., Argyriou, A., Bianchi-Berthouze, N., & Pontil, M., (2012) Exploiting Unrelated Tasks in Multi-Task Learning. http://jmlr.csail.mit.edu/proceedings/papers/v22/romera12/romera12.pdf</ref>

MethodsEdit

The key challenge in multi-task learning, is how to combine learning signals from multiple tasks into a single model. This may strongly depend on how well different task agree with each other, or contradict each other. There are several ways to address this challenge:

Task grouping and overlapEdit

Within the MTL paradigm, information can be shared across some or all of the tasks. Depending on the structure of task relatedness, one may want to share information selectively across the tasks. For example, tasks may be grouped or exist in a hierarchy, or be related according to some general metric. Suppose, as developed more formally below, that the parameter vector modeling each task is a linear combination of some underlying basis. Similarity in terms of this basis can indicate the relatedness of the tasks. For example, with sparsity, overlap of nonzero coefficients across tasks indicates commonality. A task grouping then corresponds to those tasks lying in a subspace generated by some subset of basis elements, where tasks in different groups may be disjoint or overlap arbitrarily in terms of their bases.<ref>Kumar, A., & Daume III, H., (2012) Learning Task Grouping and Overlap in Multi-Task Learning. http://icml.cc/2012/papers/690.pdf</ref> Task relatedness can be imposed a priori or learned from the data.<ref name=":1"/><ref>Jawanpuria, P., & Saketha Nath, J., (2012) A Convex Feature Learning Formulation for Latent Task Structure Discovery. http://icml.cc/2012/papers/90.pdf</ref> Hierarchical task relatedness can also be exploited implicitly without assuming a priori knowledge or learning relations explicitly.<ref name=":bmdl">Hajiramezanali, E. & Dadaneh, S. Z. & Karbalayghareh, A. & Zhou, Z. & Qian, X. Bayesian multi-domain learning for cancer subtype discovery from next-generation sequencing count data. 32nd Conference on Neural Information Processing Systems (NIPS 2018), Montréal, Canada. Template:ArXiv</ref><ref>Zweig, A. & Weinshall, D. Hierarchical Regularization Cascade for Joint Learning. Proceedings: of 30th International Conference on Machine Learning, Atlanta GA, June 2013. http://www.cs.huji.ac.il/~daphna/papers/Zweig_ICML2013.pdf</ref> For example, the explicit learning of sample relevance across tasks can be done to guarantee the effectiveness of joint learning across multiple domains.<ref name=":bmdl"/>

Exploiting unrelated tasksEdit

One can attempt learning a group of principal tasks using a group of auxiliary tasks, unrelated to the principal ones. In many applications, joint learning of unrelated tasks which use the same input data can be beneficial. The reason is that prior knowledge about task relatedness can lead to sparser and more informative representations for each task grouping, essentially by screening out idiosyncrasies of the data distribution. Novel methods which builds on a prior multitask methodology by favoring a shared low-dimensional representation within each task grouping have been proposed. The programmer can impose a penalty on tasks from different groups which encourages the two representations to be orthogonal. Experiments on synthetic and real data have indicated that incorporating unrelated tasks can result in significant improvements over standard multi-task learning methods.<ref name=":3"/>

Transfer of knowledgeEdit

Related to multi-task learning is the concept of knowledge transfer. Whereas traditional multi-task learning implies that a shared representation is developed concurrently across tasks, transfer of knowledge implies a sequentially shared representation. Large scale machine learning projects such as the deep convolutional neural network GoogLeNet,<ref>Template:Cite book</ref> an image-based object classifier, can develop robust representations which may be useful to further algorithms learning related tasks. For example, the pre-trained model can be used as a feature extractor to perform pre-processing for another learning algorithm. Or the pre-trained model can be used to initialize a model with similar architecture which is then fine-tuned to learn a different classification task.<ref>{{#invoke:citation/CS1|citation |CitationClass=web }}</ref>

Multiple non-stationary tasksEdit

Traditionally Multi-task learning and transfer of knowledge are applied to stationary learning settings. Their extension to non-stationary environments is termed Group online adaptive learning (GOAL).<ref>Zweig, A. & Chechik, G. Group online adaptive learning. Machine Learning, DOI 10.1007/s10994-017- 5661-5, August 2017. http://rdcu.be/uFSv</ref> Sharing information could be particularly useful if learners operate in continuously changing environments, because a learner could benefit from previous experience of another learner to quickly adapt to their new environment. Such group-adaptive learning has numerous applications, from predicting financial time-series, through content recommendation systems, to visual understanding for adaptive autonomous agents.

Multi-task optimizationEdit

Multi-task optimization focuses on solving optimizing the whole process.<ref name=TO>Template:Cite journal</ref><ref name=mfo>Template:Cite journal</ref> The paradigm has been inspired by the well-established concepts of transfer learning<ref>Template:Cite journal</ref> and multi-task learning in predictive analytics.<ref>Caruana, R., "Multitask Learning", pp. 95-134 in Sebastian Thrun, Lorien Pratt (eds.) Learning to Learn, (1998) Springer Template:ISBN</ref>

The key motivation behind multi-task optimization is that if optimization tasks are related to each other in terms of their optimal solutions or the general characteristics of their function landscapes,<ref>Template:Cite journal</ref> the search progress can be transferred to substantially accelerate the search on the other.

The success of the paradigm is not necessarily limited to one-way knowledge transfers from simpler to more complex tasks. In practice an attempt is to intentionally solve a more difficult task that may unintentionally solve several smaller problems.<ref name="DeFreitas">Template:Cite arXiv</ref>

There is a direct relationship between multitask optimization and multi-objective optimization.<ref>J. -Y. Li, Z. -H. Zhan, Y. Li and J. Zhang, "Multiple Tasks for Multiple Objectives: A New Multiobjective Optimization Method via Multitask Optimization," in IEEE Transactions on Evolutionary Computation, {{#invoke:doi|main}}</ref>

In some cases, the simultaneous training of seemingly related tasks may hinder performance compared to single-task models.<ref>Template:Cite journal</ref> Commonly, MTL models employ task-specific modules on top of a joint feature representation obtained using a shared module. Since this joint representation must capture useful features across all tasks, MTL may hinder individual task performance if the different tasks seek conflicting representation, i.e., the gradients of different tasks point to opposing directions or differ significantly in magnitude. This phenomenon is commonly referred to as negative transfer. To mitigate this issue, various MTL optimization methods have been proposed. Commonly, the per-task gradients are combined into a joint update direction through various aggregation algorithms or heuristics.

There are several common approaches for multi-task optimization: Bayesian optimization, evolutionary computation, and approaches based on Game theory.<ref name=TO/>

Multi-task Bayesian optimizationEdit

Multi-task Bayesian optimization is a modern model-based approach that leverages the concept of knowledge transfer to speed up the automatic hyperparameter optimization process of machine learning algorithms.<ref name=mtbo>Swersky, K., Snoek, J., & Adams, R. P. (2013). Multi-task bayesian optimization. Advances in neural information processing systems (pp. 2004-2012).</ref> The method builds a multi-task Gaussian process model on the data originating from different searches progressing in tandem.<ref>Bonilla, E. V., Chai, K. M., & Williams, C. (2008). Multi-task Gaussian process prediction. Advances in neural information processing systems (pp. 153-160).</ref> The captured inter-task dependencies are thereafter utilized to better inform the subsequent sampling of candidate solutions in respective search spaces.

Evolutionary multi-taskingEdit

Evolutionary multi-tasking has been explored as a means of exploiting the implicit parallelism of population-based search algorithms to simultaneously progress multiple distinct optimization tasks. By mapping all tasks to a unified search space, the evolving population of candidate solutions can harness the hidden relationships between them through continuous genetic transfer. This is induced when solutions associated with different tasks crossover.<ref name=mfo/><ref name=cognitive>Ong, Y. S., & Gupta, A. (2016). Evolutionary multitasking: a computer science view of cognitive multitasking. Cognitive Computation, 8(2), 125-142.</ref> Recently, modes of knowledge transfer that are different from direct solution crossover have been explored.<ref>Template:Cite journal</ref><ref>Template:Cite journal</ref>

Game-theoretic optimizationEdit

Game-theoretic approaches to multi-task optimization propose to view the optimization problem as a game, where each task is a player. All players compete through the reward matrix of the game, and try to reach a solution that satisfies all players (all tasks). This view provide insight about how to build efficient algorithms based on gradient descent optimization (GD), which is particularly important for training deep neural networks.<ref>Template:Cite book</ref> In GD for MTL, the problem is that each task provides its own loss, and it is not clear how to combine all losses and create a single unified gradient, leading to several different aggregation strategies.<ref>{{#invoke:citation/CS1|citation |CitationClass=web }}</ref><ref>Template:Cite journal</ref><ref>Template:Cite arXiv</ref> This aggregation problem can be solved by defining a game matrix where the reward of each player is the agreement of its own gradient with the common gradient, and then setting the common gradient to be the Nash Cooperative bargaining<ref>Aviv Navon, Aviv Shamsian, Idan Achituve, Haggai Maron, Kenji Kawaguchi, Gal Chechik, Ethan Fetaya, (2022). Multi-Task Learning as a Bargaining Game. International conference on machine learning.</ref> of that system.

ApplicationsEdit

Algorithms for multi-task optimization span a wide array of real-world applications. Recent studies highlight the potential for speed-ups in the optimization of engineering design parameters by conducting related designs jointly in a multi-task manner.<ref name=cognitive/> In machine learning, the transfer of optimized features across related data sets can enhance the efficiency of the training process as well as improve the generalization capability of learned models.<ref>Chandra, R., Gupta, A., Ong, Y. S., & Goh, C. K. (2016, October). Evolutionary multi-task learning for modular training of feedforward neural networks. In International Conference on Neural Information Processing (pp. 37-46). Springer, Cham.</ref><ref>Yosinski, J., Clune, J., Bengio, Y., & Lipson, H. (2014). How transferable are features in deep neural networks? In Advances in neural information processing systems (pp. 3320-3328).</ref> In addition, the concept of multi-tasking has led to advances in automatic hyperparameter optimization of machine learning models and ensemble learning.<ref>Template:Cite book</ref><ref>Template:Cite book</ref>

Applications have also been reported in cloud computing,<ref>Template:Cite book</ref> with future developments geared towards cloud-based on-demand optimization services that can cater to multiple customers simultaneously.<ref name=mfo/><ref>Tang, J., Chen, Y., Deng, Z., Xiang, Y., & Joy, C. P. (2018). A Group-based Approach to Improve Multifactorial Evolutionary Algorithm. In IJCAI (pp. 3870-3876).</ref> Recent work has additionally shown applications in chemistry.<ref>Template:Citation</ref> In addition, some recent works have applied multi-task optimization algorithms in industrial manufacturing.<ref>Template:Cite journal</ref><ref>Template:Cite journal</ref>

MathematicsEdit

Reproducing Hilbert space of vector valued functions (RKHSvv)Edit

The MTL problem can be cast within the context of RKHSvv (a complete inner product space of vector-valued functions equipped with a reproducing kernel). In particular, recent focus has been on cases where task structure can be identified via a separable kernel, described below. The presentation here derives from Ciliberto et al., 2015.<ref name=":1" />

RKHSvv conceptsEdit

Suppose the training data set is <math>\mathcal{S}_t =\{(x_i^t,y_i^t)\}_{i=1}^{n_t}</math>, with <math>x_i^t\in\mathcal{X}</math>, <math>y_i^t\in\mathcal{Y}</math>, where Template:Mvar indexes task, and <math>t \in 1,...,T</math>. Let <math>n=\sum_{t=1}^Tn_t </math>. In this setting there is a consistent input and output space and the same loss function <math> \mathcal{L}:\mathbb{R}\times\mathbb{R}\rightarrow \mathbb{R}_+ </math> for each task: . This results in the regularized machine learning problem: Template:NumBlk\sum _{t=1} ^T \frac{1}{n_t} \sum _{i=1} ^{n_t} \mathcal{L}(y_i^t, f_t(x_i^t))+\lambda ||f||_\mathcal{H} ^2 </math>|Template:EquationRef}} where <math> \mathcal{H} </math> is a vector valued reproducing kernel Hilbert space with functions <math> f:\mathcal X \rightarrow \mathcal{Y}^T </math> having components <math> f_t:\mathcal{X}\rightarrow \mathcal {Y} </math>.

The reproducing kernel for the space <math> \mathcal{H} </math> of functions <math> f:\mathcal X \rightarrow \mathbb{R}^T </math> is a symmetric matrix-valued function <math> \Gamma :\mathcal X\times \mathcal X \rightarrow \mathbb{R}^{T \times T} </math> , such that <math> \Gamma (\cdot ,x)c\in \mathcal{H} </math> and the following reproducing property holds: Template:NumBlk </math>|Template:EquationRef}} The reproducing kernel gives rise to a representer theorem showing that any solution to equation Template:EquationNote has the form: Template:NumBlk

Separable kernelsEdit

The form of the kernel Template:Math induces both the representation of the feature space and structures the output across tasks. A natural simplification is to choose a separable kernel, which factors into separate kernels on the input space Template:Mathcal and on the tasks <math> \{1,...,T\} </math>. In this case the kernel relating scalar components <math> f_t </math> and <math> f_s </math> is given by <math display="inline"> \gamma((x_i,t),(x_j,s )) = k(x_i,x_j)k_T(s,t)=k(x_i,x_j)A_{s,t} </math>. For vector valued functions <math> f\in \mathcal H </math> we can write <math>\Gamma(x_i,x_j)=k(x_i,x_j)A</math>, where Template:Mvar is a scalar reproducing kernel, and Template:Mvar is a symmetric positive semi-definite <math>T\times T</math> matrix. Henceforth denote <math> S_+^T=\{\text{PSD matrices} \} \subset \mathbb R^{T \times T} </math> .

This factorization property, separability, implies the input feature space representation does not vary by task. That is, there is no interaction between the input kernel and the task kernel. The structure on tasks is represented solely by Template:Mvar. Methods for non-separable kernels Template:Math is a current field of research.

For the separable case, the representation theorem is reduced to <math display="inline">f(x)=\sum _{i=1} ^N k(x,x_i)Ac_i</math>. The model output on the training data is then Template:Mvar , where Template:Mvar is the <math>n \times n</math> empirical kernel matrix with entries <math display="inline">K_{i,j}=k(x_i,x_j)</math>, and Template:Mvar is the <math>n \times T</math> matrix of rows <math>c_i</math>.

With the separable kernel, equation Template:EquationNote can be rewritten as

Template:NumBlk V(Y,KCA) + \lambda tr(KCAC^{\top})</math>|Template:EquationRef}}

where Template:Mvar is a (weighted) average of Template:Mathcal applied entry-wise to Template:Mvar and Template:Mvar. (The weight is zero if <math> Y_i^t </math> is a missing observation).

Note the second term in Template:EquationNote can be derived as follows:

<math>\begin{align}

\|f\|^2_\mathcal{H} &= \left\langle \sum _{i=1} ^n k(\cdot,x_i)Ac_i, \sum _{j=1} ^n k(\cdot ,x_j)Ac_j \right\rangle_{\mathcal H } \\ &= \sum _{i,j=1} ^n \langle k(\cdot,x_i)A c_i, k(\cdot ,x_j)Ac_j\rangle_{\mathcal H } & \text{(bilinearity)} \\ &= \sum _{i,j=1} ^n \langle k(x_i,x_j)A c_i, c_j\rangle_{\mathbb R^T } & \text{(reproducing property)} \\ &= \sum _{i,j=1} ^n k(x_i,x_j) c_i^\top A c_j=tr(KCAC^\top ) \end{align}</math>

Known task structureEdit

Task structure representationsEdit

There are three largely equivalent ways to represent task structure: through a regularizer; through an output metric, and through an output mapping.

Template:Math theorem Template:Math theorem

Template:Math theorem

Task structure examplesEdit

Via the regularizer formulation, one can represent a variety of task structures easily.

  • Letting <math display="inline">A^\dagger = \gamma I_T + ( \gamma - \lambda)\frac {1} T \mathbf{1}\mathbf{1}^\top </math> (where <math>I_T </math> is the TxT identity matrix, and <math display="inline">\mathbf{1}\mathbf{1}^\top </math> is the TxT matrix of ones) is equivalent to letting Template:Math control the variance <math display="inline">\sum_t || f_t - \bar f|| _{\mathcal H_k} </math> of tasks from their mean <math display="inline">\frac 1 T \sum_t f_t </math>. For example, blood levels of some biomarker may be taken on Template:Mvar patients at <math>n_t</math> time points during the course of a day and interest may lie in regularizing the variance of the predictions across patients.
  • Letting <math> A^\dagger = \alpha I_T +(\alpha - \lambda )M </math> , where <math> M_{t,s} = \frac 1 {|G_r|} \mathbb I(t,s\in G_r) </math> is equivalent to letting <math> \alpha </math> control the variance measured with respect to a group mean: <math> \sum _{r} \sum _{t \in G_r } ||f_t - \frac 1 {|G_r|} \sum _{s\in G_r)} f_s|| </math>. (Here <math> |G_r| </math> the cardinality of group r, and <math> \mathbb I </math> is the indicator function). For example, people in different political parties (groups) might be regularized together with respect to predicting the favorability rating of a politician. Note that this penalty reduces to the first when all tasks are in the same group.
  • Letting <math> A^\dagger = \delta I_T + (\delta -\lambda)L </math>, where <math> L=D-M</math> is the Laplacian for the graph with adjacency matrix M giving pairwise similarities of tasks. This is equivalent to giving a larger penalty to the distance separating tasks t and s when they are more similar (according to the weight <math> M_{t,s} </math>,) i.e. <math>\delta </math> regularizes <math> \sum _{t,s}||f_t - f_s ||_{\mathcal H _k }^2 M_{t,s} </math>.
  • All of the above choices of A also induce the additional regularization term <math display="inline">\lambda \sum_t ||f|| _{\mathcal H_k} ^2 </math> which penalizes complexity in f more broadly.

Learning tasks together with their structureEdit

Learning problem Template:EquationNote can be generalized to admit learning task matrix A as follows: Template:NumBlk

Choice of <math>F:S_+^T\rightarrow \mathbb R_+</math> must be designed to learn matrices A of a given type. See "Special cases" below.

Optimization of Template:EquationNoteEdit

Restricting to the case of convex losses and coercive penalties Ciliberto et al. have shown that although Template:EquationNote is not convex jointly in C and A, a related problem is jointly convex.

Specifically on the convex set <math> \mathcal C=\{(C,A)\in \mathbb R^{n \times T}\times S_+^T | Range(C^\top KC)\subseteq Range(A)\}</math>, the equivalent problem

Template:NumBlk

is convex with the same minimum value. And if <math> (C_R, A_R)</math> is a minimizer for Template:EquationNote then <math> (C_R A^\dagger _R, A_R)</math> is a minimizer for Template:EquationNote.

Template:EquationNote may be solved by a barrier method on a closed set by introducing the following perturbation:

Template:NumBlk

The perturbation via the barrier <math>\delta ^2 tr(A^\dagger)</math> forces the objective functions to be equal to <math>+\infty</math> on the boundary of <math> R^{n \times T}\times S_+^T</math> .

Template:EquationNote can be solved with a block coordinate descent method, alternating in C and A. This results in a sequence of minimizers <math> (C_m,A_m)</math> in Template:EquationNote that converges to the solution in Template:EquationNote as <math> \delta_m \rightarrow 0</math>, and hence gives the solution to Template:EquationNote.

Special casesEdit

Spectral penalties - Dinnuzo et al<ref>Template:Cite journal</ref> suggested setting F as the Frobenius norm <math> \sqrt{tr(A^\top A)}</math>. They optimized Template:EquationNote directly using block coordinate descent, not accounting for difficulties at the boundary of <math>\mathbb R^{n\times T} \times S_+^T</math>.

Clustered tasks learning - Jacob et al<ref>Template:Cite journal</ref> suggested to learn A in the setting where T tasks are organized in R disjoint clusters. In this case let <math> E\in \{0,1\}^{T\times R}</math> be the matrix with <math> E_{t,r}=\mathbb I (\text{task }t\in \text{group }r)</math>. Setting <math> M = I - E^\dagger E^T</math>, and <math> U = \frac 1 T \mathbf{11}^\top </math>, the task matrix <math> A^\dagger </math> can be parameterized as a function of <math> M </math>: <math> A^\dagger(M) = \epsilon _M U+\epsilon_B (M-U)+\epsilon (I-M) </math> , with terms that penalize the average, between clusters variance and within clusters variance respectively of the task predictions. M is not convex, but there is a convex relaxation <math> \mathcal S_c = \{M\in S_+^T:I-M\in S_+^T \land tr(M) = r \} </math>. In this formulation, <math> F(A)=\mathbb I(A(M)\in \{A:M\in \mathcal S_C\}) </math>.

GeneralizationsEdit

Non-convex penalties - Penalties can be constructed such that A is constrained to be a graph Laplacian, or that A has low rank factorization. However these penalties are not convex, and the analysis of the barrier method proposed by Ciliberto et al. does not go through in these cases.

Non-separable kernels - Separable kernels are limited, in particular they do not account for structures in the interaction space between the input and output domains jointly. Future work is needed to develop models for these kernels.

Software packageEdit

A Matlab package called Multi-Task Learning via StructurAl Regularization (MALSAR) <ref>Zhou, J., Chen, J. and Ye, J. MALSAR: Multi-tAsk Learning via StructurAl Regularization. Arizona State University, 2012. http://www.public.asu.edu/~jye02/Software/MALSAR. On-line manual</ref> implements the following multi-task learning algorithms: Mean-Regularized Multi-Task Learning,<ref>Evgeniou, T., & Pontil, M. (2004). Regularized multi–task learning. Proceedings of the tenth ACM SIGKDD international conference on Knowledge discovery and data mining (pp. 109–117).</ref><ref>Template:Cite journal</ref> Multi-Task Learning with Joint Feature Selection,<ref>Template:Cite journal</ref> Robust Multi-Task Feature Learning,<ref>Chen, J., Zhou, J., & Ye, J. (2011). Integrating low-rank and group-sparse structures for robust multi-task learningTemplate:Dead linkTemplate:Cbignore. Proceedings of the tenth ACM SIGKDD international conference on Knowledge discovery and data mining.</ref> Trace-Norm Regularized Multi-Task Learning,<ref>Ji, S., & Ye, J. (2009). An accelerated gradient method for trace norm minimization. Proceedings of the 26th Annual International Conference on Machine Learning (pp. 457–464).</ref> Alternating Structural Optimization,<ref>Template:Cite journal</ref><ref>Chen, J., Tang, L., Liu, J., & Ye, J. (2009). A convex formulation for learning shared structures from multiple tasks. Proceedings of the 26th Annual International Conference on Machine Learning (pp. 137–144).</ref> Incoherent Low-Rank and Sparse Learning,<ref>Chen, J., Liu, J., & Ye, J. (2010). Learning incoherent sparse and low-rank patterns from multiple tasks. Proceedings of the 16th ACM SIGKDD international conference on Knowledge discovery and data mining (pp. 1179–1188).</ref> Robust Low-Rank Multi-Task Learning, Clustered Multi-Task Learning,<ref>Jacob, L., Bach, F., & Vert, J. (2008). Clustered multi-task learning: A convex formulation. Advances in Neural Information Processing Systems, 2008</ref><ref>Zhou, J., Chen, J., & Ye, J. (2011). Clustered multi-task learning via alternating structure optimization. Advances in Neural Information Processing Systems.</ref> Multi-Task Learning with Graph Structures.

LiteratureEdit

See alsoEdit

Template:Div col

Template:Div col end

ReferencesEdit

Template:Reflist

External linksEdit

SoftwareEdit

Template:Optimization algorithms