TODO added

pull/10/head
Eren Golge 2019-07-16 15:18:00 +02:00
parent aec7f02817
commit f8195834ee
1 changed files with 1 additions and 0 deletions

View File

@ -67,6 +67,7 @@ class BatchNormConv1d(nn.Module):
class Highway(nn.Module):
# TODO: Try GLU layer
def __init__(self, in_size, out_size):
super(Highway, self).__init__()
self.H = nn.Linear(in_size, out_size)