Spaces:
Runtime error
Runtime error
Update DummyModel.py
Browse files- DummyModel.py +1 -1
DummyModel.py
CHANGED
@@ -6,5 +6,5 @@ class DummyModel(torch.nn.Module):
|
|
6 |
def __init__(self):
|
7 |
super().__init__()
|
8 |
|
9 |
-
def
|
10 |
return 1
|
|
|
6 |
def __init__(self):
|
7 |
super().__init__()
|
8 |
|
9 |
+
def forward(self, x):
|
10 |
return 1
|