Skip to content
Snippets Groups Projects
Commit 7ac8e4d9 authored by Krishna Krishna Nikhil's avatar Krishna Krishna Nikhil
Browse files

Update surrogate.py

parent 402e6dc3
Branches
No related tags found
No related merge requests found
......@@ -70,7 +70,7 @@ class Surrogate(torch.nn.Module):
# take into account that
self.layers = torch.nn.Sequential(
#torch.nn.BatchNorm1d(n_detector_parameters + n_true_context_inputs + n_reco_parameters + 1),
torch.nn.Linear(n_detector_parameters + n_true_context_inputs + n_reco_parameters + 1 , 100), #1 for time step
torch.nn.Linear(n_detector_parameters + n_true_context_inputs + n_reco_parameters + 1 , 100), #1 for time step, removed + 1 for including cost in the OG parameters too
torch.nn.ELU(),
#torch.nn.BatchNorm1d(100),
torch.nn.Linear(100, 100),
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment