↓ 2 callersFunctionunboxnvin = (batch, h, w, depth), returns vout = (batch, n*h, n*w, depth), each pixel is duplicated.
layers.py:9
Method__init__(self, name, n, width, colors, depth, scales, nl=lambda x, y: x + y, data_format="NCHW")
layers.py:51
Method__init__(self, name, n, width, colors, depth, scales, nl=lambda x, y: x + y, data_format="NCHW")
layers.py:78
Functionboxnvin = (batch, h, w, depth), returns vout = (batch, h//n, w//n, depth), each pixel is averaged.
layers.py:18