Hello everyone,
I would like to implement the architecture of N-BEATS network (https://arxiv.org/pdf/1905.10437.pdf) in julia Flux. A simple example of a part of the architecture is shown in the following figure.
Is there a way to define the connections between the layers individually? For example connect one layer with 64 neurons to two other layers (96 and 32 neurons). The Flux.SkipConnection method does not seem to work here, as I only want to connect the input values to the first output of Block #1.