-
Notifications
You must be signed in to change notification settings - Fork 57
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
proposal: automatic output file naming #80
Comments
I would like to ask if it is possible to embed the prompt as EXIF data in a PNG file, so that when the image is imported into photographic software, the prompt appears as a description. In general, could the JSON created with the –metadata option also be embedded as EXIF data? |
@azrahello We do export this information with the created png file since a while back (even if you do not include the -metadata flag). For example, for an image
then you will see this kind of information (including the prompt):
I did not spend too much time on the this feature, and there are probably better ways to structure this information so that it can be read by various image applications. E.g would be nice if it was shown in the info section in macOS etc (right now it is not shown) |
@anthonywu I like your suggestions here |
Currently the pattern for automatic image naming is
image.*
and the subsequent images are smartly indexed asimage-N.*
etc.However, I think we can make some improvements:
image-512x512.png
dog-play-in-park.*
. The tool can be something traditional/fast likenltk
or some other modern embedding/ranking tool for finding the most relevant keywords.{iso_date} ISO date
yyyy-mm-dd`{unix_timestamp}
viadate +%s
or python str fmt{seed}
guidance
,quantize
, etcnot trying to scope creep on what we support - just enough that every file name can be reasonably expected to be unique (seed and prompt summary, at the minimum)
We can also make a API for a
OutputFileNamer
- we'll provide reasonable defaults, and any users of the library can inject their own customization as needed.The text was updated successfully, but these errors were encountered: