ABCNet icon indicating copy to clipboard operation
ABCNet copied to clipboard

The semantic segmentation of remote sensing images

Results 6 ABCNet issues
Sort by recently updated
recently updated
newest added

可以分享一下您abcnet的损失函数吗

您好,我是一名语义分割的萌新,最近在网上阅读到大神的论文,下载调试时,总是会出现各种问题,想请问下,您有完整的代码可以分享吗,包括数据输入的模块

自己试着改了config和损失函数,miou只有86.2,与论文中的88.56差距有些大,在您分享的GeoSeg中也没有找到相应的文件。请问方便分享吗,谢谢!

您好,您提供的链接没有关于ABCNet的训练代码,所以我自己写了一个,但是感觉这个模型定义是不是有点问题 ``` class ABCNet(nn.Module): def __init__(self, band, n_classes): super(ABCNet, self).__init__() self.name = 'ABCNet' self.cp = ContextPath() self.sp = SpatialPath() self.fam = FeatureAggregationModule(256, 256) self.conv_out = Output(256, 256, n_classes, up_factor=8) if...

大佬,全部代码合适开源吗?