rishizek / tensorflow-deeplab-v3-plus

DeepLabv3+ built in TensorFlow
MIT License
833 stars 307 forks source link

any atrous convolution in resnet block? #18

Closed WillSuen closed 6 years ago

WillSuen commented 6 years ago

I notice that in the paper, there should be some atrous convolution (with rate 2, 4) in several blocks of resnet. But I did not find implementation in your model, is there any reason?

rishizek commented 6 years ago

Hi @WillSuen , thank you for your interest in the repo.

Atrous convolutions should be integrated in the Slim ResNet. Please refer to here.

WillSuen commented 6 years ago

Thanks, I did not notice that.