@@ -15,8 +15,8 @@ Read the paper [here](https://arxiv.org/abs/1902.06714).
1515
1616## Features
1717
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
2020* Stochastic gradient descent optimizers: Classic, momentum, Nesterov momentum,
2121 RMSProp, Adagrad, Adam, AdamW
2222* More than a dozen activation functions and their derivatives
@@ -41,9 +41,8 @@ Read the paper [here](https://arxiv.org/abs/1902.06714).
4141| Linear (2-d) | ` linear2d ` | ` input2d ` , ` layernorm ` , ` linear2d ` , ` self_attention ` | 2 | ✅ | ✅ |
4242| Self-attention | ` self_attention ` | ` input2d ` , ` layernorm ` , ` linear2d ` , ` self_attention ` | 2 | ✅ | ✅ |
4343| 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 | ✅ | ✅ |
4746
4847## Getting started
4948
@@ -263,11 +262,13 @@ It may be useful to read if you want to contribute a new feature to neural-fortr
263262
264263Thanks to all open-source contributors to neural-fortran:
265264[ awvwgk] ( https://github.com/awvwgk ) ,
265+ [ certik] ( https://github.com/certik ) ,
266266[ ggoyman] ( https://github.com/ggoyman ) ,
267267[ ivan-pi] ( https://github.com/ivan-pi ) ,
268268[ jacobwilliams] ( https://github.com/jacobwilliams ) ,
269269[ jvdp1] ( https://github.com/jvdp1 ) ,
270270[ jvo203] ( https://github.com/jvo203 ) ,
271+ [ mathomp4] ( https://github.com/mathomp4 ) ,
271272[ milancurcic] ( https://github.com/milancurcic ) ,
272273[ OneAdder] ( https://github.com/OneAdder ) ,
273274[ pirpyn] ( https://github.com/pirpyn ) ,
0 commit comments