[Dclib-devel] [dclib-devel] DNN: Add previous layer
Brought to you by:
davisking
From: Eloi Du B. <elo...@gm...> - 2018-02-10 20:58:44
|
Hi, Let's say I define: template <template <typename> class Block, typename SUBNET> using merge = dlib::add_prev1<Block<dlib::tag1<SUBNET>>>; Is it ok to use this recursively, like: using Net = dlib::relu<merge<block1, merge<block2, InputMat>>>; I mean, is it going to be a problem because I use several times tag1? If this is not correct how can I do? I just want to add 3 layers together. Thanks, |