Skip to content

Commit

Permalink
changing model to four inputs
Browse files Browse the repository at this point in the history
  • Loading branch information
beckynevin committed Nov 8, 2023
1 parent b8ce7bb commit 32a976a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/scripts/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ class de_no_var(nn.Module):
def __init__(self):
super().__init__()
drop_percent = 0.1
self.ln_1 = nn.Linear(3, 100)
self.ln_1 = nn.Linear(4, 100)
self.act1 = nn.ReLU()
self.drop1 = nn.Dropout(drop_percent)
self.ln_2 = nn.Linear(100, 100)
Expand All @@ -36,7 +36,7 @@ class de_var(nn.Module):
def __init__(self):
super().__init__()
drop_percent = 0.1
self.ln_1 = nn.Linear(3, 100)
self.ln_1 = nn.Linear(4, 100)
self.act1 = nn.ReLU()
self.drop1 = nn.Dropout(drop_percent)
self.ln_2 = nn.Linear(100, 100)
Expand Down

0 comments on commit 32a976a

Please sign in to comment.