A Summary of Multi-task Learning
A Summary of Multi-task Learning
author by Yubo Feng.
Intro
In this paper[0], the introduction of multi-task learning through the data hungry, the most common problem of Deep Learning[1].
Basic assumption: tasks are related.
MTL mimic human learning since people transfer knowledge from one task to another.
MTL is similar to transfer learning, multi-label learning, and multi-output regression. In my opinion, Dual Learning[2] is a subset of Multi-Task Learning.
Multi-task Learning
Definition 1.(Multi-task learning) Give \(m\) learning tasks \({\{T_i\}}^m_{i=1}\) where tasks are related but not identical, \(multi-task learning\) aims to improve the model for \(T_i\) by using the knowledge in the \(m\) tasks.
Two foundations for MTL:
- tasks are related;
- tasks lead to learning settings.
1. Multi-task Supervised Learning (MTSL)
Model Description:
- Task \(T_i\) for \(i=1,...,m\)
- Dataset \(D_i = \{(x_j^i, y_j^i)\}^{n_i}_{j=1}\)
- \(x_j^i\) is a \(d\)-dimensional feature vector
- \(y_j^i\) is the label for \(x_j^i\)
- \(f_i(x_j^i)\) is a good approximation of \(y_j^i\) , is used to prediction for \(i\)-th task
- to learn \(\{f_i(x)\}^m_{i=1}\) for \(m\) task
Task relatedness in three aspects:
- feature --> feature-based MTSL
- parameter --> paramter-based MTSL
- instance --> instance-based MTSL
1.1 Feature-based MTSL
From this aspect, it assumes that tasks share feature representations can be a subset or a transformation of the original features.
It can learn a common feature representation for different tasks.
It is more suitable for applications whose original feature representation is not so informative and discriminative.
But it can easily be affected by outlier tasks.
It is a complemental to parameter-based MTSL.
1.1.1 Feature Transformation Approach
There are two types of transformation, linear and nonlinear.
Feedforward neural network
Can do nonlinear and linear transformation if the activation unit is linear.
Linear Fitting
There are two specific methods named multi-task feature learning (MTFL) and multi-task sparse coding(MTSC).
Generally speaking, they transform data instance as \(\hat{x_j^i} = U^T x_j^i\) and then learning \(f_i(x_j^i) = (a^i)^T \hat{x_j^i} + b_i\) . Apprently, there are two steps of linear transformation on the features.
Differences between MTFL and MTSC:
- MTFL
- \(U\) is orthogonal
- \(A\) is row-sparse via \(l_{2,1}\) regularization where \(A=(a^1, ..., a^m)\) .
- MTSC
- \(U\) is overcomplete
- A is sparse via the \(l_1\) regularization
1.1.2 Feature Selection Approach
In this approach, it aims to learn \(f_i(x) = (W^i)^Tx + b\) . Furthermore, there are two distinct operations on \(W\), first is the regularization, second is spare probabilistic priors.
Regularization
To minimize \(||W||_{p,q}\) and \(l_{p,q}\) norm regularization are most widely used techniques of \(W\) .
The effect of \(l_{p,q}\) regularization is to make \(W\) row-sparse and hence some unimportant features can be filtered.
Spare Probabilistic Priors
\(w_{ji} \sim GN(0, \rho_j, p)\) , where \(GN(\cdot, \cdot, \cdot )\) denote generalized normal distribution.
1.1.3 Deep Learning Approach
- tens of or hundreds of hidden layers
- treat the output of one hidden layer as the shared feature representation
Recently, the most impact NLP progress, BERT[3], also leverage the output of hidden layers as the shared feature representation to deal with 11 NLP tasks.
1.2 Parameter-based MTSL
It uses model parameters to relate the learning of different tasks.
It can learn more accurate model parameters.
It is more robust to outlier tasks than the feature-based model.
1.2.1 Low-rank Approach
Since tasks are assumed to be related, the parameter matrix \(W\) is likely to be low-rank.
Similar tasks usually have similar model parameters, which makes \(W\) likely to be low-rank. It means that the lower rank of \(W\) the higher linear similarities between tasks, by other words, similar tasks have similar parameter matrix \(W\).
1.2.2 Task-Clustering Approach
It aims to divide tasks into several clusters and all the tasks in a cluster are assumed to share identical or similar model parameters.
In this approach, there are several ways to specifically implement.
TC algorithm
TC algorithm has few steps as below:
- separately learn under the single-task setting
- cluster the tasks based on the model parameters
- pool the training data of all the tasks in a task cluster
Bayesian Neural Network
BNN has a similar structure to the multi-layer neural network.
BNN is based on the Gaussian mixture model in terms of model parameters.
The Dirichlet process is widely used in Bayesian learning to do data clustering.
Regularization
It tries to decompose model parameters \(W\) and then regularizes decomposed components.
1.2.3 Task-relation Learning Approach
It directly learns the pairwise task relations from data. Task relations are used to reflect the task relatedness. Hence it urgently needs distance measures including task similarities and task covariances.
But there are some fatal difficulties to be noticed, in the real-world applications the task relations are hard to verify and the prior information is difficult to obtain.
1.2.4 Dirty Approach
In this approach, it assumes the decomposition of the parameter matrix \(W\) into two component matrices, each of which is regularized by a type of the sparsity.
For example, it decomposes the parameter matrix \(W\) into \(W=U+V\). And the objective function can be defined as to minimize the unified training loss \(g(U) + h(V)\).
\(U\) mainly identifies the task relatedness among tasks. \(V\) is capable of capturing noises or outliers.
1.2.5 Multi-level Approach
This approach is a generalization of the dirty approach. it decomposes the parameter matrix \(W\), more than 2 component matrices, into \(h\) component matrices \(\{W_i\}_{i=1}^{h}\).
It is capable of modeling more complex task structures than dirty approach.
1.3 Instance-based MTSL
There are few works in this category.
It seems parallel to the other two categories.
2. Multi-task Unsupervised Learning (MTUL)
MTUL mainly focuses on multi-task clustering, but not very many studies on multi-task clustering exist. So it is a chance to exploit it.
My research domain is word representation learning, word2vec is one of my baselines. Hence I am always thinking about how to enhance it with leverage more knowledge into it.
3. Multi-task Semi-supervised Learning (MTSSL)
The core idea of the semi-supervised is that unlabeled data are utilized to help improve the performance of supervised learning. In this sense, the MTSSL is same, where unlabeled data are used to improve the performance of supervised learning.
There are two types of MTSSL, classification, and regression.
4. Multi-task Active Learning (MTAL)
| Active Learning | MTAL | |
|---|---|---|
| Identical | has a small number of labeled data | |
| Difference | selects unlabeled instances are informative for all the tasks instead of only one task |
5. Multi-task Reinforcement Learning
Motivation: when environments are similar, different reinforcement learning tasks can use similar policies to make decisions.
6. Multi-task Online Learning
Multi-task online learning models can handle the problem that traditional MTL model can not, that is training data came in a sequential way.
7. Multi-task Multi-view Learning
Each data point can be described by different feature representations, each feature representation is called a view.
Each multi-view data point is usually associated with a label.
Application in Nature Language Processing
Major NLP tasks are part-of-speech, tagging, chunking, named entity recognition, semantic role labeling, language modeling, and semantically related words.
Conclusions
Almost all the deep models just share hidden layers for different tasks, it is very useful when all the tasks are very similar.
The future work could focus on to design more flexible architecture that can tolerate dissimilar tasks.
Bibliography
[0] Zhang Y , Yang Q . An overview of multi-task learning[J]. National Science Review, 2018, 5(1):30-43.
[1] Li, Hang. Deep learning for natural language processing: advantages and challenges[J]. National Science Review, 2018, 5(1):24-26.
[2] 夏应策.对偶学习的理论和实验研究[D].中国科学技术大学,2018.
[3] Jacob Devlin. BERT: Pre-training of Deep Bidirectional Transformers for Language Understanding. https://arxiv.org/abs/1810.04805
A Summary of Multi-task Learning的更多相关文章
- struct2depth 记录
把效果图放在前面 03.28 handle_motion False architecture simple joint_encoder False depth_normalization ...
- CVPR2022 Oral OGM-GE阅读笔记
标题:Balanced Multimodal Learning via On-the-fly Gradient Modulation(CVPR 2022 Oral) 论文:https://arxiv. ...
- Task示例,多线程
class Program { static void Main(string[] args) { Run(); } public static async void Run() { var task ...
- Self-Supervised Representation Learning
Self-Supervised Representation Learning 2019-11-11 21:12:14 This blog is copied from: https://lilia ...
- 【转】【C#】【Thread】【Task】多线程
多线程 多线程在4.0中被简化了很多,仅仅只需要用到System.Threading.Tasks.::.Task类,下面就来详细介绍下Task类的使用. 一.简单使用 开启一个线程,执行循环方法,返回 ...
- 怎么设置task的最大线程数
//-------------------------------------------------------------------------- // // Copyright (c) Mic ...
- 异步task处理
public async Task<Customers> GetCustomers() { return await Service.GetCustomersAsync(); } publ ...
- 创建CancellationTokenSource对象用于取消Task
虽然使用线程池ThreadPool让我们使用多线程变得容易,但是因为是由系统来分配的,如果想对线程做精细的控制就不太容易了,比如某个线程结束后执行一个回调方法.恰好Task可以实现这样的需求.这篇文章 ...
- 使用Unity拦截一个返回Task的方法
目标 主要是想为服务方法注入公用的异常处理代码,从而使得业务代码简洁.本人使用Unity.Interception主键来达到这个目标.由于希望默认就执行拦截,所以使用了虚方法拦截器.要实现拦截,需要实 ...
- Task的在主线程处理异常信息的Helper类
最近使用task时候需要把异常记录日志,直接注入非单例模式的实例进入异步线程,在高并发情况下会出现一些问题. 所以需要把异常反馈给主线程 ,并且不在主线程里进行等待,研究相关资料后,自己写了一个简单的 ...
随机推荐
- mysql 命令行 备份 恢复数据
找到mysql启动位置 whereis mysql 备份指定数据库 包括表结构和数据 使用命令mysqldump 数据库名 -u 用户名 -p > 存储文件路径 [root@izm5e16gjd ...
- 动态性能视图v$mystat,v$sesstat,v$statname
视图说明: v$mystat-------> 当前会话统计 v$sesstat------> 按会话进行分组统计 v$sysstat-------> 当系统的整体统计 v$statn ...
- 基于VS Code创建Spring Boot项目开发REST API(一)
公司从.NET转向Java不仅仅是简单的代码变成Java,趁此机会对原有的架构和代码重构,融入新的概念和技术.目前通过前后端分离,将后端更多的微服务化.从.NET转向Java我们更多的是用Java开发 ...
- 守护线程daemon
如下代码: from threading import Thread import time def func1(n): time.sleep(10) print(n) t = Thread(targ ...
- Vue.js中滚动条加载更多数据
本文章参考:http://www.cnblogs.com/ssrsblogs/p/6108423.html 分析:1.需要判断滚动条是否到底部: 需要用到DOM的三个属性值,即scrollTop.cl ...
- mysql批量更新的两种方式效率试验<二>
Mysql两种批量更新的对比 简介: mysql搭载mybits框架批量更新有两种方式,一种是在xml中循环整个update语句,中间以‘:’隔开,还有一种是使用case when 变相实现批量更新, ...
- PHP指定时间戳/日期加一天,一年,一周,一月
PHP指定时间戳加上1天,1周,1月,一年其实是不需要用上什么函数的!指定时间戳本身就是数字整型,我们只需要再计算1天,1周它的秒数相加即可! 博主搜索php指定时间戳加一天一年,结果许多的文章给出来 ...
- Gym 101194H / UVALive 7904 - Great Cells - [数学题+快速幂][2016 EC-Final Problem H]
题目链接: http://codeforces.com/gym/101194/attachments https://icpcarchive.ecs.baylor.edu/index.php?opti ...
- [ssh] 通过ssh私钥生成公钥的方法
ssh-keygen -y -f .ssh/id_rsa.key id_rsa.key是私钥.
- 目标检测(五)YOLOv1—You Only Look Once:Unified,Real-Time Object Detection
之前的目标检测算法大都采用proposals+classifier的做法(proposal提供位置信息,分类器提供类别信息),虽然精度很高,但是速度比较慢,也可能无法进行end-to-end训练.而该 ...