File tree 1 file changed +3
-3
lines changed
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).
27
27
| Layer type | Constructor name | Supported input layers | Rank of output array | Forward pass | Backward pass |
28
28
| ------------| ------------------| ------------------------| ----------------------| --------------| ---------------|
29
29
| 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 | ✅ | ❌ |
33
33
34
34
## Getting started
35
35
You can’t perform that action at this time.
0 commit comments