Skip to content

Commit

Permalink
changed keywords
Browse files Browse the repository at this point in the history
  • Loading branch information
connor-krill committed Aug 1, 2024
1 parent 60f16ab commit 54cf6a8
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions src/UQpy/scientific_machine_learning/baseclass/Loss.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,8 @@


class Loss(nn.Module, ABC):
def __init__(self, **kwargs):
super().__init__(**kwargs)
def __init__(self):
super().__init__()

@abstractmethod
def forward(self):
...
def forward(self, *args, **kwargs): ...

0 comments on commit 54cf6a8

Please sign in to comment.