Zero-shot Learning / One-shot Learning / Few-shot Learning

本文转载自https://blog.csdn.net/JNingWei/article/details/79235019,感谢原博主整理分享

1. Introduction

迁移学习 中,由于传统深度学习的 学习能力弱,往往需要 海量数据反复训练 才能修得 泛化神功 。为了 “多快好省” 地通往炼丹之路,炼丹师们开始研究 Zero-shot Learning / One-shot Learning / Few-shot Learning。

爱上一匹野马 (泛化能力),可我的家里没有草原 (海量数据) 。

2. Learning类型

(1) 零次学习(Zero-shot Learning)

成品模型 对于 训练集没有出现过 的 类别,能自动创造出相应的映射: XX -> YY。

注:既要马儿跑,还 不让 马儿吃草。

(2)一次学习(One-shot Learning)

wikipedia:

One-shot learning is an object categorization problem in computer vision. Whereas most machine learning based object categorization algorithms require training on hundreds or thousands of images and very large datasets, one-shot learning aims to learn information about object categories from one, or only a few, training images.

训练集中,每个类别 都有样本,但都只是 少量样本

注:既要马儿跑,还不让马儿 吃草。
Zero-shot Learning / One-shot Learning / Few-shot Learning_第1张图片

(3) 少量学习(Few-shot Learning)

等同于 一次学习One-shot Learning

(4) 传统 Learning

即传统深度学习的 海量数据 + 反复训练 炼丹模式。

注:家里一座大草原,马儿马儿你随便吃
Zero-shot Learning / One-shot Learning / Few-shot Learning_第2张图片

你可能感兴趣的:(深度学习)