In the new paper, Google use filter width =3 to increase the receptive field.
Then how could we do inference with filter width 3?
My idea is use to Queue, because the dilation is still 2 times increased, the first Queue is used to store the first half of middle value, and the second Queue is used to store the second half middle value.
Output of first Queue then be enqueued into the second Queue.
In the new paper, Google use filter width =3 to increase the receptive field.
Then how could we do inference with filter width 3? My idea is use to Queue, because the dilation is still 2 times increased, the first Queue is used to store the first half of middle value, and the second Queue is used to store the second half middle value. Output of first Queue then be enqueued into the second Queue.
such as:
is that make sense?