Spaces:
Sleeping
Sleeping
Update model.py
Browse files
model.py
CHANGED
@@ -5,7 +5,7 @@ class RNN_model(nn.Module):
|
|
5 |
def __init__(self):
|
6 |
super().__init__()
|
7 |
|
8 |
-
self.rnn= nn.
|
9 |
self.output= nn.Linear(in_features=240, out_features=24)
|
10 |
|
11 |
def forward(self, x):
|
|
|
5 |
def __init__(self):
|
6 |
super().__init__()
|
7 |
|
8 |
+
self.rnn= nn.GRU(input_size=1080, hidden_size=240,num_layers=1, nonlinearity= 'relu', bias= True)
|
9 |
self.output= nn.Linear(in_features=240, out_features=24)
|
10 |
|
11 |
def forward(self, x):
|