博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
A Survey of Zero-Shot Learning: Settings, Methods, and Applications-阅读笔记
阅读量:4069 次
发布时间:2019-05-25

本文共 4358 字,大约阅读时间需要 14 分钟。

文章目录

论文内容:

  • 概述了零样本学习,划分为三种类别;
  • 零样本学习过程中所采用的不同语义空间;
  • 对现有零样本学习方法进行了分类,并在每个类别下介绍了具有代表性的方法;
  • 讨论了零样本学习的不同应用方向;
  • 零样本学习的未来研究方向。

INTRODUCTION

零样本学习的应用场景:

  • 目标类别数据量特别大,场景CV领域。
  • 目标类别非常少见。
  • 目标类别经常变换,例如某公司的产品图像,会随着时代和潮流改变风格。
  • 某些任务上,标注数据非常昂贵。

因此ZSL应运而生。

zero-shot learning定义:

给定训练标签数据 D t r D^{tr} Dtr属于已知类别S,zero-shot learning目标学习分类器: f u ( ⋅ ) : X → U f^{u}(\cdot) : X \rightarrow \mathcal{U} fu():XU,能够对测试集 X t e X^{te} Xte预测出类别 Y t e ∈ U Y^{te} \in \mathcal{U} YteU U \mathcal{U} U表示未见类别。

现有的zsl类别:

[外链图片转存失败(img-wHytIo4i-1567006037501)(assets/image-20190828124733572.png)]

Semantic space

在语义空间上,每一个类别都有一个相应的表示,一般语义空间都是一个向量空间,而类别都已其对应的向量集合。

定义语义空间 T {T} T,定义 t i s ∈ T t_i^s \in T tisT是已知类别 c i s c_i^s cis的原型,定义 t i u ∈ T t_i^u \in T tiuT是已知类别 c i u c_i^u ciu的原型,, T s = { t i s } i = 1 N s T^s=\{t_i^s\}_{i=1}^{N_s} Ts={

tis}i=1Ns表示已知类别的语义空间, T u = { t i u } i = 1 N u T^u=\{t_i^u\}_{i=1}^{N_u} Tu={
tiu}i=1Nu
表示位置类别的语义空间,定义 π ( ⋅ ) : S ∪ U → T \pi(\cdot) :\mathcal{S} \cup \mathcal{U} \rightarrow {T} π():SUT表示类别到语义空间的映射关系。在zsl中, T u , T s T^u, T^s Tu,Ts都会在分类器 f u ( ⋅ ) f^{u}(\cdot) fu()的训练中出现。

Learning settings

Class-Inductive Instance-Inductive (CIII) Setting

Only labeled training instances D t r D^{tr} Dtr and seen class prototypes T s T^s Ts are used in model learning.

Class-Transductive Instance-Inductive (CTII) Setting

Labeled training instances D t r D^{tr} Dtr , seen class prototypes T s T^s Ts and unseen class prototypes T u T^u Tu are used in model learning.

Class-TransductiveInstance-Transductive(CTIT)Setting

Labeledtraininginstances D t r D^{tr} Dtr , seen class prototypes T s T^s Ts , unlabeled testing instances X t e X^{te} Xte and unseen class prototypes T u T^u Tu are used in model learning.

使用的符号定义:

[外链图片转存失败(img-1r4RYxIK-1567006037502)(assets\1566921814479.png)]

SEMANTIC SPACES

[外链图片转存失败(img-JZv625yo-1567006037502)(assets/1566922401213.png)]

Engineered Semantic Spaces

engineered semantic spaces: SEMANTIC SPACES的每一维都是人工设计的。

Attribute spaces

Attribute spaces are kinds of semantic spaces that are constructed by a set of attributes.

通过一系列属性表示语义空间。

Lexical spaces

Lexical spaces are kinds of semantic spaces that are constructed by a set of lexical items

Text-keyword spaces

constructed by a set of keywords extracted from the text descriptions of each class

text-keyword space is constructed through extracting keywords and using each of

them as a dimension in the constructed space

Some problem-specific spaces

Some engineered semantic spaces are designed specifically for certain problems.

Learned Semantic Spaces

通过机器学习模型输出的来获得语义空间。

Label-embedding spaces

embedding of class labels

类别标签都是由词语或者短语组成,因此可以通过word embedding方法将其转化为相应的向量空间。

embedding方法有很多,包括

  • word2vec
  • flove

不同的语料库也会训练出不同embedding,例如公用语料wikipedia,专用语料如Flickr。

同一个类别也可以生成多个语义向量。

Text-embedding spaces

embedding the text descriptions for each class

类别的描述文本作为模型输入,输出向量作为类别的向量表达。

Image-representation spaces

the class prototypes are obtained from images belonging to each class.

将属于某个类别的图片,输入到预训练的模型(例如GoogLeNet),输出向量作为类别表征向量。

learned semantic spaces总结:优势:1)减少人力。2)能捕捉人容易忽略的信息。劣势:机器学习模型生成的语义空间是黑核的,难以结合域的知识到语义空间中。

METHODS

Classifier-Based Methods

使用one-vs-rest方法来学习zero-shot分类器 f i u ( ⋅ ) f^u_i(\cdot) fiu(),对于每一个未知类别 c i u c_i^u ciu,学习一个one-vs-rest的二分类器, f i u ( ⋅ ) : R D → { 0 , 1 } f^u_i(\cdot): R^D \rightarrow \{0,1\} fiu():RD{

0,1},二分类器分类是否是类别 c i u ∈ U c_i^u \in \mathcal{U} ciuU,最终的zero-shot分类器 f u ( ⋅ ) f^u(\cdot) fu()由多个二分类器组成: { f i u ( ⋅ ) ∣ i = 1 , … , N u } \left\{f_{i}^{u}(\cdot) | i=1, \ldots, N_{u}\right\} {
fiu()i=1,,Nu}

Correspondence methods

语义空间的prototype是类别的一种表征,one-vs-rest分类器输出也是其表征,Correspondence methods目标在学习这两种表征之间的correspondence function(我理解是映射关系)

Relationship methods

Combination methods

Future Directions

输入数据的特性研究

  • 基于传感器的活动识别,可以利用数据的时序特性;
  • 目标分类可以利用part信息;
  • 视频相关问题,可以利用多模态信息

训练数据的选择

  • 异构训练数据和测试数据:
    1)不同语义类型:训练数据是物体图像,测试数据是场景图像
    2)不同数据类型:训练数据是图像+视频,测试图像是视频
  • 训练数据的动态选择
    假设1:可见类能够动态选择
    假设2:训练样例可以动态标记

辅助信息的选择和保持

目标是选择更有帮助的辅助信息。现在的辅助信息是受人类视觉识别系统启发。应该有其他的方法来作为辅助信息。

比如,人类定义的相似性信息;比如学到的属性信息。

保持信息,是因为在只学习分类器的时候很可能会丢弃一部分语义信息。比如有的方法通过一个重构模型来保持更多的语义信息。

更实际和应用特定的问题设定

例如,广义的零样本学习,就是要同时识别已见类和未见类。

更实际和更特定于任务的设定,会被探索。比如,在某些应用中,要识别的类别特别多。这就是大规模场景下的设定。还有一些训练实例和语义信息是在线可获取的,一些在线增量学习通过学习新的属性并用在线的方式适配这些新的属性。基于应用的特定,更多的场景特定的零样本学习问题将会被探索。

理论保证

一些理论问题还没有被解决:

1)怎么选择辅助信息?
2)为了辅助测试实例的分类,我们要从训练实例中迁移什么信息?
3)如何抑制无关信息,避免负迁移

和其他学习范例的结合

比如,网络监督学习、小样本学习。

小样本学习的学习模式?

转载地址:http://uxaji.baihongyu.com/

你可能感兴趣的文章
my read work
查看>>
blancerServer IBM WebSphere Edge Server 6.1
查看>>
db db2 base / instance database tablespace container
查看>>
my read _job
查看>>
hd disk / disk raid / disk io / iops / iostat / iowait / iotop / iometer
查看>>
project ASP.NET
查看>>
db db2_monitorTool IBM Rational Performace Tester
查看>>
OS + Unix Aix telnet
查看>>
IBM Lotus
查看>>
Linux +Win LAMPP Tools XAMPP 1.7.3 / 5.6.3
查看>>
my read_university
查看>>
network manager
查看>>
searchServer IBM OminiFind / WebSphere Commerce SOLR
查看>>
OS + Linux Disk disk lvm / disk partition / disk mount / disk io
查看>>
my read_Country
查看>>
RedHat + OS CPU、MEM、DISK
查看>>
project bbs_discuz
查看>>
net TCP/IP / TIME_WAIT / tcpip / iperf / cain
查看>>
Unix + OS books
查看>>
script webshell jspWebShell / pythonWebShell / phpWebShell
查看>>