12 2022 档案

摘要:Continual Learning with Transformers for Image Classification 阅读笔记 摘要: 阻止灾难性遗忘是一件很困难的事,一个最近的研究趋势是动态扩展参数可以有效的减少灾难性遗忘。但是这需要复杂的微调来平衡增长的的参数,且任务中的信息也很少共享。本 阅读全文
posted @ 2022-12-25 00:53 ZLey 阅读(105) 评论(0) 推荐(0) 编辑
摘要:2022-12-11 00:13:07 public class Pet { String name; int age; public void shout(){ System.out.println("叫了一声!"); } } public class Application { public s 阅读全文
posted @ 2022-12-11 00:20 ZLey 阅读(18) 评论(0) 推荐(0) 编辑
摘要:public class Person { String name; int age; // 构造器 public Person() { } public Person(String name){ this.name=name; } public Person(String name,int age 阅读全文
posted @ 2022-12-10 23:16 ZLey 阅读(25) 评论(0) 推荐(0) 编辑
摘要:值传递: 1 public class Demo01 { 2 public static void main(String[] args) { 3 int a=10; 4 System.out.println(a); 5 Demo01.change1(a); //调用函数改变a的值结果仍然不变 6 阅读全文
posted @ 2022-12-09 16:54 ZLey 阅读(13) 评论(0) 推荐(0) 编辑

点击右上角即可分享
微信分享提示