zero-shot learning(ps:每天演好一个情绪稳定的成年人)
my paper~~
1.(DAP,IAP)Learning To Detect Unseen Object Classes by Between-Class Attribute Transfer
2.(ALE)Label-Embedding for Attribute-Based Classification
3.(SAE)Semantic Autoencoder for Zero-shot Learning CVPR2017
https://github.com/waitwaitforget/ZeroShotLearning
https://zhuanlan.zhihu.com/p/27779811(笔记)
4. (SCoRe)Semantically Consistent Regularization for Zero-Shot Recognition CVPR2017
https://github.com/pedro-morgado/score-zeroshot
https://zhuanlan.zhihu.com/p/27661503(笔记)
5.(LDF)Discriminative Learning of Latent Features for Zero-Shot Recognition CVPR2018
https://zhuanlan.zhihu.com/p/36030705(笔记)https://blog.csdn.net/cp_oldy/article/details/81607884
6.(GCN)Zero-shot Recognition via Semantic Embeddings and Knowledge Graphs CVPR2018
https://github.com/JudyYe/zero-shot-gcn
7.(DEM)Learning a Deep Embedding Model for Zero-Shot Learning CVPR2017
https://github.com/lzrobots/DeepEmbeddingModel_ZSL(简单已跑通)
8. (SP-AEN)Zero-Shot Visual Recognition using Semantics-Preserving Adversarial Embedding Networks CVPR2018
https://github.com/zjuchenlong/sp-aen.cvpr18
9. (CVAE)A Generative Model For Zero Shot Learning Using Conditional Variational Autoencoders CVPR2018
https://github.com/ShivaKrishnaM/ZeroShot_CVAE
10. A Generative Adversarial Approach for Zero-Shot Learning from Noisy Texts CVPR 2018
https://github.com/EthanZhu90/ZSL_GAN_CVPR18
11. Generating Visual Representations for Zero-Shot Classification CVPR2018
https://github.com/maximebucher/Generating-Representations-ZSL
12.(硕士学位论文)基于属性学习的零样本图像分类研究
相关链接:
1. CVPR2018迁移学习相关论文:https://blog.csdn.net/cp_oldy/article/details/82183813
2. 2018之江杯全球人工智能大赛 - 零样本图像目标识别 简易baseline
https://github.com/wpwei/ZJL_zero_shot_learning_competition
3. https://www.zhihu.com/collection/189503788
4. https://blog.csdn.net/qq_38096703/article/details/80688072(类似7)
5. 论文三篇小结:https://blog.csdn.net/liuyuemaicha/article/details/73824827
6. 零次学习入门(三个问题)https://zhuanlan.zhihu.com/p/34656727
7. http://www.cnblogs.com/CSLaker/p/9277431.html#_label4(天涯惟笑)
zero-shot learning(ps:每天演好一个情绪稳定的成年人)的更多相关文章
- Multi-attention Network for One Shot Learning
Multi-attention Network for One Shot Learning 2018-05-15 22:35:50 本文的贡献点在于: 1. 表明类别标签信息对 one shot l ...
- (5)ps详解 (每周一个linux命令系列)
(5)ps详解 (每周一个linux命令系列) linux命令 ps详解 引言:今天的命令是用来看进程状态的ps命令 ps 我们先看man ps ps - report a snapshot of t ...
- (转)Paper list of Meta Learning/ Learning to Learn/ One Shot Learning/ Lifelong Learning
Meta Learning/ Learning to Learn/ One Shot Learning/ Lifelong Learning 2018-08-03 19:16:56 本文转自:http ...
- ActiveMQ笔记:一个高稳定,可扩展的的部署方案
本文介绍一个笔者在实际工作中的实施的基于ActiveMQ的一个高稳定,可扩展的异步消息系统. ActiveMQ是一个成熟的基于Java语言的开源消息系统,在实际应用中被大量使用.ActiveMQ在系统 ...
- PS CC 2014 把一个图层输出为文件的方法
近期在设计一个Qt控件,须要获得一个圆饼的图片,在用PS绘制后发现保存的时候总是会带着背景,用PNG格式保存之后背景依旧存在.仅仅是变成了透明的.刚才在Google上查到了仅仅保存单一图层而全然没有背 ...
- Matching Networks for One Shot Learning
1. Introduction In this work, inspired by metric learning based on deep neural features and memory a ...
- Hands on Machine Learning with sklearn and TensorFlow —— 一个完整的机器学习项目(加州房地产)
数据集地址:https://github.com/ageron/handson-ml/tree/master/datasets 先行知识准备:NumPy,Pandas,Matplotlib的模块使用 ...
- Java Learning 002 Eclipse软件 打开一个工程 和 运行这个工程
Java Eclipse软件 打开一个工程 和 运行这个工程 我在网上下载了一个 Java 工程源代码.使用Eclipse软件打开这个工程,打开方式有些特别: Step 1 . 点击: File -& ...
- 零样本学习 - (Zero shot learning,ZSL)
https://zhuanlan.zhihu.com/p/41846072 https://zhuanlan.zhihu.com/p/38418698 https://zhuanlan.zhihu.c ...
随机推荐
- pycharm 对代码做静态检查
对于下面这种情况,java c这些提前编译的语言,不给你运行机会就立马报错了,但对于动态语言运行之后才能报错,用运行的方法来检查代码错误是在是太坑了,这是py对比静态语言的巨大劣势,尤其是代码文件多行 ...
- php 安装rabbitmq扩展无报错版
需要安装rabbitmq-c,rabbitmq-c是一个用于C语言的,与AMQP server进行交互的client库.下载了v0.5.2版本(https://github.com/alanxz/ra ...
- PHP代码审计笔记--变量覆盖漏洞
变量覆盖指的是用我们自定义的参数值替换程序原有的变量值,一般变量覆盖漏洞需要结合程序的其它功能来实现完整的攻击. 经常导致变量覆盖漏洞场景有:$$,extract()函数,parse_str()函数, ...
- SaltStack salt 命令
salt 是服务端远程批量操作多台客户端需要使用到的命令,常见用法如下: salt '*' # 指定对所有客户端主机进行操作 salt 'minion01' # 指定对单台客户端主机进行操作 salt ...
- Python查找文件
1. 利用字符串的前缀和后缀匹配查找文件 str.startswith() star.endswith() 2.使用fnmatch fnmatch 判断文件名是否符合特定模式 ...
- zabbix创建触发器
1. 增加触发器 配置-->主机-->选择主机-->创建触发器 2. 配置触发器 3.查看触发器的状态 如果有问题会显示红色的问题
- [Python] NotImplemented 和 NotImplementedError 区别
NotImplemented 是一个非异常对象,NotImplementedError 是一个异常对象. >>> NotImplemented NotImplemented > ...
- Delphi Code Editor 之 基本操作
Delphi Code Editor 之 基本操作 毫无疑问,Delphi是高度可视化的.这是使用Delphi进行编程的最大好处之一.当然,任何一个有用的程序中都有大量手工编写的代码.当读者开始编写应 ...
- 【ORACLE 】 ORA-00031 标记要删去的会话(解决)
在使用Oracle的过程中,会有使用了锁(for update)但又忘记释放锁的情况.这是就需要用到KILL语句了.(如果不知道KILL语句怎么用,可参考: http://www.cnblogs.co ...
- Python pyQt4/PyQt5 学习笔记3(绝对对位,盒布局,网格布局)
本节研究布局管理的内容. (一)绝对对位 import sys from PyQt4 import QtGui class Example(QtGui.QWidget): def __init__( ...