ZHKKKe / MODNet

A Trimap-Free Portrait Matting Solution in Real Time [AAAI 2022]
Apache License 2.0
3.85k stars 636 forks source link

论文模型结构和代码对不上 #181

Open tengshaofeng opened 2 years ago

tengshaofeng commented 2 years ago

dear ZHKKKe, 作者大大,非常崇拜你,你的线上版本的效果太好了,注意到你论文里的结构和实际代码里的模型结构不太一样,我想知道线上未公开的版本的网络结构是和论文里的结构一致还是和提供的代码里的结构一致啊。期待您的指导。

ZHKKKe commented 2 years ago

你好,感谢你的关注。

tengshaofeng commented 2 years ago

好的,非常感谢百忙中腾出时间回复,

  1. 改进后的模型对应的论文地址或者论文名能否给一个呀?
  2. 包含了什么技术能否大致透露以下,该技术是否在v3的论文中有体现? 3.另外我实践了一下soc,感觉对我的效果影响不大,不知道是不是自己有没有理解错
ZHKKKe commented 2 years ago
  1. 你看的应该是新版的文章(包含e-ASPP)
  2. 包括attntion, patch-refine,semi-supervised等,是已有技术应用,在论文中没有体现。
  3. SOC有一定的要求,主要包括:一定数量的,属于同一domain的无标签数据;无标签数据和标签数据domain差别不能太大。
tengshaofeng commented 2 years ago

@ZHKKKe 好的,感谢

tengshaofeng commented 2 years ago
  1. 你看的应该是新版的文章(包含e-ASPP)
  2. 包括attntion, patch-refine,semi-supervised等,是已有技术应用,在论文中没有体现。
  3. SOC有一定的要求,主要包括:一定数量的,属于同一domain的无标签数据;无标签数据和标签数据domain差别不能太大。

对了,作者大大, 我再次拜读了您的代码,貌似没看到e-aspp相应的部分,只看到se_block结构。我想问一下您的在线的版本的人像服务有这个e-aspp吗,希望得到您的指点

jeannotes commented 2 years ago

I have compare your papers (v1,v2,v3) carefully, and I have find that except the se-block , the others are almost the same, eg high resolution block, in your code, we find 3 interpolations, but in your papers, there are only two interpolation. @ZHKKKe @tengshaofeng

tengshaofeng commented 2 years ago

@jeannotes yes, you are right. In HRBranch exists 3 upsamples from enc2x, enc4x, lr8x.
I think e-aspp is replaced by se-block.