Closed EIFY closed 2 months ago
I just noticed that Conv1d isn't made visible in https://github.com/graphcore-research/unit-scaling/pull/67 So for now one needs to e.g.
Conv1d
from unit_scaling._modules import Conv1d
instead of
import unit_scaling as uu # (...) self.conv = uu.Conv1d(...)
like the rest of the public modules.
Thank you for reporting this! I've prepared a fix, which should be able to go in soon.
I just noticed that
Conv1d
isn't made visible in https://github.com/graphcore-research/unit-scaling/pull/67 So for now one needs to e.g.instead of
like the rest of the public modules.