fix selu nn bug.

This commit is contained in:
z00512249 2022-07-19 10:44:33 +08:00
parent 66761f2808
commit 0450be47ee
1 changed files with 1 additions and 1 deletions

View File

@ -553,7 +553,7 @@ class SeLU(Cell):
def __init__(self):
"""Initialize SeLU"""
super(SeLU).__init__()
super(SeLU, self).__init__()
self.selu = P.SeLU()
def construct(self, input_x):