Wrong macro usage in CNN example
Opened this issue · 0 comments
LarsWulfert commented
After merging #18 the wrong macro is used when initializing the sigmoid layer in the example "0_Universal/6_CNN/1_CNN_Training_F32/". However, this does not affect the result of the training!
In line 141, instead of
ailayer_sigmoid_f32_t sigmoid_layer_3 = AILAYER_RELU_F32_A();
should be
ailayer_sigmoid_f32_t sigmoid_layer_3 = AILAYER_SIGMOID_F32_A();
should be used.