TomMao23

Results 2 issues of TomMao23

Did you use the aux loss like BiSeNetV1 for the 1/32 and 1/16 feature maps during training? If so, are the weights 1,1,1 like BiSeNet?

I noticed that a lot of your code is written like this ```python nn.ReLU(True), nn.Dropout(0.1, False), ``` why you use inplace operator in activation fuction but not in dropout? Does...