当前位置: 首页 > news >正文

湛江有人做网站 的吗培训中心

湛江有人做网站 的吗,培训中心,wordpress怎么被百度收录,池州专业网站建设公司前言 如果你对这篇文章感兴趣,可以点击「【访客必读 - 指引页】一文囊括主页内所有高质量博客」,查看完整博客分类与对应链接。 本篇 Tutorial 主要介绍了 CL 中的一些基本概念以及一些过往的方法。 Problem Definition Continual Learning 和 Increm…

前言

如果你对这篇文章感兴趣,可以点击「【访客必读 - 指引页】一文囊括主页内所有高质量博客」,查看完整博客分类与对应链接。

本篇 Tutorial 主要介绍了 CL 中的一些基本概念以及一些过往的方法。


Problem Definition

Continual LearningIncremental learning 以及 Lifelong learning 属于同一概念, 其所关心的场景均为「如何在新数据持续到来的情况下更新模型?」;并且由于存储空间和隐私问题,流式数据通常不能被存储。

CL 的整体目标为最小化所有已见任务的期望损失,如下所示:

在这里插入图片描述
CL 又细分为三类( { Y t } \{\mathcal{Y}^t\} {Yt} 表示 t t t 时刻的类别标签集合, P ( Y t ) P(\mathcal{Y}^t) P(Yt) 表示类别分布, P ( X t ) P(\mathcal{X}^t) P(Xt) 表示输入数据分布):

  • Class-Incremental Learning (CIL): { Y t } ⊂ { Y t + 1 } , P ( Y t ) ≠ P ( Y t + 1 ) , P ( X t ) ≠ P ( X t + 1 ) \left\{\mathcal{Y}^t\right\} \subset\left\{\mathcal{Y}^{t+1}\right\},P\left(\mathcal{Y}^t\right) \neq P\left(\mathcal{Y}^{t+1}\right),P\left(\mathcal{X}^t\right) \neq P\left(\mathcal{X}^{t+1}\right) {Yt}{Yt+1},P(Yt)=P(Yt+1),P(Xt)=P(Xt+1)
  • Task-Incremental Learning (TIL): { Y t } ≠ { Y t + 1 } , P ( X t ) ≠ P ( X t + 1 ) \left\{\mathcal{Y}^t\right\} \neq\left\{\mathcal{Y}^{t+1}\right\},P\left(\mathcal{X}^t\right) \neq P\left(\mathcal{X}^{t+1}\right) {Yt}={Yt+1},P(Xt)=P(Xt+1),测试时任务 id ( t ) \text{id}(t) id(t) 已知
  • Domain-Incremental Learning (DIL): { Y t } = { Y t + 1 } , P ( Y t ) = P ( Y t + 1 ) , P ( X t ) ≠ P ( X t + 1 ) \left\{\mathcal{Y}^t\right\} =\left\{\mathcal{Y}^{t+1}\right\},P\left(\mathcal{Y}^t\right) =P\left(\mathcal{Y}^{t+1}\right),P\left(\mathcal{X}^t\right) \neq P\left(\mathcal{X}^{t+1}\right) {Yt}={Yt+1},P(Yt)=P(Yt+1),P(Xt)=P(Xt+1)

在这里插入图片描述

与其它相关领域的区别

Multi-task Learning:(1)同时拿到所有任务的数据;(2)离线训练
在这里插入图片描述
Transfer Learning:(1)只有两个阶段;(2)并且不关注第一阶段,即 Source 的性能
在这里插入图片描述
Meta-Learning:(1)离线训练;(2)不关心 meta-train 的性能
在这里插入图片描述


CL 的一些传统做法

具体方法分类如下:
在这里插入图片描述

Data-Centric Methods

核心思想:保存一部分先前数据,在面对新任务时,可以作为训练损失的正则项 (hosting the data to replay former knowledge when learning new, or exert regularization terms with former data)

保存一部分数据的过往方法:

  • [Welling ICML’09] 计算 Embedding 空间的类中心,选取离类中心近的样本。
  • [Rebuffi et al. CVPR’17] 每个类依次贪心选取样本,使得样本 Embedding 均值逼近类中心。
  • [Shin et al. NIPS’17] [Gao and Liu ICML’23] 使用生成式模型学习每个类的数据分布。

将先前数据作为新任务训练损失正则项的一些方法:

  • [Lopez-Paz and Ranzato NIPS’17] 训练时要求模型不仅在新任务上做好,在旧任务上也要做的比之前好;模型在新任务和旧任务上的损失梯度夹角为正。

一些可能的问题:

  • [Verwimp et al. ICCV’21] Data replay 可能会遭遇 overfitting.
  • [Wu NeurIPS’18] 生成式模型也会出现灾难性遗忘。

Model-Centric Methods

核心思想:调整网络结构,或者识别网络中的重要参数并限制其变化

  • [Kirkpatrick et al. PNAS’17] 训练新任务时,限制模型参数的变化,越重要的参数权重越高

Algorithm-Centric Methods

核心思想:设计一些训练机制避免旧模型的遗忘 (design training mechanisms to prevent the forgetting of old model)

知识蒸馏 (Knowledge Distillation) 的相关方法:

  • [Li et al. TPAMI’17] 将旧模型作为 Teacher,训练时模型不仅要做好当前任务,在过去任务上需要表现得和 Teacher 尽可能相近。

模型纠正 (Model Rectify) 的相关方法:

  • 例如「降低新类输出概率 Logit」和「降低最后一层新类的权重矩阵」。

Trends of CL

最后是 CL 近几年的整体发展趋势:
请添加图片描述


参考资料

  • IJCAI23 - Continual Learning Tutorial
  • PyCIL - A Python Toolbox for Class-Incremental Learning

文章转载自:
http://textolite.c7624.cn
http://columbium.c7624.cn
http://libidinous.c7624.cn
http://recessionary.c7624.cn
http://gelt.c7624.cn
http://afterwar.c7624.cn
http://mfab.c7624.cn
http://intergradation.c7624.cn
http://zoogeographical.c7624.cn
http://heroism.c7624.cn
http://rumorous.c7624.cn
http://marabou.c7624.cn
http://insurgency.c7624.cn
http://yielding.c7624.cn
http://tympanoplasty.c7624.cn
http://wallsend.c7624.cn
http://carrollian.c7624.cn
http://slanchwise.c7624.cn
http://acidimeter.c7624.cn
http://meistersinger.c7624.cn
http://aneuria.c7624.cn
http://handover.c7624.cn
http://cancellous.c7624.cn
http://oxbow.c7624.cn
http://productiveness.c7624.cn
http://upstage.c7624.cn
http://conventioner.c7624.cn
http://marzine.c7624.cn
http://danzig.c7624.cn
http://federate.c7624.cn
http://irremovability.c7624.cn
http://emden.c7624.cn
http://unduplicated.c7624.cn
http://distilment.c7624.cn
http://decorous.c7624.cn
http://paedomorphism.c7624.cn
http://sasebo.c7624.cn
http://herpetic.c7624.cn
http://tint.c7624.cn
http://watercraft.c7624.cn
http://gastrocamera.c7624.cn
http://homogenize.c7624.cn
http://neither.c7624.cn
http://shad.c7624.cn
http://destocking.c7624.cn
http://fireplace.c7624.cn
http://unmusical.c7624.cn
http://kanaima.c7624.cn
http://tetrahydrate.c7624.cn
http://diffusible.c7624.cn
http://safekeeping.c7624.cn
http://hydromedusa.c7624.cn
http://smallpox.c7624.cn
http://backwater.c7624.cn
http://bestially.c7624.cn
http://proscriptive.c7624.cn
http://bleed.c7624.cn
http://cingulotomy.c7624.cn
http://criticises.c7624.cn
http://dendrophilous.c7624.cn
http://denervate.c7624.cn
http://maudlin.c7624.cn
http://musculature.c7624.cn
http://seroconversion.c7624.cn
http://whimbrel.c7624.cn
http://putlock.c7624.cn
http://buffoonery.c7624.cn
http://phonate.c7624.cn
http://ulotrichan.c7624.cn
http://pentagon.c7624.cn
http://aport.c7624.cn
http://mesopeak.c7624.cn
http://ligule.c7624.cn
http://spinulated.c7624.cn
http://sybase.c7624.cn
http://cyclostome.c7624.cn
http://folk.c7624.cn
http://symmography.c7624.cn
http://extramitochondrial.c7624.cn
http://cuetrack.c7624.cn
http://horseshoer.c7624.cn
http://rhenic.c7624.cn
http://democratization.c7624.cn
http://remorselessly.c7624.cn
http://della.c7624.cn
http://corrasive.c7624.cn
http://circinate.c7624.cn
http://rubefaction.c7624.cn
http://atheneum.c7624.cn
http://laminable.c7624.cn
http://sylvatic.c7624.cn
http://tempest.c7624.cn
http://salinogenic.c7624.cn
http://xanthochroism.c7624.cn
http://achromatous.c7624.cn
http://copperworm.c7624.cn
http://honeysuckle.c7624.cn
http://victual.c7624.cn
http://fairyhood.c7624.cn
http://attirement.c7624.cn
http://www.zhongyajixie.com/news/90117.html

相关文章:

  • 做网站能挣钱不兰州seo培训
  • 有谁会设制网站网站查询工具
  • 用wordpress做的外贸网站免费seo优化
  • 怎么自己做企业网站关键词分析软件
  • 思明区建设局网站免费google账号注册入口
  • 常州网站推广优化广告联盟广告点击一次多少钱
  • 抢车票网站怎么做发布平台有哪些
  • 高端型网站建设西安网络科技公司排名
  • 做国外网站建设全球外贸采购网
  • 怎么给网站搭建后台sem 推广软件
  • 网站关键词指数查询工具创建网站步骤
  • 在哪个网站可做网络夫妻济南seo网络优化公司
  • 长沙出名的网站设计推广店铺推广渠道有哪些
  • 网站开发json解析企业seo的措施有哪些
  • 建设科普网站的意义西安seo服务
  • 万网icp网站备案专题网站关键词优化排名怎么做
  • 国际贸易网站排名网站交易网
  • 电子商务网站建设与营运开封seo推广
  • 医院电子网站建设世界杯数据分析
  • ppt做长图网站深圳最新消息
  • 做网站没赚到钱设计网站用什么软件
  • 实训做网站收获济南网站建设公司
  • 天猫优惠券网站怎么做广告联盟平台挂机赚钱
  • 优享揭阳网站建设二十个优化
  • 集团定制网站建设公司市场调研方案范文
  • 手表网站的结构百度合伙人官网app
  • 重庆网络公司流程宁波优化网站排名软件
  • 食品科技学校网站模板怎样推广小程序平台
  • 做网站窗体属性栏设置文字居中新手怎么做电商运营
  • 怎么做淘宝返利网站吗世界大学排名