-
Notifications
You must be signed in to change notification settings - Fork 272
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
Error running process #799
Comments
Same issue here and I haven't found a solution all afternoon |
Same here. No matter which wildcard I use. *** Error running process: E:\Downloads\stable-diffusion-webui-directml\extensions\sd-dynamic-prompts\scripts\dynamic_prompting.py |
Whenever you get "pyparsing.exceptions.ParseException", it means there's something wrong with your prompt syntax. Without seeing the exact prompt, there is no way we can help with these. |
I was having a very similar error (not sure if identical), my problem was that someone had a double underscore "__" in a lora name and it broke all the wildcards it was in. |
To add to this, I had the same problem because a lora being referenced in a wildcard had "!$@" it its prompts, which errored things out. Removing that part of the lora prompt fixed the issue. |
Hello I am getting the Following error while running Dynamic prompts
Error running process: E:\Program Files\Stable Diffusion\sd.webui\webui\extensions\sd-dynamic-prompts\scripts\dynamic_prompting.py
Traceback (most recent call last):
File "E:\Program Files\Stable Diffusion\sd.webui\webui\modules\scripts.py", line 825, in process
script.process(p, *script_args)
File "E:\Program Files\Stable Diffusion\sd.webui\webui\extensions\sd-dynamic-prompts\sd_dynamic_prompts\dynamic_prompting.py", line 480, in process
all_prompts, all_negative_prompts = generate_prompts(
File "E:\Program Files\Stable Diffusion\sd.webui\webui\extensions\sd-dynamic-prompts\sd_dynamic_prompts\helpers.py", line 93, in generate_prompts
all_prompts = prompt_generator.generate(prompt, num_prompts, seeds=seeds) or [""]
File "E:\Program Files\Stable Diffusion\sd.webui\system\python\lib\site-packages\dynamicprompts\generators\batched_combinatorial.py", line 25, in generate
images.extend(self._generator.generate(template, max_prompts, **kwargs))
File "E:\Program Files\Stable Diffusion\sd.webui\system\python\lib\site-packages\dynamicprompts\generators\combinatorial.py", line 37, in generate
str(p) for p in self.context.sample_prompts((template or ""), max_prompts)
File "E:\Program Files\Stable Diffusion\sd.webui\system\python\lib\site-packages\dynamicprompts\sampling_context.py", line 119, in sample_prompts
command = parse(prompt, parser_config=self.parser_config)
File "E:\Program Files\Stable Diffusion\sd.webui\system\python\lib\site-packages\dynamicprompts\parser\parse.py", line 557, in parse
tokens = get_cached_parser(parser_config).parse_string(
File "E:\Program Files\Stable Diffusion\sd.webui\system\python\lib\site-packages\pyparsing\core.py", line 1200, in parse_string
raise exc.with_traceback(None)
pyparsing.exceptions.ParseException: Expected end of text, found '' (at char 964), (line:6, col:297)
Could Someone point me on how to diagnose the issue ?
The text was updated successfully, but these errors were encountered: