-
Notifications
You must be signed in to change notification settings - Fork 268
Open
Description
Hello @vsitzmann,
class Sine(nn.Module):
def __init(self):
super().__init__()should be
class Sine(nn.Module):
def __init__(self):
super(Sine).__init__(self)Diff:
class Sine(nn.Module):
- def __init(self):
+ def __init__(self):
- super().__init__()
+ super(Sine).__init__(self)Defined here
Line 28 in 4df34ba
| class Sine(nn.Module): |
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
No labels