mvitez / thnets

Basic library that can run networks created with Torch
Other
173 stars 23 forks source link

does thnets support branch network? #9

Closed austingg closed 7 years ago

austingg commented 7 years ago

does thnets support branch network or only linear feed forward structure?

mvitez commented 7 years ago

I have recently added Concat, for CPU only.

austingg commented 7 years ago

does Concat equal ConcatTable in torch nn? I have just test a residual network, and got an unknown type "nn.ConcatTable"

mvitez commented 7 years ago

No, it's this one: https://github.com/torch/nn/blob/master/doc/containers.md#nn.Concat

austingg commented 7 years ago

@mvitez thanks a lot for you rely. I will try branch network