1. Input -- CMYK Image, 128x128 resolution. All pixel values are real numbers scaled between 0-1.
2. Convolutional -- 30, 3x3 filters. Stride =1 -- RelU
3. Convolutional -- 12, 5x5 filters. Stride = 1 -- RelU
4. Max Pooling -- 2x2, Stride = 1
5. Custom Layer, Channel Normalization -- The mean and standard deviation is calculated for each incoming channel. The output is a tensor where each channel is separately normalized (z-scores).
6. Flattening Layer
7. Fully Connected -- 157 neurons -- softmax
These are the specification that I need to meet. My problem is with the 5th layer about to create it.
And when I am trying to create a np array from the 4th layer output, it is showing me an error.
error - Cannot convert a symbolic Keras input/output to a numpy array.
Here is the code up to which I have done,
--
You received this message because you are subscribed to the Google Groups "Keras-users" group.
To unsubscribe from this group and stop receiving emails from it, send an email to keras-users...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/keras-users/64c9aecb-f71a-4c44-a6e3-0e554122e133n%40googlegroups.com.