I have the following options defined to execute the maximum pool by image depth (rgb) for compression before a dense layer and reading ... and I fail with the error that I cannot combine depth and everything else
sunset_poolmax_1x1x3_div_2x2x3_params = \ {'pool_function':tf.nn.max_pool, 'ksize':[1,1,1,3], 'strides':[1,1,1,3], 'padding': 'SAME'}
I changed the steps to [1,1,1,3] , so depth is the only size reduced by the pool ... but it still doesn't work. I canβt get good results with a tiny image that I have to compress in order to preserve the colors ...
Actual error:
ValueError: The current implementation does not support merging into batch size and depth.
source share