I would like to use DeepLearning4j to build and train a U-Net network. To do this I need a dataset iterator that feed the network with an image in input and an other image in output.
I am new to DL4j and all the examples I found explain how build datasets for image classification.
From what I understand, I need to instanciate an ImageRecordReader with my files and then create my dataset iterator using the RecordReaderDataSetIterator class.
The thing is, I don't know how to specify in the ImageRecordReader that my labels are also images.
Can someone explain me how to do it or point me to some revelant ressources?
Thanks