I am fine tuning a neural net that takes 2 input images, which are later concatenated. To fine tune, I would like to perform regression and add labels to this network.
How can I do this? Currently, the net uses an ImageData
layer for input which I will have to change to HDF5
. But how can I pass a single label to these two input channels?
I have looked around at how to do this and I found this question. However, here they create a single HDF5 file with 2 input images. In my case, I'd have two HDF5 files with 1 input image, which are then concatenated and then has 1 to the same label.