摘要:
今天学习多继承,遇到了super继承顺序的问题 A是父类,BC继承A,D多继承BC class A: def __init__(self): print("A") class B(A): def __init__(self): print('B') super().__init__() class 阅读全文
posted @ 2022-02-08 15:55 Antel 阅读(421) 评论(0) 推荐(0) 编辑
摘要:
今天学习多继承,遇到了super继承顺序的问题 A是父类,BC继承A,D多继承BC class A: def __init__(self): print("A") class B(A): def __init__(self): print('B') super().__init__() class 阅读全文
posted @ 2022-02-08 15:55 Antel 阅读(421) 评论(0) 推荐(0) 编辑
摘要:
Masked Autoencoders Are Scalable Vision Learners https://arxiv.org/pdf/2111.06377.pdf 构建自编码器,对mask的图片进行重建 先看效果 左:mask的图片 中:重建的图片 右:ground truth 摘要 这篇文 阅读全文
posted @ 2021-11-12 18:11 Antel 阅读(1334) 评论(1) 推荐(1) 编辑 |
||