From 66224e96c5469078f163200eade5e4b3f54fac16 Mon Sep 17 00:00:00 2001 From: johnzja Date: Tue, 11 Aug 2020 20:34:41 +0800 Subject: [PATCH] add unit test for inverted_residual: debug 3 --- tests/test_ops/test_inverted_residual_module.py | 5 ----- 1 file changed, 5 deletions(-) diff --git a/tests/test_ops/test_inverted_residual_module.py b/tests/test_ops/test_inverted_residual_module.py index 41c663b99..c5e83331b 100644 --- a/tests/test_ops/test_inverted_residual_module.py +++ b/tests/test_ops/test_inverted_residual_module.py @@ -1,6 +1,5 @@ import pytest import torch -import torch.nn as nn from mmseg.ops import InvertedResidual @@ -39,7 +38,3 @@ def test_inv_residual(): x = torch.rand(1, 32, 64, 64) output = inv_module(x) assert output.shape == (1, 32, 64, 64) - - - -