diff --git a/norch/nn/module.py b/norch/nn/module.py index 6758cff..eaabd9a 100644 --- a/norch/nn/module.py +++ b/norch/nn/module.py @@ -52,7 +52,6 @@ class Module(ABC): def to(self, device): for _, _, parameter in self.parameters(): - print(type(parameter)) parameter.to(device) return self