better network model

This commit is contained in:
Francesco Gatti
2017-08-01 23:03:02 +02:00
parent 300b0af5dd
commit e8355cee67
22 changed files with 166 additions and 179 deletions
+1 -2
View File
@@ -5,8 +5,7 @@
namespace tkDNN {
MulAdd::MulAdd(Network *net, dataDim_t input_dim, value_type mul, value_type add) :
Layer(net, input_dim) {
MulAdd::MulAdd(Network *net, value_type mul, value_type add) : Layer(net) {
this->mul = mul;
this->add = add;