-
Notifications
You must be signed in to change notification settings - Fork 69
Description
Hello! :)
I am working on a project on image to image translation with cerebral images and I'm using SIFA.
I have a doubt about the way you save the images and I hope you can help me.
In main.py. line 288 ( "for name, tensor in zip(names, tensors)" ) you iterate and save all the 6 images that SIFA produces.
Given lines 258 and 285:
names = [ 'inputA_', ' inputB_', 'fakeA_', 'fakeB_', 'cycA_', 'cycB_']
tensors = [inputs['images_i'], inputs['images_j'], fake_B_temp, fake_A_temp, cyc_A_temp, cyc_B_temp]
The thing I don't understand is why you call the tensor fake_B_temp with the name fake A and viceversa.
Is this fake_B_temp the image transformed from source into target or is the image from target into source?
Thanks in advance.