diff options
-rw-r--r-- | torch/nn/modules/container.py | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/torch/nn/modules/container.py b/torch/nn/modules/container.py index 09c6b22855..a7e98b5024 100644 --- a/torch/nn/modules/container.py +++ b/torch/nn/modules/container.py @@ -41,11 +41,6 @@ class Sequential(Module): ('conv2', nn.Conv2d(20,64,5)), ('relu2', nn.ReLU()) ])) - - Shape: - - Input: :math:`(*)` where `*` means, any number of additional - dimensions - - Output: :math:`(*)`, same shape as the input """ def __init__(self, *args): |