comma is better

This commit is contained in:
lvmin 2023-09-10 11:02:25 -07:00
parent 8a6cfbbf15
commit b10d9d78f6

View File

@ -19,7 +19,7 @@ class FooocusExpansion:
print('Fooocus Expansion engine loaded.')
def __call__(self, prompt, seed):
prompt = safe_str(prompt) + '. ' # reduce semantic corruption.
prompt = safe_str(prompt) + ', ' # Reduce semantic corruption.
seed = int(seed)
set_seed(seed)
response = self.pipe(prompt, max_length=len(prompt) + 256)