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 fedf098 commit e97be10Copy full SHA for e97be10
README.md
@@ -30,6 +30,7 @@ Read the paper [here](https://arxiv.org/abs/1902.06714).
30
| Layer type | Constructor name | Supported input layers | Rank of output array | Forward pass | Backward pass |
31
|------------|------------------|------------------------|----------------------|--------------|---------------|
32
| Input | `input` | n/a | 1, 2, 3 | n/a | n/a |
33
+| Embedding | `embedding` | n/a | 2 | ✅ | ✅ |
34
| Dense (fully-connected) | `dense` | `input1d`, `dense`, `dropout`, `flatten` | 1 | ✅ | ✅ |
35
| Dropout | `dropout` | `dense`, `flatten`, `input1d` | 1 | ✅ | ✅ |
36
| Convolutional (2-d) | `conv2d` | `input3d`, `conv2d`, `maxpool2d`, `reshape` | 3 | ✅ | ✅(*) |
0 commit comments