Skip to content

Commit

Permalink
increase size of fc-encoder
Browse files Browse the repository at this point in the history
  • Loading branch information
LarsKue committed Jan 6, 2024
1 parent b6b10ce commit a46bb02
Showing 1 changed file with 2 additions and 5 deletions.
7 changes: 2 additions & 5 deletions src/models/model.py
Original file line number Diff line number Diff line change
Expand Up @@ -101,12 +101,9 @@ def __init__(self, hparams, *datasets):
pools.Mean(dim=1),
nn.Flatten(),

ResidualBlock(1024, 8),

nn.Sequential(nn.Linear(1024, 512), nn.SELU()),
ResidualBlock(512, 4),
ResidualBlock(1024, 12),

nn.Linear(512, self.hparams.embeddings),
nn.Linear(1024, self.hparams.embeddings),
)

self.flow = nn.Sequential(
Expand Down

0 comments on commit a46bb02

Please sign in to comment.