Skip to content

Commit c96881e

Browse files
committed
minor
1 parent 58367fa commit c96881e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/lasdi/networks.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -471,7 +471,7 @@ def forward(self, x):
471471
472472
- Forward mode: 3d array of shape :obj:`self.layer_sizes[-1]`,
473473
or 4d array of shape :obj:`[self.batch_reshape[0]] + self.layer_sizes[-1]`
474-
- Backward mode: nd array of shape :attr:`batch_reshape`
474+
- Backward mode: nd array of shape :attr:`data_shape` (equal to :attr:`batch_shape`)
475475
"""
476476
if ((self.batch_reshape is not None) and (self.mode == CNN2D.Mode.Forward)):
477477
x = x.view(self.batch_reshape)

0 commit comments

Comments
 (0)