Skip to content

Commit c05368a

Browse files
authoredMay 17, 2022
Merge pull request #70 from modern-fortran/fix-layers-summary-table
Fix layers summary table
2 parents c459ab8 + 55e7f23 commit c05368a

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed
 

‎README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -27,9 +27,9 @@ Read the paper [here](https://arxiv.org/abs/1902.06714).
2727
| Layer type | Constructor name | Supported input layers | Rank of output array | Forward pass | Backward pass |
2828
|------------|------------------|------------------------|----------------------|--------------|---------------|
2929
| Input (1-d and 3-d) | `input` | n/a | 1, 3 | n/a | n/a |
30-
| Dense (fully-connected) | `input` (1-d) | `dense` | 1 |||
31-
| Convolutional (2-d) | `input` (3-d), `conv2d`, `maxpool2d` | `conv2d` | 3 |||
32-
| Max-pooling (2-d) | `input` (3-d), `conv2d`, `maxpool2d` | `maxpool2d` | 3 |||
30+
| Dense (fully-connected) | `dense` | `input` (1-d) | 1 |||
31+
| Convolutional (2-d) | `conv2d` | `input` (3-d), `conv2d`, `maxpool2d` | 3 |||
32+
| Max-pooling (2-d) | `maxpool2d` | `input` (3-d), `conv2d`, `maxpool2d` | 3 |||
3333

3434
## Getting started
3535

0 commit comments

Comments
 (0)
Please sign in to comment.