Meta learning
yaoxunji
.
展开
-
ICML2019 meta-learning tutorial
Youtube视频地址:https://youtube.videoken.com/embed/DijI4XrhqNob站地址:https://www.bilibili.com/video/BV1j7411n7n4?from=search&seid=7394235857283201754PPT地址:https://download.csdn.net/download/yaoxunji/12746558原创 2020-08-25 16:25:41 · 435 阅读 · 0 评论 -
pytorch灵活搭建神经网络
因为要使用MAML来解决跨环境的RL问题,其中模型参数需要内部更新和外部更新,所以传统的搭建方式不容易实现。借鉴github上的思路,记录一下灵活搭建网络完成多步更新的方式。1.初始化模型还是要继承nn.Module,在初试化的时候通过config将模型参数传入,然后将模型参数放入定义的nn.ParameterList()中。 def __init__(self, config, imgc, imgsz): """ :param config: network c原创 2020-07-29 20:02:01 · 545 阅读 · 1 评论 -
神经网络中的元学习研究
Meta learning(Learning to learn)在近几年的研究中受到了越来越多的关注。Meta learning的目标旨在改善学习算法本身,让模型更精通学习。从Meta learning的定义、分类、应用以及挑战四个方面来对当前meta learning环境进行介绍。原创 2020-06-26 15:20:31 · 2400 阅读 · 0 评论 -
ICLR 2020元学习论文汇总
1.Title Meta-Q-Learning Author Rasool Fakoor, Pratik Chaudhari, Stefano Soatto, Alexander J. Smola Highlight MQL is a simple off-policy meta-RL algorithm that recycles data from t...原创 2020-02-03 17:12:05 · 1468 阅读 · 3 评论 -
Meta Learning论文与方法总结
Meta LearningMachine learning可以理解为根据数据找一个函数f的能力,Machine Learning通过训练数据让模型能够学习到某种抽象的规律或概念,而Meta Learning可以理解为根据数据找一个函数f的函数F的能力,通过训练任务集让模型更加精通如何去学习。Meta Learning BaselineMANN,Siamese Network,Matching...原创 2019-12-29 17:30:03 · 930 阅读 · 0 评论