IDSIA / brainstorm

Fast, flexible and fun neural networks.
Other
1.3k stars 152 forks source link

Allow slice-notation for layer wiring #3

Closed Qwlouse closed 9 years ago

Qwlouse commented 9 years ago

This is a big feature that would allow you to do

inp = InputLayer(20) outp = ForwardLayer(4) inp[:10] >> ForwardLayer() >> outp inp[10:] >> ForwardLayer() >> outp

Qwlouse commented 9 years ago

This feature is dead because of the restrictions on buffer slicing