@@ -15,8 +15,8 @@ Read the paper [here](https://arxiv.org/abs/1902.06714).
15
15
16
16
## Features
17
17
18
- * Training and inference of dense (fully connected) and convolutional neural
19
- networks
18
+ * Training and inference of dense (fully connected), convolutional (1-d and 2-d),
19
+ and transformer neural networks
20
20
* Stochastic gradient descent optimizers: Classic, momentum, Nesterov momentum,
21
21
RMSProp, Adagrad, Adam, AdamW
22
22
* More than a dozen activation functions and their derivatives
@@ -41,9 +41,8 @@ Read the paper [here](https://arxiv.org/abs/1902.06714).
41
41
| Linear (2-d) | ` linear2d ` | ` input2d ` , ` layernorm ` , ` linear2d ` , ` self_attention ` | 2 | ✅ | ✅ |
42
42
| Self-attention | ` self_attention ` | ` input2d ` , ` layernorm ` , ` linear2d ` , ` self_attention ` | 2 | ✅ | ✅ |
43
43
| Layer Normalization | ` layernorm ` | ` linear2d ` , ` self_attention ` | 2 | ✅ | ✅ |
44
- | Flatten | ` flatten ` | ` input2d ` , ` input3d ` , ` conv2d ` , ` maxpool2d ` , ` reshape ` | 1 | ✅ | ✅ |
45
- | Reshape (1-d to 2-d) | ` reshape2d ` | ` input2d ` , ` conv1d ` , ` locally_connected1d ` , ` maxpool1d ` | 2 | ✅ | ✅ |
46
- | Reshape (1-d to 3-d) | ` reshape ` | ` input1d ` , ` dense ` , ` flatten ` | 3 | ✅ | ✅ |
44
+ | Flatten | ` flatten ` | ` input2d ` , ` input3d ` , ` conv1d ` , ` conv2d ` , ` maxpool1d ` , ` maxpool2d ` , ` reshape ` | 1 | ✅ | ✅ |
45
+ | Reshape (1-d to 2-d or 3-d) | ` reshape ` | ` dense ` , ` dropout ` , ` flatten ` , ` input1d ` | 2, 3 | ✅ | ✅ |
47
46
48
47
## Getting started
49
48
@@ -263,11 +262,13 @@ It may be useful to read if you want to contribute a new feature to neural-fortr
263
262
264
263
Thanks to all open-source contributors to neural-fortran:
265
264
[ awvwgk] ( https://github.com/awvwgk ) ,
265
+ [ certik] ( https://github.com/certik ) ,
266
266
[ ggoyman] ( https://github.com/ggoyman ) ,
267
267
[ ivan-pi] ( https://github.com/ivan-pi ) ,
268
268
[ jacobwilliams] ( https://github.com/jacobwilliams ) ,
269
269
[ jvdp1] ( https://github.com/jvdp1 ) ,
270
270
[ jvo203] ( https://github.com/jvo203 ) ,
271
+ [ mathomp4] ( https://github.com/mathomp4 ) ,
271
272
[ milancurcic] ( https://github.com/milancurcic ) ,
272
273
[ OneAdder] ( https://github.com/OneAdder ) ,
273
274
[ pirpyn] ( https://github.com/pirpyn ) ,
0 commit comments