We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 58367fa commit c96881eCopy full SHA for c96881e
src/lasdi/networks.py
@@ -471,7 +471,7 @@ def forward(self, x):
471
472
- Forward mode: 3d array of shape :obj:`self.layer_sizes[-1]`,
473
or 4d array of shape :obj:`[self.batch_reshape[0]] + self.layer_sizes[-1]`
474
- - Backward mode: nd array of shape :attr:`batch_reshape`
+ - Backward mode: nd array of shape :attr:`data_shape` (equal to :attr:`batch_shape`)
475
"""
476
if ((self.batch_reshape is not None) and (self.mode == CNN2D.Mode.Forward)):
477
x = x.view(self.batch_reshape)
0 commit comments