Layer factory function to create a composite that applies a sequence of layers (or any functions) onto an input. Sequential `([F, G, H])(x)` means the same as `H(G(F(x)))`.

Sequential(...)

Arguments

...

list of layer functions to apply in sequence

Value

A function that accepts one argument and applies the given functions one after another.