File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff 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
You can’t perform that action at this time.
0 commit comments