Skip to content
Snippets Groups Projects
Commit d6bb9982 authored by s.islam's avatar s.islam
Browse files

REPORT-14: Ch:1, densenet161, MSE

parent a21fa20d
No related branches found
Tags v2.4.0c
No related merge requests found
......@@ -37,7 +37,7 @@ class TestModule(pl.LightningModule):
classes=1, # classes == output channels. We use one output channel for cyto data
activation="sigmoid"
)
self.loss_f = torch.nn.L1Loss() #torch.nn.L1Loss() #RMILoss(with_logits=True) #torch.nn.MSELoss()
self.loss_f = torch.nn.MSELoss() #torch.nn.L1Loss() #RMILoss(with_logits=True) #torch.nn.MSELoss()
def forward(self, x):
x = self.model(x)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment