@@ -33,11 +33,9 @@ Read the paper [here](https://arxiv.org/abs/1902.06714).
3333| Embedding | ` embedding ` | n/a | 2 | ✅ | ✅ |
3434| Dense (fully-connected) | ` dense ` | ` input1d ` , ` dense ` , ` dropout ` , ` flatten ` | 1 | ✅ | ✅ |
3535| Dropout | ` dropout ` | ` dense ` , ` flatten ` , ` input1d ` | 1 | ✅ | ✅ |
36- | Locally connected (1-d) | ` locally_connected1d ` | ` input2d ` , ` locally_connected1d ` , ` conv1d ` , ` maxpool1d ` , ` reshape2d ` | 2 | ✅ | ✅ |
37- | Convolutional (1-d) | ` conv1d ` | ` input2d ` , ` conv1d ` , ` maxpool1d ` , ` reshape2d ` | 2 | ✅ | ✅ |
38- | Convolutional (2-d) | ` conv2d ` | ` input3d ` , ` conv2d ` , ` maxpool2d ` , ` reshape ` | 3 | ✅ | ✅ |
39- | Max-pooling (1-d) | ` maxpool1d ` | ` input2d ` , ` conv1d ` , ` maxpool1d ` , ` reshape2d ` | 2 | ✅ | ✅ |
40- | Max-pooling (2-d) | ` maxpool2d ` | ` input3d ` , ` conv2d ` , ` maxpool2d ` , ` reshape ` | 3 | ✅ | ✅ |
36+ | Locally connected (1-d) | ` locally_connected ` | ` input ` , ` locally_connected ` , ` conv ` , ` maxpool ` , ` reshape ` | 2 | ✅ | ✅ |
37+ | Convolutional (1-d and 2-d) | ` conv ` | ` input ` , ` conv ` , ` maxpool ` , ` reshape ` | 2, 3 | ✅ | ✅ |
38+ | Max-pooling (1-d and 2-d) | ` maxpool ` | ` input ` , ` conv ` , ` maxpool ` , ` reshape ` | 2, 3 | ✅ | ✅ |
4139| Linear (2-d) | ` linear2d ` | ` input2d ` , ` layernorm ` , ` linear2d ` , ` self_attention ` | 2 | ✅ | ✅ |
4240| Self-attention | ` self_attention ` | ` input2d ` , ` layernorm ` , ` linear2d ` , ` self_attention ` | 2 | ✅ | ✅ |
4341| Layer Normalization | ` layernorm ` | ` linear2d ` , ` self_attention ` | 2 | ✅ | ✅ |
0 commit comments