deephealthproject / eddl

European Distributed Deep Learning (EDDL) library. A general-purpose library initially developed to cover deep learning needs in healthcare use cases within the DeepHealth project.
https://deephealthproject.github.io/eddl/
MIT License
34 stars 10 forks source link

Fix generic axis concat #151

Closed salvacarrion closed 4 years ago

salvacarrion commented 4 years ago

Remove hard-coded axis in LConcat:

shape[1] = t; => shape[this->axis] = t;

salvacarrion commented 4 years ago

done