Hello everyone, I have problem with multi output regression.
I want to find a model that makes an image,output, with a voltage,input.
However, because the image shape is too various, I want to make a model with
a train set that only deal with a single each pixel.
Than I want it to use at the various shape of image.
For example, I want to make a model that maps v to X that is a vector having a shape of (1,0,0,0), (0,1,0,0) ,(0,0,0,1).. example.
With that model I want to map the test v to x that is like (1,0,1,0).
Through linear activation function based learning, it suceeded.
However it is hard to make it in a more precise way with nonlinear activation function, like ReLU.
Actually it seems that ReLU tends to pick a single pixel of the desired test image.
So if there is some tips related to this problem, I want to ask some help.
Because I am not majoring in computer science, I need your help, please.
Thank you.