SHI-Labs / Unsupervised-Domain-Adaptation-with-Differential-Treatment

[CVPR 2020] Differential Treatment for Stuff and Things: A Simple Unsupervised Domain Adaptation Method for Semantic Segmentation

Home Page:https://arxiv.org/abs/2003.08040

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

find a bug in the code

Kaiseem opened this issue · comments

Unsupervised-Domain-Adaptation-with-Differential-Treatment/model/deeplab_multi.py

L115-119
L115 def forward(self, x):
L116 out = self.conv2d_list0
L117 for i in range(len(self.conv2d_list) - 1):
L118 out += self.conv2d_listi + 1
L119 return out

L 119 should align with L117, am i right?