-
I am using a dataset that has very specific naming conventions and would like to maintain these naming conventions when saving the "fake" imagery. In example, exp_2002_0001.png (original named input image) and exp_2002_0001_fake_B.png (revised output reflecting new naming convention). What would be the best way to accomplish this task? Thanks in advance!! |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments
-
You can change this line. It currently reads the label (e.g., _fake_B). You can change it to your custom name. image_name = '%s_%s.png' % (name, label) |
Beta Was this translation helpful? Give feedback.
-
I will give it a try, thank you!!! |
Beta Was this translation helpful? Give feedback.
You can change this line. It currently reads the label (e.g., _fake_B). You can change it to your custom name.