You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@singa.apache.org by zh...@apache.org on 2022/08/30 05:34:13 UTC

[singa] branch dev updated: update Relu layer for xceptionnet in cnn example

This is an automated email from the ASF dual-hosted git repository.

zhaojing pushed a commit to branch dev
in repository https://gitbox.apache.org/repos/asf/singa.git


The following commit(s) were added to refs/heads/dev by this push:
     new d10f9d90 update Relu layer for xceptionnet in cnn example
     new a391afe0 Merge pull request #994 from KimballCai/dev
d10f9d90 is described below

commit d10f9d90ff4a44caca2b50eadcd498edb24bb5f0
Author: qingpeng <qi...@u.nus.edu>
AuthorDate: Mon Aug 29 21:36:43 2022 +0800

    update Relu layer for xceptionnet in cnn example
---
 examples/cnn/autograd/xceptionnet.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/examples/cnn/autograd/xceptionnet.py b/examples/cnn/autograd/xceptionnet.py
index 357e47d5..8fb23d8c 100644
--- a/examples/cnn/autograd/xceptionnet.py
+++ b/examples/cnn/autograd/xceptionnet.py
@@ -225,7 +225,7 @@ class Xception(layer.Layer):
         self.bn3 = layer.BatchNorm2d(1536)
         self.relu3 = layer.ReLU()
 
-        # do relu here
+        # Relu Layer
         self.conv4 = layer.SeparableConv2d(1536, 2048, 3, 1, 1)
         self.bn4 = layer.BatchNorm2d(2048)