treating sampler types like lists via command line?
See original GitHub issuejust another suggestion… interesting testing with same prompt + seed with different sampler types led to a thought that having the option for ‘each’, or ‘series’ (ddim+plms), or ‘random’ options on --sampler-type might come in handy…
not sure what syntax would be consistent with command line options but maybe using {} or _option_
as per prompt syntaxes might work e.g.:
_each_
= do 1 each of sampler types available (currently 10, thereby creating ten images)
_random_
= choose 1 sampler randomly
‘+ syntax’ for ‘series’ thereby “–sampler-type ddim + plms + k_huen” = step through sampler series list thereby creating three images
or maybe [] easier to parse, e.g. --sampler-type [ddim plms k_huen]
not sure, leave as whether a sensible/useful idea, and implementation details, for you to decide 😃
Issue Analytics
- State:
- Created a year ago
- Comments:6 (3 by maintainers)
Top GitHub Comments
This sounds like a more advanced use case then I’d want to support at the command line. I’d suggest just moving to the python interface at that point.
Untested code but you get the idea:
yeah no worries - thanks for all the great feedback