Implementations of various Recurrent Neural Networks in Tensorflow 2
basic_builder.py: Returns specified RNN neural networkcustom_layers.py: Implementation of dilated RNN layerpredefined_networks.py: Examples of networks specifications based on M4 competition winning solution by S. Smylrnn_cells.py: Implementations of various RNN cellsrnn_constructor.py: Given the RNN network specification given by either basic_builder or one of the predefined_networks this class constructs tf.keras.Model which can then be compiled and trainedtrain_predefined_networks.ipynb: Simple example of how this repository can be used