From 5d840018175c5d2b887fa0024ce5b7beb11a3553 Mon Sep 17 00:00:00 2001 From: lu Date: Thu, 29 Apr 2021 02:17:31 -0700 Subject: [PATCH 1/2] Update tests --- tests/test_super_container.py | 1 + 1 file changed, 1 insertion(+) diff --git a/tests/test_super_container.py b/tests/test_super_container.py index 8b8aa70..777bfc1 100644 --- a/tests/test_super_container.py +++ b/tests/test_super_container.py @@ -78,6 +78,7 @@ def test_super_sequential_v1(): model = super_core.SuperSequential( super_core.SuperSimpleNorm(1, 1), torch.nn.ReLU(), + super_core.SuperLeakyReLU(), super_core.SuperLinear(10, 10), super_core.SuperReLU(), ) From 59d07b63420837f56ea45b678784e299612477c3 Mon Sep 17 00:00:00 2001 From: lu Date: Thu, 29 Apr 2021 02:17:44 -0700 Subject: [PATCH 2/2] Update comments --- lib/models/xcore.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/models/xcore.py b/lib/models/xcore.py index 3916222..13be1cc 100644 --- a/lib/models/xcore.py +++ b/lib/models/xcore.py @@ -1,5 +1,5 @@ -##################################################### -# Copyright (c) Xuanyi Dong [GitHub D-X-Y], 2021.04 # +####################################################### +# Copyright (c) Xuanyi Dong [GitHub D-X-Y], 2021.04 # ####################################################### # Use module in xlayers to construct different models # #######################################################