unaryPlus

operator fun Layer.unaryPlus(): Layer

Unary plus.

Add a layer to the list and return itself.

We can do this

    +Input(128, 128)

instead of

    layers.add(Input(128, 128))

Return

the layer