We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
在新的任务上SOC一般来说需要修改以下几个配置项
训练时train.py可修改项
··· backup_detail_loss = boundaries * F.cross_entropy(pred_detail, backup_detail.max(1)[1], weight=self.config.classes_weight, reduction='none') ··· backup_fusion_loss = boundaries * F.cross_entropy(pred_fusion, backup_fusion.max(1)[1], weight=self.config.classes_weight, reduction='none') ··· self.config.loss = 5*soc_semantic_loss + backup_detail_loss + backup_fusion_loss
两个loss的weight参数可有可无,也可随机组合。soc_semantic_loss 前的系数可改动
The text was updated successfully, but these errors were encountered:
No branches or pull requests
在新的任务上SOC一般来说需要修改以下几个配置项
训练时train.py可修改项
两个loss的weight参数可有可无,也可随机组合。soc_semantic_loss 前的系数可改动
The text was updated successfully, but these errors were encountered: