I'm trying to build a regression model in keras, the input will be a normalized greyscale image, and the output of the model will be a normalized greyscale image too.
I'm aware that a sigmoid at the output is not ideal for regression models since it gives a probability between [0 , 1] which is good for classification problems. but since my data is already normalized between [0 , 1], would a sigmoid output be a good idea ?
Thank you