-
Notifications
You must be signed in to change notification settings - Fork 33
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
预训练模型用于分割任务 #46
Comments
@chenyuabc10 readme提供的ViT/ViTAE预训练权重不包含RVSA,模型结构代码完成了RVSA的替换,即就是微调时候模型的结构,所以做法就是预训练完成后,将ViT的权重加载到包含RVSA结构的网络中,在不同任务上进行微调 你说的是pretrained=字段能够使用的权重就是"ViT-B或ViTAE-B的预训练权重" |
您好,我还有一个问题,我在使用MAE方法预训练模型时,我将txt文件设置为如下格式: |
@chenyuabc10 无监督不需要标签,你只要读文件名就行 |
@DotWang 是这里只要读fname吗?把关于target的内容都删掉吗?或者我为图片随意添加标签凑够三个value可以吗?训练时不会用到标签的话?
|
@chenyuabc10 是,跟target没关系 你看engine_pretrain.py,第39行: for data_iter_step, (samples, _) in enumerate(metric_logger.log_every(data_loader, print_freq, header)): 要是你删掉target的部分,其他代码就相应改了 |
好的明白,感谢您的耐心回答 |
作者您好,想向您请教下您是如何从预训练的ViT-B或ViTAE-B主干权重得到的分割任务中ViT-B + RVSA这里的权重呢,这一步的代码在哪里?也就是说如果我直接使用您的ViT-B或ViTAE-B预训练权重要怎样处理才能得到能用于mmsegmentation里pretrained=字段能够使用的权重呢?期望您的回复,感谢🙏。
The text was updated successfully, but these errors were encountered: