I am trying to save my images with the time epoch plus iterating integers like this:
text_img.save('/content/result/' + epoch + '_%03d' + '.png' , format="png")
However, the output is something like this:
16087965_%03d.jpg
The formatting does not work for some reason. I do not know why.
_%03dsupposed to give?_001,_002, and so on