Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 2 additions & 3 deletions src/models/mlp.py
Original file line number Diff line number Diff line change
Expand Up @@ -261,8 +261,7 @@ def __init__(self, input_dim, output_dim, hidden_dim = 64):
def forward(self, x):
out = self.layer(x)
return out
<<<<<<< HEAD
=======


# For avazu and criteo dataset
class MLP3_256_dense(nn.Module):
Expand Down Expand Up @@ -301,4 +300,4 @@ def forward(self, x):
# x = x.view(x.size(0), -1)
out = self.layer(x)
return out
>>>>>>> 0a51fa38d26db375eda0cbe397a696d8251fe00d