Skip to content

Commit

Permalink
accomodating -> accommodating
Browse files Browse the repository at this point in the history
  • Loading branch information
ss18 committed Dec 29, 2018
1 parent d1b7e15 commit bbf0375
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion model.py
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ def __init__(self, inChannels, outChannels):
super(up, self).__init__()
# Initialize convolutional layers.
self.conv1 = nn.Conv2d(inChannels, outChannels, 3, stride=1, padding=1)
# (2 * outChannels) is used for accomodating skip connection.
# (2 * outChannels) is used for accommodating skip connection.
self.conv2 = nn.Conv2d(2 * outChannels, outChannels, 3, stride=1, padding=1)

def forward(self, x, skpCn):
Expand Down

0 comments on commit bbf0375

Please sign in to comment.