ru-dalle
ru-dalle copied to clipboard
Save images separately
Hey! How can i save every images separately?
show(sr_images, 24, save_dir='Z:/out')' , but how to save images with random names ?
they are not random, they are numbered. Anyway, you can adapt a python code from other collabs or, if you don't know enough, like me, you can use !zip to compress an entire folder:
show(sr_images, 24, save_dir='steps')
zip -r compressed.zip steps/
I derivated a collab with that modifications here https://bit.ly/rudallesmax so , thank you very much @bitcoin5000 for the save_dir tip.