Skip to content

Commit cc2a579

Browse files
committed
Removed extra fc2 declaration
1 parent 2294090 commit cc2a579

File tree

1 file changed

+0
-1
lines changed

1 file changed

+0
-1
lines changed

model.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,6 @@ def __init__(self, n_classes, seq_length, batch_size):
6969
self.fc1 = nn.Linear(self.hidden_dim * self.directions, 100)
7070
self.dropout = nn.Dropout(p=0.5)
7171
self.fc2 = nn.Linear(100, n_classes)
72-
self.fc2 = nn.Linear(self.hidden_dim, n_classes)
7372

7473
def init_hidden(self, input_length):
7574
# The axes semantics are (num_layers * num_directions, minibatch_size, hidden_dim)

0 commit comments

Comments
 (0)