Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Add an option to X/Y plot script that allows user to compare different prompt orders.
It takes words from your prompt and replaces them using each permutation of the coma separated list you give under X/Y values in the interface. Those tokens are expected to be in the prompt string. This does grow factorially so obviously adding 10 tokens to reorder wont be pleasant, but this may be useful for seeing the difference the order of words in your prompt can make in the result.
Prompt: photorealistic, cute, a photograph, of a (large) cat, jumping, with small ears, (orange:0.6)
X values: (large), jumping, small
Y values: (orange:0.6), cute
For example in this prompt, along the X-axis the prompts will be:
photorealistic, (orange:0.6), a photograph, of a (large) cat, jumping, with small ears, cute
photorealistic, (orange:0.6), a photograph, of a (large) cat, small, with jumping ears, cute
photorealistic, (orange:0.6), a photograph, of a jumping cat, (large), with small ears, cute
etc.
The next one down along the X-axis would be have the positions of
(orange:0.6)
andcute
swapped.photorealistic, cute, a photograph, of a (large) cat, jumping, with small ears, (orange:0.6)
etc.