Spaces:
Runtime error
Runtime error
Missing arm, unrealistic position, impossible contortion, visible bone, blurred, blurry
Browse files
app.py
CHANGED
|
@@ -1021,7 +1021,7 @@ with block:
|
|
| 1021 |
enable_preview = gr.Checkbox(label='Enable preview', value=True, info='Display a preview around each second generated but it costs 2 sec. for each second generated.')
|
| 1022 |
use_teacache = gr.Checkbox(label='Use TeaCache', value=False, info='Faster speed, but often makes hands and fingers slightly worse.')
|
| 1023 |
|
| 1024 |
-
n_prompt = gr.Textbox(label="Negative Prompt", value="Missing arm, unrealistic position, impossible contortion, blurred, blurry", info='Requires using normal CFG (undistilled) instead of Distilled (set Distilled=1 and CFG > 1).')
|
| 1025 |
|
| 1026 |
latent_window_size = gr.Slider(label="Latent Window Size", minimum=1, maximum=33, value=9, step=1, info='Generate more frames at a time (larger chunks). Less degradation and better blending but higher VRAM cost. Should not change.')
|
| 1027 |
steps = gr.Slider(label="Steps", minimum=1, maximum=100, value=25, step=1, info='Increase for more quality, especially if using high non-distilled CFG. Changing this value is not recommended.')
|
|
@@ -1124,7 +1124,7 @@ with block:
|
|
| 1124 |
"./img_examples/Example1.png", # input_image
|
| 1125 |
"A dolphin emerges from the water, photorealistic, realistic, intricate details, 8k, insanely detailed",
|
| 1126 |
"image", # generation_mode
|
| 1127 |
-
"Missing arm, unrealistic position, impossible contortion, blurred, blurry", # n_prompt
|
| 1128 |
True, # randomize_seed
|
| 1129 |
42, # seed
|
| 1130 |
672, # resolution
|
|
@@ -1143,7 +1143,7 @@ with block:
|
|
| 1143 |
"./img_examples/Example1.png", # input_image
|
| 1144 |
"View of the sea as far as the eye can see, from the seaside, a piece of land is barely visible on the horizon at the middle, the sky is radiant, reflections of the sun in the water, photorealistic, realistic, intricate details, 8k, insanely detailed",
|
| 1145 |
"image", # generation_mode
|
| 1146 |
-
"Missing arm, unrealistic position, impossible contortion, blurred, blurry", # n_prompt
|
| 1147 |
True, # randomize_seed
|
| 1148 |
42, # seed
|
| 1149 |
672, # resolution
|
|
@@ -1172,7 +1172,7 @@ with block:
|
|
| 1172 |
[
|
| 1173 |
"./img_examples/Example1.mp4", # input_video
|
| 1174 |
"View of the sea as far as the eye can see, from the seaside, a piece of land is barely visible on the horizon at the middle, the sky is radiant, reflections of the sun in the water, photorealistic, realistic, intricate details, 8k, insanely detailed",
|
| 1175 |
-
"Missing arm, unrealistic position, blurred, blurry", # n_prompt
|
| 1176 |
True, # randomize_seed
|
| 1177 |
42, # seed
|
| 1178 |
1, # batch
|
|
@@ -1194,7 +1194,7 @@ with block:
|
|
| 1194 |
[
|
| 1195 |
"./img_examples/Example1.mp4", # input_video
|
| 1196 |
"View of the sea as far as the eye can see, from the seaside, a piece of land is barely visible on the horizon at the middle, the sky is radiant, reflections of the sun in the water, photorealistic, realistic, intricate details, 8k, insanely detailed",
|
| 1197 |
-
"Missing arm, unrealistic position, blurred, blurry", # n_prompt
|
| 1198 |
True, # randomize_seed
|
| 1199 |
42, # seed
|
| 1200 |
1, # batch
|
|
@@ -1227,7 +1227,7 @@ with block:
|
|
| 1227 |
"./img_examples/Example1.png", # input_image
|
| 1228 |
"A dolphin emerges from the water, photorealistic, realistic, intricate details, 8k, insanely detailed",
|
| 1229 |
"image", # generation_mode
|
| 1230 |
-
"Missing arm, unrealistic position, impossible contortion, blurred, blurry", # n_prompt
|
| 1231 |
True, # randomize_seed
|
| 1232 |
42, # seed
|
| 1233 |
672, # resolution
|
|
@@ -1255,7 +1255,7 @@ with block:
|
|
| 1255 |
[
|
| 1256 |
"./img_examples/Example1.mp4", # input_video
|
| 1257 |
"View of the sea as far as the eye can see, from the seaside, a piece of land is barely visible on the horizon at the middle, the sky is radiant, reflections of the sun in the water, photorealistic, realistic, intricate details, 8k, insanely detailed",
|
| 1258 |
-
"Missing arm, unrealistic position, blurred, blurry", # n_prompt
|
| 1259 |
True, # randomize_seed
|
| 1260 |
42, # seed
|
| 1261 |
1, # batch
|
|
|
|
| 1021 |
enable_preview = gr.Checkbox(label='Enable preview', value=True, info='Display a preview around each second generated but it costs 2 sec. for each second generated.')
|
| 1022 |
use_teacache = gr.Checkbox(label='Use TeaCache', value=False, info='Faster speed, but often makes hands and fingers slightly worse.')
|
| 1023 |
|
| 1024 |
+
n_prompt = gr.Textbox(label="Negative Prompt", value="Missing arm, unrealistic position, impossible contortion, visible bone, blurred, blurry", info='Requires using normal CFG (undistilled) instead of Distilled (set Distilled=1 and CFG > 1).')
|
| 1025 |
|
| 1026 |
latent_window_size = gr.Slider(label="Latent Window Size", minimum=1, maximum=33, value=9, step=1, info='Generate more frames at a time (larger chunks). Less degradation and better blending but higher VRAM cost. Should not change.')
|
| 1027 |
steps = gr.Slider(label="Steps", minimum=1, maximum=100, value=25, step=1, info='Increase for more quality, especially if using high non-distilled CFG. Changing this value is not recommended.')
|
|
|
|
| 1124 |
"./img_examples/Example1.png", # input_image
|
| 1125 |
"A dolphin emerges from the water, photorealistic, realistic, intricate details, 8k, insanely detailed",
|
| 1126 |
"image", # generation_mode
|
| 1127 |
+
"Missing arm, unrealistic position, impossible contortion, visible bone, blurred, blurry", # n_prompt
|
| 1128 |
True, # randomize_seed
|
| 1129 |
42, # seed
|
| 1130 |
672, # resolution
|
|
|
|
| 1143 |
"./img_examples/Example1.png", # input_image
|
| 1144 |
"View of the sea as far as the eye can see, from the seaside, a piece of land is barely visible on the horizon at the middle, the sky is radiant, reflections of the sun in the water, photorealistic, realistic, intricate details, 8k, insanely detailed",
|
| 1145 |
"image", # generation_mode
|
| 1146 |
+
"Missing arm, unrealistic position, impossible contortion, visible bone, blurred, blurry", # n_prompt
|
| 1147 |
True, # randomize_seed
|
| 1148 |
42, # seed
|
| 1149 |
672, # resolution
|
|
|
|
| 1172 |
[
|
| 1173 |
"./img_examples/Example1.mp4", # input_video
|
| 1174 |
"View of the sea as far as the eye can see, from the seaside, a piece of land is barely visible on the horizon at the middle, the sky is radiant, reflections of the sun in the water, photorealistic, realistic, intricate details, 8k, insanely detailed",
|
| 1175 |
+
"Missing arm, unrealistic position, impossible contortion, visible bone, blurred, blurry", # n_prompt
|
| 1176 |
True, # randomize_seed
|
| 1177 |
42, # seed
|
| 1178 |
1, # batch
|
|
|
|
| 1194 |
[
|
| 1195 |
"./img_examples/Example1.mp4", # input_video
|
| 1196 |
"View of the sea as far as the eye can see, from the seaside, a piece of land is barely visible on the horizon at the middle, the sky is radiant, reflections of the sun in the water, photorealistic, realistic, intricate details, 8k, insanely detailed",
|
| 1197 |
+
"Missing arm, unrealistic position, impossible contortion, visible bone, blurred, blurry", # n_prompt
|
| 1198 |
True, # randomize_seed
|
| 1199 |
42, # seed
|
| 1200 |
1, # batch
|
|
|
|
| 1227 |
"./img_examples/Example1.png", # input_image
|
| 1228 |
"A dolphin emerges from the water, photorealistic, realistic, intricate details, 8k, insanely detailed",
|
| 1229 |
"image", # generation_mode
|
| 1230 |
+
"Missing arm, unrealistic position, impossible contortion, visible bone, blurred, blurry", # n_prompt
|
| 1231 |
True, # randomize_seed
|
| 1232 |
42, # seed
|
| 1233 |
672, # resolution
|
|
|
|
| 1255 |
[
|
| 1256 |
"./img_examples/Example1.mp4", # input_video
|
| 1257 |
"View of the sea as far as the eye can see, from the seaside, a piece of land is barely visible on the horizon at the middle, the sky is radiant, reflections of the sun in the water, photorealistic, realistic, intricate details, 8k, insanely detailed",
|
| 1258 |
+
"Missing arm, unrealistic position, impossible contortion, visible bone, blurred, blurry", # n_prompt
|
| 1259 |
True, # randomize_seed
|
| 1260 |
42, # seed
|
| 1261 |
1, # batch
|