Skip to content

Commit

Permalink
add space between words
Browse files Browse the repository at this point in the history
  • Loading branch information
Yuki Hashimoto committed Jul 23, 2018
1 parent 6011249 commit 6603c57
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions chainer/links/connection/convolution_2d.py
Expand Up @@ -149,10 +149,10 @@ def _initialize_params(self, in_channels):
kh, kw = _pair(self.ksize)
if self.out_channels % self.groups != 0:
raise ValueError('the number of output channels must be'
'divisible by the number of groups')
' divisible by the number of groups')
if in_channels % self.groups != 0:
raise ValueError('the number of input channels must be'
'divisible by the number of groups')
' divisible by the number of groups')
W_shape = (self.out_channels, int(in_channels / self.groups), kh, kw)
self.W.initialize(W_shape)

Expand Down

0 comments on commit 6603c57

Please sign in to comment.