Skip to content

Commit

Permalink
go back to 256x256 inputs
Browse files Browse the repository at this point in the history
Former-commit-id: 0a8cbd9cf9d2a80e143b5c41d6e33e029fec53ed
  • Loading branch information
Javi Ribera committed Feb 25, 2018
1 parent f2d0f8f commit e4a65a4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion unet_model.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ def __init__(self, n_channels, n_classes,

self.known_n_points = known_n_points
if known_n_points is None:
self.regressor = nn.Linear(288*384, 1)
self.regressor = nn.Linear(256*256, 1)
self.regressor_nonlin = nn.Softplus()

def forward(self, x):
Expand Down

0 comments on commit e4a65a4

Please sign in to comment.