henry2024 commited on
Commit
e455428
1 Parent(s): cabae0b

Update model.py

Browse files
Files changed (1) hide show
  1. model.py +1 -1
model.py CHANGED
@@ -5,7 +5,7 @@ class RNN_model(nn.Module):
5
  def __init__(self):
6
  super().__init__()
7
 
8
- self.rnn= nn.RNN(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):
 
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):