adirik / deforum-kandinsky-2-2
Generate videos from text prompts with Kandinsky-2.2
Prediction
adirik/deforum-kandinsky-2-2:c0941f93ddd4ea5b50131abc0a4d03a82a33a18af290be54a3f9a3f9673afa3aInput
- fps
- 24
- seed
- 17
- steps
- 80
- width
- 640
- height
- 640
- scheduler
- euler_ancestral
- animations
- live | right | right | right | live
- max_frames
- 72
- prompt_durations
- 0.6 | 0.3 | 1 | 0.3 | 0.8
- animation_prompts
- winter forest, snowflakes, Van Gogh style | spring forest, flowers, sun rays, Van Gogh style | summer forest, lake, reflections on the water, summer sun, Van Gogh style | autumn forest, rain, Van Gogh style | winter forest, snowflakes, Van Gogh style
{ "fps": 24, "seed": 17, "steps": 80, "width": 640, "height": 640, "scheduler": "euler_ancestral", "animations": "live | right | right | right | live", "max_frames": 72, "prompt_durations": "0.6 | 0.3 | 1 | 0.3 | 0.8", "animation_prompts": "winter forest, snowflakes, Van Gogh style | spring forest, flowers, sun rays, Van Gogh style | summer forest, lake, reflections on the water, summer sun, Van Gogh style | autumn forest, rain, Van Gogh style | winter forest, snowflakes, Van Gogh style" }
Install Replicate’s Node.js client library:npm install replicate
Import and set up the client:import Replicate from "replicate"; const replicate = new Replicate({ auth: process.env.REPLICATE_API_TOKEN, });
Run adirik/deforum-kandinsky-2-2 using Replicate’s API. Check out the model's schema for an overview of inputs and outputs.
const output = await replicate.run( "adirik/deforum-kandinsky-2-2:c0941f93ddd4ea5b50131abc0a4d03a82a33a18af290be54a3f9a3f9673afa3a", { input: { fps: 24, seed: 17, steps: 80, width: 640, height: 640, scheduler: "euler_ancestral", animations: "live | right | right | right | live", max_frames: 72, prompt_durations: "0.6 | 0.3 | 1 | 0.3 | 0.8", animation_prompts: "winter forest, snowflakes, Van Gogh style | spring forest, flowers, sun rays, Van Gogh style | summer forest, lake, reflections on the water, summer sun, Van Gogh style | autumn forest, rain, Van Gogh style | winter forest, snowflakes, Van Gogh style" } } ); // To access the file URL: console.log(output.url()); //=> "http://example.com" // To write the file to disk: fs.writeFile("my-image.png", output);
To learn more, take a look at the guide on getting started with Node.js.
Install Replicate’s Python client library:pip install replicate
Import the client:import replicate
Run adirik/deforum-kandinsky-2-2 using Replicate’s API. Check out the model's schema for an overview of inputs and outputs.
output = replicate.run( "adirik/deforum-kandinsky-2-2:c0941f93ddd4ea5b50131abc0a4d03a82a33a18af290be54a3f9a3f9673afa3a", input={ "fps": 24, "seed": 17, "steps": 80, "width": 640, "height": 640, "scheduler": "euler_ancestral", "animations": "live | right | right | right | live", "max_frames": 72, "prompt_durations": "0.6 | 0.3 | 1 | 0.3 | 0.8", "animation_prompts": "winter forest, snowflakes, Van Gogh style | spring forest, flowers, sun rays, Van Gogh style | summer forest, lake, reflections on the water, summer sun, Van Gogh style | autumn forest, rain, Van Gogh style | winter forest, snowflakes, Van Gogh style" } ) print(output)
To learn more, take a look at the guide on getting started with Python.
Run adirik/deforum-kandinsky-2-2 using Replicate’s API. Check out the model's schema for an overview of inputs and outputs.
curl -s -X POST \ -H "Authorization: Bearer $REPLICATE_API_TOKEN" \ -H "Content-Type: application/json" \ -H "Prefer: wait" \ -d $'{ "version": "adirik/deforum-kandinsky-2-2:c0941f93ddd4ea5b50131abc0a4d03a82a33a18af290be54a3f9a3f9673afa3a", "input": { "fps": 24, "seed": 17, "steps": 80, "width": 640, "height": 640, "scheduler": "euler_ancestral", "animations": "live | right | right | right | live", "max_frames": 72, "prompt_durations": "0.6 | 0.3 | 1 | 0.3 | 0.8", "animation_prompts": "winter forest, snowflakes, Van Gogh style | spring forest, flowers, sun rays, Van Gogh style | summer forest, lake, reflections on the water, summer sun, Van Gogh style | autumn forest, rain, Van Gogh style | winter forest, snowflakes, Van Gogh style" } }' \ https://api.replicate.com/v1/predictions
To learn more, take a look at Replicate’s HTTP API reference docs.
Output
{ "completed_at": "2023-10-17T12:08:39.533902Z", "created_at": "2023-10-17T12:07:02.562051Z", "data_removed": false, "error": null, "id": "atjyxwlb47zxpy42otfndvgy2i", "input": { "fps": 24, "seed": 17, "steps": 80, "width": 640, "height": 640, "scheduler": "euler_ancestral", "animations": "live | right | right | right | live", "max_frames": 72, "prompt_durations": "0.6 | 0.3 | 1 | 0.3 | 0.8", "animation_prompts": "winter forest, snowflakes, Van Gogh style | spring forest, flowers, sun rays, Van Gogh style | summer forest, lake, reflections on the water, summer sun, Van Gogh style | autumn forest, rain, Van Gogh style | winter forest, snowflakes, Van Gogh style" }, "logs": "0%| | 0/71 [00:00<?, ?it/s]/src/deforum_kandinsky/helpers/animation.py:322: FutureWarning: Setting an item of incompatible dtype is deprecated and will raise in a future error of pandas. Value 'euler' has dtype incompatible with float64, please explicitly cast to a compatible dtype first.\nkey_frame_series[i] = numexpr.evaluate(value) if not is_single_string else value # workaround for values formatted like 0:(\"I am test\") //used for sampler schedules\n/src/deforum_kandinsky/helpers/animation.py:332: FutureWarning: Series.interpolate with object dtype is deprecated and will raise in a future version. Call obj.infer_objects(copy=False) before interpolating instead.\nkey_frame_series = key_frame_series.interpolate(method=interp_method.lower(), limit_direction='both')\n/src/deforum_kandinsky/helpers/render.py:242: FutureWarning: Setting an item of incompatible dtype is deprecated and will raise in a future error of pandas. Value 'winter forest, snowflakes, Van Gogh style' has dtype incompatible with float64, please explicitly cast to a compatible dtype first.\ncond_prompt_series[int(i)] = prompt\n/src/deforum_kandinsky/helpers/render.py:248: FutureWarning: Setting an item of incompatible dtype is deprecated and will raise in a future error of pandas. Value 'low quality, bad image, cropped, out of frame' has dtype incompatible with float64, please explicitly cast to a compatible dtype first.\nuncond_prompt_series[int(i)] = prompt\nUsing cache found in torch-cache/hub/rwightman_gen-efficientnet-pytorch_master\nLoading base model ()...Done.\nRemoving last two layers (global_pool & classifier).\nBuilding Encoder-Decoder model..Done.\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 73.29it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 72.86it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 73.19it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 73.08it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 75.36it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 73.80it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 72.98it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 73.07it/s]\n 0%| | 0/80 [00:00<?, ?it/s]\u001b[A\n 2%|▎ | 2/80 [00:00<00:05, 14.79it/s]\u001b[A\n 5%|▌ | 4/80 [00:00<00:05, 14.68it/s]\u001b[A\n 8%|▊ | 6/80 [00:00<00:05, 14.62it/s]\u001b[A\n 10%|█ | 8/80 [00:00<00:04, 14.63it/s]\u001b[A\n 12%|█▎ | 10/80 [00:00<00:04, 14.63it/s]\u001b[A\n 15%|█▌ | 12/80 [00:00<00:04, 14.63it/s]\u001b[A\n 18%|█▊ | 14/80 [00:00<00:04, 14.65it/s]\u001b[A\n 20%|██ | 16/80 [00:01<00:04, 14.66it/s]\u001b[A\n 22%|██▎ | 18/80 [00:01<00:04, 14.66it/s]\u001b[A\n 25%|██▌ | 20/80 [00:01<00:04, 14.68it/s]\u001b[A\n 28%|██▊ | 22/80 [00:01<00:03, 14.67it/s]\u001b[A\n 30%|███ | 24/80 [00:01<00:03, 14.66it/s]\u001b[A\n 32%|███▎ | 26/80 [00:01<00:03, 14.66it/s]\u001b[A\n 35%|███▌ | 28/80 [00:01<00:03, 14.66it/s]\u001b[A\n 38%|███▊ | 30/80 [00:02<00:03, 14.61it/s]\u001b[A\n 40%|████ | 32/80 [00:02<00:03, 14.63it/s]\u001b[A\n 42%|████▎ | 34/80 [00:02<00:03, 14.64it/s]\u001b[A\n 45%|████▌ | 36/80 [00:02<00:03, 14.65it/s]\u001b[A\n 48%|████▊ | 38/80 [00:02<00:02, 14.64it/s]\u001b[A\n 50%|█████ | 40/80 [00:02<00:02, 14.65it/s]\u001b[A\n 52%|█████▎ | 42/80 [00:02<00:02, 14.61it/s]\u001b[A\n 55%|█████▌ | 44/80 [00:03<00:02, 14.61it/s]\u001b[A\n 57%|█████▊ | 46/80 [00:03<00:02, 14.62it/s]\u001b[A\n 60%|██████ | 48/80 [00:03<00:02, 14.63it/s]\u001b[A\n 62%|██████▎ | 50/80 [00:03<00:02, 14.64it/s]\u001b[A\n 65%|██████▌ | 52/80 [00:03<00:01, 14.63it/s]\u001b[A\n 68%|██████▊ | 54/80 [00:03<00:01, 14.65it/s]\u001b[A\n 70%|███████ | 56/80 [00:03<00:01, 14.64it/s]\u001b[A\n 72%|███████▎ | 58/80 [00:03<00:01, 14.65it/s]\u001b[A\n 75%|███████▌ | 60/80 [00:04<00:01, 14.64it/s]\u001b[A\n 78%|███████▊ | 62/80 [00:04<00:01, 14.63it/s]\u001b[A\n 80%|████████ | 64/80 [00:04<00:01, 14.64it/s]\u001b[A\n 82%|████████▎ | 66/80 [00:04<00:00, 14.64it/s]\u001b[A\n 85%|████████▌ | 68/80 [00:04<00:00, 14.65it/s]\u001b[A\n 88%|████████▊ | 70/80 [00:04<00:00, 14.62it/s]\u001b[A\n 90%|█████████ | 72/80 [00:04<00:00, 14.62it/s]\u001b[A\n 92%|█████████▎| 74/80 [00:05<00:00, 14.63it/s]\u001b[A\n 95%|█████████▌| 76/80 [00:05<00:00, 14.63it/s]\u001b[A\n 98%|█████████▊| 78/80 [00:05<00:00, 14.63it/s]\u001b[A\n100%|██████████| 80/80 [00:05<00:00, 14.64it/s]\u001b[A\n100%|██████████| 80/80 [00:05<00:00, 14.64it/s]\nframe_idx: 2\ncond_prompt: winter forest, snowflakes, Van Gogh style\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 18\nprior_seed: 281350\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.00348782074595539\ntranslation_y: 0.0\ntranslation_z: 0.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nframe_idx: 2\ncond_prompt: winter forest, snowflakes, Van Gogh style\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 18\nprior_seed: 281350\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.00348782074595539\ntranslation_y: 0.0\ntranslation_z: 0.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 1%|▏ | 1/71 [00:16<19:24, 16.63s/it]\n 3%|▎ | 2/71 [00:16<07:58, 6.93s/it]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 73.48it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 71.46it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 72.54it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 72.42it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 75.59it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 75.77it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 74.15it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 74.38it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 14.84it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 14.72it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 14.68it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 14.68it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 14.67it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 14.68it/s]\nframe_idx: 4\ncond_prompt: winter forest, snowflakes, Van Gogh style\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 19\nprior_seed: 281350\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.006958649208524913\ntranslation_y: 0.0\ntranslation_z: 0.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nframe_idx: 4\ncond_prompt: winter forest, snowflakes, Van Gogh style\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 19\nprior_seed: 281350\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.006958649208524913\ntranslation_y: 0.0\ntranslation_z: 0.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 4%|▍ | 3/71 [00:18<05:20, 4.71s/it]\n 6%|▌ | 4/71 [00:18<03:14, 2.91s/it]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 73.54it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 73.22it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 73.76it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 73.59it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 73.39it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 73.58it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 74.59it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 74.35it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 14.74it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 14.68it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 14.65it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 14.63it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 14.67it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 14.66it/s]\nframe_idx: 6\ncond_prompt: winter forest, snowflakes, Van Gogh style\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 20\nprior_seed: 281350\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.010395575888879505\ntranslation_y: 0.0\ntranslation_z: 0.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nframe_idx: 6\ncond_prompt: winter forest, snowflakes, Van Gogh style\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 20\nprior_seed: 281350\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.010395575888879505\ntranslation_y: 0.0\ntranslation_z: 0.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 7%|▋ | 5/71 [00:21<02:51, 2.60s/it]\n 8%|▊ | 6/71 [00:21<01:54, 1.77s/it]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 74.71it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 75.02it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 71.83it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 72.56it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 73.60it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 74.74it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 75.04it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 74.88it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 14.84it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 14.80it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 14.76it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 14.75it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 14.72it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 14.74it/s]\nframe_idx: 8\ncond_prompt: winter forest, snowflakes, Van Gogh style\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 21\nprior_seed: 281350\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.013781856453986352\ntranslation_y: 0.0\ntranslation_z: 0.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nframe_idx: 8\ncond_prompt: winter forest, snowflakes, Van Gogh style\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 21\nprior_seed: 281350\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.013781856453986352\ntranslation_y: 0.0\ntranslation_z: 0.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 10%|▉ | 7/71 [00:23<01:59, 1.86s/it]\n 11%|█▏ | 8/71 [00:23<01:22, 1.32s/it]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 28%|██▊ | 7/25 [00:00<00:00, 67.30it/s]\u001b[A\n 60%|██████ | 15/25 [00:00<00:00, 71.43it/s]\u001b[A\n 92%|█████████▏| 23/25 [00:00<00:00, 72.86it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 72.31it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 75.83it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 75.95it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 75.79it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 75.79it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 14.85it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 14.71it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 14.70it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 14.71it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 14.72it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 14.72it/s]\nframe_idx: 10\ncond_prompt: winter forest, snowflakes, Van Gogh style\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 22\nprior_seed: 281350\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.017100993313178544\ntranslation_y: 0.0\ntranslation_z: 0.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nframe_idx: 10\ncond_prompt: winter forest, snowflakes, Van Gogh style\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 22\nprior_seed: 281350\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.017100993313178544\ntranslation_y: 0.0\ntranslation_z: 0.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 13%|█▎ | 9/71 [00:25<01:35, 1.55s/it]\n 14%|█▍ | 10/71 [00:25<01:08, 1.12s/it]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 74.34it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 74.90it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 75.13it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 74.78it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 74.22it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 74.76it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 75.07it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 74.93it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 14.78it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 14.69it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 14.70it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 14.68it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 14.70it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 14.70it/s]\nframe_idx: 12\ncond_prompt: winter forest, snowflakes, Van Gogh style\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 23\nprior_seed: 281350\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.020336815992622725\ntranslation_y: 0.0\ntranslation_z: 0.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nframe_idx: 12\ncond_prompt: winter forest, snowflakes, Van Gogh style\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 23\nprior_seed: 281350\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.020336815992622725\ntranslation_y: 0.0\ntranslation_z: 0.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 15%|█▌ | 11/71 [00:27<01:24, 1.40s/it]\n 17%|█▋ | 12/71 [00:27<01:00, 1.02s/it]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 73.35it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 74.32it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 74.83it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 74.29it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 71.25it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 70.11it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 70.90it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 70.74it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 14.81it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 14.73it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 14.70it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 14.72it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 14.72it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 14.72it/s]\nframe_idx: 14\ncond_prompt: winter forest, snowflakes, Van Gogh style\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 24\nprior_seed: 281350\nangle: 0.0\nzoom: 1.0\ntranslation_x: 1.0\ntranslation_y: 0.0\ntranslation_z: 0.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nframe_idx: 14\ncond_prompt: winter forest, snowflakes, Van Gogh style\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 24\nprior_seed: 281350\nangle: 0.0\nzoom: 1.0\ntranslation_x: 1.0\ntranslation_y: 0.0\ntranslation_z: 0.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 18%|█▊ | 13/71 [00:29<01:18, 1.36s/it]\n 20%|█▉ | 14/71 [00:30<00:57, 1.01s/it]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 5/25 [00:00<00:00, 44.70it/s]\u001b[A\n 52%|█████▏ | 13/25 [00:00<00:00, 60.25it/s]\u001b[A\n 84%|████████▍ | 21/25 [00:00<00:00, 66.19it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 64.67it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 75.95it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 75.45it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 74.81it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 74.99it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 13.59it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 14.21it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 14.43it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 14.53it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 14.59it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 14.45it/s]\nframe_idx: 16\ncond_prompt: spring forest, flowers, sun rays, Van Gogh style\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 25\nprior_seed: 281350\nangle: 0.0\nzoom: 1.0\ntranslation_x: 1.0\ntranslation_y: 0.0\ntranslation_z: 0.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nframe_idx: 16\ncond_prompt: spring forest, flowers, sun rays, Van Gogh style\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 25\nprior_seed: 281350\nangle: 0.0\nzoom: 1.0\ntranslation_x: 1.0\ntranslation_y: 0.0\ntranslation_z: 0.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 21%|██ | 15/71 [00:32<01:19, 1.41s/it]\n 23%|██▎ | 16/71 [00:32<00:56, 1.03s/it]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 70.92it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 72.33it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 72.14it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 71.91it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 74.95it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 75.25it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 75.02it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 74.98it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 14.84it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 14.78it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 14.75it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 14.72it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 14.71it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 14.73it/s]\nframe_idx: 18\ncond_prompt: spring forest, flowers, sun rays, Van Gogh style\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 26\nprior_seed: 281350\nangle: 0.0\nzoom: 1.0\ntranslation_x: 1.0\ntranslation_y: 0.0\ntranslation_z: 0.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nframe_idx: 18\ncond_prompt: spring forest, flowers, sun rays, Van Gogh style\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 26\nprior_seed: 281350\nangle: 0.0\nzoom: 1.0\ntranslation_x: 1.0\ntranslation_y: 0.0\ntranslation_z: 0.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 24%|██▍ | 17/71 [00:34<01:12, 1.35s/it]\n 25%|██▌ | 18/71 [00:34<00:52, 1.01it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 70.87it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 71.36it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 73.19it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 72.74it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 75.77it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 72.70it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 73.84it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 73.91it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 14.83it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 14.76it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 14.74it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 14.71it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 14.71it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 14.72it/s]\nframe_idx: 20\ncond_prompt: spring forest, flowers, sun rays, Van Gogh style\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 27\nprior_seed: 281350\nangle: 0.0\nzoom: 1.0\ntranslation_x: 1.0\ntranslation_y: 0.0\ntranslation_z: 0.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nframe_idx: 20\ncond_prompt: spring forest, flowers, sun rays, Van Gogh style\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 27\nprior_seed: 281350\nangle: 0.0\nzoom: 1.0\ntranslation_x: 1.0\ntranslation_y: 0.0\ntranslation_z: 0.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 27%|██▋ | 19/71 [00:36<01:08, 1.31s/it]\n 28%|██▊ | 20/71 [00:37<00:49, 1.04it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 74.70it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 74.99it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 74.65it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 74.57it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 73.06it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 72.41it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 73.43it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 73.22it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 14.74it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 14.69it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 14.65it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 14.63it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 14.64it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 14.65it/s]\nframe_idx: 22\ncond_prompt: spring forest, flowers, sun rays, Van Gogh style\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 28\nprior_seed: 281350\nangle: 0.0\nzoom: 1.0\ntranslation_x: 1.0\ntranslation_y: 0.0\ntranslation_z: 0.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nframe_idx: 22\ncond_prompt: spring forest, flowers, sun rays, Van Gogh style\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 28\nprior_seed: 281350\nangle: 0.0\nzoom: 1.0\ntranslation_x: 1.0\ntranslation_y: 0.0\ntranslation_z: 0.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 30%|██▉ | 21/71 [00:39<01:04, 1.30s/it]\n 31%|███ | 22/71 [00:39<00:46, 1.05it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 28%|██▊ | 7/25 [00:00<00:00, 68.08it/s]\u001b[A\n 60%|██████ | 15/25 [00:00<00:00, 70.78it/s]\u001b[A\n 92%|█████████▏| 23/25 [00:00<00:00, 72.77it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 71.76it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 75.02it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 73.18it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 72.37it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 72.67it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 14.81it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 14.74it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 14.70it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 14.66it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 14.64it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 14.67it/s]\nframe_idx: 24\ncond_prompt: summer forest, lake, reflections on the water, summer sun, Van Gogh style\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 29\nprior_seed: 281350\nangle: 0.0\nzoom: 1.0\ntranslation_x: 1.0\ntranslation_y: 0.0\ntranslation_z: 0.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nframe_idx: 24\ncond_prompt: summer forest, lake, reflections on the water, summer sun, Van Gogh style\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 29\nprior_seed: 281350\nangle: 0.0\nzoom: 1.0\ntranslation_x: 1.0\ntranslation_y: 0.0\ntranslation_z: 0.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 32%|███▏ | 23/71 [00:41<01:02, 1.30s/it]\n 34%|███▍ | 24/71 [00:41<00:44, 1.05it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 73.38it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 74.68it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 75.05it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 74.84it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 75.93it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 75.65it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 75.64it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 75.64it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 14.76it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 14.69it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 14.68it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 14.68it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 14.68it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 14.68it/s]\nframe_idx: 26\ncond_prompt: summer forest, lake, reflections on the water, summer sun, Van Gogh style\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 30\nprior_seed: 281350\nangle: 0.0\nzoom: 1.0\ntranslation_x: 1.0\ntranslation_y: 0.0\ntranslation_z: 0.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nframe_idx: 26\ncond_prompt: summer forest, lake, reflections on the water, summer sun, Van Gogh style\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 30\nprior_seed: 281350\nangle: 0.0\nzoom: 1.0\ntranslation_x: 1.0\ntranslation_y: 0.0\ntranslation_z: 0.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 35%|███▌ | 25/71 [00:43<00:59, 1.28s/it]\n 37%|███▋ | 26/71 [00:43<00:42, 1.06it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 74.48it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 75.05it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 75.29it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 75.17it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 75.52it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 74.07it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 71.68it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 72.26it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 14.81it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 14.74it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 14.73it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 14.69it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 14.71it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 14.71it/s]\nframe_idx: 28\ncond_prompt: summer forest, lake, reflections on the water, summer sun, Van Gogh style\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 31\nprior_seed: 281350\nangle: 0.0\nzoom: 1.0\ntranslation_x: 1.0\ntranslation_y: 0.0\ntranslation_z: 0.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nframe_idx: 28\ncond_prompt: summer forest, lake, reflections on the water, summer sun, Van Gogh style\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 31\nprior_seed: 281350\nangle: 0.0\nzoom: 1.0\ntranslation_x: 1.0\ntranslation_y: 0.0\ntranslation_z: 0.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 38%|███▊ | 27/71 [00:45<00:56, 1.28s/it]\n 39%|███▉ | 28/71 [00:46<00:40, 1.06it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 74.24it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 74.84it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 75.09it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 75.00it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 71.15it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 72.15it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 73.30it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 72.80it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 14.72it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 14.66it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 14.65it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 14.64it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 14.64it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 14.65it/s]\nframe_idx: 30\ncond_prompt: summer forest, lake, reflections on the water, summer sun, Van Gogh style\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 32\nprior_seed: 281350\nangle: 0.0\nzoom: 1.0\ntranslation_x: 1.0\ntranslation_y: 0.0\ntranslation_z: 0.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nframe_idx: 30\ncond_prompt: summer forest, lake, reflections on the water, summer sun, Van Gogh style\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 32\nprior_seed: 281350\nangle: 0.0\nzoom: 1.0\ntranslation_x: 1.0\ntranslation_y: 0.0\ntranslation_z: 0.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 41%|████ | 29/71 [00:48<00:53, 1.28s/it]\n 42%|████▏ | 30/71 [00:48<00:38, 1.06it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 74.34it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 70.99it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 70.76it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 71.04it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 70.10it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 71.70it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 70.94it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 70.94it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 14.77it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 14.71it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 14.69it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 14.69it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 14.67it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 14.68it/s]\nframe_idx: 32\ncond_prompt: summer forest, lake, reflections on the water, summer sun, Van Gogh style\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 33\nprior_seed: 281350\nangle: 0.0\nzoom: 1.0\ntranslation_x: 1.0\ntranslation_y: 0.0\ntranslation_z: 0.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nframe_idx: 32\ncond_prompt: summer forest, lake, reflections on the water, summer sun, Van Gogh style\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 33\nprior_seed: 281350\nangle: 0.0\nzoom: 1.0\ntranslation_x: 1.0\ntranslation_y: 0.0\ntranslation_z: 0.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 44%|████▎ | 31/71 [00:50<00:51, 1.29s/it]\n 45%|████▌ | 32/71 [00:50<00:37, 1.05it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 73.77it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 74.72it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 75.03it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 74.55it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 76.09it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 75.57it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 74.61it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 74.92it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 14.79it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 14.72it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 14.71it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 14.70it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 14.69it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 14.70it/s]\nframe_idx: 34\ncond_prompt: summer forest, lake, reflections on the water, summer sun, Van Gogh style\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 34\nprior_seed: 281350\nangle: 0.0\nzoom: 1.0\ntranslation_x: 1.0\ntranslation_y: 0.0\ntranslation_z: 0.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nframe_idx: 34\ncond_prompt: summer forest, lake, reflections on the water, summer sun, Van Gogh style\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 34\nprior_seed: 281350\nangle: 0.0\nzoom: 1.0\ntranslation_x: 1.0\ntranslation_y: 0.0\ntranslation_z: 0.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 46%|████▋ | 33/71 [00:52<00:48, 1.28s/it]\n 48%|████▊ | 34/71 [00:52<00:34, 1.06it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 74.38it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 74.99it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 74.90it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 74.89it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 74.64it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 74.38it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 71.84it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 72.26it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 14.80it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 14.73it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 14.71it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 14.69it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 14.68it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 14.70it/s]\nframe_idx: 36\ncond_prompt: summer forest, lake, reflections on the water, summer sun, Van Gogh style\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 35\nprior_seed: 281350\nangle: 0.0\nzoom: 1.0\ntranslation_x: 1.0\ntranslation_y: 0.0\ntranslation_z: 0.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nframe_idx: 36\ncond_prompt: summer forest, lake, reflections on the water, summer sun, Van Gogh style\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 35\nprior_seed: 281350\nangle: 0.0\nzoom: 1.0\ntranslation_x: 1.0\ntranslation_y: 0.0\ntranslation_z: 0.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 49%|████▉ | 35/71 [00:54<00:46, 1.28s/it]\n 51%|█████ | 36/71 [00:54<00:33, 1.06it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 73.91it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 74.91it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 75.13it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 74.99it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 71.40it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 69.69it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 71.46it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 71.29it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 14.72it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 14.68it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 14.69it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 14.68it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 14.66it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 14.67it/s]\nframe_idx: 38\ncond_prompt: summer forest, lake, reflections on the water, summer sun, Van Gogh style\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 36\nprior_seed: 281350\nangle: 0.0\nzoom: 1.0\ntranslation_x: 1.0\ntranslation_y: 0.0\ntranslation_z: 0.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nframe_idx: 38\ncond_prompt: summer forest, lake, reflections on the water, summer sun, Van Gogh style\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 36\nprior_seed: 281350\nangle: 0.0\nzoom: 1.0\ntranslation_x: 1.0\ntranslation_y: 0.0\ntranslation_z: 0.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 52%|█████▏ | 37/71 [00:56<00:43, 1.28s/it]\n 54%|█████▎ | 38/71 [00:57<00:31, 1.06it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 74.04it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 73.89it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 71.25it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 71.60it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 71.51it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 72.91it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 73.80it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 73.44it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 14.82it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 14.70it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 14.68it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 14.66it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 14.65it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 14.67it/s]\nframe_idx: 40\ncond_prompt: summer forest, lake, reflections on the water, summer sun, Van Gogh style\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 37\nprior_seed: 281350\nangle: 0.0\nzoom: 1.0\ntranslation_x: 1.0\ntranslation_y: 0.0\ntranslation_z: 0.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nframe_idx: 40\ncond_prompt: summer forest, lake, reflections on the water, summer sun, Van Gogh style\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 37\nprior_seed: 281350\nangle: 0.0\nzoom: 1.0\ntranslation_x: 1.0\ntranslation_y: 0.0\ntranslation_z: 0.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 55%|█████▍ | 39/71 [00:59<00:41, 1.29s/it]\n 56%|█████▋ | 40/71 [00:59<00:29, 1.06it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 28%|██▊ | 7/25 [00:00<00:00, 69.45it/s]\u001b[A\n 60%|██████ | 15/25 [00:00<00:00, 71.73it/s]\u001b[A\n 92%|█████████▏| 23/25 [00:00<00:00, 73.17it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 72.46it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 28%|██▊ | 7/25 [00:00<00:00, 69.01it/s]\u001b[A\n 60%|██████ | 15/25 [00:00<00:00, 70.84it/s]\u001b[A\n 92%|█████████▏| 23/25 [00:00<00:00, 72.84it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 72.25it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 14.83it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 14.74it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 14.70it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 14.67it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 14.66it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 14.68it/s]\nframe_idx: 42\ncond_prompt: summer forest, lake, reflections on the water, summer sun, Van Gogh style\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 38\nprior_seed: 281350\nangle: 0.0\nzoom: 1.0\ntranslation_x: 1.0\ntranslation_y: 0.0\ntranslation_z: 0.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nframe_idx: 42\ncond_prompt: summer forest, lake, reflections on the water, summer sun, Van Gogh style\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 38\nprior_seed: 281350\nangle: 0.0\nzoom: 1.0\ntranslation_x: 1.0\ntranslation_y: 0.0\ntranslation_z: 0.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 58%|█████▊ | 41/71 [01:01<00:38, 1.29s/it]\n 59%|█████▉ | 42/71 [01:01<00:27, 1.05it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 74.00it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 71.60it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 73.18it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 72.72it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 74.34it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 73.83it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 74.49it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 74.35it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 14.80it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 14.72it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 14.70it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 14.69it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 14.68it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 14.69it/s]\nframe_idx: 44\ncond_prompt: summer forest, lake, reflections on the water, summer sun, Van Gogh style\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 39\nprior_seed: 281350\nangle: 0.0\nzoom: 1.0\ntranslation_x: 1.0\ntranslation_y: 0.0\ntranslation_z: 0.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nframe_idx: 44\ncond_prompt: summer forest, lake, reflections on the water, summer sun, Van Gogh style\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 39\nprior_seed: 281350\nangle: 0.0\nzoom: 1.0\ntranslation_x: 1.0\ntranslation_y: 0.0\ntranslation_z: 0.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 61%|██████ | 43/71 [01:03<00:36, 1.29s/it]\n 62%|██████▏ | 44/71 [01:03<00:25, 1.05it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 74.03it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 74.58it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 73.83it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 73.73it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 74.62it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 72.39it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 73.04it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 72.92it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 14.78it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 14.67it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 14.60it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 14.61it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 14.62it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 14.63it/s]\nframe_idx: 46\ncond_prompt: summer forest, lake, reflections on the water, summer sun, Van Gogh style\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 40\nprior_seed: 281350\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.864073543551328\ntranslation_y: 0.0\ntranslation_z: 0.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nframe_idx: 46\ncond_prompt: summer forest, lake, reflections on the water, summer sun, Van Gogh style\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 40\nprior_seed: 281350\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.864073543551328\ntranslation_y: 0.0\ntranslation_z: 0.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 63%|██████▎ | 45/71 [01:05<00:33, 1.29s/it]\n 65%|██████▍ | 46/71 [01:06<00:23, 1.05it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 72.27it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 73.03it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 71.24it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 71.35it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 71.74it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 73.22it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 73.22it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 73.05it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 14.78it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 14.68it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 14.65it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 14.63it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 14.63it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 14.64it/s]\nframe_idx: 48\ncond_prompt: autumn forest, rain, Van Gogh style\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 41\nprior_seed: 281350\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.5922206306539842\ntranslation_y: 0.0\ntranslation_z: 0.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nframe_idx: 48\ncond_prompt: autumn forest, rain, Van Gogh style\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 41\nprior_seed: 281350\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.5922206306539842\ntranslation_y: 0.0\ntranslation_z: 0.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 66%|██████▌ | 47/71 [01:08<00:30, 1.29s/it]\n 68%|██████▊ | 48/71 [01:08<00:21, 1.06it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 70.55it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 72.57it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 73.70it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 72.89it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 74.08it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 74.76it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 75.18it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 74.81it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 14.77it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 14.72it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 14.71it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 14.67it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 14.65it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 14.67it/s]\nframe_idx: 50\ncond_prompt: autumn forest, rain, Van Gogh style\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 42\nprior_seed: 281350\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.3203677177566403\ntranslation_y: 0.0\ntranslation_z: 0.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nframe_idx: 50\ncond_prompt: autumn forest, rain, Van Gogh style\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 42\nprior_seed: 281350\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.3203677177566403\ntranslation_y: 0.0\ntranslation_z: 0.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 69%|██████▉ | 49/71 [01:10<00:28, 1.29s/it]\n 70%|███████ | 50/71 [01:10<00:19, 1.06it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 73.46it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 74.24it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 74.50it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 74.35it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 74.88it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 74.97it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 74.97it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 74.99it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 14.80it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 14.74it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 14.69it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 14.68it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 14.68it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 14.69it/s]\nframe_idx: 52\ncond_prompt: autumn forest, rain, Van Gogh style\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 43\nprior_seed: 281350\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.04851480485929647\ntranslation_y: 0.0\ntranslation_z: 0.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nframe_idx: 52\ncond_prompt: autumn forest, rain, Van Gogh style\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 43\nprior_seed: 281350\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.04851480485929647\ntranslation_y: 0.0\ntranslation_z: 0.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 72%|███████▏ | 51/71 [01:12<00:25, 1.28s/it]\n 73%|███████▎ | 52/71 [01:12<00:17, 1.06it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 74.02it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 74.86it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 75.18it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 74.73it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 75.22it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 75.17it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 72.14it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 72.80it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 14.41it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 14.54it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 14.58it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 14.60it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 14.61it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 14.58it/s]\nframe_idx: 54\ncond_prompt: winter forest, snowflakes, Van Gogh style\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 44\nprior_seed: 281350\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.04755285041482768\ntranslation_y: 0.0\ntranslation_z: 0.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nframe_idx: 54\ncond_prompt: winter forest, snowflakes, Van Gogh style\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 44\nprior_seed: 281350\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.04755285041482768\ntranslation_y: 0.0\ntranslation_z: 0.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 75%|███████▍ | 53/71 [01:14<00:23, 1.28s/it]\n 76%|███████▌ | 54/71 [01:14<00:16, 1.06it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 72.66it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 73.82it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 73.77it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 73.37it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 72.06it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 73.62it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 74.46it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 74.09it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 14.77it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 14.71it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 14.67it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 14.64it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 14.65it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 14.66it/s]\nframe_idx: 56\ncond_prompt: winter forest, snowflakes, Van Gogh style\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 45\nprior_seed: 281350\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.046359223654345645\ntranslation_y: 0.0\ntranslation_z: 0.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nframe_idx: 56\ncond_prompt: winter forest, snowflakes, Van Gogh style\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 45\nprior_seed: 281350\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.046359223654345645\ntranslation_y: 0.0\ntranslation_z: 0.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 77%|███████▋ | 55/71 [01:17<00:20, 1.28s/it]\n 79%|███████▉ | 56/71 [01:17<00:14, 1.06it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 74.99it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 71.73it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 72.11it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 72.46it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 75.54it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 74.60it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 73.53it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 73.77it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 14.74it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 14.69it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 14.68it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 14.67it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 14.65it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 14.66it/s]\nframe_idx: 58\ncond_prompt: winter forest, snowflakes, Van Gogh style\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 46\nprior_seed: 281350\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.04493973979762467\ntranslation_y: 0.0\ntranslation_z: 0.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nframe_idx: 58\ncond_prompt: winter forest, snowflakes, Van Gogh style\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 46\nprior_seed: 281350\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.04493973979762467\ntranslation_y: 0.0\ntranslation_z: 0.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 80%|████████ | 57/71 [01:19<00:17, 1.28s/it]\n 82%|████████▏ | 58/71 [01:19<00:12, 1.06it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 72.80it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 73.27it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 72.21it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 72.57it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 75.34it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 75.36it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 75.44it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 75.42it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 14.75it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 14.66it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 14.64it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 14.62it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 14.59it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 14.61it/s]\nframe_idx: 60\ncond_prompt: winter forest, snowflakes, Van Gogh style\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 47\nprior_seed: 281350\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.043301314415650737\ntranslation_y: 0.0\ntranslation_z: 0.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nframe_idx: 60\ncond_prompt: winter forest, snowflakes, Van Gogh style\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 47\nprior_seed: 281350\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.043301314415650737\ntranslation_y: 0.0\ntranslation_z: 0.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 83%|████████▎ | 59/71 [01:21<00:15, 1.28s/it]\n 85%|████████▍ | 60/71 [01:21<00:10, 1.06it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 75.27it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 75.32it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 75.56it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 75.43it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 74.83it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 75.41it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 75.40it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 75.37it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 14.77it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 14.69it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 14.67it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 14.66it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 14.65it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 14.66it/s]\nframe_idx: 62\ncond_prompt: winter forest, snowflakes, Van Gogh style\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 48\nprior_seed: 281350\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.04145192973871173\ntranslation_y: 0.0\ntranslation_z: 0.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nframe_idx: 62\ncond_prompt: winter forest, snowflakes, Van Gogh style\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 48\nprior_seed: 281350\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.04145192973871173\ntranslation_y: 0.0\ntranslation_z: 0.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 86%|████████▌ | 61/71 [01:23<00:12, 1.28s/it]\n 87%|████████▋ | 62/71 [01:23<00:08, 1.07it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 75.43it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 75.54it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 75.15it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 75.28it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 74.61it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 71.38it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 72.64it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 72.76it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 14.73it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 14.70it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 14.68it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 14.67it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 14.66it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 14.67it/s]\nframe_idx: 64\ncond_prompt: winter forest, snowflakes, Van Gogh style\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 49\nprior_seed: 281350\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.039400595767839545\ntranslation_y: 0.0\ntranslation_z: 0.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nframe_idx: 64\ncond_prompt: winter forest, snowflakes, Van Gogh style\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 49\nprior_seed: 281350\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.039400595767839545\ntranslation_y: 0.0\ntranslation_z: 0.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 89%|████████▊ | 63/71 [01:25<00:10, 1.28s/it]\n 90%|█████████ | 64/71 [01:26<00:06, 1.07it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 73.38it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 74.59it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 75.00it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 74.70it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 75.33it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 75.48it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 75.40it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 75.41it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 14.75it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 14.67it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 14.60it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 14.58it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 14.59it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 14.60it/s]\nframe_idx: 66\ncond_prompt: winter forest, snowflakes, Van Gogh style\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 50\nprior_seed: 281350\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.03715730637906477\ntranslation_y: 0.0\ntranslation_z: 0.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nframe_idx: 66\ncond_prompt: winter forest, snowflakes, Van Gogh style\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 50\nprior_seed: 281350\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.03715730637906477\ntranslation_y: 0.0\ntranslation_z: 0.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 92%|█████████▏| 65/71 [01:28<00:07, 1.28s/it]\n 93%|█████████▎| 66/71 [01:28<00:04, 1.06it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 72.96it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 73.73it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 73.66it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 73.30it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 71.12it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 73.51it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 74.24it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 73.83it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 14.79it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 14.68it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 14.65it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 14.64it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 14.61it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 14.64it/s]\nframe_idx: 68\ncond_prompt: winter forest, snowflakes, Van Gogh style\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 51\nprior_seed: 281350\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.03473299063433959\ntranslation_y: 0.0\ntranslation_z: 0.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nframe_idx: 68\ncond_prompt: winter forest, snowflakes, Van Gogh style\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 51\nprior_seed: 281350\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.03473299063433959\ntranslation_y: 0.0\ntranslation_z: 0.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 94%|█████████▍| 67/71 [01:30<00:05, 1.28s/it]\n 96%|█████████▌| 68/71 [01:30<00:02, 1.06it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 28%|██▊ | 7/25 [00:00<00:00, 68.49it/s]\u001b[A\n 60%|██████ | 15/25 [00:00<00:00, 71.47it/s]\u001b[A\n 92%|█████████▏| 23/25 [00:00<00:00, 71.88it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 71.03it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 73.58it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 74.49it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 73.63it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 73.58it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 14.77it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 14.67it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 14.65it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 14.64it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 14.64it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 14.65it/s]\nframe_idx: 70\ncond_prompt: winter forest, snowflakes, Van Gogh style\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 52\nprior_seed: 281350\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.03213945953633634\ntranslation_y: 0.0\ntranslation_z: 0.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nframe_idx: 70\ncond_prompt: winter forest, snowflakes, Van Gogh style\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 52\nprior_seed: 281350\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.03213945953633634\ntranslation_y: 0.0\ntranslation_z: 0.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 97%|█████████▋| 69/71 [01:32<00:02, 1.29s/it]\n 99%|█████████▊| 70/71 [01:32<00:00, 1.05it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 72.09it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 72.46it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 71.82it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 71.65it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 28%|██▊ | 7/25 [00:00<00:00, 69.75it/s]\u001b[A\n 60%|██████ | 15/25 [00:00<00:00, 70.37it/s]\u001b[A\n 92%|█████████▏| 23/25 [00:00<00:00, 70.50it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 70.79it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 14.72it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 14.67it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 14.64it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 14.63it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 14.63it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 14.64it/s]\n99%|█████████▊| 70/71 [01:34<00:01, 1.35s/it]\n 0%| | 0/70 [00:00<?, ?it/s]\n 1%|▏ | 1/70 [00:00<00:09, 7.61it/s]\n 67%|██████▋ | 47/70 [00:00<00:00, 162.95it/s]\n 89%|████████▊ | 62/70 [00:00<00:00, 137.55it/s]\n100%|██████████| 70/70 [00:00<00:00, 124.56it/s]", "metrics": { "predict_time": 96.935933, "total_time": 96.971851 }, "output": "https://pbxt.replicate.delivery/S5ufXV1otWWuWyAoBaeQzOuM2KL1VrHFKx3Oj4RyTl7GtCvRA/output_2_2.mp4", "started_at": "2023-10-17T12:07:02.597969Z", "status": "succeeded", "urls": { "get": "https://api.replicate.com/v1/predictions/atjyxwlb47zxpy42otfndvgy2i", "cancel": "https://api.replicate.com/v1/predictions/atjyxwlb47zxpy42otfndvgy2i/cancel" }, "version": "c0941f93ddd4ea5b50131abc0a4d03a82a33a18af290be54a3f9a3f9673afa3a" }
Generated in0%| | 0/71 [00:00<?, ?it/s]/src/deforum_kandinsky/helpers/animation.py:322: FutureWarning: Setting an item of incompatible dtype is deprecated and will raise in a future error of pandas. Value 'euler' has dtype incompatible with float64, please explicitly cast to a compatible dtype first. key_frame_series[i] = numexpr.evaluate(value) if not is_single_string else value # workaround for values formatted like 0:("I am test") //used for sampler schedules /src/deforum_kandinsky/helpers/animation.py:332: FutureWarning: Series.interpolate with object dtype is deprecated and will raise in a future version. Call obj.infer_objects(copy=False) before interpolating instead. key_frame_series = key_frame_series.interpolate(method=interp_method.lower(), limit_direction='both') /src/deforum_kandinsky/helpers/render.py:242: FutureWarning: Setting an item of incompatible dtype is deprecated and will raise in a future error of pandas. Value 'winter forest, snowflakes, Van Gogh style' has dtype incompatible with float64, please explicitly cast to a compatible dtype first. cond_prompt_series[int(i)] = prompt /src/deforum_kandinsky/helpers/render.py:248: FutureWarning: Setting an item of incompatible dtype is deprecated and will raise in a future error of pandas. Value 'low quality, bad image, cropped, out of frame' has dtype incompatible with float64, please explicitly cast to a compatible dtype first. uncond_prompt_series[int(i)] = prompt Using cache found in torch-cache/hub/rwightman_gen-efficientnet-pytorch_master Loading base model ()...Done. Removing last two layers (global_pool & classifier). Building Encoder-Decoder model..Done. 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 73.29it/s] 64%|██████▍ | 16/25 [00:00<00:00, 72.86it/s] 96%|█████████▌| 24/25 [00:00<00:00, 73.19it/s] 100%|██████████| 25/25 [00:00<00:00, 73.08it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 75.36it/s] 64%|██████▍ | 16/25 [00:00<00:00, 73.80it/s] 96%|█████████▌| 24/25 [00:00<00:00, 72.98it/s] 100%|██████████| 25/25 [00:00<00:00, 73.07it/s] 0%| | 0/80 [00:00<?, ?it/s] 2%|▎ | 2/80 [00:00<00:05, 14.79it/s] 5%|▌ | 4/80 [00:00<00:05, 14.68it/s] 8%|▊ | 6/80 [00:00<00:05, 14.62it/s] 10%|█ | 8/80 [00:00<00:04, 14.63it/s] 12%|█▎ | 10/80 [00:00<00:04, 14.63it/s] 15%|█▌ | 12/80 [00:00<00:04, 14.63it/s] 18%|█▊ | 14/80 [00:00<00:04, 14.65it/s] 20%|██ | 16/80 [00:01<00:04, 14.66it/s] 22%|██▎ | 18/80 [00:01<00:04, 14.66it/s] 25%|██▌ | 20/80 [00:01<00:04, 14.68it/s] 28%|██▊ | 22/80 [00:01<00:03, 14.67it/s] 30%|███ | 24/80 [00:01<00:03, 14.66it/s] 32%|███▎ | 26/80 [00:01<00:03, 14.66it/s] 35%|███▌ | 28/80 [00:01<00:03, 14.66it/s] 38%|███▊ | 30/80 [00:02<00:03, 14.61it/s] 40%|████ | 32/80 [00:02<00:03, 14.63it/s] 42%|████▎ | 34/80 [00:02<00:03, 14.64it/s] 45%|████▌ | 36/80 [00:02<00:03, 14.65it/s] 48%|████▊ | 38/80 [00:02<00:02, 14.64it/s] 50%|█████ | 40/80 [00:02<00:02, 14.65it/s] 52%|█████▎ | 42/80 [00:02<00:02, 14.61it/s] 55%|█████▌ | 44/80 [00:03<00:02, 14.61it/s] 57%|█████▊ | 46/80 [00:03<00:02, 14.62it/s] 60%|██████ | 48/80 [00:03<00:02, 14.63it/s] 62%|██████▎ | 50/80 [00:03<00:02, 14.64it/s] 65%|██████▌ | 52/80 [00:03<00:01, 14.63it/s] 68%|██████▊ | 54/80 [00:03<00:01, 14.65it/s] 70%|███████ | 56/80 [00:03<00:01, 14.64it/s] 72%|███████▎ | 58/80 [00:03<00:01, 14.65it/s] 75%|███████▌ | 60/80 [00:04<00:01, 14.64it/s] 78%|███████▊ | 62/80 [00:04<00:01, 14.63it/s] 80%|████████ | 64/80 [00:04<00:01, 14.64it/s] 82%|████████▎ | 66/80 [00:04<00:00, 14.64it/s] 85%|████████▌ | 68/80 [00:04<00:00, 14.65it/s] 88%|████████▊ | 70/80 [00:04<00:00, 14.62it/s] 90%|█████████ | 72/80 [00:04<00:00, 14.62it/s] 92%|█████████▎| 74/80 [00:05<00:00, 14.63it/s] 95%|█████████▌| 76/80 [00:05<00:00, 14.63it/s] 98%|█████████▊| 78/80 [00:05<00:00, 14.63it/s] 100%|██████████| 80/80 [00:05<00:00, 14.64it/s] 100%|██████████| 80/80 [00:05<00:00, 14.64it/s] frame_idx: 2 cond_prompt: winter forest, snowflakes, Van Gogh style uncond_prompt: low quality, bad image, cropped, out of frame seed: 18 prior_seed: 281350 angle: 0.0 zoom: 1.0 translation_x: 0.00348782074595539 translation_y: 0.0 translation_z: 0.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 frame_idx: 2 cond_prompt: winter forest, snowflakes, Van Gogh style uncond_prompt: low quality, bad image, cropped, out of frame seed: 18 prior_seed: 281350 angle: 0.0 zoom: 1.0 translation_x: 0.00348782074595539 translation_y: 0.0 translation_z: 0.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 1%|▏ | 1/71 [00:16<19:24, 16.63s/it] 3%|▎ | 2/71 [00:16<07:58, 6.93s/it] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 73.48it/s] 64%|██████▍ | 16/25 [00:00<00:00, 71.46it/s] 96%|█████████▌| 24/25 [00:00<00:00, 72.54it/s] 100%|██████████| 25/25 [00:00<00:00, 72.42it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 75.59it/s] 64%|██████▍ | 16/25 [00:00<00:00, 75.77it/s] 96%|█████████▌| 24/25 [00:00<00:00, 74.15it/s] 100%|██████████| 25/25 [00:00<00:00, 74.38it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 14.84it/s] 40%|████ | 4/10 [00:00<00:00, 14.72it/s] 60%|██████ | 6/10 [00:00<00:00, 14.68it/s] 80%|████████ | 8/10 [00:00<00:00, 14.68it/s] 100%|██████████| 10/10 [00:00<00:00, 14.67it/s] 100%|██████████| 10/10 [00:00<00:00, 14.68it/s] frame_idx: 4 cond_prompt: winter forest, snowflakes, Van Gogh style uncond_prompt: low quality, bad image, cropped, out of frame seed: 19 prior_seed: 281350 angle: 0.0 zoom: 1.0 translation_x: 0.006958649208524913 translation_y: 0.0 translation_z: 0.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 frame_idx: 4 cond_prompt: winter forest, snowflakes, Van Gogh style uncond_prompt: low quality, bad image, cropped, out of frame seed: 19 prior_seed: 281350 angle: 0.0 zoom: 1.0 translation_x: 0.006958649208524913 translation_y: 0.0 translation_z: 0.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 4%|▍ | 3/71 [00:18<05:20, 4.71s/it] 6%|▌ | 4/71 [00:18<03:14, 2.91s/it] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 73.54it/s] 64%|██████▍ | 16/25 [00:00<00:00, 73.22it/s] 96%|█████████▌| 24/25 [00:00<00:00, 73.76it/s] 100%|██████████| 25/25 [00:00<00:00, 73.59it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 73.39it/s] 64%|██████▍ | 16/25 [00:00<00:00, 73.58it/s] 96%|█████████▌| 24/25 [00:00<00:00, 74.59it/s] 100%|██████████| 25/25 [00:00<00:00, 74.35it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 14.74it/s] 40%|████ | 4/10 [00:00<00:00, 14.68it/s] 60%|██████ | 6/10 [00:00<00:00, 14.65it/s] 80%|████████ | 8/10 [00:00<00:00, 14.63it/s] 100%|██████████| 10/10 [00:00<00:00, 14.67it/s] 100%|██████████| 10/10 [00:00<00:00, 14.66it/s] frame_idx: 6 cond_prompt: winter forest, snowflakes, Van Gogh style uncond_prompt: low quality, bad image, cropped, out of frame seed: 20 prior_seed: 281350 angle: 0.0 zoom: 1.0 translation_x: 0.010395575888879505 translation_y: 0.0 translation_z: 0.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 frame_idx: 6 cond_prompt: winter forest, snowflakes, Van Gogh style uncond_prompt: low quality, bad image, cropped, out of frame seed: 20 prior_seed: 281350 angle: 0.0 zoom: 1.0 translation_x: 0.010395575888879505 translation_y: 0.0 translation_z: 0.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 7%|▋ | 5/71 [00:21<02:51, 2.60s/it] 8%|▊ | 6/71 [00:21<01:54, 1.77s/it] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 74.71it/s] 64%|██████▍ | 16/25 [00:00<00:00, 75.02it/s] 96%|█████████▌| 24/25 [00:00<00:00, 71.83it/s] 100%|██████████| 25/25 [00:00<00:00, 72.56it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 73.60it/s] 64%|██████▍ | 16/25 [00:00<00:00, 74.74it/s] 96%|█████████▌| 24/25 [00:00<00:00, 75.04it/s] 100%|██████████| 25/25 [00:00<00:00, 74.88it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 14.84it/s] 40%|████ | 4/10 [00:00<00:00, 14.80it/s] 60%|██████ | 6/10 [00:00<00:00, 14.76it/s] 80%|████████ | 8/10 [00:00<00:00, 14.75it/s] 100%|██████████| 10/10 [00:00<00:00, 14.72it/s] 100%|██████████| 10/10 [00:00<00:00, 14.74it/s] frame_idx: 8 cond_prompt: winter forest, snowflakes, Van Gogh style uncond_prompt: low quality, bad image, cropped, out of frame seed: 21 prior_seed: 281350 angle: 0.0 zoom: 1.0 translation_x: 0.013781856453986352 translation_y: 0.0 translation_z: 0.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 frame_idx: 8 cond_prompt: winter forest, snowflakes, Van Gogh style uncond_prompt: low quality, bad image, cropped, out of frame seed: 21 prior_seed: 281350 angle: 0.0 zoom: 1.0 translation_x: 0.013781856453986352 translation_y: 0.0 translation_z: 0.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 10%|▉ | 7/71 [00:23<01:59, 1.86s/it] 11%|█▏ | 8/71 [00:23<01:22, 1.32s/it] 0%| | 0/25 [00:00<?, ?it/s] 28%|██▊ | 7/25 [00:00<00:00, 67.30it/s] 60%|██████ | 15/25 [00:00<00:00, 71.43it/s] 92%|█████████▏| 23/25 [00:00<00:00, 72.86it/s] 100%|██████████| 25/25 [00:00<00:00, 72.31it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 75.83it/s] 64%|██████▍ | 16/25 [00:00<00:00, 75.95it/s] 96%|█████████▌| 24/25 [00:00<00:00, 75.79it/s] 100%|██████████| 25/25 [00:00<00:00, 75.79it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 14.85it/s] 40%|████ | 4/10 [00:00<00:00, 14.71it/s] 60%|██████ | 6/10 [00:00<00:00, 14.70it/s] 80%|████████ | 8/10 [00:00<00:00, 14.71it/s] 100%|██████████| 10/10 [00:00<00:00, 14.72it/s] 100%|██████████| 10/10 [00:00<00:00, 14.72it/s] frame_idx: 10 cond_prompt: winter forest, snowflakes, Van Gogh style uncond_prompt: low quality, bad image, cropped, out of frame seed: 22 prior_seed: 281350 angle: 0.0 zoom: 1.0 translation_x: 0.017100993313178544 translation_y: 0.0 translation_z: 0.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 frame_idx: 10 cond_prompt: winter forest, snowflakes, Van Gogh style uncond_prompt: low quality, bad image, cropped, out of frame seed: 22 prior_seed: 281350 angle: 0.0 zoom: 1.0 translation_x: 0.017100993313178544 translation_y: 0.0 translation_z: 0.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 13%|█▎ | 9/71 [00:25<01:35, 1.55s/it] 14%|█▍ | 10/71 [00:25<01:08, 1.12s/it] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 74.34it/s] 64%|██████▍ | 16/25 [00:00<00:00, 74.90it/s] 96%|█████████▌| 24/25 [00:00<00:00, 75.13it/s] 100%|██████████| 25/25 [00:00<00:00, 74.78it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 74.22it/s] 64%|██████▍ | 16/25 [00:00<00:00, 74.76it/s] 96%|█████████▌| 24/25 [00:00<00:00, 75.07it/s] 100%|██████████| 25/25 [00:00<00:00, 74.93it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 14.78it/s] 40%|████ | 4/10 [00:00<00:00, 14.69it/s] 60%|██████ | 6/10 [00:00<00:00, 14.70it/s] 80%|████████ | 8/10 [00:00<00:00, 14.68it/s] 100%|██████████| 10/10 [00:00<00:00, 14.70it/s] 100%|██████████| 10/10 [00:00<00:00, 14.70it/s] frame_idx: 12 cond_prompt: winter forest, snowflakes, Van Gogh style uncond_prompt: low quality, bad image, cropped, out of frame seed: 23 prior_seed: 281350 angle: 0.0 zoom: 1.0 translation_x: 0.020336815992622725 translation_y: 0.0 translation_z: 0.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 frame_idx: 12 cond_prompt: winter forest, snowflakes, Van Gogh style uncond_prompt: low quality, bad image, cropped, out of frame seed: 23 prior_seed: 281350 angle: 0.0 zoom: 1.0 translation_x: 0.020336815992622725 translation_y: 0.0 translation_z: 0.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 15%|█▌ | 11/71 [00:27<01:24, 1.40s/it] 17%|█▋ | 12/71 [00:27<01:00, 1.02s/it] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 73.35it/s] 64%|██████▍ | 16/25 [00:00<00:00, 74.32it/s] 96%|█████████▌| 24/25 [00:00<00:00, 74.83it/s] 100%|██████████| 25/25 [00:00<00:00, 74.29it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 71.25it/s] 64%|██████▍ | 16/25 [00:00<00:00, 70.11it/s] 96%|█████████▌| 24/25 [00:00<00:00, 70.90it/s] 100%|██████████| 25/25 [00:00<00:00, 70.74it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 14.81it/s] 40%|████ | 4/10 [00:00<00:00, 14.73it/s] 60%|██████ | 6/10 [00:00<00:00, 14.70it/s] 80%|████████ | 8/10 [00:00<00:00, 14.72it/s] 100%|██████████| 10/10 [00:00<00:00, 14.72it/s] 100%|██████████| 10/10 [00:00<00:00, 14.72it/s] frame_idx: 14 cond_prompt: winter forest, snowflakes, Van Gogh style uncond_prompt: low quality, bad image, cropped, out of frame seed: 24 prior_seed: 281350 angle: 0.0 zoom: 1.0 translation_x: 1.0 translation_y: 0.0 translation_z: 0.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 frame_idx: 14 cond_prompt: winter forest, snowflakes, Van Gogh style uncond_prompt: low quality, bad image, cropped, out of frame seed: 24 prior_seed: 281350 angle: 0.0 zoom: 1.0 translation_x: 1.0 translation_y: 0.0 translation_z: 0.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 18%|█▊ | 13/71 [00:29<01:18, 1.36s/it] 20%|█▉ | 14/71 [00:30<00:57, 1.01s/it] 0%| | 0/25 [00:00<?, ?it/s] 20%|██ | 5/25 [00:00<00:00, 44.70it/s] 52%|█████▏ | 13/25 [00:00<00:00, 60.25it/s] 84%|████████▍ | 21/25 [00:00<00:00, 66.19it/s] 100%|██████████| 25/25 [00:00<00:00, 64.67it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 75.95it/s] 64%|██████▍ | 16/25 [00:00<00:00, 75.45it/s] 96%|█████████▌| 24/25 [00:00<00:00, 74.81it/s] 100%|██████████| 25/25 [00:00<00:00, 74.99it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 13.59it/s] 40%|████ | 4/10 [00:00<00:00, 14.21it/s] 60%|██████ | 6/10 [00:00<00:00, 14.43it/s] 80%|████████ | 8/10 [00:00<00:00, 14.53it/s] 100%|██████████| 10/10 [00:00<00:00, 14.59it/s] 100%|██████████| 10/10 [00:00<00:00, 14.45it/s] frame_idx: 16 cond_prompt: spring forest, flowers, sun rays, Van Gogh style uncond_prompt: low quality, bad image, cropped, out of frame seed: 25 prior_seed: 281350 angle: 0.0 zoom: 1.0 translation_x: 1.0 translation_y: 0.0 translation_z: 0.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 frame_idx: 16 cond_prompt: spring forest, flowers, sun rays, Van Gogh style uncond_prompt: low quality, bad image, cropped, out of frame seed: 25 prior_seed: 281350 angle: 0.0 zoom: 1.0 translation_x: 1.0 translation_y: 0.0 translation_z: 0.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 21%|██ | 15/71 [00:32<01:19, 1.41s/it] 23%|██▎ | 16/71 [00:32<00:56, 1.03s/it] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 70.92it/s] 64%|██████▍ | 16/25 [00:00<00:00, 72.33it/s] 96%|█████████▌| 24/25 [00:00<00:00, 72.14it/s] 100%|██████████| 25/25 [00:00<00:00, 71.91it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 74.95it/s] 64%|██████▍ | 16/25 [00:00<00:00, 75.25it/s] 96%|█████████▌| 24/25 [00:00<00:00, 75.02it/s] 100%|██████████| 25/25 [00:00<00:00, 74.98it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 14.84it/s] 40%|████ | 4/10 [00:00<00:00, 14.78it/s] 60%|██████ | 6/10 [00:00<00:00, 14.75it/s] 80%|████████ | 8/10 [00:00<00:00, 14.72it/s] 100%|██████████| 10/10 [00:00<00:00, 14.71it/s] 100%|██████████| 10/10 [00:00<00:00, 14.73it/s] frame_idx: 18 cond_prompt: spring forest, flowers, sun rays, Van Gogh style uncond_prompt: low quality, bad image, cropped, out of frame seed: 26 prior_seed: 281350 angle: 0.0 zoom: 1.0 translation_x: 1.0 translation_y: 0.0 translation_z: 0.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 frame_idx: 18 cond_prompt: spring forest, flowers, sun rays, Van Gogh style uncond_prompt: low quality, bad image, cropped, out of frame seed: 26 prior_seed: 281350 angle: 0.0 zoom: 1.0 translation_x: 1.0 translation_y: 0.0 translation_z: 0.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 24%|██▍ | 17/71 [00:34<01:12, 1.35s/it] 25%|██▌ | 18/71 [00:34<00:52, 1.01it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 70.87it/s] 64%|██████▍ | 16/25 [00:00<00:00, 71.36it/s] 96%|█████████▌| 24/25 [00:00<00:00, 73.19it/s] 100%|██████████| 25/25 [00:00<00:00, 72.74it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 75.77it/s] 64%|██████▍ | 16/25 [00:00<00:00, 72.70it/s] 96%|█████████▌| 24/25 [00:00<00:00, 73.84it/s] 100%|██████████| 25/25 [00:00<00:00, 73.91it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 14.83it/s] 40%|████ | 4/10 [00:00<00:00, 14.76it/s] 60%|██████ | 6/10 [00:00<00:00, 14.74it/s] 80%|████████ | 8/10 [00:00<00:00, 14.71it/s] 100%|██████████| 10/10 [00:00<00:00, 14.71it/s] 100%|██████████| 10/10 [00:00<00:00, 14.72it/s] frame_idx: 20 cond_prompt: spring forest, flowers, sun rays, Van Gogh style uncond_prompt: low quality, bad image, cropped, out of frame seed: 27 prior_seed: 281350 angle: 0.0 zoom: 1.0 translation_x: 1.0 translation_y: 0.0 translation_z: 0.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 frame_idx: 20 cond_prompt: spring forest, flowers, sun rays, Van Gogh style uncond_prompt: low quality, bad image, cropped, out of frame seed: 27 prior_seed: 281350 angle: 0.0 zoom: 1.0 translation_x: 1.0 translation_y: 0.0 translation_z: 0.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 27%|██▋ | 19/71 [00:36<01:08, 1.31s/it] 28%|██▊ | 20/71 [00:37<00:49, 1.04it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 74.70it/s] 64%|██████▍ | 16/25 [00:00<00:00, 74.99it/s] 96%|█████████▌| 24/25 [00:00<00:00, 74.65it/s] 100%|██████████| 25/25 [00:00<00:00, 74.57it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 73.06it/s] 64%|██████▍ | 16/25 [00:00<00:00, 72.41it/s] 96%|█████████▌| 24/25 [00:00<00:00, 73.43it/s] 100%|██████████| 25/25 [00:00<00:00, 73.22it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 14.74it/s] 40%|████ | 4/10 [00:00<00:00, 14.69it/s] 60%|██████ | 6/10 [00:00<00:00, 14.65it/s] 80%|████████ | 8/10 [00:00<00:00, 14.63it/s] 100%|██████████| 10/10 [00:00<00:00, 14.64it/s] 100%|██████████| 10/10 [00:00<00:00, 14.65it/s] frame_idx: 22 cond_prompt: spring forest, flowers, sun rays, Van Gogh style uncond_prompt: low quality, bad image, cropped, out of frame seed: 28 prior_seed: 281350 angle: 0.0 zoom: 1.0 translation_x: 1.0 translation_y: 0.0 translation_z: 0.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 frame_idx: 22 cond_prompt: spring forest, flowers, sun rays, Van Gogh style uncond_prompt: low quality, bad image, cropped, out of frame seed: 28 prior_seed: 281350 angle: 0.0 zoom: 1.0 translation_x: 1.0 translation_y: 0.0 translation_z: 0.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 30%|██▉ | 21/71 [00:39<01:04, 1.30s/it] 31%|███ | 22/71 [00:39<00:46, 1.05it/s] 0%| | 0/25 [00:00<?, ?it/s] 28%|██▊ | 7/25 [00:00<00:00, 68.08it/s] 60%|██████ | 15/25 [00:00<00:00, 70.78it/s] 92%|█████████▏| 23/25 [00:00<00:00, 72.77it/s] 100%|██████████| 25/25 [00:00<00:00, 71.76it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 75.02it/s] 64%|██████▍ | 16/25 [00:00<00:00, 73.18it/s] 96%|█████████▌| 24/25 [00:00<00:00, 72.37it/s] 100%|██████████| 25/25 [00:00<00:00, 72.67it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 14.81it/s] 40%|████ | 4/10 [00:00<00:00, 14.74it/s] 60%|██████ | 6/10 [00:00<00:00, 14.70it/s] 80%|████████ | 8/10 [00:00<00:00, 14.66it/s] 100%|██████████| 10/10 [00:00<00:00, 14.64it/s] 100%|██████████| 10/10 [00:00<00:00, 14.67it/s] frame_idx: 24 cond_prompt: summer forest, lake, reflections on the water, summer sun, Van Gogh style uncond_prompt: low quality, bad image, cropped, out of frame seed: 29 prior_seed: 281350 angle: 0.0 zoom: 1.0 translation_x: 1.0 translation_y: 0.0 translation_z: 0.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 frame_idx: 24 cond_prompt: summer forest, lake, reflections on the water, summer sun, Van Gogh style uncond_prompt: low quality, bad image, cropped, out of frame seed: 29 prior_seed: 281350 angle: 0.0 zoom: 1.0 translation_x: 1.0 translation_y: 0.0 translation_z: 0.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 32%|███▏ | 23/71 [00:41<01:02, 1.30s/it] 34%|███▍ | 24/71 [00:41<00:44, 1.05it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 73.38it/s] 64%|██████▍ | 16/25 [00:00<00:00, 74.68it/s] 96%|█████████▌| 24/25 [00:00<00:00, 75.05it/s] 100%|██████████| 25/25 [00:00<00:00, 74.84it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 75.93it/s] 64%|██████▍ | 16/25 [00:00<00:00, 75.65it/s] 96%|█████████▌| 24/25 [00:00<00:00, 75.64it/s] 100%|██████████| 25/25 [00:00<00:00, 75.64it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 14.76it/s] 40%|████ | 4/10 [00:00<00:00, 14.69it/s] 60%|██████ | 6/10 [00:00<00:00, 14.68it/s] 80%|████████ | 8/10 [00:00<00:00, 14.68it/s] 100%|██████████| 10/10 [00:00<00:00, 14.68it/s] 100%|██████████| 10/10 [00:00<00:00, 14.68it/s] frame_idx: 26 cond_prompt: summer forest, lake, reflections on the water, summer sun, Van Gogh style uncond_prompt: low quality, bad image, cropped, out of frame seed: 30 prior_seed: 281350 angle: 0.0 zoom: 1.0 translation_x: 1.0 translation_y: 0.0 translation_z: 0.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 frame_idx: 26 cond_prompt: summer forest, lake, reflections on the water, summer sun, Van Gogh style uncond_prompt: low quality, bad image, cropped, out of frame seed: 30 prior_seed: 281350 angle: 0.0 zoom: 1.0 translation_x: 1.0 translation_y: 0.0 translation_z: 0.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 35%|███▌ | 25/71 [00:43<00:59, 1.28s/it] 37%|███▋ | 26/71 [00:43<00:42, 1.06it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 74.48it/s] 64%|██████▍ | 16/25 [00:00<00:00, 75.05it/s] 96%|█████████▌| 24/25 [00:00<00:00, 75.29it/s] 100%|██████████| 25/25 [00:00<00:00, 75.17it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 75.52it/s] 64%|██████▍ | 16/25 [00:00<00:00, 74.07it/s] 96%|█████████▌| 24/25 [00:00<00:00, 71.68it/s] 100%|██████████| 25/25 [00:00<00:00, 72.26it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 14.81it/s] 40%|████ | 4/10 [00:00<00:00, 14.74it/s] 60%|██████ | 6/10 [00:00<00:00, 14.73it/s] 80%|████████ | 8/10 [00:00<00:00, 14.69it/s] 100%|██████████| 10/10 [00:00<00:00, 14.71it/s] 100%|██████████| 10/10 [00:00<00:00, 14.71it/s] frame_idx: 28 cond_prompt: summer forest, lake, reflections on the water, summer sun, Van Gogh style uncond_prompt: low quality, bad image, cropped, out of frame seed: 31 prior_seed: 281350 angle: 0.0 zoom: 1.0 translation_x: 1.0 translation_y: 0.0 translation_z: 0.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 frame_idx: 28 cond_prompt: summer forest, lake, reflections on the water, summer sun, Van Gogh style uncond_prompt: low quality, bad image, cropped, out of frame seed: 31 prior_seed: 281350 angle: 0.0 zoom: 1.0 translation_x: 1.0 translation_y: 0.0 translation_z: 0.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 38%|███▊ | 27/71 [00:45<00:56, 1.28s/it] 39%|███▉ | 28/71 [00:46<00:40, 1.06it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 74.24it/s] 64%|██████▍ | 16/25 [00:00<00:00, 74.84it/s] 96%|█████████▌| 24/25 [00:00<00:00, 75.09it/s] 100%|██████████| 25/25 [00:00<00:00, 75.00it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 71.15it/s] 64%|██████▍ | 16/25 [00:00<00:00, 72.15it/s] 96%|█████████▌| 24/25 [00:00<00:00, 73.30it/s] 100%|██████████| 25/25 [00:00<00:00, 72.80it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 14.72it/s] 40%|████ | 4/10 [00:00<00:00, 14.66it/s] 60%|██████ | 6/10 [00:00<00:00, 14.65it/s] 80%|████████ | 8/10 [00:00<00:00, 14.64it/s] 100%|██████████| 10/10 [00:00<00:00, 14.64it/s] 100%|██████████| 10/10 [00:00<00:00, 14.65it/s] frame_idx: 30 cond_prompt: summer forest, lake, reflections on the water, summer sun, Van Gogh style uncond_prompt: low quality, bad image, cropped, out of frame seed: 32 prior_seed: 281350 angle: 0.0 zoom: 1.0 translation_x: 1.0 translation_y: 0.0 translation_z: 0.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 frame_idx: 30 cond_prompt: summer forest, lake, reflections on the water, summer sun, Van Gogh style uncond_prompt: low quality, bad image, cropped, out of frame seed: 32 prior_seed: 281350 angle: 0.0 zoom: 1.0 translation_x: 1.0 translation_y: 0.0 translation_z: 0.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 41%|████ | 29/71 [00:48<00:53, 1.28s/it] 42%|████▏ | 30/71 [00:48<00:38, 1.06it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 74.34it/s] 64%|██████▍ | 16/25 [00:00<00:00, 70.99it/s] 96%|█████████▌| 24/25 [00:00<00:00, 70.76it/s] 100%|██████████| 25/25 [00:00<00:00, 71.04it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 70.10it/s] 64%|██████▍ | 16/25 [00:00<00:00, 71.70it/s] 96%|█████████▌| 24/25 [00:00<00:00, 70.94it/s] 100%|██████████| 25/25 [00:00<00:00, 70.94it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 14.77it/s] 40%|████ | 4/10 [00:00<00:00, 14.71it/s] 60%|██████ | 6/10 [00:00<00:00, 14.69it/s] 80%|████████ | 8/10 [00:00<00:00, 14.69it/s] 100%|██████████| 10/10 [00:00<00:00, 14.67it/s] 100%|██████████| 10/10 [00:00<00:00, 14.68it/s] frame_idx: 32 cond_prompt: summer forest, lake, reflections on the water, summer sun, Van Gogh style uncond_prompt: low quality, bad image, cropped, out of frame seed: 33 prior_seed: 281350 angle: 0.0 zoom: 1.0 translation_x: 1.0 translation_y: 0.0 translation_z: 0.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 frame_idx: 32 cond_prompt: summer forest, lake, reflections on the water, summer sun, Van Gogh style uncond_prompt: low quality, bad image, cropped, out of frame seed: 33 prior_seed: 281350 angle: 0.0 zoom: 1.0 translation_x: 1.0 translation_y: 0.0 translation_z: 0.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 44%|████▎ | 31/71 [00:50<00:51, 1.29s/it] 45%|████▌ | 32/71 [00:50<00:37, 1.05it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 73.77it/s] 64%|██████▍ | 16/25 [00:00<00:00, 74.72it/s] 96%|█████████▌| 24/25 [00:00<00:00, 75.03it/s] 100%|██████████| 25/25 [00:00<00:00, 74.55it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 76.09it/s] 64%|██████▍ | 16/25 [00:00<00:00, 75.57it/s] 96%|█████████▌| 24/25 [00:00<00:00, 74.61it/s] 100%|██████████| 25/25 [00:00<00:00, 74.92it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 14.79it/s] 40%|████ | 4/10 [00:00<00:00, 14.72it/s] 60%|██████ | 6/10 [00:00<00:00, 14.71it/s] 80%|████████ | 8/10 [00:00<00:00, 14.70it/s] 100%|██████████| 10/10 [00:00<00:00, 14.69it/s] 100%|██████████| 10/10 [00:00<00:00, 14.70it/s] frame_idx: 34 cond_prompt: summer forest, lake, reflections on the water, summer sun, Van Gogh style uncond_prompt: low quality, bad image, cropped, out of frame seed: 34 prior_seed: 281350 angle: 0.0 zoom: 1.0 translation_x: 1.0 translation_y: 0.0 translation_z: 0.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 frame_idx: 34 cond_prompt: summer forest, lake, reflections on the water, summer sun, Van Gogh style uncond_prompt: low quality, bad image, cropped, out of frame seed: 34 prior_seed: 281350 angle: 0.0 zoom: 1.0 translation_x: 1.0 translation_y: 0.0 translation_z: 0.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 46%|████▋ | 33/71 [00:52<00:48, 1.28s/it] 48%|████▊ | 34/71 [00:52<00:34, 1.06it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 74.38it/s] 64%|██████▍ | 16/25 [00:00<00:00, 74.99it/s] 96%|█████████▌| 24/25 [00:00<00:00, 74.90it/s] 100%|██████████| 25/25 [00:00<00:00, 74.89it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 74.64it/s] 64%|██████▍ | 16/25 [00:00<00:00, 74.38it/s] 96%|█████████▌| 24/25 [00:00<00:00, 71.84it/s] 100%|██████████| 25/25 [00:00<00:00, 72.26it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 14.80it/s] 40%|████ | 4/10 [00:00<00:00, 14.73it/s] 60%|██████ | 6/10 [00:00<00:00, 14.71it/s] 80%|████████ | 8/10 [00:00<00:00, 14.69it/s] 100%|██████████| 10/10 [00:00<00:00, 14.68it/s] 100%|██████████| 10/10 [00:00<00:00, 14.70it/s] frame_idx: 36 cond_prompt: summer forest, lake, reflections on the water, summer sun, Van Gogh style uncond_prompt: low quality, bad image, cropped, out of frame seed: 35 prior_seed: 281350 angle: 0.0 zoom: 1.0 translation_x: 1.0 translation_y: 0.0 translation_z: 0.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 frame_idx: 36 cond_prompt: summer forest, lake, reflections on the water, summer sun, Van Gogh style uncond_prompt: low quality, bad image, cropped, out of frame seed: 35 prior_seed: 281350 angle: 0.0 zoom: 1.0 translation_x: 1.0 translation_y: 0.0 translation_z: 0.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 49%|████▉ | 35/71 [00:54<00:46, 1.28s/it] 51%|█████ | 36/71 [00:54<00:33, 1.06it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 73.91it/s] 64%|██████▍ | 16/25 [00:00<00:00, 74.91it/s] 96%|█████████▌| 24/25 [00:00<00:00, 75.13it/s] 100%|██████████| 25/25 [00:00<00:00, 74.99it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 71.40it/s] 64%|██████▍ | 16/25 [00:00<00:00, 69.69it/s] 96%|█████████▌| 24/25 [00:00<00:00, 71.46it/s] 100%|██████████| 25/25 [00:00<00:00, 71.29it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 14.72it/s] 40%|████ | 4/10 [00:00<00:00, 14.68it/s] 60%|██████ | 6/10 [00:00<00:00, 14.69it/s] 80%|████████ | 8/10 [00:00<00:00, 14.68it/s] 100%|██████████| 10/10 [00:00<00:00, 14.66it/s] 100%|██████████| 10/10 [00:00<00:00, 14.67it/s] frame_idx: 38 cond_prompt: summer forest, lake, reflections on the water, summer sun, Van Gogh style uncond_prompt: low quality, bad image, cropped, out of frame seed: 36 prior_seed: 281350 angle: 0.0 zoom: 1.0 translation_x: 1.0 translation_y: 0.0 translation_z: 0.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 frame_idx: 38 cond_prompt: summer forest, lake, reflections on the water, summer sun, Van Gogh style uncond_prompt: low quality, bad image, cropped, out of frame seed: 36 prior_seed: 281350 angle: 0.0 zoom: 1.0 translation_x: 1.0 translation_y: 0.0 translation_z: 0.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 52%|█████▏ | 37/71 [00:56<00:43, 1.28s/it] 54%|█████▎ | 38/71 [00:57<00:31, 1.06it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 74.04it/s] 64%|██████▍ | 16/25 [00:00<00:00, 73.89it/s] 96%|█████████▌| 24/25 [00:00<00:00, 71.25it/s] 100%|██████████| 25/25 [00:00<00:00, 71.60it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 71.51it/s] 64%|██████▍ | 16/25 [00:00<00:00, 72.91it/s] 96%|█████████▌| 24/25 [00:00<00:00, 73.80it/s] 100%|██████████| 25/25 [00:00<00:00, 73.44it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 14.82it/s] 40%|████ | 4/10 [00:00<00:00, 14.70it/s] 60%|██████ | 6/10 [00:00<00:00, 14.68it/s] 80%|████████ | 8/10 [00:00<00:00, 14.66it/s] 100%|██████████| 10/10 [00:00<00:00, 14.65it/s] 100%|██████████| 10/10 [00:00<00:00, 14.67it/s] frame_idx: 40 cond_prompt: summer forest, lake, reflections on the water, summer sun, Van Gogh style uncond_prompt: low quality, bad image, cropped, out of frame seed: 37 prior_seed: 281350 angle: 0.0 zoom: 1.0 translation_x: 1.0 translation_y: 0.0 translation_z: 0.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 frame_idx: 40 cond_prompt: summer forest, lake, reflections on the water, summer sun, Van Gogh style uncond_prompt: low quality, bad image, cropped, out of frame seed: 37 prior_seed: 281350 angle: 0.0 zoom: 1.0 translation_x: 1.0 translation_y: 0.0 translation_z: 0.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 55%|█████▍ | 39/71 [00:59<00:41, 1.29s/it] 56%|█████▋ | 40/71 [00:59<00:29, 1.06it/s] 0%| | 0/25 [00:00<?, ?it/s] 28%|██▊ | 7/25 [00:00<00:00, 69.45it/s] 60%|██████ | 15/25 [00:00<00:00, 71.73it/s] 92%|█████████▏| 23/25 [00:00<00:00, 73.17it/s] 100%|██████████| 25/25 [00:00<00:00, 72.46it/s] 0%| | 0/25 [00:00<?, ?it/s] 28%|██▊ | 7/25 [00:00<00:00, 69.01it/s] 60%|██████ | 15/25 [00:00<00:00, 70.84it/s] 92%|█████████▏| 23/25 [00:00<00:00, 72.84it/s] 100%|██████████| 25/25 [00:00<00:00, 72.25it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 14.83it/s] 40%|████ | 4/10 [00:00<00:00, 14.74it/s] 60%|██████ | 6/10 [00:00<00:00, 14.70it/s] 80%|████████ | 8/10 [00:00<00:00, 14.67it/s] 100%|██████████| 10/10 [00:00<00:00, 14.66it/s] 100%|██████████| 10/10 [00:00<00:00, 14.68it/s] frame_idx: 42 cond_prompt: summer forest, lake, reflections on the water, summer sun, Van Gogh style uncond_prompt: low quality, bad image, cropped, out of frame seed: 38 prior_seed: 281350 angle: 0.0 zoom: 1.0 translation_x: 1.0 translation_y: 0.0 translation_z: 0.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 frame_idx: 42 cond_prompt: summer forest, lake, reflections on the water, summer sun, Van Gogh style uncond_prompt: low quality, bad image, cropped, out of frame seed: 38 prior_seed: 281350 angle: 0.0 zoom: 1.0 translation_x: 1.0 translation_y: 0.0 translation_z: 0.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 58%|█████▊ | 41/71 [01:01<00:38, 1.29s/it] 59%|█████▉ | 42/71 [01:01<00:27, 1.05it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 74.00it/s] 64%|██████▍ | 16/25 [00:00<00:00, 71.60it/s] 96%|█████████▌| 24/25 [00:00<00:00, 73.18it/s] 100%|██████████| 25/25 [00:00<00:00, 72.72it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 74.34it/s] 64%|██████▍ | 16/25 [00:00<00:00, 73.83it/s] 96%|█████████▌| 24/25 [00:00<00:00, 74.49it/s] 100%|██████████| 25/25 [00:00<00:00, 74.35it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 14.80it/s] 40%|████ | 4/10 [00:00<00:00, 14.72it/s] 60%|██████ | 6/10 [00:00<00:00, 14.70it/s] 80%|████████ | 8/10 [00:00<00:00, 14.69it/s] 100%|██████████| 10/10 [00:00<00:00, 14.68it/s] 100%|██████████| 10/10 [00:00<00:00, 14.69it/s] frame_idx: 44 cond_prompt: summer forest, lake, reflections on the water, summer sun, Van Gogh style uncond_prompt: low quality, bad image, cropped, out of frame seed: 39 prior_seed: 281350 angle: 0.0 zoom: 1.0 translation_x: 1.0 translation_y: 0.0 translation_z: 0.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 frame_idx: 44 cond_prompt: summer forest, lake, reflections on the water, summer sun, Van Gogh style uncond_prompt: low quality, bad image, cropped, out of frame seed: 39 prior_seed: 281350 angle: 0.0 zoom: 1.0 translation_x: 1.0 translation_y: 0.0 translation_z: 0.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 61%|██████ | 43/71 [01:03<00:36, 1.29s/it] 62%|██████▏ | 44/71 [01:03<00:25, 1.05it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 74.03it/s] 64%|██████▍ | 16/25 [00:00<00:00, 74.58it/s] 96%|█████████▌| 24/25 [00:00<00:00, 73.83it/s] 100%|██████████| 25/25 [00:00<00:00, 73.73it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 74.62it/s] 64%|██████▍ | 16/25 [00:00<00:00, 72.39it/s] 96%|█████████▌| 24/25 [00:00<00:00, 73.04it/s] 100%|██████████| 25/25 [00:00<00:00, 72.92it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 14.78it/s] 40%|████ | 4/10 [00:00<00:00, 14.67it/s] 60%|██████ | 6/10 [00:00<00:00, 14.60it/s] 80%|████████ | 8/10 [00:00<00:00, 14.61it/s] 100%|██████████| 10/10 [00:00<00:00, 14.62it/s] 100%|██████████| 10/10 [00:00<00:00, 14.63it/s] frame_idx: 46 cond_prompt: summer forest, lake, reflections on the water, summer sun, Van Gogh style uncond_prompt: low quality, bad image, cropped, out of frame seed: 40 prior_seed: 281350 angle: 0.0 zoom: 1.0 translation_x: 0.864073543551328 translation_y: 0.0 translation_z: 0.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 frame_idx: 46 cond_prompt: summer forest, lake, reflections on the water, summer sun, Van Gogh style uncond_prompt: low quality, bad image, cropped, out of frame seed: 40 prior_seed: 281350 angle: 0.0 zoom: 1.0 translation_x: 0.864073543551328 translation_y: 0.0 translation_z: 0.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 63%|██████▎ | 45/71 [01:05<00:33, 1.29s/it] 65%|██████▍ | 46/71 [01:06<00:23, 1.05it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 72.27it/s] 64%|██████▍ | 16/25 [00:00<00:00, 73.03it/s] 96%|█████████▌| 24/25 [00:00<00:00, 71.24it/s] 100%|██████████| 25/25 [00:00<00:00, 71.35it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 71.74it/s] 64%|██████▍ | 16/25 [00:00<00:00, 73.22it/s] 96%|█████████▌| 24/25 [00:00<00:00, 73.22it/s] 100%|██████████| 25/25 [00:00<00:00, 73.05it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 14.78it/s] 40%|████ | 4/10 [00:00<00:00, 14.68it/s] 60%|██████ | 6/10 [00:00<00:00, 14.65it/s] 80%|████████ | 8/10 [00:00<00:00, 14.63it/s] 100%|██████████| 10/10 [00:00<00:00, 14.63it/s] 100%|██████████| 10/10 [00:00<00:00, 14.64it/s] frame_idx: 48 cond_prompt: autumn forest, rain, Van Gogh style uncond_prompt: low quality, bad image, cropped, out of frame seed: 41 prior_seed: 281350 angle: 0.0 zoom: 1.0 translation_x: 0.5922206306539842 translation_y: 0.0 translation_z: 0.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 frame_idx: 48 cond_prompt: autumn forest, rain, Van Gogh style uncond_prompt: low quality, bad image, cropped, out of frame seed: 41 prior_seed: 281350 angle: 0.0 zoom: 1.0 translation_x: 0.5922206306539842 translation_y: 0.0 translation_z: 0.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 66%|██████▌ | 47/71 [01:08<00:30, 1.29s/it] 68%|██████▊ | 48/71 [01:08<00:21, 1.06it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 70.55it/s] 64%|██████▍ | 16/25 [00:00<00:00, 72.57it/s] 96%|█████████▌| 24/25 [00:00<00:00, 73.70it/s] 100%|██████████| 25/25 [00:00<00:00, 72.89it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 74.08it/s] 64%|██████▍ | 16/25 [00:00<00:00, 74.76it/s] 96%|█████████▌| 24/25 [00:00<00:00, 75.18it/s] 100%|██████████| 25/25 [00:00<00:00, 74.81it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 14.77it/s] 40%|████ | 4/10 [00:00<00:00, 14.72it/s] 60%|██████ | 6/10 [00:00<00:00, 14.71it/s] 80%|████████ | 8/10 [00:00<00:00, 14.67it/s] 100%|██████████| 10/10 [00:00<00:00, 14.65it/s] 100%|██████████| 10/10 [00:00<00:00, 14.67it/s] frame_idx: 50 cond_prompt: autumn forest, rain, Van Gogh style uncond_prompt: low quality, bad image, cropped, out of frame seed: 42 prior_seed: 281350 angle: 0.0 zoom: 1.0 translation_x: 0.3203677177566403 translation_y: 0.0 translation_z: 0.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 frame_idx: 50 cond_prompt: autumn forest, rain, Van Gogh style uncond_prompt: low quality, bad image, cropped, out of frame seed: 42 prior_seed: 281350 angle: 0.0 zoom: 1.0 translation_x: 0.3203677177566403 translation_y: 0.0 translation_z: 0.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 69%|██████▉ | 49/71 [01:10<00:28, 1.29s/it] 70%|███████ | 50/71 [01:10<00:19, 1.06it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 73.46it/s] 64%|██████▍ | 16/25 [00:00<00:00, 74.24it/s] 96%|█████████▌| 24/25 [00:00<00:00, 74.50it/s] 100%|██████████| 25/25 [00:00<00:00, 74.35it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 74.88it/s] 64%|██████▍ | 16/25 [00:00<00:00, 74.97it/s] 96%|█████████▌| 24/25 [00:00<00:00, 74.97it/s] 100%|██████████| 25/25 [00:00<00:00, 74.99it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 14.80it/s] 40%|████ | 4/10 [00:00<00:00, 14.74it/s] 60%|██████ | 6/10 [00:00<00:00, 14.69it/s] 80%|████████ | 8/10 [00:00<00:00, 14.68it/s] 100%|██████████| 10/10 [00:00<00:00, 14.68it/s] 100%|██████████| 10/10 [00:00<00:00, 14.69it/s] frame_idx: 52 cond_prompt: autumn forest, rain, Van Gogh style uncond_prompt: low quality, bad image, cropped, out of frame seed: 43 prior_seed: 281350 angle: 0.0 zoom: 1.0 translation_x: 0.04851480485929647 translation_y: 0.0 translation_z: 0.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 frame_idx: 52 cond_prompt: autumn forest, rain, Van Gogh style uncond_prompt: low quality, bad image, cropped, out of frame seed: 43 prior_seed: 281350 angle: 0.0 zoom: 1.0 translation_x: 0.04851480485929647 translation_y: 0.0 translation_z: 0.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 72%|███████▏ | 51/71 [01:12<00:25, 1.28s/it] 73%|███████▎ | 52/71 [01:12<00:17, 1.06it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 74.02it/s] 64%|██████▍ | 16/25 [00:00<00:00, 74.86it/s] 96%|█████████▌| 24/25 [00:00<00:00, 75.18it/s] 100%|██████████| 25/25 [00:00<00:00, 74.73it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 75.22it/s] 64%|██████▍ | 16/25 [00:00<00:00, 75.17it/s] 96%|█████████▌| 24/25 [00:00<00:00, 72.14it/s] 100%|██████████| 25/25 [00:00<00:00, 72.80it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 14.41it/s] 40%|████ | 4/10 [00:00<00:00, 14.54it/s] 60%|██████ | 6/10 [00:00<00:00, 14.58it/s] 80%|████████ | 8/10 [00:00<00:00, 14.60it/s] 100%|██████████| 10/10 [00:00<00:00, 14.61it/s] 100%|██████████| 10/10 [00:00<00:00, 14.58it/s] frame_idx: 54 cond_prompt: winter forest, snowflakes, Van Gogh style uncond_prompt: low quality, bad image, cropped, out of frame seed: 44 prior_seed: 281350 angle: 0.0 zoom: 1.0 translation_x: 0.04755285041482768 translation_y: 0.0 translation_z: 0.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 frame_idx: 54 cond_prompt: winter forest, snowflakes, Van Gogh style uncond_prompt: low quality, bad image, cropped, out of frame seed: 44 prior_seed: 281350 angle: 0.0 zoom: 1.0 translation_x: 0.04755285041482768 translation_y: 0.0 translation_z: 0.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 75%|███████▍ | 53/71 [01:14<00:23, 1.28s/it] 76%|███████▌ | 54/71 [01:14<00:16, 1.06it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 72.66it/s] 64%|██████▍ | 16/25 [00:00<00:00, 73.82it/s] 96%|█████████▌| 24/25 [00:00<00:00, 73.77it/s] 100%|██████████| 25/25 [00:00<00:00, 73.37it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 72.06it/s] 64%|██████▍ | 16/25 [00:00<00:00, 73.62it/s] 96%|█████████▌| 24/25 [00:00<00:00, 74.46it/s] 100%|██████████| 25/25 [00:00<00:00, 74.09it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 14.77it/s] 40%|████ | 4/10 [00:00<00:00, 14.71it/s] 60%|██████ | 6/10 [00:00<00:00, 14.67it/s] 80%|████████ | 8/10 [00:00<00:00, 14.64it/s] 100%|██████████| 10/10 [00:00<00:00, 14.65it/s] 100%|██████████| 10/10 [00:00<00:00, 14.66it/s] frame_idx: 56 cond_prompt: winter forest, snowflakes, Van Gogh style uncond_prompt: low quality, bad image, cropped, out of frame seed: 45 prior_seed: 281350 angle: 0.0 zoom: 1.0 translation_x: 0.046359223654345645 translation_y: 0.0 translation_z: 0.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 frame_idx: 56 cond_prompt: winter forest, snowflakes, Van Gogh style uncond_prompt: low quality, bad image, cropped, out of frame seed: 45 prior_seed: 281350 angle: 0.0 zoom: 1.0 translation_x: 0.046359223654345645 translation_y: 0.0 translation_z: 0.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 77%|███████▋ | 55/71 [01:17<00:20, 1.28s/it] 79%|███████▉ | 56/71 [01:17<00:14, 1.06it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 74.99it/s] 64%|██████▍ | 16/25 [00:00<00:00, 71.73it/s] 96%|█████████▌| 24/25 [00:00<00:00, 72.11it/s] 100%|██████████| 25/25 [00:00<00:00, 72.46it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 75.54it/s] 64%|██████▍ | 16/25 [00:00<00:00, 74.60it/s] 96%|█████████▌| 24/25 [00:00<00:00, 73.53it/s] 100%|██████████| 25/25 [00:00<00:00, 73.77it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 14.74it/s] 40%|████ | 4/10 [00:00<00:00, 14.69it/s] 60%|██████ | 6/10 [00:00<00:00, 14.68it/s] 80%|████████ | 8/10 [00:00<00:00, 14.67it/s] 100%|██████████| 10/10 [00:00<00:00, 14.65it/s] 100%|██████████| 10/10 [00:00<00:00, 14.66it/s] frame_idx: 58 cond_prompt: winter forest, snowflakes, Van Gogh style uncond_prompt: low quality, bad image, cropped, out of frame seed: 46 prior_seed: 281350 angle: 0.0 zoom: 1.0 translation_x: 0.04493973979762467 translation_y: 0.0 translation_z: 0.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 frame_idx: 58 cond_prompt: winter forest, snowflakes, Van Gogh style uncond_prompt: low quality, bad image, cropped, out of frame seed: 46 prior_seed: 281350 angle: 0.0 zoom: 1.0 translation_x: 0.04493973979762467 translation_y: 0.0 translation_z: 0.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 80%|████████ | 57/71 [01:19<00:17, 1.28s/it] 82%|████████▏ | 58/71 [01:19<00:12, 1.06it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 72.80it/s] 64%|██████▍ | 16/25 [00:00<00:00, 73.27it/s] 96%|█████████▌| 24/25 [00:00<00:00, 72.21it/s] 100%|██████████| 25/25 [00:00<00:00, 72.57it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 75.34it/s] 64%|██████▍ | 16/25 [00:00<00:00, 75.36it/s] 96%|█████████▌| 24/25 [00:00<00:00, 75.44it/s] 100%|██████████| 25/25 [00:00<00:00, 75.42it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 14.75it/s] 40%|████ | 4/10 [00:00<00:00, 14.66it/s] 60%|██████ | 6/10 [00:00<00:00, 14.64it/s] 80%|████████ | 8/10 [00:00<00:00, 14.62it/s] 100%|██████████| 10/10 [00:00<00:00, 14.59it/s] 100%|██████████| 10/10 [00:00<00:00, 14.61it/s] frame_idx: 60 cond_prompt: winter forest, snowflakes, Van Gogh style uncond_prompt: low quality, bad image, cropped, out of frame seed: 47 prior_seed: 281350 angle: 0.0 zoom: 1.0 translation_x: 0.043301314415650737 translation_y: 0.0 translation_z: 0.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 frame_idx: 60 cond_prompt: winter forest, snowflakes, Van Gogh style uncond_prompt: low quality, bad image, cropped, out of frame seed: 47 prior_seed: 281350 angle: 0.0 zoom: 1.0 translation_x: 0.043301314415650737 translation_y: 0.0 translation_z: 0.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 83%|████████▎ | 59/71 [01:21<00:15, 1.28s/it] 85%|████████▍ | 60/71 [01:21<00:10, 1.06it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 75.27it/s] 64%|██████▍ | 16/25 [00:00<00:00, 75.32it/s] 96%|█████████▌| 24/25 [00:00<00:00, 75.56it/s] 100%|██████████| 25/25 [00:00<00:00, 75.43it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 74.83it/s] 64%|██████▍ | 16/25 [00:00<00:00, 75.41it/s] 96%|█████████▌| 24/25 [00:00<00:00, 75.40it/s] 100%|██████████| 25/25 [00:00<00:00, 75.37it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 14.77it/s] 40%|████ | 4/10 [00:00<00:00, 14.69it/s] 60%|██████ | 6/10 [00:00<00:00, 14.67it/s] 80%|████████ | 8/10 [00:00<00:00, 14.66it/s] 100%|██████████| 10/10 [00:00<00:00, 14.65it/s] 100%|██████████| 10/10 [00:00<00:00, 14.66it/s] frame_idx: 62 cond_prompt: winter forest, snowflakes, Van Gogh style uncond_prompt: low quality, bad image, cropped, out of frame seed: 48 prior_seed: 281350 angle: 0.0 zoom: 1.0 translation_x: 0.04145192973871173 translation_y: 0.0 translation_z: 0.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 frame_idx: 62 cond_prompt: winter forest, snowflakes, Van Gogh style uncond_prompt: low quality, bad image, cropped, out of frame seed: 48 prior_seed: 281350 angle: 0.0 zoom: 1.0 translation_x: 0.04145192973871173 translation_y: 0.0 translation_z: 0.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 86%|████████▌ | 61/71 [01:23<00:12, 1.28s/it] 87%|████████▋ | 62/71 [01:23<00:08, 1.07it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 75.43it/s] 64%|██████▍ | 16/25 [00:00<00:00, 75.54it/s] 96%|█████████▌| 24/25 [00:00<00:00, 75.15it/s] 100%|██████████| 25/25 [00:00<00:00, 75.28it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 74.61it/s] 64%|██████▍ | 16/25 [00:00<00:00, 71.38it/s] 96%|█████████▌| 24/25 [00:00<00:00, 72.64it/s] 100%|██████████| 25/25 [00:00<00:00, 72.76it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 14.73it/s] 40%|████ | 4/10 [00:00<00:00, 14.70it/s] 60%|██████ | 6/10 [00:00<00:00, 14.68it/s] 80%|████████ | 8/10 [00:00<00:00, 14.67it/s] 100%|██████████| 10/10 [00:00<00:00, 14.66it/s] 100%|██████████| 10/10 [00:00<00:00, 14.67it/s] frame_idx: 64 cond_prompt: winter forest, snowflakes, Van Gogh style uncond_prompt: low quality, bad image, cropped, out of frame seed: 49 prior_seed: 281350 angle: 0.0 zoom: 1.0 translation_x: 0.039400595767839545 translation_y: 0.0 translation_z: 0.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 frame_idx: 64 cond_prompt: winter forest, snowflakes, Van Gogh style uncond_prompt: low quality, bad image, cropped, out of frame seed: 49 prior_seed: 281350 angle: 0.0 zoom: 1.0 translation_x: 0.039400595767839545 translation_y: 0.0 translation_z: 0.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 89%|████████▊ | 63/71 [01:25<00:10, 1.28s/it] 90%|█████████ | 64/71 [01:26<00:06, 1.07it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 73.38it/s] 64%|██████▍ | 16/25 [00:00<00:00, 74.59it/s] 96%|█████████▌| 24/25 [00:00<00:00, 75.00it/s] 100%|██████████| 25/25 [00:00<00:00, 74.70it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 75.33it/s] 64%|██████▍ | 16/25 [00:00<00:00, 75.48it/s] 96%|█████████▌| 24/25 [00:00<00:00, 75.40it/s] 100%|██████████| 25/25 [00:00<00:00, 75.41it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 14.75it/s] 40%|████ | 4/10 [00:00<00:00, 14.67it/s] 60%|██████ | 6/10 [00:00<00:00, 14.60it/s] 80%|████████ | 8/10 [00:00<00:00, 14.58it/s] 100%|██████████| 10/10 [00:00<00:00, 14.59it/s] 100%|██████████| 10/10 [00:00<00:00, 14.60it/s] frame_idx: 66 cond_prompt: winter forest, snowflakes, Van Gogh style uncond_prompt: low quality, bad image, cropped, out of frame seed: 50 prior_seed: 281350 angle: 0.0 zoom: 1.0 translation_x: 0.03715730637906477 translation_y: 0.0 translation_z: 0.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 frame_idx: 66 cond_prompt: winter forest, snowflakes, Van Gogh style uncond_prompt: low quality, bad image, cropped, out of frame seed: 50 prior_seed: 281350 angle: 0.0 zoom: 1.0 translation_x: 0.03715730637906477 translation_y: 0.0 translation_z: 0.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 92%|█████████▏| 65/71 [01:28<00:07, 1.28s/it] 93%|█████████▎| 66/71 [01:28<00:04, 1.06it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 72.96it/s] 64%|██████▍ | 16/25 [00:00<00:00, 73.73it/s] 96%|█████████▌| 24/25 [00:00<00:00, 73.66it/s] 100%|██████████| 25/25 [00:00<00:00, 73.30it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 71.12it/s] 64%|██████▍ | 16/25 [00:00<00:00, 73.51it/s] 96%|█████████▌| 24/25 [00:00<00:00, 74.24it/s] 100%|██████████| 25/25 [00:00<00:00, 73.83it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 14.79it/s] 40%|████ | 4/10 [00:00<00:00, 14.68it/s] 60%|██████ | 6/10 [00:00<00:00, 14.65it/s] 80%|████████ | 8/10 [00:00<00:00, 14.64it/s] 100%|██████████| 10/10 [00:00<00:00, 14.61it/s] 100%|██████████| 10/10 [00:00<00:00, 14.64it/s] frame_idx: 68 cond_prompt: winter forest, snowflakes, Van Gogh style uncond_prompt: low quality, bad image, cropped, out of frame seed: 51 prior_seed: 281350 angle: 0.0 zoom: 1.0 translation_x: 0.03473299063433959 translation_y: 0.0 translation_z: 0.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 frame_idx: 68 cond_prompt: winter forest, snowflakes, Van Gogh style uncond_prompt: low quality, bad image, cropped, out of frame seed: 51 prior_seed: 281350 angle: 0.0 zoom: 1.0 translation_x: 0.03473299063433959 translation_y: 0.0 translation_z: 0.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 94%|█████████▍| 67/71 [01:30<00:05, 1.28s/it] 96%|█████████▌| 68/71 [01:30<00:02, 1.06it/s] 0%| | 0/25 [00:00<?, ?it/s] 28%|██▊ | 7/25 [00:00<00:00, 68.49it/s] 60%|██████ | 15/25 [00:00<00:00, 71.47it/s] 92%|█████████▏| 23/25 [00:00<00:00, 71.88it/s] 100%|██████████| 25/25 [00:00<00:00, 71.03it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 73.58it/s] 64%|██████▍ | 16/25 [00:00<00:00, 74.49it/s] 96%|█████████▌| 24/25 [00:00<00:00, 73.63it/s] 100%|██████████| 25/25 [00:00<00:00, 73.58it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 14.77it/s] 40%|████ | 4/10 [00:00<00:00, 14.67it/s] 60%|██████ | 6/10 [00:00<00:00, 14.65it/s] 80%|████████ | 8/10 [00:00<00:00, 14.64it/s] 100%|██████████| 10/10 [00:00<00:00, 14.64it/s] 100%|██████████| 10/10 [00:00<00:00, 14.65it/s] frame_idx: 70 cond_prompt: winter forest, snowflakes, Van Gogh style uncond_prompt: low quality, bad image, cropped, out of frame seed: 52 prior_seed: 281350 angle: 0.0 zoom: 1.0 translation_x: 0.03213945953633634 translation_y: 0.0 translation_z: 0.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 frame_idx: 70 cond_prompt: winter forest, snowflakes, Van Gogh style uncond_prompt: low quality, bad image, cropped, out of frame seed: 52 prior_seed: 281350 angle: 0.0 zoom: 1.0 translation_x: 0.03213945953633634 translation_y: 0.0 translation_z: 0.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 97%|█████████▋| 69/71 [01:32<00:02, 1.29s/it] 99%|█████████▊| 70/71 [01:32<00:00, 1.05it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 72.09it/s] 64%|██████▍ | 16/25 [00:00<00:00, 72.46it/s] 96%|█████████▌| 24/25 [00:00<00:00, 71.82it/s] 100%|██████████| 25/25 [00:00<00:00, 71.65it/s] 0%| | 0/25 [00:00<?, ?it/s] 28%|██▊ | 7/25 [00:00<00:00, 69.75it/s] 60%|██████ | 15/25 [00:00<00:00, 70.37it/s] 92%|█████████▏| 23/25 [00:00<00:00, 70.50it/s] 100%|██████████| 25/25 [00:00<00:00, 70.79it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 14.72it/s] 40%|████ | 4/10 [00:00<00:00, 14.67it/s] 60%|██████ | 6/10 [00:00<00:00, 14.64it/s] 80%|████████ | 8/10 [00:00<00:00, 14.63it/s] 100%|██████████| 10/10 [00:00<00:00, 14.63it/s] 100%|██████████| 10/10 [00:00<00:00, 14.64it/s] 99%|█████████▊| 70/71 [01:34<00:01, 1.35s/it] 0%| | 0/70 [00:00<?, ?it/s] 1%|▏ | 1/70 [00:00<00:09, 7.61it/s] 67%|██████▋ | 47/70 [00:00<00:00, 162.95it/s] 89%|████████▊ | 62/70 [00:00<00:00, 137.55it/s] 100%|██████████| 70/70 [00:00<00:00, 124.56it/s]
Prediction
adirik/deforum-kandinsky-2-2:c0941f93ddd4ea5b50131abc0a4d03a82a33a18af290be54a3f9a3f9673afa3aIDx3bxgm3bst6g2agsd6scb4urraStatusSucceededSourceWebHardwareA40Total durationCreatedInput
- fps
- 24
- seed
- 1
- steps
- 80
- width
- 640
- height
- 640
- scheduler
- euler_ancestral
- animations
- zoomout | zoomout | zoomout | zoomout
- max_frames
- 48
- prompt_durations
- 0.5 | 0.5 | 0.5 | 0.5
- animation_prompts
- a painting of an elephant with clouds in the background | a detailed painting, by Dan Mumford | fractal cloud, dark rainbow nimbus | dreaming of electric sheep, style of tim hildebrandt
{ "fps": 24, "seed": 1, "steps": 80, "width": 640, "height": 640, "scheduler": "euler_ancestral", "animations": "zoomout | zoomout | zoomout | zoomout", "max_frames": 48, "prompt_durations": "0.5 | 0.5 | 0.5 | 0.5", "animation_prompts": "a painting of an elephant with clouds in the background | a detailed painting, by Dan Mumford | fractal cloud, dark rainbow nimbus | dreaming of electric sheep, style of tim hildebrandt" }
Install Replicate’s Node.js client library:npm install replicate
Import and set up the client:import Replicate from "replicate"; const replicate = new Replicate({ auth: process.env.REPLICATE_API_TOKEN, });
Run adirik/deforum-kandinsky-2-2 using Replicate’s API. Check out the model's schema for an overview of inputs and outputs.
const output = await replicate.run( "adirik/deforum-kandinsky-2-2:c0941f93ddd4ea5b50131abc0a4d03a82a33a18af290be54a3f9a3f9673afa3a", { input: { fps: 24, seed: 1, steps: 80, width: 640, height: 640, scheduler: "euler_ancestral", animations: "zoomout | zoomout | zoomout | zoomout", max_frames: 48, prompt_durations: "0.5 | 0.5 | 0.5 | 0.5", animation_prompts: "a painting of an elephant with clouds in the background | a detailed painting, by Dan Mumford | fractal cloud, dark rainbow nimbus | dreaming of electric sheep, style of tim hildebrandt" } } ); // To access the file URL: console.log(output.url()); //=> "http://example.com" // To write the file to disk: fs.writeFile("my-image.png", output);
To learn more, take a look at the guide on getting started with Node.js.
Install Replicate’s Python client library:pip install replicate
Import the client:import replicate
Run adirik/deforum-kandinsky-2-2 using Replicate’s API. Check out the model's schema for an overview of inputs and outputs.
output = replicate.run( "adirik/deforum-kandinsky-2-2:c0941f93ddd4ea5b50131abc0a4d03a82a33a18af290be54a3f9a3f9673afa3a", input={ "fps": 24, "seed": 1, "steps": 80, "width": 640, "height": 640, "scheduler": "euler_ancestral", "animations": "zoomout | zoomout | zoomout | zoomout", "max_frames": 48, "prompt_durations": "0.5 | 0.5 | 0.5 | 0.5", "animation_prompts": "a painting of an elephant with clouds in the background | a detailed painting, by Dan Mumford | fractal cloud, dark rainbow nimbus | dreaming of electric sheep, style of tim hildebrandt" } ) print(output)
To learn more, take a look at the guide on getting started with Python.
Run adirik/deforum-kandinsky-2-2 using Replicate’s API. Check out the model's schema for an overview of inputs and outputs.
curl -s -X POST \ -H "Authorization: Bearer $REPLICATE_API_TOKEN" \ -H "Content-Type: application/json" \ -H "Prefer: wait" \ -d $'{ "version": "adirik/deforum-kandinsky-2-2:c0941f93ddd4ea5b50131abc0a4d03a82a33a18af290be54a3f9a3f9673afa3a", "input": { "fps": 24, "seed": 1, "steps": 80, "width": 640, "height": 640, "scheduler": "euler_ancestral", "animations": "zoomout | zoomout | zoomout | zoomout", "max_frames": 48, "prompt_durations": "0.5 | 0.5 | 0.5 | 0.5", "animation_prompts": "a painting of an elephant with clouds in the background | a detailed painting, by Dan Mumford | fractal cloud, dark rainbow nimbus | dreaming of electric sheep, style of tim hildebrandt" } }' \ https://api.replicate.com/v1/predictions
To learn more, take a look at Replicate’s HTTP API reference docs.
Output
{ "completed_at": "2023-10-17T16:17:10.549499Z", "created_at": "2023-10-17T16:15:57.486790Z", "data_removed": false, "error": null, "id": "x3bxgm3bst6g2agsd6scb4urra", "input": { "fps": 24, "seed": 1, "steps": 80, "width": 640, "height": 640, "scheduler": "euler_ancestral", "animations": "zoomout | zoomout | zoomout | zoomout", "max_frames": 48, "prompt_durations": "0.5 | 0.5 | 0.5 | 0.5", "animation_prompts": "a painting of an elephant with clouds in the background | a detailed painting, by Dan Mumford | fractal cloud, dark rainbow nimbus | dreaming of electric sheep, style of tim hildebrandt" }, "logs": "0%| | 0/47 [00:00<?, ?it/s]/src/deforum_kandinsky/helpers/animation.py:322: FutureWarning: Setting an item of incompatible dtype is deprecated and will raise in a future error of pandas. Value 'euler' has dtype incompatible with float64, please explicitly cast to a compatible dtype first.\nkey_frame_series[i] = numexpr.evaluate(value) if not is_single_string else value # workaround for values formatted like 0:(\"I am test\") //used for sampler schedules\n/src/deforum_kandinsky/helpers/animation.py:332: FutureWarning: Series.interpolate with object dtype is deprecated and will raise in a future version. Call obj.infer_objects(copy=False) before interpolating instead.\nkey_frame_series = key_frame_series.interpolate(method=interp_method.lower(), limit_direction='both')\n/src/deforum_kandinsky/helpers/render.py:242: FutureWarning: Setting an item of incompatible dtype is deprecated and will raise in a future error of pandas. Value 'a painting of an elephant with clouds in the background' has dtype incompatible with float64, please explicitly cast to a compatible dtype first.\ncond_prompt_series[int(i)] = prompt\n/src/deforum_kandinsky/helpers/render.py:248: FutureWarning: Setting an item of incompatible dtype is deprecated and will raise in a future error of pandas. Value 'low quality, bad image, cropped, out of frame' has dtype incompatible with float64, please explicitly cast to a compatible dtype first.\nuncond_prompt_series[int(i)] = prompt\nUsing cache found in torch-cache/hub/rwightman_gen-efficientnet-pytorch_master\nLoading base model ()...Done.\nRemoving last two layers (global_pool & classifier).\nBuilding Encoder-Decoder model..Done.\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 72.13it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 72.48it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 73.13it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 72.91it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 74.57it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 75.00it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 75.51it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 75.30it/s]\n 0%| | 0/80 [00:00<?, ?it/s]\u001b[A\n 1%|▏ | 1/80 [00:00<00:09, 8.54it/s]\u001b[A\n 4%|▍ | 3/80 [00:00<00:06, 12.15it/s]\u001b[A\n 6%|▋ | 5/80 [00:00<00:05, 13.12it/s]\u001b[A\n 9%|▉ | 7/80 [00:00<00:05, 13.53it/s]\u001b[A\n 11%|█▏ | 9/80 [00:00<00:05, 13.73it/s]\u001b[A\n 14%|█▍ | 11/80 [00:00<00:04, 13.85it/s]\u001b[A\n 16%|█▋ | 13/80 [00:00<00:04, 13.95it/s]\u001b[A\n 19%|█▉ | 15/80 [00:01<00:04, 14.01it/s]\u001b[A\n 21%|██▏ | 17/80 [00:01<00:04, 14.06it/s]\u001b[A\n 24%|██▍ | 19/80 [00:01<00:04, 14.09it/s]\u001b[A\n 26%|██▋ | 21/80 [00:01<00:04, 14.11it/s]\u001b[A\n 29%|██▉ | 23/80 [00:01<00:04, 14.13it/s]\u001b[A\n 31%|███▏ | 25/80 [00:01<00:03, 14.15it/s]\u001b[A\n 34%|███▍ | 27/80 [00:01<00:03, 14.15it/s]\u001b[A\n 36%|███▋ | 29/80 [00:02<00:03, 14.14it/s]\u001b[A\n 39%|███▉ | 31/80 [00:02<00:03, 14.12it/s]\u001b[A\n 41%|████▏ | 33/80 [00:02<00:03, 14.12it/s]\u001b[A\n 44%|████▍ | 35/80 [00:02<00:03, 14.13it/s]\u001b[A\n 46%|████▋ | 37/80 [00:02<00:03, 14.14it/s]\u001b[A\n 49%|████▉ | 39/80 [00:02<00:02, 14.16it/s]\u001b[A\n 51%|█████▏ | 41/80 [00:02<00:02, 14.16it/s]\u001b[A\n 54%|█████▍ | 43/80 [00:03<00:02, 14.16it/s]\u001b[A\n 56%|█████▋ | 45/80 [00:03<00:02, 14.14it/s]\u001b[A\n 59%|█████▉ | 47/80 [00:03<00:02, 14.13it/s]\u001b[A\n 61%|██████▏ | 49/80 [00:03<00:02, 14.13it/s]\u001b[A\n 64%|██████▍ | 51/80 [00:03<00:02, 14.14it/s]\u001b[A\n 66%|██████▋ | 53/80 [00:03<00:01, 14.15it/s]\u001b[A\n 69%|██████▉ | 55/80 [00:03<00:01, 14.14it/s]\u001b[A\n 71%|███████▏ | 57/80 [00:04<00:01, 14.06it/s]\u001b[A\n 74%|███████▍ | 59/80 [00:04<00:01, 14.11it/s]\u001b[A\n 76%|███████▋ | 61/80 [00:04<00:01, 14.12it/s]\u001b[A\n 79%|███████▉ | 63/80 [00:04<00:01, 14.13it/s]\u001b[A\n 81%|████████▏ | 65/80 [00:04<00:01, 14.15it/s]\u001b[A\n 84%|████████▍ | 67/80 [00:04<00:00, 14.18it/s]\u001b[A\n 86%|████████▋ | 69/80 [00:04<00:00, 14.18it/s]\u001b[A\n 89%|████████▉ | 71/80 [00:05<00:00, 14.18it/s]\u001b[A\n 91%|█████████▏| 73/80 [00:05<00:00, 14.19it/s]\u001b[A\n 94%|█████████▍| 75/80 [00:05<00:00, 14.20it/s]\u001b[A\n 96%|█████████▋| 77/80 [00:05<00:00, 14.19it/s]\u001b[A\n 99%|█████████▉| 79/80 [00:05<00:00, 14.20it/s]\u001b[A\n100%|██████████| 80/80 [00:05<00:00, 14.04it/s]\nframe_idx: 2\ncond_prompt: a painting of an elephant with clouds in the background\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 2\nprior_seed: 968551\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: -1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 2%|▏ | 1/47 [00:17<13:37, 17.76s/it]/root/.pyenv/versions/3.10.13/lib/python3.10/site-packages/torch/functional.py:504: UserWarning: torch.meshgrid: in an upcoming release, it will be required to pass the indexing argument. (Triggered internally at ../aten/src/ATen/native/TensorShape.cpp:3483.)\nreturn _VF.meshgrid(tensors, **kwargs) # type: ignore[attr-defined]\nframe_idx: 2\ncond_prompt: a painting of an elephant with clouds in the background\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 2\nprior_seed: 968551\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: -1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 4%|▍ | 2/47 [00:17<05:33, 7.41s/it]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 74.65it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 74.41it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 73.38it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 73.68it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 71.38it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 74.07it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 74.89it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 74.19it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 14.29it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 14.24it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 14.22it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 14.19it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 14.16it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 14.18it/s]\nframe_idx: 4\ncond_prompt: a painting of an elephant with clouds in the background\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 3\nprior_seed: 968551\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: -1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nframe_idx: 4\ncond_prompt: a painting of an elephant with clouds in the background\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 3\nprior_seed: 968551\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: -1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 6%|▋ | 3/47 [00:20<03:40, 5.01s/it]\n 9%|▊ | 4/47 [00:20<02:13, 3.10s/it]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 28%|██▊ | 7/25 [00:00<00:00, 67.14it/s]\u001b[A\n 60%|██████ | 15/25 [00:00<00:00, 69.83it/s]\u001b[A\n 92%|█████████▏| 23/25 [00:00<00:00, 70.67it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 70.25it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 76.21it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 74.40it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 75.26it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 75.22it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 14.31it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 14.26it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 14.24it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 14.23it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 14.22it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 14.23it/s]\nframe_idx: 6\ncond_prompt: a painting of an elephant with clouds in the background\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 4\nprior_seed: 968551\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: -1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nframe_idx: 6\ncond_prompt: a painting of an elephant with clouds in the background\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 4\nprior_seed: 968551\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: -1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 11%|█ | 5/47 [00:22<01:55, 2.76s/it]\n 13%|█▎ | 6/47 [00:22<01:17, 1.88s/it]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 75.06it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 73.90it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 74.95it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 74.83it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 76.37it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 74.87it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 75.12it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 75.03it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 14.28it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 14.24it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 14.23it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 14.22it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 14.22it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 14.22it/s]\nframe_idx: 8\ncond_prompt: a painting of an elephant with clouds in the background\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 5\nprior_seed: 968551\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: -1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nframe_idx: 8\ncond_prompt: a painting of an elephant with clouds in the background\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 5\nprior_seed: 968551\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: -1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 15%|█▍ | 7/47 [00:24<01:18, 1.96s/it]\n 17%|█▋ | 8/47 [00:24<00:54, 1.39s/it]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 74.88it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 75.59it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 73.84it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 74.13it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 28%|██▊ | 7/25 [00:00<00:00, 68.32it/s]\u001b[A\n 60%|██████ | 15/25 [00:00<00:00, 70.67it/s]\u001b[A\n 92%|█████████▏| 23/25 [00:00<00:00, 71.16it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 70.82it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 14.20it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 14.20it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 14.21it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 14.21it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 14.22it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 14.21it/s]\nframe_idx: 10\ncond_prompt: a painting of an elephant with clouds in the background\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 6\nprior_seed: 968551\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: -1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nframe_idx: 10\ncond_prompt: a painting of an elephant with clouds in the background\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 6\nprior_seed: 968551\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: -1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 19%|█▉ | 9/47 [00:27<01:01, 1.63s/it]\n 21%|██▏ | 10/47 [00:27<00:43, 1.18s/it]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 28%|██▊ | 7/25 [00:00<00:00, 69.76it/s]\u001b[A\n 56%|█████▌ | 14/25 [00:00<00:00, 69.03it/s]\u001b[A\n 88%|████████▊ | 22/25 [00:00<00:00, 69.97it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 69.94it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 76.17it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 76.02it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 75.97it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 75.77it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 14.24it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 14.20it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 14.20it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 14.20it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 14.19it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 14.19it/s]\nframe_idx: 12\ncond_prompt: a painting of an elephant with clouds in the background\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 7\nprior_seed: 968551\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: -1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nframe_idx: 12\ncond_prompt: a painting of an elephant with clouds in the background\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 7\nprior_seed: 968551\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: -1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 23%|██▎ | 11/47 [00:29<00:53, 1.48s/it]\n 26%|██▌ | 12/47 [00:29<00:37, 1.08s/it]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 74.80it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 72.65it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 71.95it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 72.32it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 71.49it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 71.15it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 71.20it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 71.24it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 14.27it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 14.21it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 14.19it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 14.19it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 14.20it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 14.20it/s]\nframe_idx: 14\ncond_prompt: a detailed painting, by Dan Mumford\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 8\nprior_seed: 968551\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: -1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nframe_idx: 14\ncond_prompt: a detailed painting, by Dan Mumford\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 8\nprior_seed: 968551\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: -1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 28%|██▊ | 13/47 [00:31<00:47, 1.41s/it]\n 30%|██▉ | 14/47 [00:31<00:34, 1.04s/it]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 74.84it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 72.86it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 72.21it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 72.52it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 71.93it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 72.79it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 74.16it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 73.78it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 14.29it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 14.24it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 14.22it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 14.21it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 14.20it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 14.21it/s]\nframe_idx: 16\ncond_prompt: a detailed painting, by Dan Mumford\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 9\nprior_seed: 968551\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: -1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nframe_idx: 16\ncond_prompt: a detailed painting, by Dan Mumford\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 9\nprior_seed: 968551\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: -1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 32%|███▏ | 15/47 [00:34<00:43, 1.37s/it]\n 34%|███▍ | 16/47 [00:34<00:31, 1.01s/it]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 73.67it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 71.26it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 71.19it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 71.43it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 72.72it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 71.76it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 71.64it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 71.72it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 14.30it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 14.23it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 14.22it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 14.21it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 14.20it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 14.21it/s]\nframe_idx: 18\ncond_prompt: a detailed painting, by Dan Mumford\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 10\nprior_seed: 968551\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: -1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nframe_idx: 18\ncond_prompt: a detailed painting, by Dan Mumford\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 10\nprior_seed: 968551\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: -1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 36%|███▌ | 17/47 [00:36<00:40, 1.36s/it]\n 38%|███▊ | 18/47 [00:36<00:29, 1.00s/it]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 74.58it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 74.66it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 74.42it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 74.39it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 76.25it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 76.14it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 76.10it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 75.84it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 14.27it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 14.22it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 14.19it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 14.17it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 14.17it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 14.18it/s]\nframe_idx: 20\ncond_prompt: a detailed painting, by Dan Mumford\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 11\nprior_seed: 968551\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: -1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nframe_idx: 20\ncond_prompt: a detailed painting, by Dan Mumford\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 11\nprior_seed: 968551\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: -1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 40%|████ | 19/47 [00:38<00:37, 1.35s/it]\n 43%|████▎ | 20/47 [00:38<00:26, 1.01it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 74.28it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 74.70it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 74.74it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 74.61it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 28%|██▊ | 7/25 [00:00<00:00, 63.85it/s]\u001b[A\n 60%|██████ | 15/25 [00:00<00:00, 70.06it/s]\u001b[A\n 92%|█████████▏| 23/25 [00:00<00:00, 72.49it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 71.31it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 14.29it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 14.20it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 14.17it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 14.16it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 14.15it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 14.16it/s]\nframe_idx: 22\ncond_prompt: a detailed painting, by Dan Mumford\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 12\nprior_seed: 968551\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: -1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nframe_idx: 22\ncond_prompt: a detailed painting, by Dan Mumford\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 12\nprior_seed: 968551\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: -1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 45%|████▍ | 21/47 [00:41<00:34, 1.35s/it]\n 47%|████▋ | 22/47 [00:41<00:24, 1.01it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 71.10it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 72.76it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 73.66it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 73.21it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 76.06it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 75.99it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 76.02it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 75.75it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 14.25it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 14.19it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 14.18it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 14.16it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 14.15it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 14.16it/s]\nframe_idx: 24\ncond_prompt: a detailed painting, by Dan Mumford\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 13\nprior_seed: 968551\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: -1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nframe_idx: 24\ncond_prompt: a detailed painting, by Dan Mumford\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 13\nprior_seed: 968551\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: -1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 49%|████▉ | 23/47 [00:43<00:32, 1.34s/it]\n 51%|█████ | 24/47 [00:43<00:22, 1.02it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 74.67it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 75.54it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 75.84it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 75.67it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 76.49it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 76.48it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 76.39it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 76.40it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 14.22it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 14.19it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 14.17it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 14.15it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 14.15it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 14.16it/s]\nframe_idx: 26\ncond_prompt: fractal cloud, dark rainbow nimbus\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 14\nprior_seed: 968551\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: -1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nframe_idx: 26\ncond_prompt: fractal cloud, dark rainbow nimbus\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 14\nprior_seed: 968551\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: -1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 53%|█████▎ | 25/47 [00:45<00:29, 1.33s/it]\n 55%|█████▌ | 26/47 [00:45<00:20, 1.02it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 75.14it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 75.83it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 76.03it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 75.91it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 71.20it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 72.10it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 72.17it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 72.05it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 14.21it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 14.17it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 14.14it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 14.14it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 14.13it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 14.14it/s]\nframe_idx: 28\ncond_prompt: fractal cloud, dark rainbow nimbus\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 15\nprior_seed: 968551\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: -1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nframe_idx: 28\ncond_prompt: fractal cloud, dark rainbow nimbus\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 15\nprior_seed: 968551\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: -1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 57%|█████▋ | 27/47 [00:47<00:26, 1.34s/it]\n 60%|█████▉ | 28/47 [00:48<00:18, 1.02it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 74.51it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 74.25it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 73.07it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 73.07it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 75.88it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 75.80it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 75.82it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 75.72it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 14.19it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 14.13it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 14.12it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 14.11it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 14.11it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 14.12it/s]\nframe_idx: 30\ncond_prompt: fractal cloud, dark rainbow nimbus\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 16\nprior_seed: 968551\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: -1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nframe_idx: 30\ncond_prompt: fractal cloud, dark rainbow nimbus\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 16\nprior_seed: 968551\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: -1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 62%|██████▏ | 29/47 [00:50<00:23, 1.33s/it]\n 64%|██████▍ | 30/47 [00:50<00:16, 1.02it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 73.55it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 73.77it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 74.44it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 74.02it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 76.26it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 76.05it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 75.63it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 75.68it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 14.22it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 14.15it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 14.11it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 14.08it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 14.08it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 14.10it/s]\nframe_idx: 32\ncond_prompt: fractal cloud, dark rainbow nimbus\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 17\nprior_seed: 968551\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: -1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nframe_idx: 32\ncond_prompt: fractal cloud, dark rainbow nimbus\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 17\nprior_seed: 968551\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: -1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 66%|██████▌ | 31/47 [00:52<00:21, 1.33s/it]\n 68%|██████▊ | 32/47 [00:52<00:14, 1.01it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 74.52it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 75.11it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 75.38it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 74.98it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 76.29it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 72.27it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 73.93it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 73.95it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 12.93it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 13.63it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 13.86it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 13.96it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 13.99it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 13.86it/s]\nframe_idx: 34\ncond_prompt: fractal cloud, dark rainbow nimbus\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 18\nprior_seed: 968551\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: -1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nframe_idx: 34\ncond_prompt: fractal cloud, dark rainbow nimbus\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 18\nprior_seed: 968551\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: -1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 70%|███████ | 33/47 [00:54<00:18, 1.34s/it]\n 72%|███████▏ | 34/47 [00:55<00:12, 1.01it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 75.04it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 72.39it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 72.24it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 72.50it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 76.09it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 74.93it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 75.24it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 75.31it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 14.18it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 14.15it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 14.13it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 14.11it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 14.11it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 14.12it/s]\nframe_idx: 36\ncond_prompt: fractal cloud, dark rainbow nimbus\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 19\nprior_seed: 968551\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: -1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nframe_idx: 36\ncond_prompt: fractal cloud, dark rainbow nimbus\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 19\nprior_seed: 968551\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: -1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 74%|███████▍ | 35/47 [00:57<00:16, 1.34s/it]\n 77%|███████▋ | 36/47 [00:57<00:10, 1.02it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 74.60it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 75.34it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 75.58it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 75.47it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 76.18it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 76.07it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 76.11it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 76.12it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 14.20it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 14.16it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 14.14it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 14.13it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 14.13it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 14.13it/s]\nframe_idx: 38\ncond_prompt: dreaming of electric sheep, style of tim hildebrandt\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 20\nprior_seed: 968551\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: -1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nframe_idx: 38\ncond_prompt: dreaming of electric sheep, style of tim hildebrandt\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 20\nprior_seed: 968551\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: -1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 79%|███████▊ | 37/47 [00:59<00:13, 1.33s/it]\n 81%|████████ | 38/47 [00:59<00:08, 1.02it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 75.07it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 75.66it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 75.79it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 75.71it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 75.98it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 73.01it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 74.38it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 74.37it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 14.17it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 14.12it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 14.12it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 14.11it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 14.11it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 14.11it/s]\nframe_idx: 40\ncond_prompt: dreaming of electric sheep, style of tim hildebrandt\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 21\nprior_seed: 968551\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: -1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nframe_idx: 40\ncond_prompt: dreaming of electric sheep, style of tim hildebrandt\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 21\nprior_seed: 968551\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: -1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 83%|████████▎ | 39/47 [01:01<00:10, 1.33s/it]\n 85%|████████▌ | 40/47 [01:02<00:06, 1.02it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 74.54it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 73.79it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 73.69it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 73.86it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 76.05it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 75.75it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 75.66it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 75.67it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 14.12it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 14.08it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 14.08it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 14.08it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 14.08it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 14.08it/s]\nframe_idx: 42\ncond_prompt: dreaming of electric sheep, style of tim hildebrandt\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 22\nprior_seed: 968551\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: -1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nframe_idx: 42\ncond_prompt: dreaming of electric sheep, style of tim hildebrandt\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 22\nprior_seed: 968551\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: -1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 87%|████████▋ | 41/47 [01:04<00:07, 1.33s/it]\n 89%|████████▉ | 42/47 [01:04<00:04, 1.02it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 74.18it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 73.11it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 74.19it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 73.78it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 76.44it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 76.20it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 76.15it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 76.13it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 14.14it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 14.11it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 14.08it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 14.07it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 14.08it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 14.08it/s]\nframe_idx: 44\ncond_prompt: dreaming of electric sheep, style of tim hildebrandt\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 23\nprior_seed: 968551\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: -1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nframe_idx: 44\ncond_prompt: dreaming of electric sheep, style of tim hildebrandt\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 23\nprior_seed: 968551\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: -1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 91%|█████████▏| 43/47 [01:06<00:05, 1.33s/it]\n 94%|█████████▎| 44/47 [01:06<00:02, 1.02it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 74.64it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 73.66it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 73.34it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 73.35it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 75.94it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 75.89it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 73.50it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 74.13it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 14.19it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 14.11it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 14.08it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 14.08it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 14.09it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 14.09it/s]\nframe_idx: 46\ncond_prompt: dreaming of electric sheep, style of tim hildebrandt\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 24\nprior_seed: 968551\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: -1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nframe_idx: 46\ncond_prompt: dreaming of electric sheep, style of tim hildebrandt\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 24\nprior_seed: 968551\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: -1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 96%|█████████▌| 45/47 [01:08<00:02, 1.33s/it]\n 98%|█████████▊| 46/47 [01:08<00:00, 1.02it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 73.51it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 74.57it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 73.44it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 72.64it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 75.20it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 75.48it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 75.70it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 75.60it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 14.20it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 14.14it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 14.10it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 14.05it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 14.06it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 14.07it/s]\n98%|█████████▊| 46/47 [01:10<00:01, 1.54s/it]\n 0%| | 0/46 [00:00<?, ?it/s]\n 2%|▏ | 1/46 [00:00<00:12, 3.52it/s]\n100%|██████████| 46/46 [00:00<00:00, 120.31it/s]", "metrics": { "predict_time": 73.065653, "total_time": 73.062709 }, "output": "https://pbxt.replicate.delivery/ACVqQ2OFIbb4EVIYj7yZeuHuTkgzN4y7NeSgV09LfehXYZ8GB/output_2_2.mp4", "started_at": "2023-10-17T16:15:57.483846Z", "status": "succeeded", "urls": { "get": "https://api.replicate.com/v1/predictions/x3bxgm3bst6g2agsd6scb4urra", "cancel": "https://api.replicate.com/v1/predictions/x3bxgm3bst6g2agsd6scb4urra/cancel" }, "version": "c0941f93ddd4ea5b50131abc0a4d03a82a33a18af290be54a3f9a3f9673afa3a" }
Generated in0%| | 0/47 [00:00<?, ?it/s]/src/deforum_kandinsky/helpers/animation.py:322: FutureWarning: Setting an item of incompatible dtype is deprecated and will raise in a future error of pandas. Value 'euler' has dtype incompatible with float64, please explicitly cast to a compatible dtype first. key_frame_series[i] = numexpr.evaluate(value) if not is_single_string else value # workaround for values formatted like 0:("I am test") //used for sampler schedules /src/deforum_kandinsky/helpers/animation.py:332: FutureWarning: Series.interpolate with object dtype is deprecated and will raise in a future version. Call obj.infer_objects(copy=False) before interpolating instead. key_frame_series = key_frame_series.interpolate(method=interp_method.lower(), limit_direction='both') /src/deforum_kandinsky/helpers/render.py:242: FutureWarning: Setting an item of incompatible dtype is deprecated and will raise in a future error of pandas. Value 'a painting of an elephant with clouds in the background' has dtype incompatible with float64, please explicitly cast to a compatible dtype first. cond_prompt_series[int(i)] = prompt /src/deforum_kandinsky/helpers/render.py:248: FutureWarning: Setting an item of incompatible dtype is deprecated and will raise in a future error of pandas. Value 'low quality, bad image, cropped, out of frame' has dtype incompatible with float64, please explicitly cast to a compatible dtype first. uncond_prompt_series[int(i)] = prompt Using cache found in torch-cache/hub/rwightman_gen-efficientnet-pytorch_master Loading base model ()...Done. Removing last two layers (global_pool & classifier). Building Encoder-Decoder model..Done. 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 72.13it/s] 64%|██████▍ | 16/25 [00:00<00:00, 72.48it/s] 96%|█████████▌| 24/25 [00:00<00:00, 73.13it/s] 100%|██████████| 25/25 [00:00<00:00, 72.91it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 74.57it/s] 64%|██████▍ | 16/25 [00:00<00:00, 75.00it/s] 96%|█████████▌| 24/25 [00:00<00:00, 75.51it/s] 100%|██████████| 25/25 [00:00<00:00, 75.30it/s] 0%| | 0/80 [00:00<?, ?it/s] 1%|▏ | 1/80 [00:00<00:09, 8.54it/s] 4%|▍ | 3/80 [00:00<00:06, 12.15it/s] 6%|▋ | 5/80 [00:00<00:05, 13.12it/s] 9%|▉ | 7/80 [00:00<00:05, 13.53it/s] 11%|█▏ | 9/80 [00:00<00:05, 13.73it/s] 14%|█▍ | 11/80 [00:00<00:04, 13.85it/s] 16%|█▋ | 13/80 [00:00<00:04, 13.95it/s] 19%|█▉ | 15/80 [00:01<00:04, 14.01it/s] 21%|██▏ | 17/80 [00:01<00:04, 14.06it/s] 24%|██▍ | 19/80 [00:01<00:04, 14.09it/s] 26%|██▋ | 21/80 [00:01<00:04, 14.11it/s] 29%|██▉ | 23/80 [00:01<00:04, 14.13it/s] 31%|███▏ | 25/80 [00:01<00:03, 14.15it/s] 34%|███▍ | 27/80 [00:01<00:03, 14.15it/s] 36%|███▋ | 29/80 [00:02<00:03, 14.14it/s] 39%|███▉ | 31/80 [00:02<00:03, 14.12it/s] 41%|████▏ | 33/80 [00:02<00:03, 14.12it/s] 44%|████▍ | 35/80 [00:02<00:03, 14.13it/s] 46%|████▋ | 37/80 [00:02<00:03, 14.14it/s] 49%|████▉ | 39/80 [00:02<00:02, 14.16it/s] 51%|█████▏ | 41/80 [00:02<00:02, 14.16it/s] 54%|█████▍ | 43/80 [00:03<00:02, 14.16it/s] 56%|█████▋ | 45/80 [00:03<00:02, 14.14it/s] 59%|█████▉ | 47/80 [00:03<00:02, 14.13it/s] 61%|██████▏ | 49/80 [00:03<00:02, 14.13it/s] 64%|██████▍ | 51/80 [00:03<00:02, 14.14it/s] 66%|██████▋ | 53/80 [00:03<00:01, 14.15it/s] 69%|██████▉ | 55/80 [00:03<00:01, 14.14it/s] 71%|███████▏ | 57/80 [00:04<00:01, 14.06it/s] 74%|███████▍ | 59/80 [00:04<00:01, 14.11it/s] 76%|███████▋ | 61/80 [00:04<00:01, 14.12it/s] 79%|███████▉ | 63/80 [00:04<00:01, 14.13it/s] 81%|████████▏ | 65/80 [00:04<00:01, 14.15it/s] 84%|████████▍ | 67/80 [00:04<00:00, 14.18it/s] 86%|████████▋ | 69/80 [00:04<00:00, 14.18it/s] 89%|████████▉ | 71/80 [00:05<00:00, 14.18it/s] 91%|█████████▏| 73/80 [00:05<00:00, 14.19it/s] 94%|█████████▍| 75/80 [00:05<00:00, 14.20it/s] 96%|█████████▋| 77/80 [00:05<00:00, 14.19it/s] 99%|█████████▉| 79/80 [00:05<00:00, 14.20it/s] 100%|██████████| 80/80 [00:05<00:00, 14.04it/s] frame_idx: 2 cond_prompt: a painting of an elephant with clouds in the background uncond_prompt: low quality, bad image, cropped, out of frame seed: 2 prior_seed: 968551 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: -1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 2%|▏ | 1/47 [00:17<13:37, 17.76s/it]/root/.pyenv/versions/3.10.13/lib/python3.10/site-packages/torch/functional.py:504: UserWarning: torch.meshgrid: in an upcoming release, it will be required to pass the indexing argument. (Triggered internally at ../aten/src/ATen/native/TensorShape.cpp:3483.) return _VF.meshgrid(tensors, **kwargs) # type: ignore[attr-defined] frame_idx: 2 cond_prompt: a painting of an elephant with clouds in the background uncond_prompt: low quality, bad image, cropped, out of frame seed: 2 prior_seed: 968551 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: -1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 4%|▍ | 2/47 [00:17<05:33, 7.41s/it] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 74.65it/s] 64%|██████▍ | 16/25 [00:00<00:00, 74.41it/s] 96%|█████████▌| 24/25 [00:00<00:00, 73.38it/s] 100%|██████████| 25/25 [00:00<00:00, 73.68it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 71.38it/s] 64%|██████▍ | 16/25 [00:00<00:00, 74.07it/s] 96%|█████████▌| 24/25 [00:00<00:00, 74.89it/s] 100%|██████████| 25/25 [00:00<00:00, 74.19it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 14.29it/s] 40%|████ | 4/10 [00:00<00:00, 14.24it/s] 60%|██████ | 6/10 [00:00<00:00, 14.22it/s] 80%|████████ | 8/10 [00:00<00:00, 14.19it/s] 100%|██████████| 10/10 [00:00<00:00, 14.16it/s] 100%|██████████| 10/10 [00:00<00:00, 14.18it/s] frame_idx: 4 cond_prompt: a painting of an elephant with clouds in the background uncond_prompt: low quality, bad image, cropped, out of frame seed: 3 prior_seed: 968551 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: -1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 frame_idx: 4 cond_prompt: a painting of an elephant with clouds in the background uncond_prompt: low quality, bad image, cropped, out of frame seed: 3 prior_seed: 968551 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: -1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 6%|▋ | 3/47 [00:20<03:40, 5.01s/it] 9%|▊ | 4/47 [00:20<02:13, 3.10s/it] 0%| | 0/25 [00:00<?, ?it/s] 28%|██▊ | 7/25 [00:00<00:00, 67.14it/s] 60%|██████ | 15/25 [00:00<00:00, 69.83it/s] 92%|█████████▏| 23/25 [00:00<00:00, 70.67it/s] 100%|██████████| 25/25 [00:00<00:00, 70.25it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 76.21it/s] 64%|██████▍ | 16/25 [00:00<00:00, 74.40it/s] 96%|█████████▌| 24/25 [00:00<00:00, 75.26it/s] 100%|██████████| 25/25 [00:00<00:00, 75.22it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 14.31it/s] 40%|████ | 4/10 [00:00<00:00, 14.26it/s] 60%|██████ | 6/10 [00:00<00:00, 14.24it/s] 80%|████████ | 8/10 [00:00<00:00, 14.23it/s] 100%|██████████| 10/10 [00:00<00:00, 14.22it/s] 100%|██████████| 10/10 [00:00<00:00, 14.23it/s] frame_idx: 6 cond_prompt: a painting of an elephant with clouds in the background uncond_prompt: low quality, bad image, cropped, out of frame seed: 4 prior_seed: 968551 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: -1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 frame_idx: 6 cond_prompt: a painting of an elephant with clouds in the background uncond_prompt: low quality, bad image, cropped, out of frame seed: 4 prior_seed: 968551 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: -1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 11%|█ | 5/47 [00:22<01:55, 2.76s/it] 13%|█▎ | 6/47 [00:22<01:17, 1.88s/it] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 75.06it/s] 64%|██████▍ | 16/25 [00:00<00:00, 73.90it/s] 96%|█████████▌| 24/25 [00:00<00:00, 74.95it/s] 100%|██████████| 25/25 [00:00<00:00, 74.83it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 76.37it/s] 64%|██████▍ | 16/25 [00:00<00:00, 74.87it/s] 96%|█████████▌| 24/25 [00:00<00:00, 75.12it/s] 100%|██████████| 25/25 [00:00<00:00, 75.03it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 14.28it/s] 40%|████ | 4/10 [00:00<00:00, 14.24it/s] 60%|██████ | 6/10 [00:00<00:00, 14.23it/s] 80%|████████ | 8/10 [00:00<00:00, 14.22it/s] 100%|██████████| 10/10 [00:00<00:00, 14.22it/s] 100%|██████████| 10/10 [00:00<00:00, 14.22it/s] frame_idx: 8 cond_prompt: a painting of an elephant with clouds in the background uncond_prompt: low quality, bad image, cropped, out of frame seed: 5 prior_seed: 968551 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: -1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 frame_idx: 8 cond_prompt: a painting of an elephant with clouds in the background uncond_prompt: low quality, bad image, cropped, out of frame seed: 5 prior_seed: 968551 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: -1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 15%|█▍ | 7/47 [00:24<01:18, 1.96s/it] 17%|█▋ | 8/47 [00:24<00:54, 1.39s/it] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 74.88it/s] 64%|██████▍ | 16/25 [00:00<00:00, 75.59it/s] 96%|█████████▌| 24/25 [00:00<00:00, 73.84it/s] 100%|██████████| 25/25 [00:00<00:00, 74.13it/s] 0%| | 0/25 [00:00<?, ?it/s] 28%|██▊ | 7/25 [00:00<00:00, 68.32it/s] 60%|██████ | 15/25 [00:00<00:00, 70.67it/s] 92%|█████████▏| 23/25 [00:00<00:00, 71.16it/s] 100%|██████████| 25/25 [00:00<00:00, 70.82it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 14.20it/s] 40%|████ | 4/10 [00:00<00:00, 14.20it/s] 60%|██████ | 6/10 [00:00<00:00, 14.21it/s] 80%|████████ | 8/10 [00:00<00:00, 14.21it/s] 100%|██████████| 10/10 [00:00<00:00, 14.22it/s] 100%|██████████| 10/10 [00:00<00:00, 14.21it/s] frame_idx: 10 cond_prompt: a painting of an elephant with clouds in the background uncond_prompt: low quality, bad image, cropped, out of frame seed: 6 prior_seed: 968551 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: -1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 frame_idx: 10 cond_prompt: a painting of an elephant with clouds in the background uncond_prompt: low quality, bad image, cropped, out of frame seed: 6 prior_seed: 968551 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: -1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 19%|█▉ | 9/47 [00:27<01:01, 1.63s/it] 21%|██▏ | 10/47 [00:27<00:43, 1.18s/it] 0%| | 0/25 [00:00<?, ?it/s] 28%|██▊ | 7/25 [00:00<00:00, 69.76it/s] 56%|█████▌ | 14/25 [00:00<00:00, 69.03it/s] 88%|████████▊ | 22/25 [00:00<00:00, 69.97it/s] 100%|██████████| 25/25 [00:00<00:00, 69.94it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 76.17it/s] 64%|██████▍ | 16/25 [00:00<00:00, 76.02it/s] 96%|█████████▌| 24/25 [00:00<00:00, 75.97it/s] 100%|██████████| 25/25 [00:00<00:00, 75.77it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 14.24it/s] 40%|████ | 4/10 [00:00<00:00, 14.20it/s] 60%|██████ | 6/10 [00:00<00:00, 14.20it/s] 80%|████████ | 8/10 [00:00<00:00, 14.20it/s] 100%|██████████| 10/10 [00:00<00:00, 14.19it/s] 100%|██████████| 10/10 [00:00<00:00, 14.19it/s] frame_idx: 12 cond_prompt: a painting of an elephant with clouds in the background uncond_prompt: low quality, bad image, cropped, out of frame seed: 7 prior_seed: 968551 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: -1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 frame_idx: 12 cond_prompt: a painting of an elephant with clouds in the background uncond_prompt: low quality, bad image, cropped, out of frame seed: 7 prior_seed: 968551 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: -1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 23%|██▎ | 11/47 [00:29<00:53, 1.48s/it] 26%|██▌ | 12/47 [00:29<00:37, 1.08s/it] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 74.80it/s] 64%|██████▍ | 16/25 [00:00<00:00, 72.65it/s] 96%|█████████▌| 24/25 [00:00<00:00, 71.95it/s] 100%|██████████| 25/25 [00:00<00:00, 72.32it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 71.49it/s] 64%|██████▍ | 16/25 [00:00<00:00, 71.15it/s] 96%|█████████▌| 24/25 [00:00<00:00, 71.20it/s] 100%|██████████| 25/25 [00:00<00:00, 71.24it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 14.27it/s] 40%|████ | 4/10 [00:00<00:00, 14.21it/s] 60%|██████ | 6/10 [00:00<00:00, 14.19it/s] 80%|████████ | 8/10 [00:00<00:00, 14.19it/s] 100%|██████████| 10/10 [00:00<00:00, 14.20it/s] 100%|██████████| 10/10 [00:00<00:00, 14.20it/s] frame_idx: 14 cond_prompt: a detailed painting, by Dan Mumford uncond_prompt: low quality, bad image, cropped, out of frame seed: 8 prior_seed: 968551 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: -1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 frame_idx: 14 cond_prompt: a detailed painting, by Dan Mumford uncond_prompt: low quality, bad image, cropped, out of frame seed: 8 prior_seed: 968551 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: -1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 28%|██▊ | 13/47 [00:31<00:47, 1.41s/it] 30%|██▉ | 14/47 [00:31<00:34, 1.04s/it] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 74.84it/s] 64%|██████▍ | 16/25 [00:00<00:00, 72.86it/s] 96%|█████████▌| 24/25 [00:00<00:00, 72.21it/s] 100%|██████████| 25/25 [00:00<00:00, 72.52it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 71.93it/s] 64%|██████▍ | 16/25 [00:00<00:00, 72.79it/s] 96%|█████████▌| 24/25 [00:00<00:00, 74.16it/s] 100%|██████████| 25/25 [00:00<00:00, 73.78it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 14.29it/s] 40%|████ | 4/10 [00:00<00:00, 14.24it/s] 60%|██████ | 6/10 [00:00<00:00, 14.22it/s] 80%|████████ | 8/10 [00:00<00:00, 14.21it/s] 100%|██████████| 10/10 [00:00<00:00, 14.20it/s] 100%|██████████| 10/10 [00:00<00:00, 14.21it/s] frame_idx: 16 cond_prompt: a detailed painting, by Dan Mumford uncond_prompt: low quality, bad image, cropped, out of frame seed: 9 prior_seed: 968551 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: -1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 frame_idx: 16 cond_prompt: a detailed painting, by Dan Mumford uncond_prompt: low quality, bad image, cropped, out of frame seed: 9 prior_seed: 968551 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: -1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 32%|███▏ | 15/47 [00:34<00:43, 1.37s/it] 34%|███▍ | 16/47 [00:34<00:31, 1.01s/it] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 73.67it/s] 64%|██████▍ | 16/25 [00:00<00:00, 71.26it/s] 96%|█████████▌| 24/25 [00:00<00:00, 71.19it/s] 100%|██████████| 25/25 [00:00<00:00, 71.43it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 72.72it/s] 64%|██████▍ | 16/25 [00:00<00:00, 71.76it/s] 96%|█████████▌| 24/25 [00:00<00:00, 71.64it/s] 100%|██████████| 25/25 [00:00<00:00, 71.72it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 14.30it/s] 40%|████ | 4/10 [00:00<00:00, 14.23it/s] 60%|██████ | 6/10 [00:00<00:00, 14.22it/s] 80%|████████ | 8/10 [00:00<00:00, 14.21it/s] 100%|██████████| 10/10 [00:00<00:00, 14.20it/s] 100%|██████████| 10/10 [00:00<00:00, 14.21it/s] frame_idx: 18 cond_prompt: a detailed painting, by Dan Mumford uncond_prompt: low quality, bad image, cropped, out of frame seed: 10 prior_seed: 968551 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: -1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 frame_idx: 18 cond_prompt: a detailed painting, by Dan Mumford uncond_prompt: low quality, bad image, cropped, out of frame seed: 10 prior_seed: 968551 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: -1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 36%|███▌ | 17/47 [00:36<00:40, 1.36s/it] 38%|███▊ | 18/47 [00:36<00:29, 1.00s/it] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 74.58it/s] 64%|██████▍ | 16/25 [00:00<00:00, 74.66it/s] 96%|█████████▌| 24/25 [00:00<00:00, 74.42it/s] 100%|██████████| 25/25 [00:00<00:00, 74.39it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 76.25it/s] 64%|██████▍ | 16/25 [00:00<00:00, 76.14it/s] 96%|█████████▌| 24/25 [00:00<00:00, 76.10it/s] 100%|██████████| 25/25 [00:00<00:00, 75.84it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 14.27it/s] 40%|████ | 4/10 [00:00<00:00, 14.22it/s] 60%|██████ | 6/10 [00:00<00:00, 14.19it/s] 80%|████████ | 8/10 [00:00<00:00, 14.17it/s] 100%|██████████| 10/10 [00:00<00:00, 14.17it/s] 100%|██████████| 10/10 [00:00<00:00, 14.18it/s] frame_idx: 20 cond_prompt: a detailed painting, by Dan Mumford uncond_prompt: low quality, bad image, cropped, out of frame seed: 11 prior_seed: 968551 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: -1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 frame_idx: 20 cond_prompt: a detailed painting, by Dan Mumford uncond_prompt: low quality, bad image, cropped, out of frame seed: 11 prior_seed: 968551 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: -1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 40%|████ | 19/47 [00:38<00:37, 1.35s/it] 43%|████▎ | 20/47 [00:38<00:26, 1.01it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 74.28it/s] 64%|██████▍ | 16/25 [00:00<00:00, 74.70it/s] 96%|█████████▌| 24/25 [00:00<00:00, 74.74it/s] 100%|██████████| 25/25 [00:00<00:00, 74.61it/s] 0%| | 0/25 [00:00<?, ?it/s] 28%|██▊ | 7/25 [00:00<00:00, 63.85it/s] 60%|██████ | 15/25 [00:00<00:00, 70.06it/s] 92%|█████████▏| 23/25 [00:00<00:00, 72.49it/s] 100%|██████████| 25/25 [00:00<00:00, 71.31it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 14.29it/s] 40%|████ | 4/10 [00:00<00:00, 14.20it/s] 60%|██████ | 6/10 [00:00<00:00, 14.17it/s] 80%|████████ | 8/10 [00:00<00:00, 14.16it/s] 100%|██████████| 10/10 [00:00<00:00, 14.15it/s] 100%|██████████| 10/10 [00:00<00:00, 14.16it/s] frame_idx: 22 cond_prompt: a detailed painting, by Dan Mumford uncond_prompt: low quality, bad image, cropped, out of frame seed: 12 prior_seed: 968551 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: -1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 frame_idx: 22 cond_prompt: a detailed painting, by Dan Mumford uncond_prompt: low quality, bad image, cropped, out of frame seed: 12 prior_seed: 968551 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: -1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 45%|████▍ | 21/47 [00:41<00:34, 1.35s/it] 47%|████▋ | 22/47 [00:41<00:24, 1.01it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 71.10it/s] 64%|██████▍ | 16/25 [00:00<00:00, 72.76it/s] 96%|█████████▌| 24/25 [00:00<00:00, 73.66it/s] 100%|██████████| 25/25 [00:00<00:00, 73.21it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 76.06it/s] 64%|██████▍ | 16/25 [00:00<00:00, 75.99it/s] 96%|█████████▌| 24/25 [00:00<00:00, 76.02it/s] 100%|██████████| 25/25 [00:00<00:00, 75.75it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 14.25it/s] 40%|████ | 4/10 [00:00<00:00, 14.19it/s] 60%|██████ | 6/10 [00:00<00:00, 14.18it/s] 80%|████████ | 8/10 [00:00<00:00, 14.16it/s] 100%|██████████| 10/10 [00:00<00:00, 14.15it/s] 100%|██████████| 10/10 [00:00<00:00, 14.16it/s] frame_idx: 24 cond_prompt: a detailed painting, by Dan Mumford uncond_prompt: low quality, bad image, cropped, out of frame seed: 13 prior_seed: 968551 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: -1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 frame_idx: 24 cond_prompt: a detailed painting, by Dan Mumford uncond_prompt: low quality, bad image, cropped, out of frame seed: 13 prior_seed: 968551 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: -1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 49%|████▉ | 23/47 [00:43<00:32, 1.34s/it] 51%|█████ | 24/47 [00:43<00:22, 1.02it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 74.67it/s] 64%|██████▍ | 16/25 [00:00<00:00, 75.54it/s] 96%|█████████▌| 24/25 [00:00<00:00, 75.84it/s] 100%|██████████| 25/25 [00:00<00:00, 75.67it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 76.49it/s] 64%|██████▍ | 16/25 [00:00<00:00, 76.48it/s] 96%|█████████▌| 24/25 [00:00<00:00, 76.39it/s] 100%|██████████| 25/25 [00:00<00:00, 76.40it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 14.22it/s] 40%|████ | 4/10 [00:00<00:00, 14.19it/s] 60%|██████ | 6/10 [00:00<00:00, 14.17it/s] 80%|████████ | 8/10 [00:00<00:00, 14.15it/s] 100%|██████████| 10/10 [00:00<00:00, 14.15it/s] 100%|██████████| 10/10 [00:00<00:00, 14.16it/s] frame_idx: 26 cond_prompt: fractal cloud, dark rainbow nimbus uncond_prompt: low quality, bad image, cropped, out of frame seed: 14 prior_seed: 968551 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: -1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 frame_idx: 26 cond_prompt: fractal cloud, dark rainbow nimbus uncond_prompt: low quality, bad image, cropped, out of frame seed: 14 prior_seed: 968551 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: -1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 53%|█████▎ | 25/47 [00:45<00:29, 1.33s/it] 55%|█████▌ | 26/47 [00:45<00:20, 1.02it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 75.14it/s] 64%|██████▍ | 16/25 [00:00<00:00, 75.83it/s] 96%|█████████▌| 24/25 [00:00<00:00, 76.03it/s] 100%|██████████| 25/25 [00:00<00:00, 75.91it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 71.20it/s] 64%|██████▍ | 16/25 [00:00<00:00, 72.10it/s] 96%|█████████▌| 24/25 [00:00<00:00, 72.17it/s] 100%|██████████| 25/25 [00:00<00:00, 72.05it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 14.21it/s] 40%|████ | 4/10 [00:00<00:00, 14.17it/s] 60%|██████ | 6/10 [00:00<00:00, 14.14it/s] 80%|████████ | 8/10 [00:00<00:00, 14.14it/s] 100%|██████████| 10/10 [00:00<00:00, 14.13it/s] 100%|██████████| 10/10 [00:00<00:00, 14.14it/s] frame_idx: 28 cond_prompt: fractal cloud, dark rainbow nimbus uncond_prompt: low quality, bad image, cropped, out of frame seed: 15 prior_seed: 968551 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: -1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 frame_idx: 28 cond_prompt: fractal cloud, dark rainbow nimbus uncond_prompt: low quality, bad image, cropped, out of frame seed: 15 prior_seed: 968551 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: -1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 57%|█████▋ | 27/47 [00:47<00:26, 1.34s/it] 60%|█████▉ | 28/47 [00:48<00:18, 1.02it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 74.51it/s] 64%|██████▍ | 16/25 [00:00<00:00, 74.25it/s] 96%|█████████▌| 24/25 [00:00<00:00, 73.07it/s] 100%|██████████| 25/25 [00:00<00:00, 73.07it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 75.88it/s] 64%|██████▍ | 16/25 [00:00<00:00, 75.80it/s] 96%|█████████▌| 24/25 [00:00<00:00, 75.82it/s] 100%|██████████| 25/25 [00:00<00:00, 75.72it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 14.19it/s] 40%|████ | 4/10 [00:00<00:00, 14.13it/s] 60%|██████ | 6/10 [00:00<00:00, 14.12it/s] 80%|████████ | 8/10 [00:00<00:00, 14.11it/s] 100%|██████████| 10/10 [00:00<00:00, 14.11it/s] 100%|██████████| 10/10 [00:00<00:00, 14.12it/s] frame_idx: 30 cond_prompt: fractal cloud, dark rainbow nimbus uncond_prompt: low quality, bad image, cropped, out of frame seed: 16 prior_seed: 968551 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: -1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 frame_idx: 30 cond_prompt: fractal cloud, dark rainbow nimbus uncond_prompt: low quality, bad image, cropped, out of frame seed: 16 prior_seed: 968551 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: -1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 62%|██████▏ | 29/47 [00:50<00:23, 1.33s/it] 64%|██████▍ | 30/47 [00:50<00:16, 1.02it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 73.55it/s] 64%|██████▍ | 16/25 [00:00<00:00, 73.77it/s] 96%|█████████▌| 24/25 [00:00<00:00, 74.44it/s] 100%|██████████| 25/25 [00:00<00:00, 74.02it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 76.26it/s] 64%|██████▍ | 16/25 [00:00<00:00, 76.05it/s] 96%|█████████▌| 24/25 [00:00<00:00, 75.63it/s] 100%|██████████| 25/25 [00:00<00:00, 75.68it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 14.22it/s] 40%|████ | 4/10 [00:00<00:00, 14.15it/s] 60%|██████ | 6/10 [00:00<00:00, 14.11it/s] 80%|████████ | 8/10 [00:00<00:00, 14.08it/s] 100%|██████████| 10/10 [00:00<00:00, 14.08it/s] 100%|██████████| 10/10 [00:00<00:00, 14.10it/s] frame_idx: 32 cond_prompt: fractal cloud, dark rainbow nimbus uncond_prompt: low quality, bad image, cropped, out of frame seed: 17 prior_seed: 968551 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: -1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 frame_idx: 32 cond_prompt: fractal cloud, dark rainbow nimbus uncond_prompt: low quality, bad image, cropped, out of frame seed: 17 prior_seed: 968551 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: -1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 66%|██████▌ | 31/47 [00:52<00:21, 1.33s/it] 68%|██████▊ | 32/47 [00:52<00:14, 1.01it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 74.52it/s] 64%|██████▍ | 16/25 [00:00<00:00, 75.11it/s] 96%|█████████▌| 24/25 [00:00<00:00, 75.38it/s] 100%|██████████| 25/25 [00:00<00:00, 74.98it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 76.29it/s] 64%|██████▍ | 16/25 [00:00<00:00, 72.27it/s] 96%|█████████▌| 24/25 [00:00<00:00, 73.93it/s] 100%|██████████| 25/25 [00:00<00:00, 73.95it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 12.93it/s] 40%|████ | 4/10 [00:00<00:00, 13.63it/s] 60%|██████ | 6/10 [00:00<00:00, 13.86it/s] 80%|████████ | 8/10 [00:00<00:00, 13.96it/s] 100%|██████████| 10/10 [00:00<00:00, 13.99it/s] 100%|██████████| 10/10 [00:00<00:00, 13.86it/s] frame_idx: 34 cond_prompt: fractal cloud, dark rainbow nimbus uncond_prompt: low quality, bad image, cropped, out of frame seed: 18 prior_seed: 968551 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: -1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 frame_idx: 34 cond_prompt: fractal cloud, dark rainbow nimbus uncond_prompt: low quality, bad image, cropped, out of frame seed: 18 prior_seed: 968551 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: -1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 70%|███████ | 33/47 [00:54<00:18, 1.34s/it] 72%|███████▏ | 34/47 [00:55<00:12, 1.01it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 75.04it/s] 64%|██████▍ | 16/25 [00:00<00:00, 72.39it/s] 96%|█████████▌| 24/25 [00:00<00:00, 72.24it/s] 100%|██████████| 25/25 [00:00<00:00, 72.50it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 76.09it/s] 64%|██████▍ | 16/25 [00:00<00:00, 74.93it/s] 96%|█████████▌| 24/25 [00:00<00:00, 75.24it/s] 100%|██████████| 25/25 [00:00<00:00, 75.31it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 14.18it/s] 40%|████ | 4/10 [00:00<00:00, 14.15it/s] 60%|██████ | 6/10 [00:00<00:00, 14.13it/s] 80%|████████ | 8/10 [00:00<00:00, 14.11it/s] 100%|██████████| 10/10 [00:00<00:00, 14.11it/s] 100%|██████████| 10/10 [00:00<00:00, 14.12it/s] frame_idx: 36 cond_prompt: fractal cloud, dark rainbow nimbus uncond_prompt: low quality, bad image, cropped, out of frame seed: 19 prior_seed: 968551 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: -1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 frame_idx: 36 cond_prompt: fractal cloud, dark rainbow nimbus uncond_prompt: low quality, bad image, cropped, out of frame seed: 19 prior_seed: 968551 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: -1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 74%|███████▍ | 35/47 [00:57<00:16, 1.34s/it] 77%|███████▋ | 36/47 [00:57<00:10, 1.02it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 74.60it/s] 64%|██████▍ | 16/25 [00:00<00:00, 75.34it/s] 96%|█████████▌| 24/25 [00:00<00:00, 75.58it/s] 100%|██████████| 25/25 [00:00<00:00, 75.47it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 76.18it/s] 64%|██████▍ | 16/25 [00:00<00:00, 76.07it/s] 96%|█████████▌| 24/25 [00:00<00:00, 76.11it/s] 100%|██████████| 25/25 [00:00<00:00, 76.12it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 14.20it/s] 40%|████ | 4/10 [00:00<00:00, 14.16it/s] 60%|██████ | 6/10 [00:00<00:00, 14.14it/s] 80%|████████ | 8/10 [00:00<00:00, 14.13it/s] 100%|██████████| 10/10 [00:00<00:00, 14.13it/s] 100%|██████████| 10/10 [00:00<00:00, 14.13it/s] frame_idx: 38 cond_prompt: dreaming of electric sheep, style of tim hildebrandt uncond_prompt: low quality, bad image, cropped, out of frame seed: 20 prior_seed: 968551 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: -1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 frame_idx: 38 cond_prompt: dreaming of electric sheep, style of tim hildebrandt uncond_prompt: low quality, bad image, cropped, out of frame seed: 20 prior_seed: 968551 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: -1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 79%|███████▊ | 37/47 [00:59<00:13, 1.33s/it] 81%|████████ | 38/47 [00:59<00:08, 1.02it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 75.07it/s] 64%|██████▍ | 16/25 [00:00<00:00, 75.66it/s] 96%|█████████▌| 24/25 [00:00<00:00, 75.79it/s] 100%|██████████| 25/25 [00:00<00:00, 75.71it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 75.98it/s] 64%|██████▍ | 16/25 [00:00<00:00, 73.01it/s] 96%|█████████▌| 24/25 [00:00<00:00, 74.38it/s] 100%|██████████| 25/25 [00:00<00:00, 74.37it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 14.17it/s] 40%|████ | 4/10 [00:00<00:00, 14.12it/s] 60%|██████ | 6/10 [00:00<00:00, 14.12it/s] 80%|████████ | 8/10 [00:00<00:00, 14.11it/s] 100%|██████████| 10/10 [00:00<00:00, 14.11it/s] 100%|██████████| 10/10 [00:00<00:00, 14.11it/s] frame_idx: 40 cond_prompt: dreaming of electric sheep, style of tim hildebrandt uncond_prompt: low quality, bad image, cropped, out of frame seed: 21 prior_seed: 968551 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: -1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 frame_idx: 40 cond_prompt: dreaming of electric sheep, style of tim hildebrandt uncond_prompt: low quality, bad image, cropped, out of frame seed: 21 prior_seed: 968551 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: -1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 83%|████████▎ | 39/47 [01:01<00:10, 1.33s/it] 85%|████████▌ | 40/47 [01:02<00:06, 1.02it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 74.54it/s] 64%|██████▍ | 16/25 [00:00<00:00, 73.79it/s] 96%|█████████▌| 24/25 [00:00<00:00, 73.69it/s] 100%|██████████| 25/25 [00:00<00:00, 73.86it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 76.05it/s] 64%|██████▍ | 16/25 [00:00<00:00, 75.75it/s] 96%|█████████▌| 24/25 [00:00<00:00, 75.66it/s] 100%|██████████| 25/25 [00:00<00:00, 75.67it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 14.12it/s] 40%|████ | 4/10 [00:00<00:00, 14.08it/s] 60%|██████ | 6/10 [00:00<00:00, 14.08it/s] 80%|████████ | 8/10 [00:00<00:00, 14.08it/s] 100%|██████████| 10/10 [00:00<00:00, 14.08it/s] 100%|██████████| 10/10 [00:00<00:00, 14.08it/s] frame_idx: 42 cond_prompt: dreaming of electric sheep, style of tim hildebrandt uncond_prompt: low quality, bad image, cropped, out of frame seed: 22 prior_seed: 968551 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: -1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 frame_idx: 42 cond_prompt: dreaming of electric sheep, style of tim hildebrandt uncond_prompt: low quality, bad image, cropped, out of frame seed: 22 prior_seed: 968551 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: -1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 87%|████████▋ | 41/47 [01:04<00:07, 1.33s/it] 89%|████████▉ | 42/47 [01:04<00:04, 1.02it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 74.18it/s] 64%|██████▍ | 16/25 [00:00<00:00, 73.11it/s] 96%|█████████▌| 24/25 [00:00<00:00, 74.19it/s] 100%|██████████| 25/25 [00:00<00:00, 73.78it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 76.44it/s] 64%|██████▍ | 16/25 [00:00<00:00, 76.20it/s] 96%|█████████▌| 24/25 [00:00<00:00, 76.15it/s] 100%|██████████| 25/25 [00:00<00:00, 76.13it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 14.14it/s] 40%|████ | 4/10 [00:00<00:00, 14.11it/s] 60%|██████ | 6/10 [00:00<00:00, 14.08it/s] 80%|████████ | 8/10 [00:00<00:00, 14.07it/s] 100%|██████████| 10/10 [00:00<00:00, 14.08it/s] 100%|██████████| 10/10 [00:00<00:00, 14.08it/s] frame_idx: 44 cond_prompt: dreaming of electric sheep, style of tim hildebrandt uncond_prompt: low quality, bad image, cropped, out of frame seed: 23 prior_seed: 968551 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: -1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 frame_idx: 44 cond_prompt: dreaming of electric sheep, style of tim hildebrandt uncond_prompt: low quality, bad image, cropped, out of frame seed: 23 prior_seed: 968551 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: -1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 91%|█████████▏| 43/47 [01:06<00:05, 1.33s/it] 94%|█████████▎| 44/47 [01:06<00:02, 1.02it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 74.64it/s] 64%|██████▍ | 16/25 [00:00<00:00, 73.66it/s] 96%|█████████▌| 24/25 [00:00<00:00, 73.34it/s] 100%|██████████| 25/25 [00:00<00:00, 73.35it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 75.94it/s] 64%|██████▍ | 16/25 [00:00<00:00, 75.89it/s] 96%|█████████▌| 24/25 [00:00<00:00, 73.50it/s] 100%|██████████| 25/25 [00:00<00:00, 74.13it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 14.19it/s] 40%|████ | 4/10 [00:00<00:00, 14.11it/s] 60%|██████ | 6/10 [00:00<00:00, 14.08it/s] 80%|████████ | 8/10 [00:00<00:00, 14.08it/s] 100%|██████████| 10/10 [00:00<00:00, 14.09it/s] 100%|██████████| 10/10 [00:00<00:00, 14.09it/s] frame_idx: 46 cond_prompt: dreaming of electric sheep, style of tim hildebrandt uncond_prompt: low quality, bad image, cropped, out of frame seed: 24 prior_seed: 968551 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: -1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 frame_idx: 46 cond_prompt: dreaming of electric sheep, style of tim hildebrandt uncond_prompt: low quality, bad image, cropped, out of frame seed: 24 prior_seed: 968551 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: -1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 96%|█████████▌| 45/47 [01:08<00:02, 1.33s/it] 98%|█████████▊| 46/47 [01:08<00:00, 1.02it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 73.51it/s] 64%|██████▍ | 16/25 [00:00<00:00, 74.57it/s] 96%|█████████▌| 24/25 [00:00<00:00, 73.44it/s] 100%|██████████| 25/25 [00:00<00:00, 72.64it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 75.20it/s] 64%|██████▍ | 16/25 [00:00<00:00, 75.48it/s] 96%|█████████▌| 24/25 [00:00<00:00, 75.70it/s] 100%|██████████| 25/25 [00:00<00:00, 75.60it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 14.20it/s] 40%|████ | 4/10 [00:00<00:00, 14.14it/s] 60%|██████ | 6/10 [00:00<00:00, 14.10it/s] 80%|████████ | 8/10 [00:00<00:00, 14.05it/s] 100%|██████████| 10/10 [00:00<00:00, 14.06it/s] 100%|██████████| 10/10 [00:00<00:00, 14.07it/s] 98%|█████████▊| 46/47 [01:10<00:01, 1.54s/it] 0%| | 0/46 [00:00<?, ?it/s] 2%|▏ | 1/46 [00:00<00:12, 3.52it/s] 100%|██████████| 46/46 [00:00<00:00, 120.31it/s]
Prediction
adirik/deforum-kandinsky-2-2:550e576a484886c105a5cf4ff09ac746e691ab473d12a6afe14eed23bc3bbe42IDbxwtum3bwuxd2k4isbca4rhbsqStatusSucceededSourceWebHardwareA40Total durationCreatedInput
- fps
- 24
- seed
- 17
- steps
- 80
- width
- 640
- height
- 640
- scheduler
- euler_ancestral
- animations
- right_sinus_y
- max_frames
- 72
- prompt_durations
- animation_prompts
- a tiger in a suit
{ "fps": 24, "seed": 17, "steps": 80, "width": 640, "height": 640, "scheduler": "euler_ancestral", "animations": "right_sinus_y", "max_frames": 72, "prompt_durations": "", "animation_prompts": "a tiger in a suit" }
Install Replicate’s Node.js client library:npm install replicate
Import and set up the client:import Replicate from "replicate"; const replicate = new Replicate({ auth: process.env.REPLICATE_API_TOKEN, });
Run adirik/deforum-kandinsky-2-2 using Replicate’s API. Check out the model's schema for an overview of inputs and outputs.
const output = await replicate.run( "adirik/deforum-kandinsky-2-2:550e576a484886c105a5cf4ff09ac746e691ab473d12a6afe14eed23bc3bbe42", { input: { fps: 24, seed: 17, steps: 80, width: 640, height: 640, scheduler: "euler_ancestral", animations: "right_sinus_y", max_frames: 72, prompt_durations: "", animation_prompts: "a tiger in a suit" } } ); // To access the file URL: console.log(output.url()); //=> "http://example.com" // To write the file to disk: fs.writeFile("my-image.png", output);
To learn more, take a look at the guide on getting started with Node.js.
Install Replicate’s Python client library:pip install replicate
Import the client:import replicate
Run adirik/deforum-kandinsky-2-2 using Replicate’s API. Check out the model's schema for an overview of inputs and outputs.
output = replicate.run( "adirik/deforum-kandinsky-2-2:550e576a484886c105a5cf4ff09ac746e691ab473d12a6afe14eed23bc3bbe42", input={ "fps": 24, "seed": 17, "steps": 80, "width": 640, "height": 640, "scheduler": "euler_ancestral", "animations": "right_sinus_y", "max_frames": 72, "prompt_durations": "", "animation_prompts": "a tiger in a suit" } ) print(output)
To learn more, take a look at the guide on getting started with Python.
Run adirik/deforum-kandinsky-2-2 using Replicate’s API. Check out the model's schema for an overview of inputs and outputs.
curl -s -X POST \ -H "Authorization: Bearer $REPLICATE_API_TOKEN" \ -H "Content-Type: application/json" \ -H "Prefer: wait" \ -d $'{ "version": "adirik/deforum-kandinsky-2-2:550e576a484886c105a5cf4ff09ac746e691ab473d12a6afe14eed23bc3bbe42", "input": { "fps": 24, "seed": 17, "steps": 80, "width": 640, "height": 640, "scheduler": "euler_ancestral", "animations": "right_sinus_y", "max_frames": 72, "prompt_durations": "", "animation_prompts": "a tiger in a suit" } }' \ https://api.replicate.com/v1/predictions
To learn more, take a look at Replicate’s HTTP API reference docs.
Output
{ "completed_at": "2023-10-17T16:37:23.492933Z", "created_at": "2023-10-17T16:35:46.956351Z", "data_removed": false, "error": null, "id": "bxwtum3bwuxd2k4isbca4rhbsq", "input": { "fps": 24, "seed": 17, "steps": 80, "width": 640, "height": 640, "scheduler": "euler_ancestral", "animations": "right_sinus_y", "max_frames": 72, "prompt_durations": "", "animation_prompts": "a tiger in a suit" }, "logs": "0%| | 0/71 [00:00<?, ?it/s]/src/deforum_kandinsky/helpers/animation.py:322: FutureWarning: Setting an item of incompatible dtype is deprecated and will raise in a future error of pandas. Value 'euler' has dtype incompatible with float64, please explicitly cast to a compatible dtype first.\nkey_frame_series[i] = numexpr.evaluate(value) if not is_single_string else value # workaround for values formatted like 0:(\"I am test\") //used for sampler schedules\n/src/deforum_kandinsky/helpers/animation.py:332: FutureWarning: Series.interpolate with object dtype is deprecated and will raise in a future version. Call obj.infer_objects(copy=False) before interpolating instead.\nkey_frame_series = key_frame_series.interpolate(method=interp_method.lower(), limit_direction='both')\n/src/deforum_kandinsky/helpers/render.py:242: FutureWarning: Setting an item of incompatible dtype is deprecated and will raise in a future error of pandas. Value 'a tiger in a suit' has dtype incompatible with float64, please explicitly cast to a compatible dtype first.\ncond_prompt_series[int(i)] = prompt\n/src/deforum_kandinsky/helpers/render.py:248: FutureWarning: Setting an item of incompatible dtype is deprecated and will raise in a future error of pandas. Value 'low quality, bad image, cropped, out of frame' has dtype incompatible with float64, please explicitly cast to a compatible dtype first.\nuncond_prompt_series[int(i)] = prompt\nUsing cache found in torch-cache/hub/rwightman_gen-efficientnet-pytorch_master\nLoading base model ()...Done.\nRemoving last two layers (global_pool & classifier).\nBuilding Encoder-Decoder model..Done.\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 74.73it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 75.12it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 75.40it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 75.25it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 75.53it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 75.59it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 75.64it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 75.64it/s]\n 0%| | 0/80 [00:00<?, ?it/s]\u001b[A\n 2%|▎ | 2/80 [00:00<00:05, 14.87it/s]\u001b[A\n 5%|▌ | 4/80 [00:00<00:05, 14.77it/s]\u001b[A\n 8%|▊ | 6/80 [00:00<00:05, 14.72it/s]\u001b[A\n 10%|█ | 8/80 [00:00<00:04, 14.72it/s]\u001b[A\n 12%|█▎ | 10/80 [00:00<00:04, 14.72it/s]\u001b[A\n 15%|█▌ | 12/80 [00:00<00:04, 14.72it/s]\u001b[A\n 18%|█▊ | 14/80 [00:00<00:04, 14.71it/s]\u001b[A\n 20%|██ | 16/80 [00:01<00:04, 14.71it/s]\u001b[A\n 22%|██▎ | 18/80 [00:01<00:04, 14.72it/s]\u001b[A\n 25%|██▌ | 20/80 [00:01<00:04, 14.71it/s]\u001b[A\n 28%|██▊ | 22/80 [00:01<00:03, 14.70it/s]\u001b[A\n 30%|███ | 24/80 [00:01<00:03, 14.70it/s]\u001b[A\n 32%|███▎ | 26/80 [00:01<00:03, 14.70it/s]\u001b[A\n 35%|███▌ | 28/80 [00:01<00:03, 14.71it/s]\u001b[A\n 38%|███▊ | 30/80 [00:02<00:03, 14.71it/s]\u001b[A\n 40%|████ | 32/80 [00:02<00:03, 14.71it/s]\u001b[A\n 42%|████▎ | 34/80 [00:02<00:03, 14.69it/s]\u001b[A\n 45%|████▌ | 36/80 [00:02<00:02, 14.71it/s]\u001b[A\n 48%|████▊ | 38/80 [00:02<00:02, 14.71it/s]\u001b[A\n 50%|█████ | 40/80 [00:02<00:02, 14.71it/s]\u001b[A\n 52%|█████▎ | 42/80 [00:02<00:02, 14.69it/s]\u001b[A\n 55%|█████▌ | 44/80 [00:02<00:02, 14.69it/s]\u001b[A\n 57%|█████▊ | 46/80 [00:03<00:02, 14.71it/s]\u001b[A\n 60%|██████ | 48/80 [00:03<00:02, 14.72it/s]\u001b[A\n 62%|██████▎ | 50/80 [00:03<00:02, 14.75it/s]\u001b[A\n 65%|██████▌ | 52/80 [00:03<00:01, 14.77it/s]\u001b[A\n 68%|██████▊ | 54/80 [00:03<00:01, 14.77it/s]\u001b[A\n 70%|███████ | 56/80 [00:03<00:01, 14.76it/s]\u001b[A\n 72%|███████▎ | 58/80 [00:03<00:01, 14.76it/s]\u001b[A\n 75%|███████▌ | 60/80 [00:04<00:01, 14.77it/s]\u001b[A\n 78%|███████▊ | 62/80 [00:04<00:01, 14.77it/s]\u001b[A\n 80%|████████ | 64/80 [00:04<00:01, 14.78it/s]\u001b[A\n 82%|████████▎ | 66/80 [00:04<00:00, 14.78it/s]\u001b[A\n 85%|████████▌ | 68/80 [00:04<00:00, 14.78it/s]\u001b[A\n 88%|████████▊ | 70/80 [00:04<00:00, 14.77it/s]\u001b[A\n 90%|█████████ | 72/80 [00:04<00:00, 14.77it/s]\u001b[A\n 92%|█████████▎| 74/80 [00:05<00:00, 14.77it/s]\u001b[A\n 95%|█████████▌| 76/80 [00:05<00:00, 14.76it/s]\u001b[A\n 98%|█████████▊| 78/80 [00:05<00:00, 14.75it/s]\u001b[A\n100%|██████████| 80/80 [00:05<00:00, 14.76it/s]\u001b[A\n100%|██████████| 80/80 [00:05<00:00, 14.74it/s]\nframe_idx: 2\ncond_prompt: a tiger in a suit\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 18\nprior_seed: 480883\nangle: 0.0\nzoom: 1.0\ntranslation_x: 1.0\ntranslation_y: 0.38803626608070296\ntranslation_z: 0.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nframe_idx: 2\ncond_prompt: a tiger in a suit\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 18\nprior_seed: 480883\nangle: 0.0\nzoom: 1.0\ntranslation_x: 1.0\ntranslation_y: 0.38803626608070296\ntranslation_z: 0.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 1%|▏ | 1/71 [00:16<19:26, 16.66s/it]\n 3%|▎ | 2/71 [00:16<07:58, 6.94s/it]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 70.60it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 71.09it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 73.09it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 72.62it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 75.73it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 75.34it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 75.32it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 75.39it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 14.90it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 14.82it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 14.84it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 14.81it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 14.81it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 14.82it/s]\nframe_idx: 4\ncond_prompt: a tiger in a suit\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 19\nprior_seed: 480883\nangle: 0.0\nzoom: 1.0\ntranslation_x: 1.0\ntranslation_y: 0.7496551539646537\ntranslation_z: 0.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nframe_idx: 4\ncond_prompt: a tiger in a suit\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 19\nprior_seed: 480883\nangle: 0.0\nzoom: 1.0\ntranslation_x: 1.0\ntranslation_y: 0.7496551539646537\ntranslation_z: 0.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 4%|▍ | 3/71 [00:18<05:19, 4.70s/it]\n 6%|▌ | 4/71 [00:18<03:14, 2.91s/it]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 75.02it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 74.86it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 75.07it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 75.05it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 75.63it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 75.35it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 75.01it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 75.07it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 14.88it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 14.80it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 14.79it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 14.76it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 14.78it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 14.78it/s]\nframe_idx: 6\ncond_prompt: a tiger in a suit\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 20\nprior_seed: 480883\nangle: 0.0\nzoom: 1.0\ntranslation_x: 1.0\ntranslation_y: 1.0602377716580489\ntranslation_z: 0.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nframe_idx: 6\ncond_prompt: a tiger in a suit\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 20\nprior_seed: 480883\nangle: 0.0\nzoom: 1.0\ntranslation_x: 1.0\ntranslation_y: 1.0602377716580489\ntranslation_z: 0.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 7%|▋ | 5/71 [00:21<02:51, 2.59s/it]\n 8%|▊ | 6/71 [00:21<01:54, 1.76s/it]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 74.98it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 75.09it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 75.33it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 75.28it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 73.72it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 73.62it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 72.64it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 72.84it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 14.88it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 14.81it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 14.79it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 14.78it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 14.77it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 14.78it/s]\nframe_idx: 8\ncond_prompt: a tiger in a suit\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 21\nprior_seed: 480883\nangle: 0.0\nzoom: 1.0\ntranslation_x: 1.0\ntranslation_y: 1.2986397592385166\ntranslation_z: 0.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nframe_idx: 8\ncond_prompt: a tiger in a suit\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 21\nprior_seed: 480883\nangle: 0.0\nzoom: 1.0\ntranslation_x: 1.0\ntranslation_y: 1.2986397592385166\ntranslation_z: 0.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 10%|▉ | 7/71 [00:23<01:58, 1.85s/it]\n 11%|█▏ | 8/71 [00:23<01:22, 1.31s/it]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 74.57it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 75.05it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 75.11it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 75.08it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 72.86it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 73.71it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 73.09it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 73.24it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 14.89it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 14.81it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 14.78it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 14.77it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 14.76it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 14.77it/s]\nframe_idx: 10\ncond_prompt: a tiger in a suit\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 22\nprior_seed: 480883\nangle: 0.0\nzoom: 1.0\ntranslation_x: 1.0\ntranslation_y: 1.448630789751357\ntranslation_z: 0.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nframe_idx: 10\ncond_prompt: a tiger in a suit\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 22\nprior_seed: 480883\nangle: 0.0\nzoom: 1.0\ntranslation_x: 1.0\ntranslation_y: 1.448630789751357\ntranslation_z: 0.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 13%|█▎ | 9/71 [00:25<01:35, 1.54s/it]\n 14%|█▍ | 10/71 [00:25<01:07, 1.11s/it]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 74.37it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 73.86it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 71.02it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 71.77it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 73.07it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 74.47it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 73.08it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 73.20it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 14.87it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 14.79it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 14.78it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 14.74it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 14.75it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 14.76it/s]\nframe_idx: 12\ncond_prompt: a tiger in a suit\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 23\nprior_seed: 480883\nangle: 0.0\nzoom: 1.0\ntranslation_x: 1.0\ntranslation_y: 1.499999524397752\ntranslation_z: 0.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nframe_idx: 12\ncond_prompt: a tiger in a suit\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 23\nprior_seed: 480883\nangle: 0.0\nzoom: 1.0\ntranslation_x: 1.0\ntranslation_y: 1.499999524397752\ntranslation_z: 0.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 15%|█▌ | 11/71 [00:27<01:24, 1.40s/it]\n 17%|█▋ | 12/71 [00:27<01:00, 1.02s/it]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 28%|██▊ | 7/25 [00:00<00:00, 69.10it/s]\u001b[A\n 60%|██████ | 15/25 [00:00<00:00, 72.59it/s]\u001b[A\n 92%|█████████▏| 23/25 [00:00<00:00, 73.64it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 72.86it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 72.85it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 74.08it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 74.64it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 74.21it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 14.84it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 14.80it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 14.76it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 14.75it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 14.75it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 14.76it/s]\nframe_idx: 14\ncond_prompt: a tiger in a suit\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 24\nprior_seed: 480883\nangle: 0.0\nzoom: 1.0\ntranslation_x: 1.0\ntranslation_y: 1.4492487970381833\ntranslation_z: 0.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nframe_idx: 14\ncond_prompt: a tiger in a suit\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 24\nprior_seed: 480883\nangle: 0.0\nzoom: 1.0\ntranslation_x: 1.0\ntranslation_y: 1.4492487970381833\ntranslation_z: 0.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 18%|█▊ | 13/71 [00:29<01:17, 1.33s/it]\n 20%|█▉ | 14/71 [00:29<00:55, 1.03it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 73.52it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 74.26it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 74.58it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 74.45it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 75.46it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 75.50it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 75.50it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 75.49it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 14.77it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 14.76it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 14.76it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 14.76it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 14.75it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 14.75it/s]\nframe_idx: 16\ncond_prompt: a tiger in a suit\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 25\nprior_seed: 480883\nangle: 0.0\nzoom: 1.0\ntranslation_x: 1.0\ntranslation_y: 1.2998337000843987\ntranslation_z: 0.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nframe_idx: 16\ncond_prompt: a tiger in a suit\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 25\nprior_seed: 480883\nangle: 0.0\nzoom: 1.0\ntranslation_x: 1.0\ntranslation_y: 1.2998337000843987\ntranslation_z: 0.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 21%|██ | 15/71 [00:32<01:12, 1.30s/it]\n 23%|██▎ | 16/71 [00:32<00:52, 1.05it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 74.51it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 74.18it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 74.65it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 74.49it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 74.99it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 75.24it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 73.22it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 73.82it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 14.53it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 14.63it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 14.67it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 14.68it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 14.67it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 14.65it/s]\nframe_idx: 18\ncond_prompt: a tiger in a suit\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 26\nprior_seed: 480883\nangle: 0.0\nzoom: 1.0\ntranslation_x: 1.0\ntranslation_y: 1.061926362972648\ntranslation_z: 0.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nframe_idx: 18\ncond_prompt: a tiger in a suit\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 26\nprior_seed: 480883\nangle: 0.0\nzoom: 1.0\ntranslation_x: 1.0\ntranslation_y: 1.061926362972648\ntranslation_z: 0.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 24%|██▍ | 17/71 [00:34<01:11, 1.32s/it]\n 25%|██▌ | 18/71 [00:34<00:52, 1.01it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 73.70it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 74.40it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 72.15it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 72.41it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 28%|██▊ | 7/25 [00:00<00:00, 69.85it/s]\u001b[A\n 60%|██████ | 15/25 [00:00<00:00, 71.78it/s]\u001b[A\n 92%|█████████▏| 23/25 [00:00<00:00, 73.44it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 72.53it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 14.84it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 14.79it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 14.75it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 14.76it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 14.75it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 14.76it/s]\nframe_idx: 20\ncond_prompt: a tiger in a suit\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 27\nprior_seed: 480883\nangle: 0.0\nzoom: 1.0\ntranslation_x: 1.0\ntranslation_y: 0.7517234370204573\ntranslation_z: 0.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nframe_idx: 20\ncond_prompt: a tiger in a suit\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 27\nprior_seed: 480883\nangle: 0.0\nzoom: 1.0\ntranslation_x: 1.0\ntranslation_y: 0.7517234370204573\ntranslation_z: 0.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 27%|██▋ | 19/71 [00:36<01:12, 1.40s/it]\n 28%|██▊ | 20/71 [00:37<00:52, 1.03s/it]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 74.55it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 74.52it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 75.01it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 74.91it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 75.58it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 72.92it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 73.58it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 73.39it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 14.81it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 14.74it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 14.74it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 14.75it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 14.75it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 14.74it/s]\nframe_idx: 22\ncond_prompt: a tiger in a suit\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 28\nprior_seed: 480883\nangle: 0.0\nzoom: 1.0\ntranslation_x: 1.0\ntranslation_y: 0.3903434328644424\ntranslation_z: 0.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nframe_idx: 22\ncond_prompt: a tiger in a suit\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 28\nprior_seed: 480883\nangle: 0.0\nzoom: 1.0\ntranslation_x: 1.0\ntranslation_y: 0.3903434328644424\ntranslation_z: 0.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 30%|██▉ | 21/71 [00:39<01:06, 1.33s/it]\n 31%|███ | 22/71 [00:39<00:47, 1.02it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 74.69it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 75.18it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 74.95it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 74.82it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 75.34it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 73.00it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 72.75it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 73.07it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 14.82it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 14.75it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 14.71it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 14.71it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 14.70it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 14.71it/s]\nframe_idx: 24\ncond_prompt: a tiger in a suit\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 29\nprior_seed: 480883\nangle: 0.0\nzoom: 1.0\ntranslation_x: 1.0\ntranslation_y: 0.0023889793747302423\ntranslation_z: 0.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nframe_idx: 24\ncond_prompt: a tiger in a suit\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 29\nprior_seed: 480883\nangle: 0.0\nzoom: 1.0\ntranslation_x: 1.0\ntranslation_y: 0.0023889793747302423\ntranslation_z: 0.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 32%|███▏ | 23/71 [00:41<01:02, 1.30s/it]\n 34%|███▍ | 24/71 [00:41<00:44, 1.05it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 74.55it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 73.54it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 74.22it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 74.12it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 28%|██▊ | 7/25 [00:00<00:00, 67.16it/s]\u001b[A\n 60%|██████ | 15/25 [00:00<00:00, 69.67it/s]\u001b[A\n 92%|█████████▏| 23/25 [00:00<00:00, 72.35it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 71.73it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 14.74it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 14.72it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 14.73it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 14.71it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 14.69it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 14.70it/s]\nframe_idx: 26\ncond_prompt: a tiger in a suit\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 30\nprior_seed: 480883\nangle: 0.0\nzoom: 1.0\ntranslation_x: 1.0\ntranslation_y: -0.385728115025544\ntranslation_z: 0.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nframe_idx: 26\ncond_prompt: a tiger in a suit\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 30\nprior_seed: 480883\nangle: 0.0\nzoom: 1.0\ntranslation_x: 1.0\ntranslation_y: -0.385728115025544\ntranslation_z: 0.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 35%|███▌ | 25/71 [00:43<00:59, 1.28s/it]\n 37%|███▋ | 26/71 [00:43<00:42, 1.06it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 74.11it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 72.93it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 72.04it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 72.23it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 75.52it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 73.94it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 74.41it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 74.33it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 14.64it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 14.65it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 14.67it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 14.68it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 14.70it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 14.68it/s]\nframe_idx: 28\ncond_prompt: a tiger in a suit\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 31\nprior_seed: 480883\nangle: 0.0\nzoom: 1.0\ntranslation_x: 1.0\ntranslation_y: -0.7475849693748768\ntranslation_z: 0.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nframe_idx: 28\ncond_prompt: a tiger in a suit\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 31\nprior_seed: 480883\nangle: 0.0\nzoom: 1.0\ntranslation_x: 1.0\ntranslation_y: -0.7475849693748768\ntranslation_z: 0.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 38%|███▊ | 27/71 [00:45<00:56, 1.28s/it]\n 39%|███▉ | 28/71 [00:45<00:40, 1.07it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 70.45it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 71.18it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 72.97it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 72.54it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 75.63it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 75.11it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 75.12it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 74.95it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 14.79it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 14.70it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 14.68it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 14.69it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 14.70it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 14.69it/s]\nframe_idx: 30\ncond_prompt: a tiger in a suit\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 32\nprior_seed: 480883\nangle: 0.0\nzoom: 1.0\ntranslation_x: 1.0\ntranslation_y: -1.0585464910027151\ntranslation_z: 0.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nframe_idx: 30\ncond_prompt: a tiger in a suit\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 32\nprior_seed: 480883\nangle: 0.0\nzoom: 1.0\ntranslation_x: 1.0\ntranslation_y: -1.0585464910027151\ntranslation_z: 0.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 41%|████ | 29/71 [00:47<00:53, 1.27s/it]\n 42%|████▏ | 30/71 [00:48<00:38, 1.07it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 28%|██▊ | 7/25 [00:00<00:00, 62.03it/s]\u001b[A\n 60%|██████ | 15/25 [00:00<00:00, 67.59it/s]\u001b[A\n 88%|████████▊ | 22/25 [00:00<00:00, 68.37it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 67.63it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 28%|██▊ | 7/25 [00:00<00:00, 69.68it/s]\u001b[A\n 56%|█████▌ | 14/25 [00:00<00:00, 69.54it/s]\u001b[A\n 88%|████████▊ | 22/25 [00:00<00:00, 70.37it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 70.02it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 14.79it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 14.69it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 14.69it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 14.66it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 14.67it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 14.68it/s]\nframe_idx: 32\ncond_prompt: a tiger in a suit\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 33\nprior_seed: 480883\nangle: 0.0\nzoom: 1.0\ntranslation_x: 1.0\ntranslation_y: -1.297442524334549\ntranslation_z: 0.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nframe_idx: 32\ncond_prompt: a tiger in a suit\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 33\nprior_seed: 480883\nangle: 0.0\nzoom: 1.0\ntranslation_x: 1.0\ntranslation_y: -1.297442524334549\ntranslation_z: 0.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 44%|████▎ | 31/71 [00:50<00:51, 1.29s/it]\n 45%|████▌ | 32/71 [00:50<00:36, 1.06it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 74.39it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 74.82it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 74.57it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 74.12it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 28%|██▊ | 7/25 [00:00<00:00, 66.05it/s]\u001b[A\n 56%|█████▌ | 14/25 [00:00<00:00, 68.21it/s]\u001b[A\n 84%|████████▍ | 21/25 [00:00<00:00, 68.87it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 68.66it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 14.80it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 14.72it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 14.70it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 14.67it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 14.68it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 14.69it/s]\nframe_idx: 34\ncond_prompt: a tiger in a suit\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 34\nprior_seed: 480883\nangle: 0.0\nzoom: 1.0\ntranslation_x: 1.0\ntranslation_y: -1.4480091079474584\ntranslation_z: 0.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nframe_idx: 34\ncond_prompt: a tiger in a suit\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 34\nprior_seed: 480883\nangle: 0.0\nzoom: 1.0\ntranslation_x: 1.0\ntranslation_y: -1.4480091079474584\ntranslation_z: 0.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 46%|████▋ | 33/71 [00:52<00:48, 1.29s/it]\n 48%|████▊ | 34/71 [00:52<00:34, 1.06it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 28%|██▊ | 7/25 [00:00<00:00, 68.67it/s]\u001b[A\n 56%|█████▌ | 14/25 [00:00<00:00, 68.75it/s]\u001b[A\n 88%|████████▊ | 22/25 [00:00<00:00, 70.04it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 69.66it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 28%|██▊ | 7/25 [00:00<00:00, 69.23it/s]\u001b[A\n 56%|█████▌ | 14/25 [00:00<00:00, 68.95it/s]\u001b[A\n 84%|████████▍ | 21/25 [00:00<00:00, 69.08it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 69.10it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 14.79it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 14.74it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 14.70it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 14.68it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 14.68it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 14.69it/s]\nframe_idx: 36\ncond_prompt: a tiger in a suit\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 35\nprior_seed: 480883\nangle: 0.0\nzoom: 1.0\ntranslation_x: 1.0\ntranslation_y: -1.499995719581577\ntranslation_z: 0.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nframe_idx: 36\ncond_prompt: a tiger in a suit\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 35\nprior_seed: 480883\nangle: 0.0\nzoom: 1.0\ntranslation_x: 1.0\ntranslation_y: -1.499995719581577\ntranslation_z: 0.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 49%|████▉ | 35/71 [00:54<00:46, 1.29s/it]\n 51%|█████ | 36/71 [00:54<00:33, 1.05it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 28%|██▊ | 7/25 [00:00<00:00, 69.04it/s]\u001b[A\n 60%|██████ | 15/25 [00:00<00:00, 71.45it/s]\u001b[A\n 92%|█████████▏| 23/25 [00:00<00:00, 73.15it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 72.64it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 75.56it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 75.39it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 74.94it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 74.86it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 14.77it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 14.72it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 14.70it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 14.70it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 14.69it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 14.70it/s]\nframe_idx: 38\ncond_prompt: a tiger in a suit\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 36\nprior_seed: 480883\nangle: 0.0\nzoom: 1.0\ntranslation_x: 1.0\ntranslation_y: -1.449863128240335\ntranslation_z: 0.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nframe_idx: 38\ncond_prompt: a tiger in a suit\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 36\nprior_seed: 480883\nangle: 0.0\nzoom: 1.0\ntranslation_x: 1.0\ntranslation_y: -1.449863128240335\ntranslation_z: 0.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 52%|█████▏ | 37/71 [00:56<00:43, 1.28s/it]\n 54%|█████▎ | 38/71 [00:57<00:31, 1.06it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 74.75it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 75.05it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 75.06it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 74.98it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 75.65it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 75.54it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 75.41it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 75.47it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 14.82it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 14.71it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 14.64it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 14.62it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 14.64it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 14.65it/s]\nframe_idx: 40\ncond_prompt: a tiger in a suit\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 37\nprior_seed: 480883\nangle: 0.0\nzoom: 1.0\ntranslation_x: 1.0\ntranslation_y: -1.3010243438437104\ntranslation_z: 0.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nframe_idx: 40\ncond_prompt: a tiger in a suit\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 37\nprior_seed: 480883\nangle: 0.0\nzoom: 1.0\ntranslation_x: 1.0\ntranslation_y: -1.3010243438437104\ntranslation_z: 0.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 55%|█████▍ | 39/71 [00:59<00:40, 1.28s/it]\n 56%|█████▋ | 40/71 [00:59<00:29, 1.06it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 74.61it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 74.95it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 75.09it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 75.03it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 75.16it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 74.36it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 73.98it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 74.23it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 14.80it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 14.69it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 14.68it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 14.67it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 14.66it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 14.67it/s]\nframe_idx: 42\ncond_prompt: a tiger in a suit\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 38\nprior_seed: 480883\nangle: 0.0\nzoom: 1.0\ntranslation_x: 1.0\ntranslation_y: -1.0636122606633251\ntranslation_z: 0.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nframe_idx: 42\ncond_prompt: a tiger in a suit\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 38\nprior_seed: 480883\nangle: 0.0\nzoom: 1.0\ntranslation_x: 1.0\ntranslation_y: -1.0636122606633251\ntranslation_z: 0.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 58%|█████▊ | 41/71 [01:01<00:38, 1.27s/it]\n 59%|█████▉ | 42/71 [01:01<00:27, 1.07it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 74.22it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 74.47it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 74.27it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 73.93it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 71.07it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 72.05it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 73.35it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 72.83it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 14.75it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 14.72it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 14.70it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 14.67it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 14.66it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 14.67it/s]\nframe_idx: 44\ncond_prompt: a tiger in a suit\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 39\nprior_seed: 480883\nangle: 0.0\nzoom: 1.0\ntranslation_x: 1.0\ntranslation_y: -0.7537898132959949\ntranslation_z: 0.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nframe_idx: 44\ncond_prompt: a tiger in a suit\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 39\nprior_seed: 480883\nangle: 0.0\nzoom: 1.0\ntranslation_x: 1.0\ntranslation_y: -0.7537898132959949\ntranslation_z: 0.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 61%|██████ | 43/71 [01:03<00:35, 1.27s/it]\n 62%|██████▏ | 44/71 [01:03<00:25, 1.07it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 74.04it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 73.23it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 74.19it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 74.09it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 75.65it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 75.68it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 75.64it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 75.59it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 14.69it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 14.61it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 14.62it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 14.64it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 14.64it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 14.63it/s]\nframe_idx: 46\ncond_prompt: a tiger in a suit\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 40\nprior_seed: 480883\nangle: 0.0\nzoom: 1.0\ntranslation_x: 1.0\ntranslation_y: -0.3926496095245296\ntranslation_z: 0.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nframe_idx: 46\ncond_prompt: a tiger in a suit\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 40\nprior_seed: 480883\nangle: 0.0\nzoom: 1.0\ntranslation_x: 1.0\ntranslation_y: -0.3926496095245296\ntranslation_z: 0.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 63%|██████▎ | 45/71 [01:05<00:32, 1.27s/it]\n 65%|██████▍ | 46/71 [01:05<00:23, 1.07it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 28%|██▊ | 7/25 [00:00<00:00, 69.86it/s]\u001b[A\n 60%|██████ | 15/25 [00:00<00:00, 70.23it/s]\u001b[A\n 92%|█████████▏| 23/25 [00:00<00:00, 70.65it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 70.53it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 72.46it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 72.11it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 72.07it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 72.10it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 14.83it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 14.70it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 14.65it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 14.64it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 14.65it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 14.66it/s]\nframe_idx: 48\ncond_prompt: a tiger in a suit\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 41\nprior_seed: 480883\nangle: 0.0\nzoom: 1.0\ntranslation_x: 1.0\ntranslation_y: -0.004777952689706985\ntranslation_z: 0.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nframe_idx: 48\ncond_prompt: a tiger in a suit\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 41\nprior_seed: 480883\nangle: 0.0\nzoom: 1.0\ntranslation_x: 1.0\ntranslation_y: -0.004777952689706985\ntranslation_z: 0.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 66%|██████▌ | 47/71 [01:07<00:30, 1.28s/it]\n 68%|██████▊ | 48/71 [01:08<00:21, 1.06it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 74.39it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 74.92it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 74.71it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 74.74it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 74.06it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 74.90it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 74.96it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 74.09it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 14.74it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 14.67it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 14.64it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 14.63it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 14.63it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 14.64it/s]\nframe_idx: 50\ncond_prompt: a tiger in a suit\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 42\nprior_seed: 480883\nangle: 0.0\nzoom: 1.0\ntranslation_x: 1.0\ntranslation_y: 0.3834189855536938\ntranslation_z: 0.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nframe_idx: 50\ncond_prompt: a tiger in a suit\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 42\nprior_seed: 480883\nangle: 0.0\nzoom: 1.0\ntranslation_x: 1.0\ntranslation_y: 0.3834189855536938\ntranslation_z: 0.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 69%|██████▉ | 49/71 [01:10<00:28, 1.28s/it]\n 70%|███████ | 50/71 [01:10<00:19, 1.07it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 74.38it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 74.81it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 75.16it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 74.81it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 72.71it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 71.10it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 70.84it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 70.91it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 14.74it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 14.71it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 14.68it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 14.69it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 14.68it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 14.69it/s]\nframe_idx: 52\ncond_prompt: a tiger in a suit\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 43\nprior_seed: 480883\nangle: 0.0\nzoom: 1.0\ntranslation_x: 1.0\ntranslation_y: 0.7455128885022428\ntranslation_z: 0.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nframe_idx: 52\ncond_prompt: a tiger in a suit\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 43\nprior_seed: 480883\nangle: 0.0\nzoom: 1.0\ntranslation_x: 1.0\ntranslation_y: 0.7455128885022428\ntranslation_z: 0.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 72%|███████▏ | 51/71 [01:12<00:25, 1.28s/it]\n 73%|███████▎ | 52/71 [01:12<00:17, 1.07it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 74.31it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 74.89it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 72.83it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 72.98it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 71.42it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 73.82it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 73.09it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 72.84it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 14.78it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 14.68it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 14.67it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 14.60it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 14.63it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 14.64it/s]\nframe_idx: 54\ncond_prompt: a tiger in a suit\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 44\nprior_seed: 480883\nangle: 0.0\nzoom: 1.0\ntranslation_x: 1.0\ntranslation_y: 1.056852525296656\ntranslation_z: 0.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nframe_idx: 54\ncond_prompt: a tiger in a suit\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 44\nprior_seed: 480883\nangle: 0.0\nzoom: 1.0\ntranslation_x: 1.0\ntranslation_y: 1.056852525296656\ntranslation_z: 0.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 75%|███████▍ | 53/71 [01:14<00:22, 1.28s/it]\n 76%|███████▌ | 54/71 [01:14<00:15, 1.07it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 28%|██▊ | 7/25 [00:00<00:00, 69.03it/s]\u001b[A\n 56%|█████▌ | 14/25 [00:00<00:00, 68.50it/s]\u001b[A\n 84%|████████▍ | 21/25 [00:00<00:00, 68.88it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 69.77it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 75.16it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 74.72it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 74.59it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 74.61it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 14.78it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 14.69it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 14.67it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 14.67it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 14.65it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 14.66it/s]\nframe_idx: 56\ncond_prompt: a tiger in a suit\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 45\nprior_seed: 480883\nangle: 0.0\nzoom: 1.0\ntranslation_x: 1.0\ntranslation_y: 1.2962419984093372\ntranslation_z: 0.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nframe_idx: 56\ncond_prompt: a tiger in a suit\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 45\nprior_seed: 480883\nangle: 0.0\nzoom: 1.0\ntranslation_x: 1.0\ntranslation_y: 1.2962419984093372\ntranslation_z: 0.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 77%|███████▋ | 55/71 [01:16<00:20, 1.28s/it]\n 79%|███████▉ | 56/71 [01:16<00:14, 1.07it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 73.99it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 74.58it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 74.51it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 74.42it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 74.67it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 74.93it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 74.90it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 74.90it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 14.73it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 14.68it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 14.65it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 14.65it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 14.64it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 14.65it/s]\nframe_idx: 58\ncond_prompt: a tiger in a suit\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 46\nprior_seed: 480883\nangle: 0.0\nzoom: 1.0\ntranslation_x: 1.0\ntranslation_y: 1.4473837532034117\ntranslation_z: 0.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nframe_idx: 58\ncond_prompt: a tiger in a suit\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 46\nprior_seed: 480883\nangle: 0.0\nzoom: 1.0\ntranslation_x: 1.0\ntranslation_y: 1.4473837532034117\ntranslation_z: 0.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 80%|████████ | 57/71 [01:18<00:17, 1.27s/it]\n 82%|████████▏ | 58/71 [01:19<00:12, 1.07it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 73.33it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 71.45it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 73.06it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 72.68it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 75.28it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 72.49it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 70.68it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 71.40it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 14.80it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 14.71it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 14.68it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 14.66it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 14.65it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 14.66it/s]\nframe_idx: 60\ncond_prompt: a tiger in a suit\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 47\nprior_seed: 480883\nangle: 0.0\nzoom: 1.0\ntranslation_x: 1.0\ntranslation_y: 1.499988109958878\ntranslation_z: 0.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nframe_idx: 60\ncond_prompt: a tiger in a suit\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 47\nprior_seed: 480883\nangle: 0.0\nzoom: 1.0\ntranslation_x: 1.0\ntranslation_y: 1.499988109958878\ntranslation_z: 0.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 83%|████████▎ | 59/71 [01:21<00:15, 1.28s/it]\n 85%|████████▍ | 60/71 [01:21<00:10, 1.07it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 72.00it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 72.45it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 72.83it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 72.54it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 28%|██▊ | 7/25 [00:00<00:00, 66.37it/s]\u001b[A\n 60%|██████ | 15/25 [00:00<00:00, 69.70it/s]\u001b[A\n 92%|█████████▏| 23/25 [00:00<00:00, 71.87it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 71.26it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 14.77it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 14.66it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 14.60it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 14.59it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 14.60it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 14.61it/s]\nframe_idx: 62\ncond_prompt: a tiger in a suit\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 48\nprior_seed: 480883\nangle: 0.0\nzoom: 1.0\ntranslation_x: 1.0\ntranslation_y: 1.4504737817995323\ntranslation_z: 0.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nframe_idx: 62\ncond_prompt: a tiger in a suit\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 48\nprior_seed: 480883\nangle: 0.0\nzoom: 1.0\ntranslation_x: 1.0\ntranslation_y: 1.4504737817995323\ntranslation_z: 0.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 86%|████████▌ | 61/71 [01:23<00:12, 1.28s/it]\n 87%|████████▋ | 62/71 [01:23<00:08, 1.06it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 70.62it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 69.57it/s]\u001b[A\n 92%|█████████▏| 23/25 [00:00<00:00, 68.51it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 68.96it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 74.55it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 74.39it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 74.47it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 74.42it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 14.76it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 14.66it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 14.62it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 14.60it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 14.59it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 14.61it/s]\nframe_idx: 64\ncond_prompt: a tiger in a suit\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 49\nprior_seed: 480883\nangle: 0.0\nzoom: 1.0\ntranslation_x: 1.0\ntranslation_y: 1.3022116874963312\ntranslation_z: 0.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nframe_idx: 64\ncond_prompt: a tiger in a suit\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 49\nprior_seed: 480883\nangle: 0.0\nzoom: 1.0\ntranslation_x: 1.0\ntranslation_y: 1.3022116874963312\ntranslation_z: 0.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 89%|████████▊ | 63/71 [01:25<00:10, 1.29s/it]\n 90%|█████████ | 64/71 [01:25<00:06, 1.06it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 28%|██▊ | 7/25 [00:00<00:00, 68.62it/s]\u001b[A\n 56%|█████▌ | 14/25 [00:00<00:00, 68.56it/s]\u001b[A\n 88%|████████▊ | 22/25 [00:00<00:00, 70.37it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 69.71it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 74.06it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 73.46it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 74.09it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 73.94it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 14.73it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 14.64it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 14.60it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 14.59it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 14.59it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 14.60it/s]\nframe_idx: 66\ncond_prompt: a tiger in a suit\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 50\nprior_seed: 480883\nangle: 0.0\nzoom: 1.0\ntranslation_x: 1.0\ntranslation_y: 1.0652954604537248\ntranslation_z: 0.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nframe_idx: 66\ncond_prompt: a tiger in a suit\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 50\nprior_seed: 480883\nangle: 0.0\nzoom: 1.0\ntranslation_x: 1.0\ntranslation_y: 1.0652954604537248\ntranslation_z: 0.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 92%|█████████▏| 65/71 [01:27<00:07, 1.29s/it]\n 93%|█████████▎| 66/71 [01:28<00:04, 1.05it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 72.25it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 70.72it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 71.45it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 71.12it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 74.91it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 73.46it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 72.41it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 72.75it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 14.76it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 14.69it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 14.68it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 14.66it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 14.67it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 14.67it/s]\nframe_idx: 68\ncond_prompt: a tiger in a suit\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 51\nprior_seed: 480883\nangle: 0.0\nzoom: 1.0\ntranslation_x: 1.0\ntranslation_y: 0.7558542775498109\ntranslation_z: 0.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nframe_idx: 68\ncond_prompt: a tiger in a suit\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 51\nprior_seed: 480883\nangle: 0.0\nzoom: 1.0\ntranslation_x: 1.0\ntranslation_y: 0.7558542775498109\ntranslation_z: 0.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 94%|█████████▍| 67/71 [01:30<00:05, 1.29s/it]\n 96%|█████████▌| 68/71 [01:30<00:02, 1.05it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 74.98it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 74.62it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 74.83it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 74.84it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 75.59it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 71.87it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 72.35it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 72.70it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 14.74it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 14.67it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 14.67it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 14.67it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 14.66it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 14.66it/s]\nframe_idx: 70\ncond_prompt: a tiger in a suit\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 52\nprior_seed: 480883\nangle: 0.0\nzoom: 1.0\ntranslation_x: 1.0\ntranslation_y: 0.3949547902112447\ntranslation_z: 0.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nframe_idx: 70\ncond_prompt: a tiger in a suit\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 52\nprior_seed: 480883\nangle: 0.0\nzoom: 1.0\ntranslation_x: 1.0\ntranslation_y: 0.3949547902112447\ntranslation_z: 0.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 97%|█████████▋| 69/71 [01:32<00:02, 1.28s/it]\n 99%|█████████▊| 70/71 [01:32<00:00, 1.06it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 74.48it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 74.95it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 74.97it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 74.92it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 71.00it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 72.74it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 73.84it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 73.29it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 14.74it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 14.67it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 14.65it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 14.63it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 14.63it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 14.64it/s]\n99%|█████████▊| 70/71 [01:34<00:01, 1.35s/it]\n 0%| | 0/70 [00:00<?, ?it/s]\n 1%|▏ | 1/70 [00:00<00:10, 6.43it/s]\n 60%|██████ | 42/70 [00:00<00:00, 198.45it/s]\n 96%|█████████▌| 67/70 [00:00<00:00, 120.92it/s]\n100%|██████████| 70/70 [00:00<00:00, 120.18it/s]", "metrics": { "predict_time": 96.578774, "total_time": 96.536582 }, "output": "https://pbxt.replicate.delivery/7cU2ZFQL73azJ9aUwGxSp0Iy3Ib9dL47D3mewtNSFXAhUj3IA/output_2_2.mp4", "started_at": "2023-10-17T16:35:46.914159Z", "status": "succeeded", "urls": { "get": "https://api.replicate.com/v1/predictions/bxwtum3bwuxd2k4isbca4rhbsq", "cancel": "https://api.replicate.com/v1/predictions/bxwtum3bwuxd2k4isbca4rhbsq/cancel" }, "version": "550e576a484886c105a5cf4ff09ac746e691ab473d12a6afe14eed23bc3bbe42" }
Generated in0%| | 0/71 [00:00<?, ?it/s]/src/deforum_kandinsky/helpers/animation.py:322: FutureWarning: Setting an item of incompatible dtype is deprecated and will raise in a future error of pandas. Value 'euler' has dtype incompatible with float64, please explicitly cast to a compatible dtype first. key_frame_series[i] = numexpr.evaluate(value) if not is_single_string else value # workaround for values formatted like 0:("I am test") //used for sampler schedules /src/deforum_kandinsky/helpers/animation.py:332: FutureWarning: Series.interpolate with object dtype is deprecated and will raise in a future version. Call obj.infer_objects(copy=False) before interpolating instead. key_frame_series = key_frame_series.interpolate(method=interp_method.lower(), limit_direction='both') /src/deforum_kandinsky/helpers/render.py:242: FutureWarning: Setting an item of incompatible dtype is deprecated and will raise in a future error of pandas. Value 'a tiger in a suit' has dtype incompatible with float64, please explicitly cast to a compatible dtype first. cond_prompt_series[int(i)] = prompt /src/deforum_kandinsky/helpers/render.py:248: FutureWarning: Setting an item of incompatible dtype is deprecated and will raise in a future error of pandas. Value 'low quality, bad image, cropped, out of frame' has dtype incompatible with float64, please explicitly cast to a compatible dtype first. uncond_prompt_series[int(i)] = prompt Using cache found in torch-cache/hub/rwightman_gen-efficientnet-pytorch_master Loading base model ()...Done. Removing last two layers (global_pool & classifier). Building Encoder-Decoder model..Done. 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 74.73it/s] 64%|██████▍ | 16/25 [00:00<00:00, 75.12it/s] 96%|█████████▌| 24/25 [00:00<00:00, 75.40it/s] 100%|██████████| 25/25 [00:00<00:00, 75.25it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 75.53it/s] 64%|██████▍ | 16/25 [00:00<00:00, 75.59it/s] 96%|█████████▌| 24/25 [00:00<00:00, 75.64it/s] 100%|██████████| 25/25 [00:00<00:00, 75.64it/s] 0%| | 0/80 [00:00<?, ?it/s] 2%|▎ | 2/80 [00:00<00:05, 14.87it/s] 5%|▌ | 4/80 [00:00<00:05, 14.77it/s] 8%|▊ | 6/80 [00:00<00:05, 14.72it/s] 10%|█ | 8/80 [00:00<00:04, 14.72it/s] 12%|█▎ | 10/80 [00:00<00:04, 14.72it/s] 15%|█▌ | 12/80 [00:00<00:04, 14.72it/s] 18%|█▊ | 14/80 [00:00<00:04, 14.71it/s] 20%|██ | 16/80 [00:01<00:04, 14.71it/s] 22%|██▎ | 18/80 [00:01<00:04, 14.72it/s] 25%|██▌ | 20/80 [00:01<00:04, 14.71it/s] 28%|██▊ | 22/80 [00:01<00:03, 14.70it/s] 30%|███ | 24/80 [00:01<00:03, 14.70it/s] 32%|███▎ | 26/80 [00:01<00:03, 14.70it/s] 35%|███▌ | 28/80 [00:01<00:03, 14.71it/s] 38%|███▊ | 30/80 [00:02<00:03, 14.71it/s] 40%|████ | 32/80 [00:02<00:03, 14.71it/s] 42%|████▎ | 34/80 [00:02<00:03, 14.69it/s] 45%|████▌ | 36/80 [00:02<00:02, 14.71it/s] 48%|████▊ | 38/80 [00:02<00:02, 14.71it/s] 50%|█████ | 40/80 [00:02<00:02, 14.71it/s] 52%|█████▎ | 42/80 [00:02<00:02, 14.69it/s] 55%|█████▌ | 44/80 [00:02<00:02, 14.69it/s] 57%|█████▊ | 46/80 [00:03<00:02, 14.71it/s] 60%|██████ | 48/80 [00:03<00:02, 14.72it/s] 62%|██████▎ | 50/80 [00:03<00:02, 14.75it/s] 65%|██████▌ | 52/80 [00:03<00:01, 14.77it/s] 68%|██████▊ | 54/80 [00:03<00:01, 14.77it/s] 70%|███████ | 56/80 [00:03<00:01, 14.76it/s] 72%|███████▎ | 58/80 [00:03<00:01, 14.76it/s] 75%|███████▌ | 60/80 [00:04<00:01, 14.77it/s] 78%|███████▊ | 62/80 [00:04<00:01, 14.77it/s] 80%|████████ | 64/80 [00:04<00:01, 14.78it/s] 82%|████████▎ | 66/80 [00:04<00:00, 14.78it/s] 85%|████████▌ | 68/80 [00:04<00:00, 14.78it/s] 88%|████████▊ | 70/80 [00:04<00:00, 14.77it/s] 90%|█████████ | 72/80 [00:04<00:00, 14.77it/s] 92%|█████████▎| 74/80 [00:05<00:00, 14.77it/s] 95%|█████████▌| 76/80 [00:05<00:00, 14.76it/s] 98%|█████████▊| 78/80 [00:05<00:00, 14.75it/s] 100%|██████████| 80/80 [00:05<00:00, 14.76it/s] 100%|██████████| 80/80 [00:05<00:00, 14.74it/s] frame_idx: 2 cond_prompt: a tiger in a suit uncond_prompt: low quality, bad image, cropped, out of frame seed: 18 prior_seed: 480883 angle: 0.0 zoom: 1.0 translation_x: 1.0 translation_y: 0.38803626608070296 translation_z: 0.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 frame_idx: 2 cond_prompt: a tiger in a suit uncond_prompt: low quality, bad image, cropped, out of frame seed: 18 prior_seed: 480883 angle: 0.0 zoom: 1.0 translation_x: 1.0 translation_y: 0.38803626608070296 translation_z: 0.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 1%|▏ | 1/71 [00:16<19:26, 16.66s/it] 3%|▎ | 2/71 [00:16<07:58, 6.94s/it] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 70.60it/s] 64%|██████▍ | 16/25 [00:00<00:00, 71.09it/s] 96%|█████████▌| 24/25 [00:00<00:00, 73.09it/s] 100%|██████████| 25/25 [00:00<00:00, 72.62it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 75.73it/s] 64%|██████▍ | 16/25 [00:00<00:00, 75.34it/s] 96%|█████████▌| 24/25 [00:00<00:00, 75.32it/s] 100%|██████████| 25/25 [00:00<00:00, 75.39it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 14.90it/s] 40%|████ | 4/10 [00:00<00:00, 14.82it/s] 60%|██████ | 6/10 [00:00<00:00, 14.84it/s] 80%|████████ | 8/10 [00:00<00:00, 14.81it/s] 100%|██████████| 10/10 [00:00<00:00, 14.81it/s] 100%|██████████| 10/10 [00:00<00:00, 14.82it/s] frame_idx: 4 cond_prompt: a tiger in a suit uncond_prompt: low quality, bad image, cropped, out of frame seed: 19 prior_seed: 480883 angle: 0.0 zoom: 1.0 translation_x: 1.0 translation_y: 0.7496551539646537 translation_z: 0.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 frame_idx: 4 cond_prompt: a tiger in a suit uncond_prompt: low quality, bad image, cropped, out of frame seed: 19 prior_seed: 480883 angle: 0.0 zoom: 1.0 translation_x: 1.0 translation_y: 0.7496551539646537 translation_z: 0.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 4%|▍ | 3/71 [00:18<05:19, 4.70s/it] 6%|▌ | 4/71 [00:18<03:14, 2.91s/it] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 75.02it/s] 64%|██████▍ | 16/25 [00:00<00:00, 74.86it/s] 96%|█████████▌| 24/25 [00:00<00:00, 75.07it/s] 100%|██████████| 25/25 [00:00<00:00, 75.05it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 75.63it/s] 64%|██████▍ | 16/25 [00:00<00:00, 75.35it/s] 96%|█████████▌| 24/25 [00:00<00:00, 75.01it/s] 100%|██████████| 25/25 [00:00<00:00, 75.07it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 14.88it/s] 40%|████ | 4/10 [00:00<00:00, 14.80it/s] 60%|██████ | 6/10 [00:00<00:00, 14.79it/s] 80%|████████ | 8/10 [00:00<00:00, 14.76it/s] 100%|██████████| 10/10 [00:00<00:00, 14.78it/s] 100%|██████████| 10/10 [00:00<00:00, 14.78it/s] frame_idx: 6 cond_prompt: a tiger in a suit uncond_prompt: low quality, bad image, cropped, out of frame seed: 20 prior_seed: 480883 angle: 0.0 zoom: 1.0 translation_x: 1.0 translation_y: 1.0602377716580489 translation_z: 0.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 frame_idx: 6 cond_prompt: a tiger in a suit uncond_prompt: low quality, bad image, cropped, out of frame seed: 20 prior_seed: 480883 angle: 0.0 zoom: 1.0 translation_x: 1.0 translation_y: 1.0602377716580489 translation_z: 0.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 7%|▋ | 5/71 [00:21<02:51, 2.59s/it] 8%|▊ | 6/71 [00:21<01:54, 1.76s/it] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 74.98it/s] 64%|██████▍ | 16/25 [00:00<00:00, 75.09it/s] 96%|█████████▌| 24/25 [00:00<00:00, 75.33it/s] 100%|██████████| 25/25 [00:00<00:00, 75.28it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 73.72it/s] 64%|██████▍ | 16/25 [00:00<00:00, 73.62it/s] 96%|█████████▌| 24/25 [00:00<00:00, 72.64it/s] 100%|██████████| 25/25 [00:00<00:00, 72.84it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 14.88it/s] 40%|████ | 4/10 [00:00<00:00, 14.81it/s] 60%|██████ | 6/10 [00:00<00:00, 14.79it/s] 80%|████████ | 8/10 [00:00<00:00, 14.78it/s] 100%|██████████| 10/10 [00:00<00:00, 14.77it/s] 100%|██████████| 10/10 [00:00<00:00, 14.78it/s] frame_idx: 8 cond_prompt: a tiger in a suit uncond_prompt: low quality, bad image, cropped, out of frame seed: 21 prior_seed: 480883 angle: 0.0 zoom: 1.0 translation_x: 1.0 translation_y: 1.2986397592385166 translation_z: 0.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 frame_idx: 8 cond_prompt: a tiger in a suit uncond_prompt: low quality, bad image, cropped, out of frame seed: 21 prior_seed: 480883 angle: 0.0 zoom: 1.0 translation_x: 1.0 translation_y: 1.2986397592385166 translation_z: 0.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 10%|▉ | 7/71 [00:23<01:58, 1.85s/it] 11%|█▏ | 8/71 [00:23<01:22, 1.31s/it] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 74.57it/s] 64%|██████▍ | 16/25 [00:00<00:00, 75.05it/s] 96%|█████████▌| 24/25 [00:00<00:00, 75.11it/s] 100%|██████████| 25/25 [00:00<00:00, 75.08it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 72.86it/s] 64%|██████▍ | 16/25 [00:00<00:00, 73.71it/s] 96%|█████████▌| 24/25 [00:00<00:00, 73.09it/s] 100%|██████████| 25/25 [00:00<00:00, 73.24it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 14.89it/s] 40%|████ | 4/10 [00:00<00:00, 14.81it/s] 60%|██████ | 6/10 [00:00<00:00, 14.78it/s] 80%|████████ | 8/10 [00:00<00:00, 14.77it/s] 100%|██████████| 10/10 [00:00<00:00, 14.76it/s] 100%|██████████| 10/10 [00:00<00:00, 14.77it/s] frame_idx: 10 cond_prompt: a tiger in a suit uncond_prompt: low quality, bad image, cropped, out of frame seed: 22 prior_seed: 480883 angle: 0.0 zoom: 1.0 translation_x: 1.0 translation_y: 1.448630789751357 translation_z: 0.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 frame_idx: 10 cond_prompt: a tiger in a suit uncond_prompt: low quality, bad image, cropped, out of frame seed: 22 prior_seed: 480883 angle: 0.0 zoom: 1.0 translation_x: 1.0 translation_y: 1.448630789751357 translation_z: 0.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 13%|█▎ | 9/71 [00:25<01:35, 1.54s/it] 14%|█▍ | 10/71 [00:25<01:07, 1.11s/it] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 74.37it/s] 64%|██████▍ | 16/25 [00:00<00:00, 73.86it/s] 96%|█████████▌| 24/25 [00:00<00:00, 71.02it/s] 100%|██████████| 25/25 [00:00<00:00, 71.77it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 73.07it/s] 64%|██████▍ | 16/25 [00:00<00:00, 74.47it/s] 96%|█████████▌| 24/25 [00:00<00:00, 73.08it/s] 100%|██████████| 25/25 [00:00<00:00, 73.20it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 14.87it/s] 40%|████ | 4/10 [00:00<00:00, 14.79it/s] 60%|██████ | 6/10 [00:00<00:00, 14.78it/s] 80%|████████ | 8/10 [00:00<00:00, 14.74it/s] 100%|██████████| 10/10 [00:00<00:00, 14.75it/s] 100%|██████████| 10/10 [00:00<00:00, 14.76it/s] frame_idx: 12 cond_prompt: a tiger in a suit uncond_prompt: low quality, bad image, cropped, out of frame seed: 23 prior_seed: 480883 angle: 0.0 zoom: 1.0 translation_x: 1.0 translation_y: 1.499999524397752 translation_z: 0.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 frame_idx: 12 cond_prompt: a tiger in a suit uncond_prompt: low quality, bad image, cropped, out of frame seed: 23 prior_seed: 480883 angle: 0.0 zoom: 1.0 translation_x: 1.0 translation_y: 1.499999524397752 translation_z: 0.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 15%|█▌ | 11/71 [00:27<01:24, 1.40s/it] 17%|█▋ | 12/71 [00:27<01:00, 1.02s/it] 0%| | 0/25 [00:00<?, ?it/s] 28%|██▊ | 7/25 [00:00<00:00, 69.10it/s] 60%|██████ | 15/25 [00:00<00:00, 72.59it/s] 92%|█████████▏| 23/25 [00:00<00:00, 73.64it/s] 100%|██████████| 25/25 [00:00<00:00, 72.86it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 72.85it/s] 64%|██████▍ | 16/25 [00:00<00:00, 74.08it/s] 96%|█████████▌| 24/25 [00:00<00:00, 74.64it/s] 100%|██████████| 25/25 [00:00<00:00, 74.21it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 14.84it/s] 40%|████ | 4/10 [00:00<00:00, 14.80it/s] 60%|██████ | 6/10 [00:00<00:00, 14.76it/s] 80%|████████ | 8/10 [00:00<00:00, 14.75it/s] 100%|██████████| 10/10 [00:00<00:00, 14.75it/s] 100%|██████████| 10/10 [00:00<00:00, 14.76it/s] frame_idx: 14 cond_prompt: a tiger in a suit uncond_prompt: low quality, bad image, cropped, out of frame seed: 24 prior_seed: 480883 angle: 0.0 zoom: 1.0 translation_x: 1.0 translation_y: 1.4492487970381833 translation_z: 0.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 frame_idx: 14 cond_prompt: a tiger in a suit uncond_prompt: low quality, bad image, cropped, out of frame seed: 24 prior_seed: 480883 angle: 0.0 zoom: 1.0 translation_x: 1.0 translation_y: 1.4492487970381833 translation_z: 0.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 18%|█▊ | 13/71 [00:29<01:17, 1.33s/it] 20%|█▉ | 14/71 [00:29<00:55, 1.03it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 73.52it/s] 64%|██████▍ | 16/25 [00:00<00:00, 74.26it/s] 96%|█████████▌| 24/25 [00:00<00:00, 74.58it/s] 100%|██████████| 25/25 [00:00<00:00, 74.45it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 75.46it/s] 64%|██████▍ | 16/25 [00:00<00:00, 75.50it/s] 96%|█████████▌| 24/25 [00:00<00:00, 75.50it/s] 100%|██████████| 25/25 [00:00<00:00, 75.49it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 14.77it/s] 40%|████ | 4/10 [00:00<00:00, 14.76it/s] 60%|██████ | 6/10 [00:00<00:00, 14.76it/s] 80%|████████ | 8/10 [00:00<00:00, 14.76it/s] 100%|██████████| 10/10 [00:00<00:00, 14.75it/s] 100%|██████████| 10/10 [00:00<00:00, 14.75it/s] frame_idx: 16 cond_prompt: a tiger in a suit uncond_prompt: low quality, bad image, cropped, out of frame seed: 25 prior_seed: 480883 angle: 0.0 zoom: 1.0 translation_x: 1.0 translation_y: 1.2998337000843987 translation_z: 0.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 frame_idx: 16 cond_prompt: a tiger in a suit uncond_prompt: low quality, bad image, cropped, out of frame seed: 25 prior_seed: 480883 angle: 0.0 zoom: 1.0 translation_x: 1.0 translation_y: 1.2998337000843987 translation_z: 0.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 21%|██ | 15/71 [00:32<01:12, 1.30s/it] 23%|██▎ | 16/71 [00:32<00:52, 1.05it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 74.51it/s] 64%|██████▍ | 16/25 [00:00<00:00, 74.18it/s] 96%|█████████▌| 24/25 [00:00<00:00, 74.65it/s] 100%|██████████| 25/25 [00:00<00:00, 74.49it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 74.99it/s] 64%|██████▍ | 16/25 [00:00<00:00, 75.24it/s] 96%|█████████▌| 24/25 [00:00<00:00, 73.22it/s] 100%|██████████| 25/25 [00:00<00:00, 73.82it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 14.53it/s] 40%|████ | 4/10 [00:00<00:00, 14.63it/s] 60%|██████ | 6/10 [00:00<00:00, 14.67it/s] 80%|████████ | 8/10 [00:00<00:00, 14.68it/s] 100%|██████████| 10/10 [00:00<00:00, 14.67it/s] 100%|██████████| 10/10 [00:00<00:00, 14.65it/s] frame_idx: 18 cond_prompt: a tiger in a suit uncond_prompt: low quality, bad image, cropped, out of frame seed: 26 prior_seed: 480883 angle: 0.0 zoom: 1.0 translation_x: 1.0 translation_y: 1.061926362972648 translation_z: 0.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 frame_idx: 18 cond_prompt: a tiger in a suit uncond_prompt: low quality, bad image, cropped, out of frame seed: 26 prior_seed: 480883 angle: 0.0 zoom: 1.0 translation_x: 1.0 translation_y: 1.061926362972648 translation_z: 0.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 24%|██▍ | 17/71 [00:34<01:11, 1.32s/it] 25%|██▌ | 18/71 [00:34<00:52, 1.01it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 73.70it/s] 64%|██████▍ | 16/25 [00:00<00:00, 74.40it/s] 96%|█████████▌| 24/25 [00:00<00:00, 72.15it/s] 100%|██████████| 25/25 [00:00<00:00, 72.41it/s] 0%| | 0/25 [00:00<?, ?it/s] 28%|██▊ | 7/25 [00:00<00:00, 69.85it/s] 60%|██████ | 15/25 [00:00<00:00, 71.78it/s] 92%|█████████▏| 23/25 [00:00<00:00, 73.44it/s] 100%|██████████| 25/25 [00:00<00:00, 72.53it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 14.84it/s] 40%|████ | 4/10 [00:00<00:00, 14.79it/s] 60%|██████ | 6/10 [00:00<00:00, 14.75it/s] 80%|████████ | 8/10 [00:00<00:00, 14.76it/s] 100%|██████████| 10/10 [00:00<00:00, 14.75it/s] 100%|██████████| 10/10 [00:00<00:00, 14.76it/s] frame_idx: 20 cond_prompt: a tiger in a suit uncond_prompt: low quality, bad image, cropped, out of frame seed: 27 prior_seed: 480883 angle: 0.0 zoom: 1.0 translation_x: 1.0 translation_y: 0.7517234370204573 translation_z: 0.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 frame_idx: 20 cond_prompt: a tiger in a suit uncond_prompt: low quality, bad image, cropped, out of frame seed: 27 prior_seed: 480883 angle: 0.0 zoom: 1.0 translation_x: 1.0 translation_y: 0.7517234370204573 translation_z: 0.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 27%|██▋ | 19/71 [00:36<01:12, 1.40s/it] 28%|██▊ | 20/71 [00:37<00:52, 1.03s/it] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 74.55it/s] 64%|██████▍ | 16/25 [00:00<00:00, 74.52it/s] 96%|█████████▌| 24/25 [00:00<00:00, 75.01it/s] 100%|██████████| 25/25 [00:00<00:00, 74.91it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 75.58it/s] 64%|██████▍ | 16/25 [00:00<00:00, 72.92it/s] 96%|█████████▌| 24/25 [00:00<00:00, 73.58it/s] 100%|██████████| 25/25 [00:00<00:00, 73.39it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 14.81it/s] 40%|████ | 4/10 [00:00<00:00, 14.74it/s] 60%|██████ | 6/10 [00:00<00:00, 14.74it/s] 80%|████████ | 8/10 [00:00<00:00, 14.75it/s] 100%|██████████| 10/10 [00:00<00:00, 14.75it/s] 100%|██████████| 10/10 [00:00<00:00, 14.74it/s] frame_idx: 22 cond_prompt: a tiger in a suit uncond_prompt: low quality, bad image, cropped, out of frame seed: 28 prior_seed: 480883 angle: 0.0 zoom: 1.0 translation_x: 1.0 translation_y: 0.3903434328644424 translation_z: 0.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 frame_idx: 22 cond_prompt: a tiger in a suit uncond_prompt: low quality, bad image, cropped, out of frame seed: 28 prior_seed: 480883 angle: 0.0 zoom: 1.0 translation_x: 1.0 translation_y: 0.3903434328644424 translation_z: 0.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 30%|██▉ | 21/71 [00:39<01:06, 1.33s/it] 31%|███ | 22/71 [00:39<00:47, 1.02it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 74.69it/s] 64%|██████▍ | 16/25 [00:00<00:00, 75.18it/s] 96%|█████████▌| 24/25 [00:00<00:00, 74.95it/s] 100%|██████████| 25/25 [00:00<00:00, 74.82it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 75.34it/s] 64%|██████▍ | 16/25 [00:00<00:00, 73.00it/s] 96%|█████████▌| 24/25 [00:00<00:00, 72.75it/s] 100%|██████████| 25/25 [00:00<00:00, 73.07it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 14.82it/s] 40%|████ | 4/10 [00:00<00:00, 14.75it/s] 60%|██████ | 6/10 [00:00<00:00, 14.71it/s] 80%|████████ | 8/10 [00:00<00:00, 14.71it/s] 100%|██████████| 10/10 [00:00<00:00, 14.70it/s] 100%|██████████| 10/10 [00:00<00:00, 14.71it/s] frame_idx: 24 cond_prompt: a tiger in a suit uncond_prompt: low quality, bad image, cropped, out of frame seed: 29 prior_seed: 480883 angle: 0.0 zoom: 1.0 translation_x: 1.0 translation_y: 0.0023889793747302423 translation_z: 0.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 frame_idx: 24 cond_prompt: a tiger in a suit uncond_prompt: low quality, bad image, cropped, out of frame seed: 29 prior_seed: 480883 angle: 0.0 zoom: 1.0 translation_x: 1.0 translation_y: 0.0023889793747302423 translation_z: 0.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 32%|███▏ | 23/71 [00:41<01:02, 1.30s/it] 34%|███▍ | 24/71 [00:41<00:44, 1.05it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 74.55it/s] 64%|██████▍ | 16/25 [00:00<00:00, 73.54it/s] 96%|█████████▌| 24/25 [00:00<00:00, 74.22it/s] 100%|██████████| 25/25 [00:00<00:00, 74.12it/s] 0%| | 0/25 [00:00<?, ?it/s] 28%|██▊ | 7/25 [00:00<00:00, 67.16it/s] 60%|██████ | 15/25 [00:00<00:00, 69.67it/s] 92%|█████████▏| 23/25 [00:00<00:00, 72.35it/s] 100%|██████████| 25/25 [00:00<00:00, 71.73it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 14.74it/s] 40%|████ | 4/10 [00:00<00:00, 14.72it/s] 60%|██████ | 6/10 [00:00<00:00, 14.73it/s] 80%|████████ | 8/10 [00:00<00:00, 14.71it/s] 100%|██████████| 10/10 [00:00<00:00, 14.69it/s] 100%|██████████| 10/10 [00:00<00:00, 14.70it/s] frame_idx: 26 cond_prompt: a tiger in a suit uncond_prompt: low quality, bad image, cropped, out of frame seed: 30 prior_seed: 480883 angle: 0.0 zoom: 1.0 translation_x: 1.0 translation_y: -0.385728115025544 translation_z: 0.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 frame_idx: 26 cond_prompt: a tiger in a suit uncond_prompt: low quality, bad image, cropped, out of frame seed: 30 prior_seed: 480883 angle: 0.0 zoom: 1.0 translation_x: 1.0 translation_y: -0.385728115025544 translation_z: 0.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 35%|███▌ | 25/71 [00:43<00:59, 1.28s/it] 37%|███▋ | 26/71 [00:43<00:42, 1.06it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 74.11it/s] 64%|██████▍ | 16/25 [00:00<00:00, 72.93it/s] 96%|█████████▌| 24/25 [00:00<00:00, 72.04it/s] 100%|██████████| 25/25 [00:00<00:00, 72.23it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 75.52it/s] 64%|██████▍ | 16/25 [00:00<00:00, 73.94it/s] 96%|█████████▌| 24/25 [00:00<00:00, 74.41it/s] 100%|██████████| 25/25 [00:00<00:00, 74.33it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 14.64it/s] 40%|████ | 4/10 [00:00<00:00, 14.65it/s] 60%|██████ | 6/10 [00:00<00:00, 14.67it/s] 80%|████████ | 8/10 [00:00<00:00, 14.68it/s] 100%|██████████| 10/10 [00:00<00:00, 14.70it/s] 100%|██████████| 10/10 [00:00<00:00, 14.68it/s] frame_idx: 28 cond_prompt: a tiger in a suit uncond_prompt: low quality, bad image, cropped, out of frame seed: 31 prior_seed: 480883 angle: 0.0 zoom: 1.0 translation_x: 1.0 translation_y: -0.7475849693748768 translation_z: 0.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 frame_idx: 28 cond_prompt: a tiger in a suit uncond_prompt: low quality, bad image, cropped, out of frame seed: 31 prior_seed: 480883 angle: 0.0 zoom: 1.0 translation_x: 1.0 translation_y: -0.7475849693748768 translation_z: 0.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 38%|███▊ | 27/71 [00:45<00:56, 1.28s/it] 39%|███▉ | 28/71 [00:45<00:40, 1.07it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 70.45it/s] 64%|██████▍ | 16/25 [00:00<00:00, 71.18it/s] 96%|█████████▌| 24/25 [00:00<00:00, 72.97it/s] 100%|██████████| 25/25 [00:00<00:00, 72.54it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 75.63it/s] 64%|██████▍ | 16/25 [00:00<00:00, 75.11it/s] 96%|█████████▌| 24/25 [00:00<00:00, 75.12it/s] 100%|██████████| 25/25 [00:00<00:00, 74.95it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 14.79it/s] 40%|████ | 4/10 [00:00<00:00, 14.70it/s] 60%|██████ | 6/10 [00:00<00:00, 14.68it/s] 80%|████████ | 8/10 [00:00<00:00, 14.69it/s] 100%|██████████| 10/10 [00:00<00:00, 14.70it/s] 100%|██████████| 10/10 [00:00<00:00, 14.69it/s] frame_idx: 30 cond_prompt: a tiger in a suit uncond_prompt: low quality, bad image, cropped, out of frame seed: 32 prior_seed: 480883 angle: 0.0 zoom: 1.0 translation_x: 1.0 translation_y: -1.0585464910027151 translation_z: 0.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 frame_idx: 30 cond_prompt: a tiger in a suit uncond_prompt: low quality, bad image, cropped, out of frame seed: 32 prior_seed: 480883 angle: 0.0 zoom: 1.0 translation_x: 1.0 translation_y: -1.0585464910027151 translation_z: 0.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 41%|████ | 29/71 [00:47<00:53, 1.27s/it] 42%|████▏ | 30/71 [00:48<00:38, 1.07it/s] 0%| | 0/25 [00:00<?, ?it/s] 28%|██▊ | 7/25 [00:00<00:00, 62.03it/s] 60%|██████ | 15/25 [00:00<00:00, 67.59it/s] 88%|████████▊ | 22/25 [00:00<00:00, 68.37it/s] 100%|██████████| 25/25 [00:00<00:00, 67.63it/s] 0%| | 0/25 [00:00<?, ?it/s] 28%|██▊ | 7/25 [00:00<00:00, 69.68it/s] 56%|█████▌ | 14/25 [00:00<00:00, 69.54it/s] 88%|████████▊ | 22/25 [00:00<00:00, 70.37it/s] 100%|██████████| 25/25 [00:00<00:00, 70.02it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 14.79it/s] 40%|████ | 4/10 [00:00<00:00, 14.69it/s] 60%|██████ | 6/10 [00:00<00:00, 14.69it/s] 80%|████████ | 8/10 [00:00<00:00, 14.66it/s] 100%|██████████| 10/10 [00:00<00:00, 14.67it/s] 100%|██████████| 10/10 [00:00<00:00, 14.68it/s] frame_idx: 32 cond_prompt: a tiger in a suit uncond_prompt: low quality, bad image, cropped, out of frame seed: 33 prior_seed: 480883 angle: 0.0 zoom: 1.0 translation_x: 1.0 translation_y: -1.297442524334549 translation_z: 0.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 frame_idx: 32 cond_prompt: a tiger in a suit uncond_prompt: low quality, bad image, cropped, out of frame seed: 33 prior_seed: 480883 angle: 0.0 zoom: 1.0 translation_x: 1.0 translation_y: -1.297442524334549 translation_z: 0.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 44%|████▎ | 31/71 [00:50<00:51, 1.29s/it] 45%|████▌ | 32/71 [00:50<00:36, 1.06it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 74.39it/s] 64%|██████▍ | 16/25 [00:00<00:00, 74.82it/s] 96%|█████████▌| 24/25 [00:00<00:00, 74.57it/s] 100%|██████████| 25/25 [00:00<00:00, 74.12it/s] 0%| | 0/25 [00:00<?, ?it/s] 28%|██▊ | 7/25 [00:00<00:00, 66.05it/s] 56%|█████▌ | 14/25 [00:00<00:00, 68.21it/s] 84%|████████▍ | 21/25 [00:00<00:00, 68.87it/s] 100%|██████████| 25/25 [00:00<00:00, 68.66it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 14.80it/s] 40%|████ | 4/10 [00:00<00:00, 14.72it/s] 60%|██████ | 6/10 [00:00<00:00, 14.70it/s] 80%|████████ | 8/10 [00:00<00:00, 14.67it/s] 100%|██████████| 10/10 [00:00<00:00, 14.68it/s] 100%|██████████| 10/10 [00:00<00:00, 14.69it/s] frame_idx: 34 cond_prompt: a tiger in a suit uncond_prompt: low quality, bad image, cropped, out of frame seed: 34 prior_seed: 480883 angle: 0.0 zoom: 1.0 translation_x: 1.0 translation_y: -1.4480091079474584 translation_z: 0.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 frame_idx: 34 cond_prompt: a tiger in a suit uncond_prompt: low quality, bad image, cropped, out of frame seed: 34 prior_seed: 480883 angle: 0.0 zoom: 1.0 translation_x: 1.0 translation_y: -1.4480091079474584 translation_z: 0.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 46%|████▋ | 33/71 [00:52<00:48, 1.29s/it] 48%|████▊ | 34/71 [00:52<00:34, 1.06it/s] 0%| | 0/25 [00:00<?, ?it/s] 28%|██▊ | 7/25 [00:00<00:00, 68.67it/s] 56%|█████▌ | 14/25 [00:00<00:00, 68.75it/s] 88%|████████▊ | 22/25 [00:00<00:00, 70.04it/s] 100%|██████████| 25/25 [00:00<00:00, 69.66it/s] 0%| | 0/25 [00:00<?, ?it/s] 28%|██▊ | 7/25 [00:00<00:00, 69.23it/s] 56%|█████▌ | 14/25 [00:00<00:00, 68.95it/s] 84%|████████▍ | 21/25 [00:00<00:00, 69.08it/s] 100%|██████████| 25/25 [00:00<00:00, 69.10it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 14.79it/s] 40%|████ | 4/10 [00:00<00:00, 14.74it/s] 60%|██████ | 6/10 [00:00<00:00, 14.70it/s] 80%|████████ | 8/10 [00:00<00:00, 14.68it/s] 100%|██████████| 10/10 [00:00<00:00, 14.68it/s] 100%|██████████| 10/10 [00:00<00:00, 14.69it/s] frame_idx: 36 cond_prompt: a tiger in a suit uncond_prompt: low quality, bad image, cropped, out of frame seed: 35 prior_seed: 480883 angle: 0.0 zoom: 1.0 translation_x: 1.0 translation_y: -1.499995719581577 translation_z: 0.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 frame_idx: 36 cond_prompt: a tiger in a suit uncond_prompt: low quality, bad image, cropped, out of frame seed: 35 prior_seed: 480883 angle: 0.0 zoom: 1.0 translation_x: 1.0 translation_y: -1.499995719581577 translation_z: 0.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 49%|████▉ | 35/71 [00:54<00:46, 1.29s/it] 51%|█████ | 36/71 [00:54<00:33, 1.05it/s] 0%| | 0/25 [00:00<?, ?it/s] 28%|██▊ | 7/25 [00:00<00:00, 69.04it/s] 60%|██████ | 15/25 [00:00<00:00, 71.45it/s] 92%|█████████▏| 23/25 [00:00<00:00, 73.15it/s] 100%|██████████| 25/25 [00:00<00:00, 72.64it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 75.56it/s] 64%|██████▍ | 16/25 [00:00<00:00, 75.39it/s] 96%|█████████▌| 24/25 [00:00<00:00, 74.94it/s] 100%|██████████| 25/25 [00:00<00:00, 74.86it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 14.77it/s] 40%|████ | 4/10 [00:00<00:00, 14.72it/s] 60%|██████ | 6/10 [00:00<00:00, 14.70it/s] 80%|████████ | 8/10 [00:00<00:00, 14.70it/s] 100%|██████████| 10/10 [00:00<00:00, 14.69it/s] 100%|██████████| 10/10 [00:00<00:00, 14.70it/s] frame_idx: 38 cond_prompt: a tiger in a suit uncond_prompt: low quality, bad image, cropped, out of frame seed: 36 prior_seed: 480883 angle: 0.0 zoom: 1.0 translation_x: 1.0 translation_y: -1.449863128240335 translation_z: 0.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 frame_idx: 38 cond_prompt: a tiger in a suit uncond_prompt: low quality, bad image, cropped, out of frame seed: 36 prior_seed: 480883 angle: 0.0 zoom: 1.0 translation_x: 1.0 translation_y: -1.449863128240335 translation_z: 0.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 52%|█████▏ | 37/71 [00:56<00:43, 1.28s/it] 54%|█████▎ | 38/71 [00:57<00:31, 1.06it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 74.75it/s] 64%|██████▍ | 16/25 [00:00<00:00, 75.05it/s] 96%|█████████▌| 24/25 [00:00<00:00, 75.06it/s] 100%|██████████| 25/25 [00:00<00:00, 74.98it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 75.65it/s] 64%|██████▍ | 16/25 [00:00<00:00, 75.54it/s] 96%|█████████▌| 24/25 [00:00<00:00, 75.41it/s] 100%|██████████| 25/25 [00:00<00:00, 75.47it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 14.82it/s] 40%|████ | 4/10 [00:00<00:00, 14.71it/s] 60%|██████ | 6/10 [00:00<00:00, 14.64it/s] 80%|████████ | 8/10 [00:00<00:00, 14.62it/s] 100%|██████████| 10/10 [00:00<00:00, 14.64it/s] 100%|██████████| 10/10 [00:00<00:00, 14.65it/s] frame_idx: 40 cond_prompt: a tiger in a suit uncond_prompt: low quality, bad image, cropped, out of frame seed: 37 prior_seed: 480883 angle: 0.0 zoom: 1.0 translation_x: 1.0 translation_y: -1.3010243438437104 translation_z: 0.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 frame_idx: 40 cond_prompt: a tiger in a suit uncond_prompt: low quality, bad image, cropped, out of frame seed: 37 prior_seed: 480883 angle: 0.0 zoom: 1.0 translation_x: 1.0 translation_y: -1.3010243438437104 translation_z: 0.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 55%|█████▍ | 39/71 [00:59<00:40, 1.28s/it] 56%|█████▋ | 40/71 [00:59<00:29, 1.06it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 74.61it/s] 64%|██████▍ | 16/25 [00:00<00:00, 74.95it/s] 96%|█████████▌| 24/25 [00:00<00:00, 75.09it/s] 100%|██████████| 25/25 [00:00<00:00, 75.03it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 75.16it/s] 64%|██████▍ | 16/25 [00:00<00:00, 74.36it/s] 96%|█████████▌| 24/25 [00:00<00:00, 73.98it/s] 100%|██████████| 25/25 [00:00<00:00, 74.23it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 14.80it/s] 40%|████ | 4/10 [00:00<00:00, 14.69it/s] 60%|██████ | 6/10 [00:00<00:00, 14.68it/s] 80%|████████ | 8/10 [00:00<00:00, 14.67it/s] 100%|██████████| 10/10 [00:00<00:00, 14.66it/s] 100%|██████████| 10/10 [00:00<00:00, 14.67it/s] frame_idx: 42 cond_prompt: a tiger in a suit uncond_prompt: low quality, bad image, cropped, out of frame seed: 38 prior_seed: 480883 angle: 0.0 zoom: 1.0 translation_x: 1.0 translation_y: -1.0636122606633251 translation_z: 0.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 frame_idx: 42 cond_prompt: a tiger in a suit uncond_prompt: low quality, bad image, cropped, out of frame seed: 38 prior_seed: 480883 angle: 0.0 zoom: 1.0 translation_x: 1.0 translation_y: -1.0636122606633251 translation_z: 0.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 58%|█████▊ | 41/71 [01:01<00:38, 1.27s/it] 59%|█████▉ | 42/71 [01:01<00:27, 1.07it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 74.22it/s] 64%|██████▍ | 16/25 [00:00<00:00, 74.47it/s] 96%|█████████▌| 24/25 [00:00<00:00, 74.27it/s] 100%|██████████| 25/25 [00:00<00:00, 73.93it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 71.07it/s] 64%|██████▍ | 16/25 [00:00<00:00, 72.05it/s] 96%|█████████▌| 24/25 [00:00<00:00, 73.35it/s] 100%|██████████| 25/25 [00:00<00:00, 72.83it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 14.75it/s] 40%|████ | 4/10 [00:00<00:00, 14.72it/s] 60%|██████ | 6/10 [00:00<00:00, 14.70it/s] 80%|████████ | 8/10 [00:00<00:00, 14.67it/s] 100%|██████████| 10/10 [00:00<00:00, 14.66it/s] 100%|██████████| 10/10 [00:00<00:00, 14.67it/s] frame_idx: 44 cond_prompt: a tiger in a suit uncond_prompt: low quality, bad image, cropped, out of frame seed: 39 prior_seed: 480883 angle: 0.0 zoom: 1.0 translation_x: 1.0 translation_y: -0.7537898132959949 translation_z: 0.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 frame_idx: 44 cond_prompt: a tiger in a suit uncond_prompt: low quality, bad image, cropped, out of frame seed: 39 prior_seed: 480883 angle: 0.0 zoom: 1.0 translation_x: 1.0 translation_y: -0.7537898132959949 translation_z: 0.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 61%|██████ | 43/71 [01:03<00:35, 1.27s/it] 62%|██████▏ | 44/71 [01:03<00:25, 1.07it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 74.04it/s] 64%|██████▍ | 16/25 [00:00<00:00, 73.23it/s] 96%|█████████▌| 24/25 [00:00<00:00, 74.19it/s] 100%|██████████| 25/25 [00:00<00:00, 74.09it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 75.65it/s] 64%|██████▍ | 16/25 [00:00<00:00, 75.68it/s] 96%|█████████▌| 24/25 [00:00<00:00, 75.64it/s] 100%|██████████| 25/25 [00:00<00:00, 75.59it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 14.69it/s] 40%|████ | 4/10 [00:00<00:00, 14.61it/s] 60%|██████ | 6/10 [00:00<00:00, 14.62it/s] 80%|████████ | 8/10 [00:00<00:00, 14.64it/s] 100%|██████████| 10/10 [00:00<00:00, 14.64it/s] 100%|██████████| 10/10 [00:00<00:00, 14.63it/s] frame_idx: 46 cond_prompt: a tiger in a suit uncond_prompt: low quality, bad image, cropped, out of frame seed: 40 prior_seed: 480883 angle: 0.0 zoom: 1.0 translation_x: 1.0 translation_y: -0.3926496095245296 translation_z: 0.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 frame_idx: 46 cond_prompt: a tiger in a suit uncond_prompt: low quality, bad image, cropped, out of frame seed: 40 prior_seed: 480883 angle: 0.0 zoom: 1.0 translation_x: 1.0 translation_y: -0.3926496095245296 translation_z: 0.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 63%|██████▎ | 45/71 [01:05<00:32, 1.27s/it] 65%|██████▍ | 46/71 [01:05<00:23, 1.07it/s] 0%| | 0/25 [00:00<?, ?it/s] 28%|██▊ | 7/25 [00:00<00:00, 69.86it/s] 60%|██████ | 15/25 [00:00<00:00, 70.23it/s] 92%|█████████▏| 23/25 [00:00<00:00, 70.65it/s] 100%|██████████| 25/25 [00:00<00:00, 70.53it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 72.46it/s] 64%|██████▍ | 16/25 [00:00<00:00, 72.11it/s] 96%|█████████▌| 24/25 [00:00<00:00, 72.07it/s] 100%|██████████| 25/25 [00:00<00:00, 72.10it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 14.83it/s] 40%|████ | 4/10 [00:00<00:00, 14.70it/s] 60%|██████ | 6/10 [00:00<00:00, 14.65it/s] 80%|████████ | 8/10 [00:00<00:00, 14.64it/s] 100%|██████████| 10/10 [00:00<00:00, 14.65it/s] 100%|██████████| 10/10 [00:00<00:00, 14.66it/s] frame_idx: 48 cond_prompt: a tiger in a suit uncond_prompt: low quality, bad image, cropped, out of frame seed: 41 prior_seed: 480883 angle: 0.0 zoom: 1.0 translation_x: 1.0 translation_y: -0.004777952689706985 translation_z: 0.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 frame_idx: 48 cond_prompt: a tiger in a suit uncond_prompt: low quality, bad image, cropped, out of frame seed: 41 prior_seed: 480883 angle: 0.0 zoom: 1.0 translation_x: 1.0 translation_y: -0.004777952689706985 translation_z: 0.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 66%|██████▌ | 47/71 [01:07<00:30, 1.28s/it] 68%|██████▊ | 48/71 [01:08<00:21, 1.06it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 74.39it/s] 64%|██████▍ | 16/25 [00:00<00:00, 74.92it/s] 96%|█████████▌| 24/25 [00:00<00:00, 74.71it/s] 100%|██████████| 25/25 [00:00<00:00, 74.74it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 74.06it/s] 64%|██████▍ | 16/25 [00:00<00:00, 74.90it/s] 96%|█████████▌| 24/25 [00:00<00:00, 74.96it/s] 100%|██████████| 25/25 [00:00<00:00, 74.09it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 14.74it/s] 40%|████ | 4/10 [00:00<00:00, 14.67it/s] 60%|██████ | 6/10 [00:00<00:00, 14.64it/s] 80%|████████ | 8/10 [00:00<00:00, 14.63it/s] 100%|██████████| 10/10 [00:00<00:00, 14.63it/s] 100%|██████████| 10/10 [00:00<00:00, 14.64it/s] frame_idx: 50 cond_prompt: a tiger in a suit uncond_prompt: low quality, bad image, cropped, out of frame seed: 42 prior_seed: 480883 angle: 0.0 zoom: 1.0 translation_x: 1.0 translation_y: 0.3834189855536938 translation_z: 0.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 frame_idx: 50 cond_prompt: a tiger in a suit uncond_prompt: low quality, bad image, cropped, out of frame seed: 42 prior_seed: 480883 angle: 0.0 zoom: 1.0 translation_x: 1.0 translation_y: 0.3834189855536938 translation_z: 0.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 69%|██████▉ | 49/71 [01:10<00:28, 1.28s/it] 70%|███████ | 50/71 [01:10<00:19, 1.07it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 74.38it/s] 64%|██████▍ | 16/25 [00:00<00:00, 74.81it/s] 96%|█████████▌| 24/25 [00:00<00:00, 75.16it/s] 100%|██████████| 25/25 [00:00<00:00, 74.81it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 72.71it/s] 64%|██████▍ | 16/25 [00:00<00:00, 71.10it/s] 96%|█████████▌| 24/25 [00:00<00:00, 70.84it/s] 100%|██████████| 25/25 [00:00<00:00, 70.91it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 14.74it/s] 40%|████ | 4/10 [00:00<00:00, 14.71it/s] 60%|██████ | 6/10 [00:00<00:00, 14.68it/s] 80%|████████ | 8/10 [00:00<00:00, 14.69it/s] 100%|██████████| 10/10 [00:00<00:00, 14.68it/s] 100%|██████████| 10/10 [00:00<00:00, 14.69it/s] frame_idx: 52 cond_prompt: a tiger in a suit uncond_prompt: low quality, bad image, cropped, out of frame seed: 43 prior_seed: 480883 angle: 0.0 zoom: 1.0 translation_x: 1.0 translation_y: 0.7455128885022428 translation_z: 0.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 frame_idx: 52 cond_prompt: a tiger in a suit uncond_prompt: low quality, bad image, cropped, out of frame seed: 43 prior_seed: 480883 angle: 0.0 zoom: 1.0 translation_x: 1.0 translation_y: 0.7455128885022428 translation_z: 0.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 72%|███████▏ | 51/71 [01:12<00:25, 1.28s/it] 73%|███████▎ | 52/71 [01:12<00:17, 1.07it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 74.31it/s] 64%|██████▍ | 16/25 [00:00<00:00, 74.89it/s] 96%|█████████▌| 24/25 [00:00<00:00, 72.83it/s] 100%|██████████| 25/25 [00:00<00:00, 72.98it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 71.42it/s] 64%|██████▍ | 16/25 [00:00<00:00, 73.82it/s] 96%|█████████▌| 24/25 [00:00<00:00, 73.09it/s] 100%|██████████| 25/25 [00:00<00:00, 72.84it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 14.78it/s] 40%|████ | 4/10 [00:00<00:00, 14.68it/s] 60%|██████ | 6/10 [00:00<00:00, 14.67it/s] 80%|████████ | 8/10 [00:00<00:00, 14.60it/s] 100%|██████████| 10/10 [00:00<00:00, 14.63it/s] 100%|██████████| 10/10 [00:00<00:00, 14.64it/s] frame_idx: 54 cond_prompt: a tiger in a suit uncond_prompt: low quality, bad image, cropped, out of frame seed: 44 prior_seed: 480883 angle: 0.0 zoom: 1.0 translation_x: 1.0 translation_y: 1.056852525296656 translation_z: 0.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 frame_idx: 54 cond_prompt: a tiger in a suit uncond_prompt: low quality, bad image, cropped, out of frame seed: 44 prior_seed: 480883 angle: 0.0 zoom: 1.0 translation_x: 1.0 translation_y: 1.056852525296656 translation_z: 0.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 75%|███████▍ | 53/71 [01:14<00:22, 1.28s/it] 76%|███████▌ | 54/71 [01:14<00:15, 1.07it/s] 0%| | 0/25 [00:00<?, ?it/s] 28%|██▊ | 7/25 [00:00<00:00, 69.03it/s] 56%|█████▌ | 14/25 [00:00<00:00, 68.50it/s] 84%|████████▍ | 21/25 [00:00<00:00, 68.88it/s] 100%|██████████| 25/25 [00:00<00:00, 69.77it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 75.16it/s] 64%|██████▍ | 16/25 [00:00<00:00, 74.72it/s] 96%|█████████▌| 24/25 [00:00<00:00, 74.59it/s] 100%|██████████| 25/25 [00:00<00:00, 74.61it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 14.78it/s] 40%|████ | 4/10 [00:00<00:00, 14.69it/s] 60%|██████ | 6/10 [00:00<00:00, 14.67it/s] 80%|████████ | 8/10 [00:00<00:00, 14.67it/s] 100%|██████████| 10/10 [00:00<00:00, 14.65it/s] 100%|██████████| 10/10 [00:00<00:00, 14.66it/s] frame_idx: 56 cond_prompt: a tiger in a suit uncond_prompt: low quality, bad image, cropped, out of frame seed: 45 prior_seed: 480883 angle: 0.0 zoom: 1.0 translation_x: 1.0 translation_y: 1.2962419984093372 translation_z: 0.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 frame_idx: 56 cond_prompt: a tiger in a suit uncond_prompt: low quality, bad image, cropped, out of frame seed: 45 prior_seed: 480883 angle: 0.0 zoom: 1.0 translation_x: 1.0 translation_y: 1.2962419984093372 translation_z: 0.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 77%|███████▋ | 55/71 [01:16<00:20, 1.28s/it] 79%|███████▉ | 56/71 [01:16<00:14, 1.07it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 73.99it/s] 64%|██████▍ | 16/25 [00:00<00:00, 74.58it/s] 96%|█████████▌| 24/25 [00:00<00:00, 74.51it/s] 100%|██████████| 25/25 [00:00<00:00, 74.42it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 74.67it/s] 64%|██████▍ | 16/25 [00:00<00:00, 74.93it/s] 96%|█████████▌| 24/25 [00:00<00:00, 74.90it/s] 100%|██████████| 25/25 [00:00<00:00, 74.90it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 14.73it/s] 40%|████ | 4/10 [00:00<00:00, 14.68it/s] 60%|██████ | 6/10 [00:00<00:00, 14.65it/s] 80%|████████ | 8/10 [00:00<00:00, 14.65it/s] 100%|██████████| 10/10 [00:00<00:00, 14.64it/s] 100%|██████████| 10/10 [00:00<00:00, 14.65it/s] frame_idx: 58 cond_prompt: a tiger in a suit uncond_prompt: low quality, bad image, cropped, out of frame seed: 46 prior_seed: 480883 angle: 0.0 zoom: 1.0 translation_x: 1.0 translation_y: 1.4473837532034117 translation_z: 0.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 frame_idx: 58 cond_prompt: a tiger in a suit uncond_prompt: low quality, bad image, cropped, out of frame seed: 46 prior_seed: 480883 angle: 0.0 zoom: 1.0 translation_x: 1.0 translation_y: 1.4473837532034117 translation_z: 0.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 80%|████████ | 57/71 [01:18<00:17, 1.27s/it] 82%|████████▏ | 58/71 [01:19<00:12, 1.07it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 73.33it/s] 64%|██████▍ | 16/25 [00:00<00:00, 71.45it/s] 96%|█████████▌| 24/25 [00:00<00:00, 73.06it/s] 100%|██████████| 25/25 [00:00<00:00, 72.68it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 75.28it/s] 64%|██████▍ | 16/25 [00:00<00:00, 72.49it/s] 96%|█████████▌| 24/25 [00:00<00:00, 70.68it/s] 100%|██████████| 25/25 [00:00<00:00, 71.40it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 14.80it/s] 40%|████ | 4/10 [00:00<00:00, 14.71it/s] 60%|██████ | 6/10 [00:00<00:00, 14.68it/s] 80%|████████ | 8/10 [00:00<00:00, 14.66it/s] 100%|██████████| 10/10 [00:00<00:00, 14.65it/s] 100%|██████████| 10/10 [00:00<00:00, 14.66it/s] frame_idx: 60 cond_prompt: a tiger in a suit uncond_prompt: low quality, bad image, cropped, out of frame seed: 47 prior_seed: 480883 angle: 0.0 zoom: 1.0 translation_x: 1.0 translation_y: 1.499988109958878 translation_z: 0.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 frame_idx: 60 cond_prompt: a tiger in a suit uncond_prompt: low quality, bad image, cropped, out of frame seed: 47 prior_seed: 480883 angle: 0.0 zoom: 1.0 translation_x: 1.0 translation_y: 1.499988109958878 translation_z: 0.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 83%|████████▎ | 59/71 [01:21<00:15, 1.28s/it] 85%|████████▍ | 60/71 [01:21<00:10, 1.07it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 72.00it/s] 64%|██████▍ | 16/25 [00:00<00:00, 72.45it/s] 96%|█████████▌| 24/25 [00:00<00:00, 72.83it/s] 100%|██████████| 25/25 [00:00<00:00, 72.54it/s] 0%| | 0/25 [00:00<?, ?it/s] 28%|██▊ | 7/25 [00:00<00:00, 66.37it/s] 60%|██████ | 15/25 [00:00<00:00, 69.70it/s] 92%|█████████▏| 23/25 [00:00<00:00, 71.87it/s] 100%|██████████| 25/25 [00:00<00:00, 71.26it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 14.77it/s] 40%|████ | 4/10 [00:00<00:00, 14.66it/s] 60%|██████ | 6/10 [00:00<00:00, 14.60it/s] 80%|████████ | 8/10 [00:00<00:00, 14.59it/s] 100%|██████████| 10/10 [00:00<00:00, 14.60it/s] 100%|██████████| 10/10 [00:00<00:00, 14.61it/s] frame_idx: 62 cond_prompt: a tiger in a suit uncond_prompt: low quality, bad image, cropped, out of frame seed: 48 prior_seed: 480883 angle: 0.0 zoom: 1.0 translation_x: 1.0 translation_y: 1.4504737817995323 translation_z: 0.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 frame_idx: 62 cond_prompt: a tiger in a suit uncond_prompt: low quality, bad image, cropped, out of frame seed: 48 prior_seed: 480883 angle: 0.0 zoom: 1.0 translation_x: 1.0 translation_y: 1.4504737817995323 translation_z: 0.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 86%|████████▌ | 61/71 [01:23<00:12, 1.28s/it] 87%|████████▋ | 62/71 [01:23<00:08, 1.06it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 70.62it/s] 64%|██████▍ | 16/25 [00:00<00:00, 69.57it/s] 92%|█████████▏| 23/25 [00:00<00:00, 68.51it/s] 100%|██████████| 25/25 [00:00<00:00, 68.96it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 74.55it/s] 64%|██████▍ | 16/25 [00:00<00:00, 74.39it/s] 96%|█████████▌| 24/25 [00:00<00:00, 74.47it/s] 100%|██████████| 25/25 [00:00<00:00, 74.42it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 14.76it/s] 40%|████ | 4/10 [00:00<00:00, 14.66it/s] 60%|██████ | 6/10 [00:00<00:00, 14.62it/s] 80%|████████ | 8/10 [00:00<00:00, 14.60it/s] 100%|██████████| 10/10 [00:00<00:00, 14.59it/s] 100%|██████████| 10/10 [00:00<00:00, 14.61it/s] frame_idx: 64 cond_prompt: a tiger in a suit uncond_prompt: low quality, bad image, cropped, out of frame seed: 49 prior_seed: 480883 angle: 0.0 zoom: 1.0 translation_x: 1.0 translation_y: 1.3022116874963312 translation_z: 0.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 frame_idx: 64 cond_prompt: a tiger in a suit uncond_prompt: low quality, bad image, cropped, out of frame seed: 49 prior_seed: 480883 angle: 0.0 zoom: 1.0 translation_x: 1.0 translation_y: 1.3022116874963312 translation_z: 0.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 89%|████████▊ | 63/71 [01:25<00:10, 1.29s/it] 90%|█████████ | 64/71 [01:25<00:06, 1.06it/s] 0%| | 0/25 [00:00<?, ?it/s] 28%|██▊ | 7/25 [00:00<00:00, 68.62it/s] 56%|█████▌ | 14/25 [00:00<00:00, 68.56it/s] 88%|████████▊ | 22/25 [00:00<00:00, 70.37it/s] 100%|██████████| 25/25 [00:00<00:00, 69.71it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 74.06it/s] 64%|██████▍ | 16/25 [00:00<00:00, 73.46it/s] 96%|█████████▌| 24/25 [00:00<00:00, 74.09it/s] 100%|██████████| 25/25 [00:00<00:00, 73.94it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 14.73it/s] 40%|████ | 4/10 [00:00<00:00, 14.64it/s] 60%|██████ | 6/10 [00:00<00:00, 14.60it/s] 80%|████████ | 8/10 [00:00<00:00, 14.59it/s] 100%|██████████| 10/10 [00:00<00:00, 14.59it/s] 100%|██████████| 10/10 [00:00<00:00, 14.60it/s] frame_idx: 66 cond_prompt: a tiger in a suit uncond_prompt: low quality, bad image, cropped, out of frame seed: 50 prior_seed: 480883 angle: 0.0 zoom: 1.0 translation_x: 1.0 translation_y: 1.0652954604537248 translation_z: 0.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 frame_idx: 66 cond_prompt: a tiger in a suit uncond_prompt: low quality, bad image, cropped, out of frame seed: 50 prior_seed: 480883 angle: 0.0 zoom: 1.0 translation_x: 1.0 translation_y: 1.0652954604537248 translation_z: 0.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 92%|█████████▏| 65/71 [01:27<00:07, 1.29s/it] 93%|█████████▎| 66/71 [01:28<00:04, 1.05it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 72.25it/s] 64%|██████▍ | 16/25 [00:00<00:00, 70.72it/s] 96%|█████████▌| 24/25 [00:00<00:00, 71.45it/s] 100%|██████████| 25/25 [00:00<00:00, 71.12it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 74.91it/s] 64%|██████▍ | 16/25 [00:00<00:00, 73.46it/s] 96%|█████████▌| 24/25 [00:00<00:00, 72.41it/s] 100%|██████████| 25/25 [00:00<00:00, 72.75it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 14.76it/s] 40%|████ | 4/10 [00:00<00:00, 14.69it/s] 60%|██████ | 6/10 [00:00<00:00, 14.68it/s] 80%|████████ | 8/10 [00:00<00:00, 14.66it/s] 100%|██████████| 10/10 [00:00<00:00, 14.67it/s] 100%|██████████| 10/10 [00:00<00:00, 14.67it/s] frame_idx: 68 cond_prompt: a tiger in a suit uncond_prompt: low quality, bad image, cropped, out of frame seed: 51 prior_seed: 480883 angle: 0.0 zoom: 1.0 translation_x: 1.0 translation_y: 0.7558542775498109 translation_z: 0.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 frame_idx: 68 cond_prompt: a tiger in a suit uncond_prompt: low quality, bad image, cropped, out of frame seed: 51 prior_seed: 480883 angle: 0.0 zoom: 1.0 translation_x: 1.0 translation_y: 0.7558542775498109 translation_z: 0.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 94%|█████████▍| 67/71 [01:30<00:05, 1.29s/it] 96%|█████████▌| 68/71 [01:30<00:02, 1.05it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 74.98it/s] 64%|██████▍ | 16/25 [00:00<00:00, 74.62it/s] 96%|█████████▌| 24/25 [00:00<00:00, 74.83it/s] 100%|██████████| 25/25 [00:00<00:00, 74.84it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 75.59it/s] 64%|██████▍ | 16/25 [00:00<00:00, 71.87it/s] 96%|█████████▌| 24/25 [00:00<00:00, 72.35it/s] 100%|██████████| 25/25 [00:00<00:00, 72.70it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 14.74it/s] 40%|████ | 4/10 [00:00<00:00, 14.67it/s] 60%|██████ | 6/10 [00:00<00:00, 14.67it/s] 80%|████████ | 8/10 [00:00<00:00, 14.67it/s] 100%|██████████| 10/10 [00:00<00:00, 14.66it/s] 100%|██████████| 10/10 [00:00<00:00, 14.66it/s] frame_idx: 70 cond_prompt: a tiger in a suit uncond_prompt: low quality, bad image, cropped, out of frame seed: 52 prior_seed: 480883 angle: 0.0 zoom: 1.0 translation_x: 1.0 translation_y: 0.3949547902112447 translation_z: 0.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 frame_idx: 70 cond_prompt: a tiger in a suit uncond_prompt: low quality, bad image, cropped, out of frame seed: 52 prior_seed: 480883 angle: 0.0 zoom: 1.0 translation_x: 1.0 translation_y: 0.3949547902112447 translation_z: 0.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 97%|█████████▋| 69/71 [01:32<00:02, 1.28s/it] 99%|█████████▊| 70/71 [01:32<00:00, 1.06it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 74.48it/s] 64%|██████▍ | 16/25 [00:00<00:00, 74.95it/s] 96%|█████████▌| 24/25 [00:00<00:00, 74.97it/s] 100%|██████████| 25/25 [00:00<00:00, 74.92it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 71.00it/s] 64%|██████▍ | 16/25 [00:00<00:00, 72.74it/s] 96%|█████████▌| 24/25 [00:00<00:00, 73.84it/s] 100%|██████████| 25/25 [00:00<00:00, 73.29it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 14.74it/s] 40%|████ | 4/10 [00:00<00:00, 14.67it/s] 60%|██████ | 6/10 [00:00<00:00, 14.65it/s] 80%|████████ | 8/10 [00:00<00:00, 14.63it/s] 100%|██████████| 10/10 [00:00<00:00, 14.63it/s] 100%|██████████| 10/10 [00:00<00:00, 14.64it/s] 99%|█████████▊| 70/71 [01:34<00:01, 1.35s/it] 0%| | 0/70 [00:00<?, ?it/s] 1%|▏ | 1/70 [00:00<00:10, 6.43it/s] 60%|██████ | 42/70 [00:00<00:00, 198.45it/s] 96%|█████████▌| 67/70 [00:00<00:00, 120.92it/s] 100%|██████████| 70/70 [00:00<00:00, 120.18it/s]
Prediction
adirik/deforum-kandinsky-2-2:550e576a484886c105a5cf4ff09ac746e691ab473d12a6afe14eed23bc3bbe42IDlg3nartb7abfqcc4ysbsyuftomStatusSucceededSourceWebHardwareA40Total durationCreatedInput
- fps
- 24
- seed
- 17
- steps
- 80
- width
- 1024
- height
- 512
- scheduler
- euler_ancestral
- animations
- zoomin | rotate_right | down
- max_frames
- 72
- prompt_durations
- 1.6 | 0.7 | 0.7
- animation_prompts
- an alien world in the style of hr giger | an alien world with two suns rising in the background | an alien world with mossy terrain and steep mountains
{ "fps": 24, "seed": 17, "steps": 80, "width": 1024, "height": 512, "scheduler": "euler_ancestral", "animations": "zoomin | rotate_right | down", "max_frames": 72, "prompt_durations": "1.6 | 0.7 | 0.7", "animation_prompts": "an alien world in the style of hr giger | an alien world with two suns rising in the background | an alien world with mossy terrain and steep mountains" }
Install Replicate’s Node.js client library:npm install replicate
Import and set up the client:import Replicate from "replicate"; const replicate = new Replicate({ auth: process.env.REPLICATE_API_TOKEN, });
Run adirik/deforum-kandinsky-2-2 using Replicate’s API. Check out the model's schema for an overview of inputs and outputs.
const output = await replicate.run( "adirik/deforum-kandinsky-2-2:550e576a484886c105a5cf4ff09ac746e691ab473d12a6afe14eed23bc3bbe42", { input: { fps: 24, seed: 17, steps: 80, width: 1024, height: 512, scheduler: "euler_ancestral", animations: "zoomin | rotate_right | down", max_frames: 72, prompt_durations: "1.6 | 0.7 | 0.7", animation_prompts: "an alien world in the style of hr giger | an alien world with two suns rising in the background | an alien world with mossy terrain and steep mountains" } } ); // To access the file URL: console.log(output.url()); //=> "http://example.com" // To write the file to disk: fs.writeFile("my-image.png", output);
To learn more, take a look at the guide on getting started with Node.js.
Install Replicate’s Python client library:pip install replicate
Import the client:import replicate
Run adirik/deforum-kandinsky-2-2 using Replicate’s API. Check out the model's schema for an overview of inputs and outputs.
output = replicate.run( "adirik/deforum-kandinsky-2-2:550e576a484886c105a5cf4ff09ac746e691ab473d12a6afe14eed23bc3bbe42", input={ "fps": 24, "seed": 17, "steps": 80, "width": 1024, "height": 512, "scheduler": "euler_ancestral", "animations": "zoomin | rotate_right | down", "max_frames": 72, "prompt_durations": "1.6 | 0.7 | 0.7", "animation_prompts": "an alien world in the style of hr giger | an alien world with two suns rising in the background | an alien world with mossy terrain and steep mountains" } ) print(output)
To learn more, take a look at the guide on getting started with Python.
Run adirik/deforum-kandinsky-2-2 using Replicate’s API. Check out the model's schema for an overview of inputs and outputs.
curl -s -X POST \ -H "Authorization: Bearer $REPLICATE_API_TOKEN" \ -H "Content-Type: application/json" \ -H "Prefer: wait" \ -d $'{ "version": "adirik/deforum-kandinsky-2-2:550e576a484886c105a5cf4ff09ac746e691ab473d12a6afe14eed23bc3bbe42", "input": { "fps": 24, "seed": 17, "steps": 80, "width": 1024, "height": 512, "scheduler": "euler_ancestral", "animations": "zoomin | rotate_right | down", "max_frames": 72, "prompt_durations": "1.6 | 0.7 | 0.7", "animation_prompts": "an alien world in the style of hr giger | an alien world with two suns rising in the background | an alien world with mossy terrain and steep mountains" } }' \ https://api.replicate.com/v1/predictions
To learn more, take a look at Replicate’s HTTP API reference docs.
Output
{ "completed_at": "2023-10-17T16:43:37.747422Z", "created_at": "2023-10-17T16:41:50.430870Z", "data_removed": false, "error": null, "id": "lg3nartb7abfqcc4ysbsyuftom", "input": { "fps": 24, "seed": 17, "steps": 80, "width": 1024, "height": 512, "scheduler": "euler_ancestral", "animations": "zoomin | rotate_right | down", "max_frames": 72, "prompt_durations": "1.6 | 0.7 | 0.7", "animation_prompts": "an alien world in the style of hr giger | an alien world with two suns rising in the background | an alien world with mossy terrain and steep mountains" }, "logs": "0%| | 0/71 [00:00<?, ?it/s]/src/deforum_kandinsky/helpers/animation.py:322: FutureWarning: Setting an item of incompatible dtype is deprecated and will raise in a future error of pandas. Value 'euler' has dtype incompatible with float64, please explicitly cast to a compatible dtype first.\nkey_frame_series[i] = numexpr.evaluate(value) if not is_single_string else value # workaround for values formatted like 0:(\"I am test\") //used for sampler schedules\n/src/deforum_kandinsky/helpers/animation.py:332: FutureWarning: Series.interpolate with object dtype is deprecated and will raise in a future version. Call obj.infer_objects(copy=False) before interpolating instead.\nkey_frame_series = key_frame_series.interpolate(method=interp_method.lower(), limit_direction='both')\n/src/deforum_kandinsky/helpers/render.py:242: FutureWarning: Setting an item of incompatible dtype is deprecated and will raise in a future error of pandas. Value 'an alien world in the style of hr giger' has dtype incompatible with float64, please explicitly cast to a compatible dtype first.\ncond_prompt_series[int(i)] = prompt\n/src/deforum_kandinsky/helpers/render.py:248: FutureWarning: Setting an item of incompatible dtype is deprecated and will raise in a future error of pandas. Value 'low quality, bad image, cropped, out of frame' has dtype incompatible with float64, please explicitly cast to a compatible dtype first.\nuncond_prompt_series[int(i)] = prompt\nUsing cache found in torch-cache/hub/rwightman_gen-efficientnet-pytorch_master\nLoading base model ()...Done.\nRemoving last two layers (global_pool & classifier).\nBuilding Encoder-Decoder model..Done.\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 75.09it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 75.35it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 73.93it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 74.14it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 28%|██▊ | 7/25 [00:00<00:00, 66.95it/s]\u001b[A\n 60%|██████ | 15/25 [00:00<00:00, 69.84it/s]\u001b[A\n 92%|█████████▏| 23/25 [00:00<00:00, 71.96it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 71.41it/s]\n 0%| | 0/80 [00:00<?, ?it/s]\u001b[A\n 1%|▏ | 1/80 [00:00<00:08, 8.78it/s]\u001b[A\n 4%|▍ | 3/80 [00:00<00:06, 11.18it/s]\u001b[A\n 6%|▋ | 5/80 [00:00<00:06, 11.74it/s]\u001b[A\n 9%|▉ | 7/80 [00:00<00:06, 11.96it/s]\u001b[A\n 11%|█▏ | 9/80 [00:00<00:05, 12.09it/s]\u001b[A\n 14%|█▍ | 11/80 [00:00<00:05, 12.18it/s]\u001b[A\n 16%|█▋ | 13/80 [00:01<00:05, 12.23it/s]\u001b[A\n 19%|█▉ | 15/80 [00:01<00:05, 12.25it/s]\u001b[A\n 21%|██▏ | 17/80 [00:01<00:05, 12.27it/s]\u001b[A\n 24%|██▍ | 19/80 [00:01<00:04, 12.27it/s]\u001b[A\n 26%|██▋ | 21/80 [00:01<00:04, 12.28it/s]\u001b[A\n 29%|██▉ | 23/80 [00:01<00:04, 12.29it/s]\u001b[A\n 31%|███▏ | 25/80 [00:02<00:04, 12.29it/s]\u001b[A\n 34%|███▍ | 27/80 [00:02<00:04, 12.28it/s]\u001b[A\n 36%|███▋ | 29/80 [00:02<00:04, 12.26it/s]\u001b[A\n 39%|███▉ | 31/80 [00:02<00:03, 12.26it/s]\u001b[A\n 41%|████▏ | 33/80 [00:02<00:03, 12.26it/s]\u001b[A\n 44%|████▍ | 35/80 [00:02<00:03, 12.26it/s]\u001b[A\n 46%|████▋ | 37/80 [00:03<00:03, 12.26it/s]\u001b[A\n 49%|████▉ | 39/80 [00:03<00:03, 12.27it/s]\u001b[A\n 51%|█████▏ | 41/80 [00:03<00:03, 12.26it/s]\u001b[A\n 54%|█████▍ | 43/80 [00:03<00:03, 12.25it/s]\u001b[A\n 56%|█████▋ | 45/80 [00:03<00:02, 12.24it/s]\u001b[A\n 59%|█████▉ | 47/80 [00:03<00:02, 12.26it/s]\u001b[A\n 61%|██████▏ | 49/80 [00:04<00:02, 12.25it/s]\u001b[A\n 64%|██████▍ | 51/80 [00:04<00:02, 12.26it/s]\u001b[A\n 66%|██████▋ | 53/80 [00:04<00:02, 12.28it/s]\u001b[A\n 69%|██████▉ | 55/80 [00:04<00:02, 12.28it/s]\u001b[A\n 71%|███████▏ | 57/80 [00:04<00:01, 12.29it/s]\u001b[A\n 74%|███████▍ | 59/80 [00:04<00:01, 12.29it/s]\u001b[A\n 76%|███████▋ | 61/80 [00:04<00:01, 12.31it/s]\u001b[A\n 79%|███████▉ | 63/80 [00:05<00:01, 12.31it/s]\u001b[A\n 81%|████████▏ | 65/80 [00:05<00:01, 12.32it/s]\u001b[A\n 84%|████████▍ | 67/80 [00:05<00:01, 12.32it/s]\u001b[A\n 86%|████████▋ | 69/80 [00:05<00:00, 12.33it/s]\u001b[A\n 89%|████████▉ | 71/80 [00:05<00:00, 12.33it/s]\u001b[A\n 91%|█████████▏| 73/80 [00:05<00:00, 12.34it/s]\u001b[A\n 94%|█████████▍| 75/80 [00:06<00:00, 12.34it/s]\u001b[A\n 96%|█████████▋| 77/80 [00:06<00:00, 12.33it/s]\u001b[A\n 99%|█████████▉| 79/80 [00:06<00:00, 12.33it/s]\u001b[A\n100%|██████████| 80/80 [00:06<00:00, 12.24it/s]\nresized to 1000x500\n/root/.pyenv/versions/3.10.13/lib/python3.10/site-packages/torchvision/transforms/functional.py:1603: UserWarning: The default value of the antialias parameter of all the resizing transforms (Resize(), RandomResizedCrop(), etc.) will change from None to True in v0.17, in order to be consistent across the PIL and Tensor backends. To suppress this warning, directly pass antialias=True (recommended, future default), antialias=None (current default, which means False for Tensors and True for PIL), or antialias=False (only works on Tensors - PIL will still use antialiasing). This also applies if you are using the inference transforms from the models weights: update the call to weights.transforms(antialias=True).\nwarnings.warn(\nframe_idx: 2\ncond_prompt: an alien world in the style of hr giger\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 18\nprior_seed: 281350\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: -0.03636363636363636\ntranslation_z: 0.9473684210526316\nrotation_x: 0.0\nrotation_y: 0.05263157894736842\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nresized to 1000x500\nframe_idx: 2\ncond_prompt: an alien world in the style of hr giger\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 18\nprior_seed: 281350\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: -0.03636363636363636\ntranslation_z: 0.9473684210526316\nrotation_x: 0.0\nrotation_y: 0.05263157894736842\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 1%|▏ | 1/71 [00:14<16:29, 14.13s/it]\nresized to 1000x500\n 3%|▎ | 2/71 [00:14<06:48, 5.92s/it]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 70.87it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 71.47it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 73.31it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 72.84it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 75.58it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 74.56it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 74.31it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 74.36it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 12.41it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 12.34it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 12.34it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 12.35it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 12.34it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 12.35it/s]\nresized to 1000x500\nframe_idx: 4\ncond_prompt: an alien world in the style of hr giger\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 19\nprior_seed: 281350\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: -0.07272727272727272\ntranslation_z: 0.8947368421052632\nrotation_x: 0.0\nrotation_y: 0.10526315789473684\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nresized to 1000x500\nframe_idx: 4\ncond_prompt: an alien world in the style of hr giger\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 19\nprior_seed: 281350\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: -0.07272727272727272\ntranslation_z: 0.8947368421052632\nrotation_x: 0.0\nrotation_y: 0.10526315789473684\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 4%|▍ | 3/71 [00:16<04:52, 4.30s/it]\nresized to 1000x500\n 6%|▌ | 4/71 [00:16<02:59, 2.68s/it]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 75.04it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 75.38it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 75.48it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 75.42it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 70.82it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 70.90it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 70.75it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 70.75it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 12.38it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 12.34it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 12.32it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 12.31it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 12.32it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 12.32it/s]\nresized to 1000x500\nframe_idx: 6\ncond_prompt: an alien world in the style of hr giger\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 20\nprior_seed: 281350\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: -0.10909090909090909\ntranslation_z: 0.8421052631578947\nrotation_x: 0.0\nrotation_y: 0.15789473684210525\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nresized to 1000x500\nframe_idx: 6\ncond_prompt: an alien world in the style of hr giger\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 20\nprior_seed: 281350\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: -0.10909090909090909\ntranslation_z: 0.8421052631578947\nrotation_x: 0.0\nrotation_y: 0.15789473684210525\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 7%|▋ | 5/71 [00:19<02:49, 2.57s/it]\nresized to 1000x500\n 8%|▊ | 6/71 [00:19<01:54, 1.76s/it]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 70.22it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 72.25it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 73.54it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 73.01it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 74.95it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 75.19it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 73.94it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 74.24it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 12.38it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 12.33it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 12.32it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 12.31it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 12.30it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 12.31it/s]\nresized to 1000x500\nframe_idx: 8\ncond_prompt: an alien world in the style of hr giger\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 21\nprior_seed: 281350\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: -0.14545454545454545\ntranslation_z: 0.7894736842105263\nrotation_x: 0.0\nrotation_y: 0.21052631578947367\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nresized to 1000x500\nframe_idx: 8\ncond_prompt: an alien world in the style of hr giger\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 21\nprior_seed: 281350\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: -0.14545454545454545\ntranslation_z: 0.7894736842105263\nrotation_x: 0.0\nrotation_y: 0.21052631578947367\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 10%|▉ | 7/71 [00:21<02:05, 1.96s/it]\nresized to 1000x500\n 11%|█▏ | 8/71 [00:21<01:27, 1.40s/it]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 74.80it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 71.69it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 70.84it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 71.28it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 28%|██▊ | 7/25 [00:00<00:00, 68.32it/s]\u001b[A\n 60%|██████ | 15/25 [00:00<00:00, 71.98it/s]\u001b[A\n 92%|█████████▏| 23/25 [00:00<00:00, 73.50it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 72.50it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 12.36it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 12.33it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 12.32it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 12.30it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 12.29it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 12.30it/s]\nresized to 1000x500\nframe_idx: 10\ncond_prompt: an alien world in the style of hr giger\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 22\nprior_seed: 281350\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: -0.18181818181818182\ntranslation_z: 0.736842105263158\nrotation_x: 0.0\nrotation_y: 0.2631578947368421\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nresized to 1000x500\nframe_idx: 10\ncond_prompt: an alien world in the style of hr giger\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 22\nprior_seed: 281350\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: -0.18181818181818182\ntranslation_z: 0.736842105263158\nrotation_x: 0.0\nrotation_y: 0.2631578947368421\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 13%|█▎ | 9/71 [00:24<01:45, 1.71s/it]\nresized to 1000x500\n 14%|█▍ | 10/71 [00:24<01:15, 1.24s/it]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 75.10it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 74.57it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 74.78it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 74.41it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 72.35it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 72.64it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 72.38it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 72.49it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 12.38it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 12.33it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 12.31it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 12.32it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 12.30it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 12.31it/s]\nresized to 1000x500\nframe_idx: 12\ncond_prompt: an alien world in the style of hr giger\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 23\nprior_seed: 281350\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: -0.21818181818181817\ntranslation_z: 0.6842105263157895\nrotation_x: 0.0\nrotation_y: 0.3157894736842105\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nresized to 1000x500\nframe_idx: 12\ncond_prompt: an alien world in the style of hr giger\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 23\nprior_seed: 281350\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: -0.21818181818181817\ntranslation_z: 0.6842105263157895\nrotation_x: 0.0\nrotation_y: 0.3157894736842105\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 15%|█▌ | 11/71 [00:26<01:35, 1.59s/it]\nresized to 1000x500\n 17%|█▋ | 12/71 [00:27<01:08, 1.16s/it]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 75.18it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 72.06it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 71.32it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 71.51it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 70.82it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 70.65it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 72.89it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 72.36it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 12.39it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 12.31it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 12.30it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 12.31it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 12.30it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 12.31it/s]\nresized to 1000x500\nframe_idx: 14\ncond_prompt: an alien world in the style of hr giger\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 24\nprior_seed: 281350\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: -0.2545454545454545\ntranslation_z: 0.631578947368421\nrotation_x: 0.0\nrotation_y: 0.3684210526315789\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nresized to 1000x500\nframe_idx: 14\ncond_prompt: an alien world in the style of hr giger\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 24\nprior_seed: 281350\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: -0.2545454545454545\ntranslation_z: 0.631578947368421\nrotation_x: 0.0\nrotation_y: 0.3684210526315789\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 18%|█▊ | 13/71 [00:29<01:29, 1.54s/it]\nresized to 1000x500\n 20%|█▉ | 14/71 [00:29<01:04, 1.13s/it]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 74.99it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 74.92it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 74.95it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 74.73it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 75.55it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 75.23it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 72.95it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 73.58it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 12.34it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 12.31it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 12.30it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 12.29it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 12.28it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 12.29it/s]\nresized to 1000x500\nframe_idx: 16\ncond_prompt: an alien world in the style of hr giger\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 25\nprior_seed: 281350\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: -0.2909090909090909\ntranslation_z: 0.5789473684210527\nrotation_x: 0.0\nrotation_y: 0.42105263157894735\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nresized to 1000x500\nframe_idx: 16\ncond_prompt: an alien world in the style of hr giger\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 25\nprior_seed: 281350\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: -0.2909090909090909\ntranslation_z: 0.5789473684210527\nrotation_x: 0.0\nrotation_y: 0.42105263157894735\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 21%|██ | 15/71 [00:32<01:24, 1.50s/it]\nresized to 1000x500\n 23%|██▎ | 16/71 [00:32<01:00, 1.11s/it]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 28%|██▊ | 7/25 [00:00<00:00, 68.19it/s]\u001b[A\n 56%|█████▌ | 14/25 [00:00<00:00, 69.10it/s]\u001b[A\n 88%|████████▊ | 22/25 [00:00<00:00, 71.09it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 70.76it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 72.65it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 73.43it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 72.21it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 72.50it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 12.38it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 12.30it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 12.29it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 12.29it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 12.30it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 12.30it/s]\nresized to 1000x500\nframe_idx: 18\ncond_prompt: an alien world in the style of hr giger\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 26\nprior_seed: 281350\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: -0.32727272727272727\ntranslation_z: 0.5263157894736843\nrotation_x: 0.0\nrotation_y: 0.47368421052631576\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nresized to 1000x500\nframe_idx: 18\ncond_prompt: an alien world in the style of hr giger\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 26\nprior_seed: 281350\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: -0.32727272727272727\ntranslation_z: 0.5263157894736843\nrotation_x: 0.0\nrotation_y: 0.47368421052631576\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 24%|██▍ | 17/71 [00:34<01:20, 1.49s/it]\nresized to 1000x500\n 25%|██▌ | 18/71 [00:34<00:58, 1.10s/it]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 74.73it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 74.82it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 75.08it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 74.79it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 72.66it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 72.15it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 73.57it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 73.23it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 12.38it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 12.34it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 12.32it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 12.30it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 12.29it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 12.30it/s]\nresized to 1000x500\nframe_idx: 20\ncond_prompt: an alien world in the style of hr giger\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 27\nprior_seed: 281350\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: -0.36363636363636365\ntranslation_z: 0.4736842105263158\nrotation_x: 0.0\nrotation_y: 0.5263157894736842\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nresized to 1000x500\nframe_idx: 20\ncond_prompt: an alien world in the style of hr giger\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 27\nprior_seed: 281350\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: -0.36363636363636365\ntranslation_z: 0.4736842105263158\nrotation_x: 0.0\nrotation_y: 0.5263157894736842\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 27%|██▋ | 19/71 [00:37<01:17, 1.49s/it]\nresized to 1000x500\n 28%|██▊ | 20/71 [00:37<00:56, 1.10s/it]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 74.60it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 74.77it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 74.88it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 74.59it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 74.31it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 73.45it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 74.40it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 74.23it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 12.36it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 12.30it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 12.25it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 12.25it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 12.25it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 12.26it/s]\nresized to 1000x500\nframe_idx: 22\ncond_prompt: an alien world in the style of hr giger\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 28\nprior_seed: 281350\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: -0.39999999999999997\ntranslation_z: 0.42105263157894735\nrotation_x: 0.0\nrotation_y: 0.5789473684210527\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nresized to 1000x500\nframe_idx: 22\ncond_prompt: an alien world in the style of hr giger\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 28\nprior_seed: 281350\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: -0.39999999999999997\ntranslation_z: 0.42105263157894735\nrotation_x: 0.0\nrotation_y: 0.5789473684210527\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 30%|██▉ | 21/71 [00:39<01:14, 1.49s/it]\nresized to 1000x500\n 31%|███ | 22/71 [00:40<00:53, 1.10s/it]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 74.57it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 74.91it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 72.82it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 73.15it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 74.90it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 74.67it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 74.01it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 74.21it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 12.30it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 12.25it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 12.24it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 12.24it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 12.25it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 12.25it/s]\nresized to 1000x500\nframe_idx: 24\ncond_prompt: an alien world in the style of hr giger\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 29\nprior_seed: 281350\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: -0.43636363636363634\ntranslation_z: 0.368421052631579\nrotation_x: 0.0\nrotation_y: 0.631578947368421\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nresized to 1000x500\nframe_idx: 24\ncond_prompt: an alien world in the style of hr giger\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 29\nprior_seed: 281350\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: -0.43636363636363634\ntranslation_z: 0.368421052631579\nrotation_x: 0.0\nrotation_y: 0.631578947368421\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 32%|███▏ | 23/71 [00:42<01:11, 1.49s/it]\nresized to 1000x500\n 34%|███▍ | 24/71 [00:42<00:51, 1.10s/it]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 75.18it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 73.38it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 73.69it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 73.70it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 74.23it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 72.20it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 70.45it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 71.10it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 12.34it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 12.29it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 12.28it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 12.25it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 12.24it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 12.26it/s]\nresized to 1000x500\nframe_idx: 26\ncond_prompt: an alien world in the style of hr giger\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 30\nprior_seed: 281350\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: -0.4727272727272727\ntranslation_z: 0.3157894736842106\nrotation_x: 0.0\nrotation_y: 0.6842105263157894\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nresized to 1000x500\nframe_idx: 26\ncond_prompt: an alien world in the style of hr giger\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 30\nprior_seed: 281350\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: -0.4727272727272727\ntranslation_z: 0.3157894736842106\nrotation_x: 0.0\nrotation_y: 0.6842105263157894\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 35%|███▌ | 25/71 [00:45<01:08, 1.49s/it]\nresized to 1000x500\n 37%|███▋ | 26/71 [00:45<00:49, 1.10s/it]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 75.03it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 71.34it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 70.95it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 71.38it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 70.19it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 69.91it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 70.00it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 70.03it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 12.29it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 12.26it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 12.24it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 12.24it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 12.24it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 12.24it/s]\nresized to 1000x500\nframe_idx: 28\ncond_prompt: an alien world in the style of hr giger\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 31\nprior_seed: 281350\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: -0.509090909090909\ntranslation_z: 0.26315789473684215\nrotation_x: 0.0\nrotation_y: 0.7368421052631579\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nresized to 1000x500\nframe_idx: 28\ncond_prompt: an alien world in the style of hr giger\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 31\nprior_seed: 281350\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: -0.509090909090909\ntranslation_z: 0.26315789473684215\nrotation_x: 0.0\nrotation_y: 0.7368421052631579\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 38%|███▊ | 27/71 [00:47<01:05, 1.49s/it]\nresized to 1000x500\n 39%|███▉ | 28/71 [00:47<00:47, 1.10s/it]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 74.86it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 75.22it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 75.42it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 75.34it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 75.22it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 72.58it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 72.74it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 73.00it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 12.35it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 12.27it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 12.24it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 12.23it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 12.23it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 12.24it/s]\nresized to 1000x500\nframe_idx: 30\ncond_prompt: an alien world in the style of hr giger\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 32\nprior_seed: 281350\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: -0.5454545454545454\ntranslation_z: 0.21052631578947367\nrotation_x: 0.0\nrotation_y: 0.7894736842105263\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nresized to 1000x500\nframe_idx: 30\ncond_prompt: an alien world in the style of hr giger\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 32\nprior_seed: 281350\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: -0.5454545454545454\ntranslation_z: 0.21052631578947367\nrotation_x: 0.0\nrotation_y: 0.7894736842105263\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 41%|████ | 29/71 [00:50<01:02, 1.48s/it]\nresized to 1000x500\n 42%|████▏ | 30/71 [00:50<00:45, 1.10s/it]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 28%|██▊ | 7/25 [00:00<00:00, 69.85it/s]\u001b[A\n 56%|█████▌ | 14/25 [00:00<00:00, 69.93it/s]\u001b[A\n 88%|████████▊ | 22/25 [00:00<00:00, 70.98it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 70.45it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 75.59it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 75.43it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 73.45it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 73.79it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 12.32it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 12.27it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 12.27it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 12.27it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 12.26it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 12.26it/s]\nresized to 1000x500\nframe_idx: 32\ncond_prompt: an alien world in the style of hr giger\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 33\nprior_seed: 281350\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: -0.5818181818181818\ntranslation_z: 0.1578947368421053\nrotation_x: 0.0\nrotation_y: 0.8421052631578947\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nresized to 1000x500\nframe_idx: 32\ncond_prompt: an alien world in the style of hr giger\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 33\nprior_seed: 281350\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: -0.5818181818181818\ntranslation_z: 0.1578947368421053\nrotation_x: 0.0\nrotation_y: 0.8421052631578947\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 44%|████▎ | 31/71 [00:52<00:59, 1.49s/it]\nresized to 1000x500\n 45%|████▌ | 32/71 [00:53<00:43, 1.10s/it]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 75.41it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 75.15it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 75.16it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 74.73it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 71.34it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 71.23it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 72.52it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 72.27it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 12.30it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 12.24it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 12.22it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 12.22it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 12.21it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 12.22it/s]\nresized to 1000x500\nframe_idx: 34\ncond_prompt: an alien world in the style of hr giger\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 34\nprior_seed: 281350\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: -0.6181818181818182\ntranslation_z: 0.10526315789473695\nrotation_x: 0.0\nrotation_y: 0.894736842105263\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nresized to 1000x500\nframe_idx: 34\ncond_prompt: an alien world in the style of hr giger\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 34\nprior_seed: 281350\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: -0.6181818181818182\ntranslation_z: 0.10526315789473695\nrotation_x: 0.0\nrotation_y: 0.894736842105263\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 46%|████▋ | 33/71 [00:55<00:56, 1.49s/it]\nresized to 1000x500\n 48%|████▊ | 34/71 [00:55<00:40, 1.10s/it]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 74.90it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 75.03it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 74.97it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 74.58it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 75.75it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 75.35it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 75.13it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 75.08it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 12.32it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 12.25it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 12.23it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 12.23it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 12.24it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 12.24it/s]\nresized to 1000x500\nframe_idx: 36\ncond_prompt: an alien world in the style of hr giger\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 35\nprior_seed: 281350\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: -0.6545454545454545\ntranslation_z: 0.052631578947368474\nrotation_x: 0.0\nrotation_y: 0.9473684210526315\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nresized to 1000x500\nframe_idx: 36\ncond_prompt: an alien world in the style of hr giger\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 35\nprior_seed: 281350\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: -0.6545454545454545\ntranslation_z: 0.052631578947368474\nrotation_x: 0.0\nrotation_y: 0.9473684210526315\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 49%|████▉ | 35/71 [00:57<00:53, 1.49s/it]\nresized to 1000x500\n 51%|█████ | 36/71 [00:58<00:38, 1.10s/it]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 74.31it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 69.51it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 70.11it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 70.21it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 70.76it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 72.21it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 72.34it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 72.22it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 12.34it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 12.26it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 12.25it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 12.24it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 12.23it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 12.24it/s]\nresized to 1000x500\nframe_idx: 38\ncond_prompt: an alien world in the style of hr giger\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 36\nprior_seed: 281350\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: -0.6909090909090909\ntranslation_z: 0.0\nrotation_x: 0.0\nrotation_y: 1.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nresized to 1000x500\nframe_idx: 38\ncond_prompt: an alien world in the style of hr giger\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 36\nprior_seed: 281350\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: -0.6909090909090909\ntranslation_z: 0.0\nrotation_x: 0.0\nrotation_y: 1.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 52%|█████▏ | 37/71 [01:00<00:50, 1.49s/it]\nresized to 1000x500\n 54%|█████▎ | 38/71 [01:00<00:36, 1.10s/it]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 74.22it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 75.03it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 75.27it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 74.81it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 75.73it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 72.05it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 71.72it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 72.07it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 12.35it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 12.30it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 12.25it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 12.23it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 12.23it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 12.24it/s]\nresized to 1000x500\nframe_idx: 40\ncond_prompt: an alien world with two suns rising in the background\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 37\nprior_seed: 281350\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: -0.7272727272727273\ntranslation_z: 0.0\nrotation_x: 0.0\nrotation_y: 0.875\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nresized to 1000x500\nframe_idx: 40\ncond_prompt: an alien world with two suns rising in the background\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 37\nprior_seed: 281350\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: -0.7272727272727273\ntranslation_z: 0.0\nrotation_x: 0.0\nrotation_y: 0.875\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 55%|█████▍ | 39/71 [01:03<00:47, 1.49s/it]\nresized to 1000x500\n 56%|█████▋ | 40/71 [01:03<00:34, 1.11s/it]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 70.58it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 73.31it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 74.14it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 73.32it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 75.35it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 75.36it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 75.33it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 75.28it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 12.30it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 12.27it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 12.25it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 12.25it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 12.24it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 12.25it/s]\nresized to 1000x500\nframe_idx: 42\ncond_prompt: an alien world with two suns rising in the background\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 38\nprior_seed: 281350\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: -0.7636363636363636\ntranslation_z: 0.0\nrotation_x: 0.0\nrotation_y: 0.75\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nresized to 1000x500\nframe_idx: 42\ncond_prompt: an alien world with two suns rising in the background\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 38\nprior_seed: 281350\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: -0.7636363636363636\ntranslation_z: 0.0\nrotation_x: 0.0\nrotation_y: 0.75\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 58%|█████▊ | 41/71 [01:05<00:44, 1.49s/it]\nresized to 1000x500\n 59%|█████▉ | 42/71 [01:05<00:31, 1.10s/it]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 75.05it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 75.33it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 75.32it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 75.25it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 70.21it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 72.61it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 73.71it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 73.01it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 12.31it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 12.25it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 12.25it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 12.23it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 12.24it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 12.24it/s]\nresized to 1000x500\nframe_idx: 44\ncond_prompt: an alien world with two suns rising in the background\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 39\nprior_seed: 281350\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: -0.7999999999999999\ntranslation_z: 0.0\nrotation_x: 0.0\nrotation_y: 0.625\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nresized to 1000x500\nframe_idx: 44\ncond_prompt: an alien world with two suns rising in the background\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 39\nprior_seed: 281350\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: -0.7999999999999999\ntranslation_z: 0.0\nrotation_x: 0.0\nrotation_y: 0.625\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 61%|██████ | 43/71 [01:08<00:41, 1.48s/it]\nresized to 1000x500\n 62%|██████▏ | 44/71 [01:08<00:29, 1.09s/it]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 75.43it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 75.74it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 75.86it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 75.77it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 75.58it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 75.75it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 75.60it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 75.62it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 12.30it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 12.25it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 12.24it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 12.23it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 12.20it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 12.22it/s]\nresized to 1000x500\nframe_idx: 46\ncond_prompt: an alien world with two suns rising in the background\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 40\nprior_seed: 281350\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: -0.8363636363636363\ntranslation_z: 0.0\nrotation_x: 0.0\nrotation_y: 0.5\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nresized to 1000x500\nframe_idx: 46\ncond_prompt: an alien world with two suns rising in the background\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 40\nprior_seed: 281350\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: -0.8363636363636363\ntranslation_z: 0.0\nrotation_x: 0.0\nrotation_y: 0.5\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 63%|██████▎ | 45/71 [01:11<00:39, 1.53s/it]\nresized to 1000x500\n 65%|██████▍ | 46/71 [01:11<00:29, 1.18s/it]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 75.12it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 75.33it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 75.47it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 75.43it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 75.66it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 75.36it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 73.13it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 73.62it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 12.30it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 12.27it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 12.27it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 12.25it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 12.24it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 12.25it/s]\nresized to 1000x500\nframe_idx: 48\ncond_prompt: an alien world with two suns rising in the background\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 41\nprior_seed: 281350\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: -0.8727272727272727\ntranslation_z: 0.0\nrotation_x: 0.0\nrotation_y: 0.375\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nresized to 1000x500\nframe_idx: 48\ncond_prompt: an alien world with two suns rising in the background\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 41\nprior_seed: 281350\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: -0.8727272727272727\ntranslation_z: 0.0\nrotation_x: 0.0\nrotation_y: 0.375\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 66%|██████▌ | 47/71 [01:14<00:39, 1.64s/it]\nresized to 1000x500\n 68%|██████▊ | 48/71 [01:14<00:27, 1.20s/it]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 28%|██▊ | 7/25 [00:00<00:00, 65.47it/s]\u001b[A\n 60%|██████ | 15/25 [00:00<00:00, 68.79it/s]\u001b[A\n 92%|█████████▏| 23/25 [00:00<00:00, 69.91it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 69.41it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 75.67it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 75.40it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 75.35it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 75.38it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 12.32it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 12.25it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 12.25it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 12.24it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 12.24it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 12.24it/s]\nresized to 1000x500\nframe_idx: 50\ncond_prompt: an alien world with two suns rising in the background\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 42\nprior_seed: 281350\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: -0.9090909090909091\ntranslation_z: 0.0\nrotation_x: 0.0\nrotation_y: 0.25\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nresized to 1000x500\nframe_idx: 50\ncond_prompt: an alien world with two suns rising in the background\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 42\nprior_seed: 281350\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: -0.9090909090909091\ntranslation_z: 0.0\nrotation_x: 0.0\nrotation_y: 0.25\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 69%|██████▉ | 49/71 [01:16<00:34, 1.56s/it]\nresized to 1000x500\n 70%|███████ | 50/71 [01:16<00:24, 1.15s/it]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 74.63it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 75.13it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 73.72it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 73.87it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 70.27it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 69.83it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 72.09it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 71.66it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 12.31it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 12.28it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 12.26it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 12.22it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 12.21it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 12.23it/s]\nresized to 1000x500\nframe_idx: 52\ncond_prompt: an alien world with two suns rising in the background\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 43\nprior_seed: 281350\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: -0.9454545454545454\ntranslation_z: 0.0\nrotation_x: 0.0\nrotation_y: 0.125\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nresized to 1000x500\nframe_idx: 52\ncond_prompt: an alien world with two suns rising in the background\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 43\nprior_seed: 281350\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: -0.9454545454545454\ntranslation_z: 0.0\nrotation_x: 0.0\nrotation_y: 0.125\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 72%|███████▏ | 51/71 [01:19<00:30, 1.52s/it]\nresized to 1000x500\n 73%|███████▎ | 52/71 [01:19<00:21, 1.12s/it]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 71.15it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 73.40it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 74.28it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 73.64it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 74.83it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 73.40it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 74.19it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 74.10it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 12.26it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 12.24it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 12.23it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 12.23it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 12.24it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 12.24it/s]\nresized to 1000x500\nframe_idx: 54\ncond_prompt: an alien world with two suns rising in the background\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 44\nprior_seed: 281350\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: -0.9818181818181818\ntranslation_z: 0.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nresized to 1000x500\nframe_idx: 54\ncond_prompt: an alien world with two suns rising in the background\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 44\nprior_seed: 281350\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: -0.9818181818181818\ntranslation_z: 0.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 75%|███████▍ | 53/71 [01:21<00:26, 1.50s/it]\nresized to 1000x500\n 76%|███████▌ | 54/71 [01:22<00:18, 1.11s/it]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 75.14it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 74.68it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 73.92it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 73.94it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 72.90it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 74.12it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 71.99it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 72.32it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 12.29it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 12.26it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 12.24it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 12.23it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 12.22it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 12.23it/s]\nresized to 1000x500\nframe_idx: 56\ncond_prompt: an alien world with two suns rising in the background\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 45\nprior_seed: 281350\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: -0.9375\ntranslation_z: 0.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nresized to 1000x500\nframe_idx: 56\ncond_prompt: an alien world with two suns rising in the background\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 45\nprior_seed: 281350\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: -0.9375\ntranslation_z: 0.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 77%|███████▋ | 55/71 [01:24<00:23, 1.49s/it]\nresized to 1000x500\n 79%|███████▉ | 56/71 [01:24<00:16, 1.10s/it]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 75.00it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 75.05it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 72.12it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 72.73it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 73.05it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 74.33it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 74.79it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 74.53it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 12.29it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 12.24it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 12.23it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 12.24it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 12.23it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 12.23it/s]\nresized to 1000x500\nframe_idx: 58\ncond_prompt: an alien world with mossy terrain and steep mountains\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 46\nprior_seed: 281350\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: -0.8125\ntranslation_z: 0.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nresized to 1000x500\nframe_idx: 58\ncond_prompt: an alien world with mossy terrain and steep mountains\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 46\nprior_seed: 281350\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: -0.8125\ntranslation_z: 0.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 80%|████████ | 57/71 [01:27<00:20, 1.49s/it]\nresized to 1000x500\n 82%|████████▏ | 58/71 [01:27<00:14, 1.10s/it]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 74.86it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 72.71it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 73.83it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 73.54it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 74.38it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 74.52it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 74.09it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 74.21it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 12.33it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 12.25it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 12.22it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 12.21it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 12.20it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 12.21it/s]\nresized to 1000x500\nframe_idx: 60\ncond_prompt: an alien world with mossy terrain and steep mountains\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 47\nprior_seed: 281350\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: -0.6875\ntranslation_z: 0.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nresized to 1000x500\nframe_idx: 60\ncond_prompt: an alien world with mossy terrain and steep mountains\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 47\nprior_seed: 281350\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: -0.6875\ntranslation_z: 0.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 83%|████████▎ | 59/71 [01:29<00:17, 1.48s/it]\nresized to 1000x500\n 85%|████████▍ | 60/71 [01:29<00:12, 1.09s/it]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 74.06it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 74.76it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 72.92it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 73.40it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 75.34it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 73.43it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 72.75it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 72.94it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 12.34it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 12.25it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 12.24it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 12.24it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 12.24it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 12.24it/s]\nresized to 1000x500\nframe_idx: 62\ncond_prompt: an alien world with mossy terrain and steep mountains\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 48\nprior_seed: 281350\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: -0.5625\ntranslation_z: 0.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nresized to 1000x500\nframe_idx: 62\ncond_prompt: an alien world with mossy terrain and steep mountains\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 48\nprior_seed: 281350\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: -0.5625\ntranslation_z: 0.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 86%|████████▌ | 61/71 [01:32<00:14, 1.48s/it]\nresized to 1000x500\n 87%|████████▋ | 62/71 [01:32<00:09, 1.10s/it]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 71.44it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 72.38it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 73.78it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 73.39it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 75.64it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 75.58it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 75.48it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 75.53it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 12.29it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 12.25it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 12.23it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 12.23it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 12.21it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 12.22it/s]\nresized to 1000x500\nframe_idx: 64\ncond_prompt: an alien world with mossy terrain and steep mountains\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 49\nprior_seed: 281350\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: -0.4375\ntranslation_z: 0.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nresized to 1000x500\nframe_idx: 64\ncond_prompt: an alien world with mossy terrain and steep mountains\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 49\nprior_seed: 281350\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: -0.4375\ntranslation_z: 0.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 89%|████████▊ | 63/71 [01:34<00:11, 1.48s/it]\nresized to 1000x500\n 90%|█████████ | 64/71 [01:34<00:07, 1.10s/it]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 72.28it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 73.73it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 74.32it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 74.05it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 71.45it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 72.36it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 73.24it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 72.99it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 12.32it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 12.25it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 12.24it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 12.23it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 12.23it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 12.24it/s]\nresized to 1000x500\nframe_idx: 66\ncond_prompt: an alien world with mossy terrain and steep mountains\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 50\nprior_seed: 281350\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: -0.3125\ntranslation_z: 0.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nresized to 1000x500\nframe_idx: 66\ncond_prompt: an alien world with mossy terrain and steep mountains\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 50\nprior_seed: 281350\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: -0.3125\ntranslation_z: 0.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 92%|█████████▏| 65/71 [01:37<00:08, 1.48s/it]\nresized to 1000x500\n 93%|█████████▎| 66/71 [01:37<00:05, 1.10s/it]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 72.27it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 70.64it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 71.07it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 71.25it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 75.60it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 71.87it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 70.29it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 70.94it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 12.28it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 12.24it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 12.26it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 12.24it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 12.23it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 12.23it/s]\nresized to 1000x500\nframe_idx: 68\ncond_prompt: an alien world with mossy terrain and steep mountains\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 51\nprior_seed: 281350\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: -0.1875\ntranslation_z: 0.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nresized to 1000x500\nframe_idx: 68\ncond_prompt: an alien world with mossy terrain and steep mountains\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 51\nprior_seed: 281350\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: -0.1875\ntranslation_z: 0.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 94%|█████████▍| 67/71 [01:39<00:05, 1.49s/it]\nresized to 1000x500\n 96%|█████████▌| 68/71 [01:40<00:03, 1.10s/it]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 74.95it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 75.19it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 72.54it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 73.06it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 28%|██▊ | 7/25 [00:00<00:00, 69.88it/s]\u001b[A\n 60%|██████ | 15/25 [00:00<00:00, 72.77it/s]\u001b[A\n 92%|█████████▏| 23/25 [00:00<00:00, 74.02it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 73.04it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 12.30it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 12.26it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 12.24it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 12.22it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 12.21it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 12.23it/s]\nresized to 1000x500\nframe_idx: 70\ncond_prompt: an alien world with mossy terrain and steep mountains\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 52\nprior_seed: 281350\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: -0.0625\ntranslation_z: 0.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nresized to 1000x500\nframe_idx: 70\ncond_prompt: an alien world with mossy terrain and steep mountains\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 52\nprior_seed: 281350\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: -0.0625\ntranslation_z: 0.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 97%|█████████▋| 69/71 [01:42<00:02, 1.49s/it]\nresized to 1000x500\n 99%|█████████▊| 70/71 [01:42<00:01, 1.10s/it]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 71.98it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 73.93it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 74.19it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 73.98it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 75.56it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 72.87it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 71.33it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 71.90it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 12.33it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 12.24it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 12.22it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 12.22it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 12.23it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 12.23it/s]\n99%|█████████▊| 70/71 [01:44<00:01, 1.50s/it]\n 0%| | 0/70 [00:00<?, ?it/s]\n 1%|▏ | 1/70 [00:00<00:10, 6.50it/s]\n 43%|████▎ | 30/70 [00:00<00:00, 141.00it/s]\n 67%|██████▋ | 47/70 [00:00<00:00, 119.41it/s]\n 87%|████████▋ | 61/70 [00:00<00:00, 97.13it/s] \n100%|██████████| 70/70 [00:00<00:00, 88.88it/s]", "metrics": { "predict_time": 107.427964, "total_time": 107.316552 }, "output": "https://pbxt.replicate.delivery/Qlyh5ValLjbUIZIf7Qp8i089XP75fWrEHojrbPmlR1X4uGvRA/output_2_2.mp4", "started_at": "2023-10-17T16:41:50.319458Z", "status": "succeeded", "urls": { "get": "https://api.replicate.com/v1/predictions/lg3nartb7abfqcc4ysbsyuftom", "cancel": "https://api.replicate.com/v1/predictions/lg3nartb7abfqcc4ysbsyuftom/cancel" }, "version": "550e576a484886c105a5cf4ff09ac746e691ab473d12a6afe14eed23bc3bbe42" }
Generated in0%| | 0/71 [00:00<?, ?it/s]/src/deforum_kandinsky/helpers/animation.py:322: FutureWarning: Setting an item of incompatible dtype is deprecated and will raise in a future error of pandas. Value 'euler' has dtype incompatible with float64, please explicitly cast to a compatible dtype first. key_frame_series[i] = numexpr.evaluate(value) if not is_single_string else value # workaround for values formatted like 0:("I am test") //used for sampler schedules /src/deforum_kandinsky/helpers/animation.py:332: FutureWarning: Series.interpolate with object dtype is deprecated and will raise in a future version. Call obj.infer_objects(copy=False) before interpolating instead. key_frame_series = key_frame_series.interpolate(method=interp_method.lower(), limit_direction='both') /src/deforum_kandinsky/helpers/render.py:242: FutureWarning: Setting an item of incompatible dtype is deprecated and will raise in a future error of pandas. Value 'an alien world in the style of hr giger' has dtype incompatible with float64, please explicitly cast to a compatible dtype first. cond_prompt_series[int(i)] = prompt /src/deforum_kandinsky/helpers/render.py:248: FutureWarning: Setting an item of incompatible dtype is deprecated and will raise in a future error of pandas. Value 'low quality, bad image, cropped, out of frame' has dtype incompatible with float64, please explicitly cast to a compatible dtype first. uncond_prompt_series[int(i)] = prompt Using cache found in torch-cache/hub/rwightman_gen-efficientnet-pytorch_master Loading base model ()...Done. Removing last two layers (global_pool & classifier). Building Encoder-Decoder model..Done. 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 75.09it/s] 64%|██████▍ | 16/25 [00:00<00:00, 75.35it/s] 96%|█████████▌| 24/25 [00:00<00:00, 73.93it/s] 100%|██████████| 25/25 [00:00<00:00, 74.14it/s] 0%| | 0/25 [00:00<?, ?it/s] 28%|██▊ | 7/25 [00:00<00:00, 66.95it/s] 60%|██████ | 15/25 [00:00<00:00, 69.84it/s] 92%|█████████▏| 23/25 [00:00<00:00, 71.96it/s] 100%|██████████| 25/25 [00:00<00:00, 71.41it/s] 0%| | 0/80 [00:00<?, ?it/s] 1%|▏ | 1/80 [00:00<00:08, 8.78it/s] 4%|▍ | 3/80 [00:00<00:06, 11.18it/s] 6%|▋ | 5/80 [00:00<00:06, 11.74it/s] 9%|▉ | 7/80 [00:00<00:06, 11.96it/s] 11%|█▏ | 9/80 [00:00<00:05, 12.09it/s] 14%|█▍ | 11/80 [00:00<00:05, 12.18it/s] 16%|█▋ | 13/80 [00:01<00:05, 12.23it/s] 19%|█▉ | 15/80 [00:01<00:05, 12.25it/s] 21%|██▏ | 17/80 [00:01<00:05, 12.27it/s] 24%|██▍ | 19/80 [00:01<00:04, 12.27it/s] 26%|██▋ | 21/80 [00:01<00:04, 12.28it/s] 29%|██▉ | 23/80 [00:01<00:04, 12.29it/s] 31%|███▏ | 25/80 [00:02<00:04, 12.29it/s] 34%|███▍ | 27/80 [00:02<00:04, 12.28it/s] 36%|███▋ | 29/80 [00:02<00:04, 12.26it/s] 39%|███▉ | 31/80 [00:02<00:03, 12.26it/s] 41%|████▏ | 33/80 [00:02<00:03, 12.26it/s] 44%|████▍ | 35/80 [00:02<00:03, 12.26it/s] 46%|████▋ | 37/80 [00:03<00:03, 12.26it/s] 49%|████▉ | 39/80 [00:03<00:03, 12.27it/s] 51%|█████▏ | 41/80 [00:03<00:03, 12.26it/s] 54%|█████▍ | 43/80 [00:03<00:03, 12.25it/s] 56%|█████▋ | 45/80 [00:03<00:02, 12.24it/s] 59%|█████▉ | 47/80 [00:03<00:02, 12.26it/s] 61%|██████▏ | 49/80 [00:04<00:02, 12.25it/s] 64%|██████▍ | 51/80 [00:04<00:02, 12.26it/s] 66%|██████▋ | 53/80 [00:04<00:02, 12.28it/s] 69%|██████▉ | 55/80 [00:04<00:02, 12.28it/s] 71%|███████▏ | 57/80 [00:04<00:01, 12.29it/s] 74%|███████▍ | 59/80 [00:04<00:01, 12.29it/s] 76%|███████▋ | 61/80 [00:04<00:01, 12.31it/s] 79%|███████▉ | 63/80 [00:05<00:01, 12.31it/s] 81%|████████▏ | 65/80 [00:05<00:01, 12.32it/s] 84%|████████▍ | 67/80 [00:05<00:01, 12.32it/s] 86%|████████▋ | 69/80 [00:05<00:00, 12.33it/s] 89%|████████▉ | 71/80 [00:05<00:00, 12.33it/s] 91%|█████████▏| 73/80 [00:05<00:00, 12.34it/s] 94%|█████████▍| 75/80 [00:06<00:00, 12.34it/s] 96%|█████████▋| 77/80 [00:06<00:00, 12.33it/s] 99%|█████████▉| 79/80 [00:06<00:00, 12.33it/s] 100%|██████████| 80/80 [00:06<00:00, 12.24it/s] resized to 1000x500 /root/.pyenv/versions/3.10.13/lib/python3.10/site-packages/torchvision/transforms/functional.py:1603: UserWarning: The default value of the antialias parameter of all the resizing transforms (Resize(), RandomResizedCrop(), etc.) will change from None to True in v0.17, in order to be consistent across the PIL and Tensor backends. To suppress this warning, directly pass antialias=True (recommended, future default), antialias=None (current default, which means False for Tensors and True for PIL), or antialias=False (only works on Tensors - PIL will still use antialiasing). This also applies if you are using the inference transforms from the models weights: update the call to weights.transforms(antialias=True). warnings.warn( frame_idx: 2 cond_prompt: an alien world in the style of hr giger uncond_prompt: low quality, bad image, cropped, out of frame seed: 18 prior_seed: 281350 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: -0.03636363636363636 translation_z: 0.9473684210526316 rotation_x: 0.0 rotation_y: 0.05263157894736842 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 resized to 1000x500 frame_idx: 2 cond_prompt: an alien world in the style of hr giger uncond_prompt: low quality, bad image, cropped, out of frame seed: 18 prior_seed: 281350 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: -0.03636363636363636 translation_z: 0.9473684210526316 rotation_x: 0.0 rotation_y: 0.05263157894736842 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 1%|▏ | 1/71 [00:14<16:29, 14.13s/it] resized to 1000x500 3%|▎ | 2/71 [00:14<06:48, 5.92s/it] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 70.87it/s] 64%|██████▍ | 16/25 [00:00<00:00, 71.47it/s] 96%|█████████▌| 24/25 [00:00<00:00, 73.31it/s] 100%|██████████| 25/25 [00:00<00:00, 72.84it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 75.58it/s] 64%|██████▍ | 16/25 [00:00<00:00, 74.56it/s] 96%|█████████▌| 24/25 [00:00<00:00, 74.31it/s] 100%|██████████| 25/25 [00:00<00:00, 74.36it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 12.41it/s] 40%|████ | 4/10 [00:00<00:00, 12.34it/s] 60%|██████ | 6/10 [00:00<00:00, 12.34it/s] 80%|████████ | 8/10 [00:00<00:00, 12.35it/s] 100%|██████████| 10/10 [00:00<00:00, 12.34it/s] 100%|██████████| 10/10 [00:00<00:00, 12.35it/s] resized to 1000x500 frame_idx: 4 cond_prompt: an alien world in the style of hr giger uncond_prompt: low quality, bad image, cropped, out of frame seed: 19 prior_seed: 281350 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: -0.07272727272727272 translation_z: 0.8947368421052632 rotation_x: 0.0 rotation_y: 0.10526315789473684 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 resized to 1000x500 frame_idx: 4 cond_prompt: an alien world in the style of hr giger uncond_prompt: low quality, bad image, cropped, out of frame seed: 19 prior_seed: 281350 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: -0.07272727272727272 translation_z: 0.8947368421052632 rotation_x: 0.0 rotation_y: 0.10526315789473684 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 4%|▍ | 3/71 [00:16<04:52, 4.30s/it] resized to 1000x500 6%|▌ | 4/71 [00:16<02:59, 2.68s/it] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 75.04it/s] 64%|██████▍ | 16/25 [00:00<00:00, 75.38it/s] 96%|█████████▌| 24/25 [00:00<00:00, 75.48it/s] 100%|██████████| 25/25 [00:00<00:00, 75.42it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 70.82it/s] 64%|██████▍ | 16/25 [00:00<00:00, 70.90it/s] 96%|█████████▌| 24/25 [00:00<00:00, 70.75it/s] 100%|██████████| 25/25 [00:00<00:00, 70.75it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 12.38it/s] 40%|████ | 4/10 [00:00<00:00, 12.34it/s] 60%|██████ | 6/10 [00:00<00:00, 12.32it/s] 80%|████████ | 8/10 [00:00<00:00, 12.31it/s] 100%|██████████| 10/10 [00:00<00:00, 12.32it/s] 100%|██████████| 10/10 [00:00<00:00, 12.32it/s] resized to 1000x500 frame_idx: 6 cond_prompt: an alien world in the style of hr giger uncond_prompt: low quality, bad image, cropped, out of frame seed: 20 prior_seed: 281350 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: -0.10909090909090909 translation_z: 0.8421052631578947 rotation_x: 0.0 rotation_y: 0.15789473684210525 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 resized to 1000x500 frame_idx: 6 cond_prompt: an alien world in the style of hr giger uncond_prompt: low quality, bad image, cropped, out of frame seed: 20 prior_seed: 281350 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: -0.10909090909090909 translation_z: 0.8421052631578947 rotation_x: 0.0 rotation_y: 0.15789473684210525 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 7%|▋ | 5/71 [00:19<02:49, 2.57s/it] resized to 1000x500 8%|▊ | 6/71 [00:19<01:54, 1.76s/it] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 70.22it/s] 64%|██████▍ | 16/25 [00:00<00:00, 72.25it/s] 96%|█████████▌| 24/25 [00:00<00:00, 73.54it/s] 100%|██████████| 25/25 [00:00<00:00, 73.01it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 74.95it/s] 64%|██████▍ | 16/25 [00:00<00:00, 75.19it/s] 96%|█████████▌| 24/25 [00:00<00:00, 73.94it/s] 100%|██████████| 25/25 [00:00<00:00, 74.24it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 12.38it/s] 40%|████ | 4/10 [00:00<00:00, 12.33it/s] 60%|██████ | 6/10 [00:00<00:00, 12.32it/s] 80%|████████ | 8/10 [00:00<00:00, 12.31it/s] 100%|██████████| 10/10 [00:00<00:00, 12.30it/s] 100%|██████████| 10/10 [00:00<00:00, 12.31it/s] resized to 1000x500 frame_idx: 8 cond_prompt: an alien world in the style of hr giger uncond_prompt: low quality, bad image, cropped, out of frame seed: 21 prior_seed: 281350 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: -0.14545454545454545 translation_z: 0.7894736842105263 rotation_x: 0.0 rotation_y: 0.21052631578947367 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 resized to 1000x500 frame_idx: 8 cond_prompt: an alien world in the style of hr giger uncond_prompt: low quality, bad image, cropped, out of frame seed: 21 prior_seed: 281350 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: -0.14545454545454545 translation_z: 0.7894736842105263 rotation_x: 0.0 rotation_y: 0.21052631578947367 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 10%|▉ | 7/71 [00:21<02:05, 1.96s/it] resized to 1000x500 11%|█▏ | 8/71 [00:21<01:27, 1.40s/it] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 74.80it/s] 64%|██████▍ | 16/25 [00:00<00:00, 71.69it/s] 96%|█████████▌| 24/25 [00:00<00:00, 70.84it/s] 100%|██████████| 25/25 [00:00<00:00, 71.28it/s] 0%| | 0/25 [00:00<?, ?it/s] 28%|██▊ | 7/25 [00:00<00:00, 68.32it/s] 60%|██████ | 15/25 [00:00<00:00, 71.98it/s] 92%|█████████▏| 23/25 [00:00<00:00, 73.50it/s] 100%|██████████| 25/25 [00:00<00:00, 72.50it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 12.36it/s] 40%|████ | 4/10 [00:00<00:00, 12.33it/s] 60%|██████ | 6/10 [00:00<00:00, 12.32it/s] 80%|████████ | 8/10 [00:00<00:00, 12.30it/s] 100%|██████████| 10/10 [00:00<00:00, 12.29it/s] 100%|██████████| 10/10 [00:00<00:00, 12.30it/s] resized to 1000x500 frame_idx: 10 cond_prompt: an alien world in the style of hr giger uncond_prompt: low quality, bad image, cropped, out of frame seed: 22 prior_seed: 281350 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: -0.18181818181818182 translation_z: 0.736842105263158 rotation_x: 0.0 rotation_y: 0.2631578947368421 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 resized to 1000x500 frame_idx: 10 cond_prompt: an alien world in the style of hr giger uncond_prompt: low quality, bad image, cropped, out of frame seed: 22 prior_seed: 281350 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: -0.18181818181818182 translation_z: 0.736842105263158 rotation_x: 0.0 rotation_y: 0.2631578947368421 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 13%|█▎ | 9/71 [00:24<01:45, 1.71s/it] resized to 1000x500 14%|█▍ | 10/71 [00:24<01:15, 1.24s/it] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 75.10it/s] 64%|██████▍ | 16/25 [00:00<00:00, 74.57it/s] 96%|█████████▌| 24/25 [00:00<00:00, 74.78it/s] 100%|██████████| 25/25 [00:00<00:00, 74.41it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 72.35it/s] 64%|██████▍ | 16/25 [00:00<00:00, 72.64it/s] 96%|█████████▌| 24/25 [00:00<00:00, 72.38it/s] 100%|██████████| 25/25 [00:00<00:00, 72.49it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 12.38it/s] 40%|████ | 4/10 [00:00<00:00, 12.33it/s] 60%|██████ | 6/10 [00:00<00:00, 12.31it/s] 80%|████████ | 8/10 [00:00<00:00, 12.32it/s] 100%|██████████| 10/10 [00:00<00:00, 12.30it/s] 100%|██████████| 10/10 [00:00<00:00, 12.31it/s] resized to 1000x500 frame_idx: 12 cond_prompt: an alien world in the style of hr giger uncond_prompt: low quality, bad image, cropped, out of frame seed: 23 prior_seed: 281350 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: -0.21818181818181817 translation_z: 0.6842105263157895 rotation_x: 0.0 rotation_y: 0.3157894736842105 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 resized to 1000x500 frame_idx: 12 cond_prompt: an alien world in the style of hr giger uncond_prompt: low quality, bad image, cropped, out of frame seed: 23 prior_seed: 281350 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: -0.21818181818181817 translation_z: 0.6842105263157895 rotation_x: 0.0 rotation_y: 0.3157894736842105 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 15%|█▌ | 11/71 [00:26<01:35, 1.59s/it] resized to 1000x500 17%|█▋ | 12/71 [00:27<01:08, 1.16s/it] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 75.18it/s] 64%|██████▍ | 16/25 [00:00<00:00, 72.06it/s] 96%|█████████▌| 24/25 [00:00<00:00, 71.32it/s] 100%|██████████| 25/25 [00:00<00:00, 71.51it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 70.82it/s] 64%|██████▍ | 16/25 [00:00<00:00, 70.65it/s] 96%|█████████▌| 24/25 [00:00<00:00, 72.89it/s] 100%|██████████| 25/25 [00:00<00:00, 72.36it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 12.39it/s] 40%|████ | 4/10 [00:00<00:00, 12.31it/s] 60%|██████ | 6/10 [00:00<00:00, 12.30it/s] 80%|████████ | 8/10 [00:00<00:00, 12.31it/s] 100%|██████████| 10/10 [00:00<00:00, 12.30it/s] 100%|██████████| 10/10 [00:00<00:00, 12.31it/s] resized to 1000x500 frame_idx: 14 cond_prompt: an alien world in the style of hr giger uncond_prompt: low quality, bad image, cropped, out of frame seed: 24 prior_seed: 281350 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: -0.2545454545454545 translation_z: 0.631578947368421 rotation_x: 0.0 rotation_y: 0.3684210526315789 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 resized to 1000x500 frame_idx: 14 cond_prompt: an alien world in the style of hr giger uncond_prompt: low quality, bad image, cropped, out of frame seed: 24 prior_seed: 281350 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: -0.2545454545454545 translation_z: 0.631578947368421 rotation_x: 0.0 rotation_y: 0.3684210526315789 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 18%|█▊ | 13/71 [00:29<01:29, 1.54s/it] resized to 1000x500 20%|█▉ | 14/71 [00:29<01:04, 1.13s/it] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 74.99it/s] 64%|██████▍ | 16/25 [00:00<00:00, 74.92it/s] 96%|█████████▌| 24/25 [00:00<00:00, 74.95it/s] 100%|██████████| 25/25 [00:00<00:00, 74.73it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 75.55it/s] 64%|██████▍ | 16/25 [00:00<00:00, 75.23it/s] 96%|█████████▌| 24/25 [00:00<00:00, 72.95it/s] 100%|██████████| 25/25 [00:00<00:00, 73.58it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 12.34it/s] 40%|████ | 4/10 [00:00<00:00, 12.31it/s] 60%|██████ | 6/10 [00:00<00:00, 12.30it/s] 80%|████████ | 8/10 [00:00<00:00, 12.29it/s] 100%|██████████| 10/10 [00:00<00:00, 12.28it/s] 100%|██████████| 10/10 [00:00<00:00, 12.29it/s] resized to 1000x500 frame_idx: 16 cond_prompt: an alien world in the style of hr giger uncond_prompt: low quality, bad image, cropped, out of frame seed: 25 prior_seed: 281350 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: -0.2909090909090909 translation_z: 0.5789473684210527 rotation_x: 0.0 rotation_y: 0.42105263157894735 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 resized to 1000x500 frame_idx: 16 cond_prompt: an alien world in the style of hr giger uncond_prompt: low quality, bad image, cropped, out of frame seed: 25 prior_seed: 281350 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: -0.2909090909090909 translation_z: 0.5789473684210527 rotation_x: 0.0 rotation_y: 0.42105263157894735 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 21%|██ | 15/71 [00:32<01:24, 1.50s/it] resized to 1000x500 23%|██▎ | 16/71 [00:32<01:00, 1.11s/it] 0%| | 0/25 [00:00<?, ?it/s] 28%|██▊ | 7/25 [00:00<00:00, 68.19it/s] 56%|█████▌ | 14/25 [00:00<00:00, 69.10it/s] 88%|████████▊ | 22/25 [00:00<00:00, 71.09it/s] 100%|██████████| 25/25 [00:00<00:00, 70.76it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 72.65it/s] 64%|██████▍ | 16/25 [00:00<00:00, 73.43it/s] 96%|█████████▌| 24/25 [00:00<00:00, 72.21it/s] 100%|██████████| 25/25 [00:00<00:00, 72.50it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 12.38it/s] 40%|████ | 4/10 [00:00<00:00, 12.30it/s] 60%|██████ | 6/10 [00:00<00:00, 12.29it/s] 80%|████████ | 8/10 [00:00<00:00, 12.29it/s] 100%|██████████| 10/10 [00:00<00:00, 12.30it/s] 100%|██████████| 10/10 [00:00<00:00, 12.30it/s] resized to 1000x500 frame_idx: 18 cond_prompt: an alien world in the style of hr giger uncond_prompt: low quality, bad image, cropped, out of frame seed: 26 prior_seed: 281350 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: -0.32727272727272727 translation_z: 0.5263157894736843 rotation_x: 0.0 rotation_y: 0.47368421052631576 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 resized to 1000x500 frame_idx: 18 cond_prompt: an alien world in the style of hr giger uncond_prompt: low quality, bad image, cropped, out of frame seed: 26 prior_seed: 281350 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: -0.32727272727272727 translation_z: 0.5263157894736843 rotation_x: 0.0 rotation_y: 0.47368421052631576 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 24%|██▍ | 17/71 [00:34<01:20, 1.49s/it] resized to 1000x500 25%|██▌ | 18/71 [00:34<00:58, 1.10s/it] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 74.73it/s] 64%|██████▍ | 16/25 [00:00<00:00, 74.82it/s] 96%|█████████▌| 24/25 [00:00<00:00, 75.08it/s] 100%|██████████| 25/25 [00:00<00:00, 74.79it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 72.66it/s] 64%|██████▍ | 16/25 [00:00<00:00, 72.15it/s] 96%|█████████▌| 24/25 [00:00<00:00, 73.57it/s] 100%|██████████| 25/25 [00:00<00:00, 73.23it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 12.38it/s] 40%|████ | 4/10 [00:00<00:00, 12.34it/s] 60%|██████ | 6/10 [00:00<00:00, 12.32it/s] 80%|████████ | 8/10 [00:00<00:00, 12.30it/s] 100%|██████████| 10/10 [00:00<00:00, 12.29it/s] 100%|██████████| 10/10 [00:00<00:00, 12.30it/s] resized to 1000x500 frame_idx: 20 cond_prompt: an alien world in the style of hr giger uncond_prompt: low quality, bad image, cropped, out of frame seed: 27 prior_seed: 281350 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: -0.36363636363636365 translation_z: 0.4736842105263158 rotation_x: 0.0 rotation_y: 0.5263157894736842 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 resized to 1000x500 frame_idx: 20 cond_prompt: an alien world in the style of hr giger uncond_prompt: low quality, bad image, cropped, out of frame seed: 27 prior_seed: 281350 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: -0.36363636363636365 translation_z: 0.4736842105263158 rotation_x: 0.0 rotation_y: 0.5263157894736842 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 27%|██▋ | 19/71 [00:37<01:17, 1.49s/it] resized to 1000x500 28%|██▊ | 20/71 [00:37<00:56, 1.10s/it] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 74.60it/s] 64%|██████▍ | 16/25 [00:00<00:00, 74.77it/s] 96%|█████████▌| 24/25 [00:00<00:00, 74.88it/s] 100%|██████████| 25/25 [00:00<00:00, 74.59it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 74.31it/s] 64%|██████▍ | 16/25 [00:00<00:00, 73.45it/s] 96%|█████████▌| 24/25 [00:00<00:00, 74.40it/s] 100%|██████████| 25/25 [00:00<00:00, 74.23it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 12.36it/s] 40%|████ | 4/10 [00:00<00:00, 12.30it/s] 60%|██████ | 6/10 [00:00<00:00, 12.25it/s] 80%|████████ | 8/10 [00:00<00:00, 12.25it/s] 100%|██████████| 10/10 [00:00<00:00, 12.25it/s] 100%|██████████| 10/10 [00:00<00:00, 12.26it/s] resized to 1000x500 frame_idx: 22 cond_prompt: an alien world in the style of hr giger uncond_prompt: low quality, bad image, cropped, out of frame seed: 28 prior_seed: 281350 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: -0.39999999999999997 translation_z: 0.42105263157894735 rotation_x: 0.0 rotation_y: 0.5789473684210527 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 resized to 1000x500 frame_idx: 22 cond_prompt: an alien world in the style of hr giger uncond_prompt: low quality, bad image, cropped, out of frame seed: 28 prior_seed: 281350 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: -0.39999999999999997 translation_z: 0.42105263157894735 rotation_x: 0.0 rotation_y: 0.5789473684210527 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 30%|██▉ | 21/71 [00:39<01:14, 1.49s/it] resized to 1000x500 31%|███ | 22/71 [00:40<00:53, 1.10s/it] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 74.57it/s] 64%|██████▍ | 16/25 [00:00<00:00, 74.91it/s] 96%|█████████▌| 24/25 [00:00<00:00, 72.82it/s] 100%|██████████| 25/25 [00:00<00:00, 73.15it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 74.90it/s] 64%|██████▍ | 16/25 [00:00<00:00, 74.67it/s] 96%|█████████▌| 24/25 [00:00<00:00, 74.01it/s] 100%|██████████| 25/25 [00:00<00:00, 74.21it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 12.30it/s] 40%|████ | 4/10 [00:00<00:00, 12.25it/s] 60%|██████ | 6/10 [00:00<00:00, 12.24it/s] 80%|████████ | 8/10 [00:00<00:00, 12.24it/s] 100%|██████████| 10/10 [00:00<00:00, 12.25it/s] 100%|██████████| 10/10 [00:00<00:00, 12.25it/s] resized to 1000x500 frame_idx: 24 cond_prompt: an alien world in the style of hr giger uncond_prompt: low quality, bad image, cropped, out of frame seed: 29 prior_seed: 281350 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: -0.43636363636363634 translation_z: 0.368421052631579 rotation_x: 0.0 rotation_y: 0.631578947368421 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 resized to 1000x500 frame_idx: 24 cond_prompt: an alien world in the style of hr giger uncond_prompt: low quality, bad image, cropped, out of frame seed: 29 prior_seed: 281350 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: -0.43636363636363634 translation_z: 0.368421052631579 rotation_x: 0.0 rotation_y: 0.631578947368421 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 32%|███▏ | 23/71 [00:42<01:11, 1.49s/it] resized to 1000x500 34%|███▍ | 24/71 [00:42<00:51, 1.10s/it] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 75.18it/s] 64%|██████▍ | 16/25 [00:00<00:00, 73.38it/s] 96%|█████████▌| 24/25 [00:00<00:00, 73.69it/s] 100%|██████████| 25/25 [00:00<00:00, 73.70it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 74.23it/s] 64%|██████▍ | 16/25 [00:00<00:00, 72.20it/s] 96%|█████████▌| 24/25 [00:00<00:00, 70.45it/s] 100%|██████████| 25/25 [00:00<00:00, 71.10it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 12.34it/s] 40%|████ | 4/10 [00:00<00:00, 12.29it/s] 60%|██████ | 6/10 [00:00<00:00, 12.28it/s] 80%|████████ | 8/10 [00:00<00:00, 12.25it/s] 100%|██████████| 10/10 [00:00<00:00, 12.24it/s] 100%|██████████| 10/10 [00:00<00:00, 12.26it/s] resized to 1000x500 frame_idx: 26 cond_prompt: an alien world in the style of hr giger uncond_prompt: low quality, bad image, cropped, out of frame seed: 30 prior_seed: 281350 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: -0.4727272727272727 translation_z: 0.3157894736842106 rotation_x: 0.0 rotation_y: 0.6842105263157894 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 resized to 1000x500 frame_idx: 26 cond_prompt: an alien world in the style of hr giger uncond_prompt: low quality, bad image, cropped, out of frame seed: 30 prior_seed: 281350 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: -0.4727272727272727 translation_z: 0.3157894736842106 rotation_x: 0.0 rotation_y: 0.6842105263157894 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 35%|███▌ | 25/71 [00:45<01:08, 1.49s/it] resized to 1000x500 37%|███▋ | 26/71 [00:45<00:49, 1.10s/it] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 75.03it/s] 64%|██████▍ | 16/25 [00:00<00:00, 71.34it/s] 96%|█████████▌| 24/25 [00:00<00:00, 70.95it/s] 100%|██████████| 25/25 [00:00<00:00, 71.38it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 70.19it/s] 64%|██████▍ | 16/25 [00:00<00:00, 69.91it/s] 96%|█████████▌| 24/25 [00:00<00:00, 70.00it/s] 100%|██████████| 25/25 [00:00<00:00, 70.03it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 12.29it/s] 40%|████ | 4/10 [00:00<00:00, 12.26it/s] 60%|██████ | 6/10 [00:00<00:00, 12.24it/s] 80%|████████ | 8/10 [00:00<00:00, 12.24it/s] 100%|██████████| 10/10 [00:00<00:00, 12.24it/s] 100%|██████████| 10/10 [00:00<00:00, 12.24it/s] resized to 1000x500 frame_idx: 28 cond_prompt: an alien world in the style of hr giger uncond_prompt: low quality, bad image, cropped, out of frame seed: 31 prior_seed: 281350 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: -0.509090909090909 translation_z: 0.26315789473684215 rotation_x: 0.0 rotation_y: 0.7368421052631579 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 resized to 1000x500 frame_idx: 28 cond_prompt: an alien world in the style of hr giger uncond_prompt: low quality, bad image, cropped, out of frame seed: 31 prior_seed: 281350 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: -0.509090909090909 translation_z: 0.26315789473684215 rotation_x: 0.0 rotation_y: 0.7368421052631579 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 38%|███▊ | 27/71 [00:47<01:05, 1.49s/it] resized to 1000x500 39%|███▉ | 28/71 [00:47<00:47, 1.10s/it] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 74.86it/s] 64%|██████▍ | 16/25 [00:00<00:00, 75.22it/s] 96%|█████████▌| 24/25 [00:00<00:00, 75.42it/s] 100%|██████████| 25/25 [00:00<00:00, 75.34it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 75.22it/s] 64%|██████▍ | 16/25 [00:00<00:00, 72.58it/s] 96%|█████████▌| 24/25 [00:00<00:00, 72.74it/s] 100%|██████████| 25/25 [00:00<00:00, 73.00it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 12.35it/s] 40%|████ | 4/10 [00:00<00:00, 12.27it/s] 60%|██████ | 6/10 [00:00<00:00, 12.24it/s] 80%|████████ | 8/10 [00:00<00:00, 12.23it/s] 100%|██████████| 10/10 [00:00<00:00, 12.23it/s] 100%|██████████| 10/10 [00:00<00:00, 12.24it/s] resized to 1000x500 frame_idx: 30 cond_prompt: an alien world in the style of hr giger uncond_prompt: low quality, bad image, cropped, out of frame seed: 32 prior_seed: 281350 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: -0.5454545454545454 translation_z: 0.21052631578947367 rotation_x: 0.0 rotation_y: 0.7894736842105263 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 resized to 1000x500 frame_idx: 30 cond_prompt: an alien world in the style of hr giger uncond_prompt: low quality, bad image, cropped, out of frame seed: 32 prior_seed: 281350 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: -0.5454545454545454 translation_z: 0.21052631578947367 rotation_x: 0.0 rotation_y: 0.7894736842105263 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 41%|████ | 29/71 [00:50<01:02, 1.48s/it] resized to 1000x500 42%|████▏ | 30/71 [00:50<00:45, 1.10s/it] 0%| | 0/25 [00:00<?, ?it/s] 28%|██▊ | 7/25 [00:00<00:00, 69.85it/s] 56%|█████▌ | 14/25 [00:00<00:00, 69.93it/s] 88%|████████▊ | 22/25 [00:00<00:00, 70.98it/s] 100%|██████████| 25/25 [00:00<00:00, 70.45it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 75.59it/s] 64%|██████▍ | 16/25 [00:00<00:00, 75.43it/s] 96%|█████████▌| 24/25 [00:00<00:00, 73.45it/s] 100%|██████████| 25/25 [00:00<00:00, 73.79it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 12.32it/s] 40%|████ | 4/10 [00:00<00:00, 12.27it/s] 60%|██████ | 6/10 [00:00<00:00, 12.27it/s] 80%|████████ | 8/10 [00:00<00:00, 12.27it/s] 100%|██████████| 10/10 [00:00<00:00, 12.26it/s] 100%|██████████| 10/10 [00:00<00:00, 12.26it/s] resized to 1000x500 frame_idx: 32 cond_prompt: an alien world in the style of hr giger uncond_prompt: low quality, bad image, cropped, out of frame seed: 33 prior_seed: 281350 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: -0.5818181818181818 translation_z: 0.1578947368421053 rotation_x: 0.0 rotation_y: 0.8421052631578947 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 resized to 1000x500 frame_idx: 32 cond_prompt: an alien world in the style of hr giger uncond_prompt: low quality, bad image, cropped, out of frame seed: 33 prior_seed: 281350 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: -0.5818181818181818 translation_z: 0.1578947368421053 rotation_x: 0.0 rotation_y: 0.8421052631578947 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 44%|████▎ | 31/71 [00:52<00:59, 1.49s/it] resized to 1000x500 45%|████▌ | 32/71 [00:53<00:43, 1.10s/it] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 75.41it/s] 64%|██████▍ | 16/25 [00:00<00:00, 75.15it/s] 96%|█████████▌| 24/25 [00:00<00:00, 75.16it/s] 100%|██████████| 25/25 [00:00<00:00, 74.73it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 71.34it/s] 64%|██████▍ | 16/25 [00:00<00:00, 71.23it/s] 96%|█████████▌| 24/25 [00:00<00:00, 72.52it/s] 100%|██████████| 25/25 [00:00<00:00, 72.27it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 12.30it/s] 40%|████ | 4/10 [00:00<00:00, 12.24it/s] 60%|██████ | 6/10 [00:00<00:00, 12.22it/s] 80%|████████ | 8/10 [00:00<00:00, 12.22it/s] 100%|██████████| 10/10 [00:00<00:00, 12.21it/s] 100%|██████████| 10/10 [00:00<00:00, 12.22it/s] resized to 1000x500 frame_idx: 34 cond_prompt: an alien world in the style of hr giger uncond_prompt: low quality, bad image, cropped, out of frame seed: 34 prior_seed: 281350 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: -0.6181818181818182 translation_z: 0.10526315789473695 rotation_x: 0.0 rotation_y: 0.894736842105263 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 resized to 1000x500 frame_idx: 34 cond_prompt: an alien world in the style of hr giger uncond_prompt: low quality, bad image, cropped, out of frame seed: 34 prior_seed: 281350 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: -0.6181818181818182 translation_z: 0.10526315789473695 rotation_x: 0.0 rotation_y: 0.894736842105263 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 46%|████▋ | 33/71 [00:55<00:56, 1.49s/it] resized to 1000x500 48%|████▊ | 34/71 [00:55<00:40, 1.10s/it] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 74.90it/s] 64%|██████▍ | 16/25 [00:00<00:00, 75.03it/s] 96%|█████████▌| 24/25 [00:00<00:00, 74.97it/s] 100%|██████████| 25/25 [00:00<00:00, 74.58it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 75.75it/s] 64%|██████▍ | 16/25 [00:00<00:00, 75.35it/s] 96%|█████████▌| 24/25 [00:00<00:00, 75.13it/s] 100%|██████████| 25/25 [00:00<00:00, 75.08it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 12.32it/s] 40%|████ | 4/10 [00:00<00:00, 12.25it/s] 60%|██████ | 6/10 [00:00<00:00, 12.23it/s] 80%|████████ | 8/10 [00:00<00:00, 12.23it/s] 100%|██████████| 10/10 [00:00<00:00, 12.24it/s] 100%|██████████| 10/10 [00:00<00:00, 12.24it/s] resized to 1000x500 frame_idx: 36 cond_prompt: an alien world in the style of hr giger uncond_prompt: low quality, bad image, cropped, out of frame seed: 35 prior_seed: 281350 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: -0.6545454545454545 translation_z: 0.052631578947368474 rotation_x: 0.0 rotation_y: 0.9473684210526315 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 resized to 1000x500 frame_idx: 36 cond_prompt: an alien world in the style of hr giger uncond_prompt: low quality, bad image, cropped, out of frame seed: 35 prior_seed: 281350 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: -0.6545454545454545 translation_z: 0.052631578947368474 rotation_x: 0.0 rotation_y: 0.9473684210526315 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 49%|████▉ | 35/71 [00:57<00:53, 1.49s/it] resized to 1000x500 51%|█████ | 36/71 [00:58<00:38, 1.10s/it] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 74.31it/s] 64%|██████▍ | 16/25 [00:00<00:00, 69.51it/s] 96%|█████████▌| 24/25 [00:00<00:00, 70.11it/s] 100%|██████████| 25/25 [00:00<00:00, 70.21it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 70.76it/s] 64%|██████▍ | 16/25 [00:00<00:00, 72.21it/s] 96%|█████████▌| 24/25 [00:00<00:00, 72.34it/s] 100%|██████████| 25/25 [00:00<00:00, 72.22it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 12.34it/s] 40%|████ | 4/10 [00:00<00:00, 12.26it/s] 60%|██████ | 6/10 [00:00<00:00, 12.25it/s] 80%|████████ | 8/10 [00:00<00:00, 12.24it/s] 100%|██████████| 10/10 [00:00<00:00, 12.23it/s] 100%|██████████| 10/10 [00:00<00:00, 12.24it/s] resized to 1000x500 frame_idx: 38 cond_prompt: an alien world in the style of hr giger uncond_prompt: low quality, bad image, cropped, out of frame seed: 36 prior_seed: 281350 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: -0.6909090909090909 translation_z: 0.0 rotation_x: 0.0 rotation_y: 1.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 resized to 1000x500 frame_idx: 38 cond_prompt: an alien world in the style of hr giger uncond_prompt: low quality, bad image, cropped, out of frame seed: 36 prior_seed: 281350 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: -0.6909090909090909 translation_z: 0.0 rotation_x: 0.0 rotation_y: 1.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 52%|█████▏ | 37/71 [01:00<00:50, 1.49s/it] resized to 1000x500 54%|█████▎ | 38/71 [01:00<00:36, 1.10s/it] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 74.22it/s] 64%|██████▍ | 16/25 [00:00<00:00, 75.03it/s] 96%|█████████▌| 24/25 [00:00<00:00, 75.27it/s] 100%|██████████| 25/25 [00:00<00:00, 74.81it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 75.73it/s] 64%|██████▍ | 16/25 [00:00<00:00, 72.05it/s] 96%|█████████▌| 24/25 [00:00<00:00, 71.72it/s] 100%|██████████| 25/25 [00:00<00:00, 72.07it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 12.35it/s] 40%|████ | 4/10 [00:00<00:00, 12.30it/s] 60%|██████ | 6/10 [00:00<00:00, 12.25it/s] 80%|████████ | 8/10 [00:00<00:00, 12.23it/s] 100%|██████████| 10/10 [00:00<00:00, 12.23it/s] 100%|██████████| 10/10 [00:00<00:00, 12.24it/s] resized to 1000x500 frame_idx: 40 cond_prompt: an alien world with two suns rising in the background uncond_prompt: low quality, bad image, cropped, out of frame seed: 37 prior_seed: 281350 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: -0.7272727272727273 translation_z: 0.0 rotation_x: 0.0 rotation_y: 0.875 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 resized to 1000x500 frame_idx: 40 cond_prompt: an alien world with two suns rising in the background uncond_prompt: low quality, bad image, cropped, out of frame seed: 37 prior_seed: 281350 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: -0.7272727272727273 translation_z: 0.0 rotation_x: 0.0 rotation_y: 0.875 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 55%|█████▍ | 39/71 [01:03<00:47, 1.49s/it] resized to 1000x500 56%|█████▋ | 40/71 [01:03<00:34, 1.11s/it] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 70.58it/s] 64%|██████▍ | 16/25 [00:00<00:00, 73.31it/s] 96%|█████████▌| 24/25 [00:00<00:00, 74.14it/s] 100%|██████████| 25/25 [00:00<00:00, 73.32it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 75.35it/s] 64%|██████▍ | 16/25 [00:00<00:00, 75.36it/s] 96%|█████████▌| 24/25 [00:00<00:00, 75.33it/s] 100%|██████████| 25/25 [00:00<00:00, 75.28it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 12.30it/s] 40%|████ | 4/10 [00:00<00:00, 12.27it/s] 60%|██████ | 6/10 [00:00<00:00, 12.25it/s] 80%|████████ | 8/10 [00:00<00:00, 12.25it/s] 100%|██████████| 10/10 [00:00<00:00, 12.24it/s] 100%|██████████| 10/10 [00:00<00:00, 12.25it/s] resized to 1000x500 frame_idx: 42 cond_prompt: an alien world with two suns rising in the background uncond_prompt: low quality, bad image, cropped, out of frame seed: 38 prior_seed: 281350 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: -0.7636363636363636 translation_z: 0.0 rotation_x: 0.0 rotation_y: 0.75 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 resized to 1000x500 frame_idx: 42 cond_prompt: an alien world with two suns rising in the background uncond_prompt: low quality, bad image, cropped, out of frame seed: 38 prior_seed: 281350 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: -0.7636363636363636 translation_z: 0.0 rotation_x: 0.0 rotation_y: 0.75 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 58%|█████▊ | 41/71 [01:05<00:44, 1.49s/it] resized to 1000x500 59%|█████▉ | 42/71 [01:05<00:31, 1.10s/it] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 75.05it/s] 64%|██████▍ | 16/25 [00:00<00:00, 75.33it/s] 96%|█████████▌| 24/25 [00:00<00:00, 75.32it/s] 100%|██████████| 25/25 [00:00<00:00, 75.25it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 70.21it/s] 64%|██████▍ | 16/25 [00:00<00:00, 72.61it/s] 96%|█████████▌| 24/25 [00:00<00:00, 73.71it/s] 100%|██████████| 25/25 [00:00<00:00, 73.01it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 12.31it/s] 40%|████ | 4/10 [00:00<00:00, 12.25it/s] 60%|██████ | 6/10 [00:00<00:00, 12.25it/s] 80%|████████ | 8/10 [00:00<00:00, 12.23it/s] 100%|██████████| 10/10 [00:00<00:00, 12.24it/s] 100%|██████████| 10/10 [00:00<00:00, 12.24it/s] resized to 1000x500 frame_idx: 44 cond_prompt: an alien world with two suns rising in the background uncond_prompt: low quality, bad image, cropped, out of frame seed: 39 prior_seed: 281350 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: -0.7999999999999999 translation_z: 0.0 rotation_x: 0.0 rotation_y: 0.625 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 resized to 1000x500 frame_idx: 44 cond_prompt: an alien world with two suns rising in the background uncond_prompt: low quality, bad image, cropped, out of frame seed: 39 prior_seed: 281350 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: -0.7999999999999999 translation_z: 0.0 rotation_x: 0.0 rotation_y: 0.625 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 61%|██████ | 43/71 [01:08<00:41, 1.48s/it] resized to 1000x500 62%|██████▏ | 44/71 [01:08<00:29, 1.09s/it] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 75.43it/s] 64%|██████▍ | 16/25 [00:00<00:00, 75.74it/s] 96%|█████████▌| 24/25 [00:00<00:00, 75.86it/s] 100%|██████████| 25/25 [00:00<00:00, 75.77it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 75.58it/s] 64%|██████▍ | 16/25 [00:00<00:00, 75.75it/s] 96%|█████████▌| 24/25 [00:00<00:00, 75.60it/s] 100%|██████████| 25/25 [00:00<00:00, 75.62it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 12.30it/s] 40%|████ | 4/10 [00:00<00:00, 12.25it/s] 60%|██████ | 6/10 [00:00<00:00, 12.24it/s] 80%|████████ | 8/10 [00:00<00:00, 12.23it/s] 100%|██████████| 10/10 [00:00<00:00, 12.20it/s] 100%|██████████| 10/10 [00:00<00:00, 12.22it/s] resized to 1000x500 frame_idx: 46 cond_prompt: an alien world with two suns rising in the background uncond_prompt: low quality, bad image, cropped, out of frame seed: 40 prior_seed: 281350 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: -0.8363636363636363 translation_z: 0.0 rotation_x: 0.0 rotation_y: 0.5 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 resized to 1000x500 frame_idx: 46 cond_prompt: an alien world with two suns rising in the background uncond_prompt: low quality, bad image, cropped, out of frame seed: 40 prior_seed: 281350 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: -0.8363636363636363 translation_z: 0.0 rotation_x: 0.0 rotation_y: 0.5 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 63%|██████▎ | 45/71 [01:11<00:39, 1.53s/it] resized to 1000x500 65%|██████▍ | 46/71 [01:11<00:29, 1.18s/it] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 75.12it/s] 64%|██████▍ | 16/25 [00:00<00:00, 75.33it/s] 96%|█████████▌| 24/25 [00:00<00:00, 75.47it/s] 100%|██████████| 25/25 [00:00<00:00, 75.43it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 75.66it/s] 64%|██████▍ | 16/25 [00:00<00:00, 75.36it/s] 96%|█████████▌| 24/25 [00:00<00:00, 73.13it/s] 100%|██████████| 25/25 [00:00<00:00, 73.62it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 12.30it/s] 40%|████ | 4/10 [00:00<00:00, 12.27it/s] 60%|██████ | 6/10 [00:00<00:00, 12.27it/s] 80%|████████ | 8/10 [00:00<00:00, 12.25it/s] 100%|██████████| 10/10 [00:00<00:00, 12.24it/s] 100%|██████████| 10/10 [00:00<00:00, 12.25it/s] resized to 1000x500 frame_idx: 48 cond_prompt: an alien world with two suns rising in the background uncond_prompt: low quality, bad image, cropped, out of frame seed: 41 prior_seed: 281350 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: -0.8727272727272727 translation_z: 0.0 rotation_x: 0.0 rotation_y: 0.375 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 resized to 1000x500 frame_idx: 48 cond_prompt: an alien world with two suns rising in the background uncond_prompt: low quality, bad image, cropped, out of frame seed: 41 prior_seed: 281350 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: -0.8727272727272727 translation_z: 0.0 rotation_x: 0.0 rotation_y: 0.375 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 66%|██████▌ | 47/71 [01:14<00:39, 1.64s/it] resized to 1000x500 68%|██████▊ | 48/71 [01:14<00:27, 1.20s/it] 0%| | 0/25 [00:00<?, ?it/s] 28%|██▊ | 7/25 [00:00<00:00, 65.47it/s] 60%|██████ | 15/25 [00:00<00:00, 68.79it/s] 92%|█████████▏| 23/25 [00:00<00:00, 69.91it/s] 100%|██████████| 25/25 [00:00<00:00, 69.41it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 75.67it/s] 64%|██████▍ | 16/25 [00:00<00:00, 75.40it/s] 96%|█████████▌| 24/25 [00:00<00:00, 75.35it/s] 100%|██████████| 25/25 [00:00<00:00, 75.38it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 12.32it/s] 40%|████ | 4/10 [00:00<00:00, 12.25it/s] 60%|██████ | 6/10 [00:00<00:00, 12.25it/s] 80%|████████ | 8/10 [00:00<00:00, 12.24it/s] 100%|██████████| 10/10 [00:00<00:00, 12.24it/s] 100%|██████████| 10/10 [00:00<00:00, 12.24it/s] resized to 1000x500 frame_idx: 50 cond_prompt: an alien world with two suns rising in the background uncond_prompt: low quality, bad image, cropped, out of frame seed: 42 prior_seed: 281350 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: -0.9090909090909091 translation_z: 0.0 rotation_x: 0.0 rotation_y: 0.25 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 resized to 1000x500 frame_idx: 50 cond_prompt: an alien world with two suns rising in the background uncond_prompt: low quality, bad image, cropped, out of frame seed: 42 prior_seed: 281350 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: -0.9090909090909091 translation_z: 0.0 rotation_x: 0.0 rotation_y: 0.25 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 69%|██████▉ | 49/71 [01:16<00:34, 1.56s/it] resized to 1000x500 70%|███████ | 50/71 [01:16<00:24, 1.15s/it] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 74.63it/s] 64%|██████▍ | 16/25 [00:00<00:00, 75.13it/s] 96%|█████████▌| 24/25 [00:00<00:00, 73.72it/s] 100%|██████████| 25/25 [00:00<00:00, 73.87it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 70.27it/s] 64%|██████▍ | 16/25 [00:00<00:00, 69.83it/s] 96%|█████████▌| 24/25 [00:00<00:00, 72.09it/s] 100%|██████████| 25/25 [00:00<00:00, 71.66it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 12.31it/s] 40%|████ | 4/10 [00:00<00:00, 12.28it/s] 60%|██████ | 6/10 [00:00<00:00, 12.26it/s] 80%|████████ | 8/10 [00:00<00:00, 12.22it/s] 100%|██████████| 10/10 [00:00<00:00, 12.21it/s] 100%|██████████| 10/10 [00:00<00:00, 12.23it/s] resized to 1000x500 frame_idx: 52 cond_prompt: an alien world with two suns rising in the background uncond_prompt: low quality, bad image, cropped, out of frame seed: 43 prior_seed: 281350 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: -0.9454545454545454 translation_z: 0.0 rotation_x: 0.0 rotation_y: 0.125 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 resized to 1000x500 frame_idx: 52 cond_prompt: an alien world with two suns rising in the background uncond_prompt: low quality, bad image, cropped, out of frame seed: 43 prior_seed: 281350 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: -0.9454545454545454 translation_z: 0.0 rotation_x: 0.0 rotation_y: 0.125 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 72%|███████▏ | 51/71 [01:19<00:30, 1.52s/it] resized to 1000x500 73%|███████▎ | 52/71 [01:19<00:21, 1.12s/it] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 71.15it/s] 64%|██████▍ | 16/25 [00:00<00:00, 73.40it/s] 96%|█████████▌| 24/25 [00:00<00:00, 74.28it/s] 100%|██████████| 25/25 [00:00<00:00, 73.64it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 74.83it/s] 64%|██████▍ | 16/25 [00:00<00:00, 73.40it/s] 96%|█████████▌| 24/25 [00:00<00:00, 74.19it/s] 100%|██████████| 25/25 [00:00<00:00, 74.10it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 12.26it/s] 40%|████ | 4/10 [00:00<00:00, 12.24it/s] 60%|██████ | 6/10 [00:00<00:00, 12.23it/s] 80%|████████ | 8/10 [00:00<00:00, 12.23it/s] 100%|██████████| 10/10 [00:00<00:00, 12.24it/s] 100%|██████████| 10/10 [00:00<00:00, 12.24it/s] resized to 1000x500 frame_idx: 54 cond_prompt: an alien world with two suns rising in the background uncond_prompt: low quality, bad image, cropped, out of frame seed: 44 prior_seed: 281350 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: -0.9818181818181818 translation_z: 0.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 resized to 1000x500 frame_idx: 54 cond_prompt: an alien world with two suns rising in the background uncond_prompt: low quality, bad image, cropped, out of frame seed: 44 prior_seed: 281350 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: -0.9818181818181818 translation_z: 0.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 75%|███████▍ | 53/71 [01:21<00:26, 1.50s/it] resized to 1000x500 76%|███████▌ | 54/71 [01:22<00:18, 1.11s/it] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 75.14it/s] 64%|██████▍ | 16/25 [00:00<00:00, 74.68it/s] 96%|█████████▌| 24/25 [00:00<00:00, 73.92it/s] 100%|██████████| 25/25 [00:00<00:00, 73.94it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 72.90it/s] 64%|██████▍ | 16/25 [00:00<00:00, 74.12it/s] 96%|█████████▌| 24/25 [00:00<00:00, 71.99it/s] 100%|██████████| 25/25 [00:00<00:00, 72.32it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 12.29it/s] 40%|████ | 4/10 [00:00<00:00, 12.26it/s] 60%|██████ | 6/10 [00:00<00:00, 12.24it/s] 80%|████████ | 8/10 [00:00<00:00, 12.23it/s] 100%|██████████| 10/10 [00:00<00:00, 12.22it/s] 100%|██████████| 10/10 [00:00<00:00, 12.23it/s] resized to 1000x500 frame_idx: 56 cond_prompt: an alien world with two suns rising in the background uncond_prompt: low quality, bad image, cropped, out of frame seed: 45 prior_seed: 281350 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: -0.9375 translation_z: 0.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 resized to 1000x500 frame_idx: 56 cond_prompt: an alien world with two suns rising in the background uncond_prompt: low quality, bad image, cropped, out of frame seed: 45 prior_seed: 281350 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: -0.9375 translation_z: 0.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 77%|███████▋ | 55/71 [01:24<00:23, 1.49s/it] resized to 1000x500 79%|███████▉ | 56/71 [01:24<00:16, 1.10s/it] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 75.00it/s] 64%|██████▍ | 16/25 [00:00<00:00, 75.05it/s] 96%|█████████▌| 24/25 [00:00<00:00, 72.12it/s] 100%|██████████| 25/25 [00:00<00:00, 72.73it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 73.05it/s] 64%|██████▍ | 16/25 [00:00<00:00, 74.33it/s] 96%|█████████▌| 24/25 [00:00<00:00, 74.79it/s] 100%|██████████| 25/25 [00:00<00:00, 74.53it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 12.29it/s] 40%|████ | 4/10 [00:00<00:00, 12.24it/s] 60%|██████ | 6/10 [00:00<00:00, 12.23it/s] 80%|████████ | 8/10 [00:00<00:00, 12.24it/s] 100%|██████████| 10/10 [00:00<00:00, 12.23it/s] 100%|██████████| 10/10 [00:00<00:00, 12.23it/s] resized to 1000x500 frame_idx: 58 cond_prompt: an alien world with mossy terrain and steep mountains uncond_prompt: low quality, bad image, cropped, out of frame seed: 46 prior_seed: 281350 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: -0.8125 translation_z: 0.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 resized to 1000x500 frame_idx: 58 cond_prompt: an alien world with mossy terrain and steep mountains uncond_prompt: low quality, bad image, cropped, out of frame seed: 46 prior_seed: 281350 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: -0.8125 translation_z: 0.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 80%|████████ | 57/71 [01:27<00:20, 1.49s/it] resized to 1000x500 82%|████████▏ | 58/71 [01:27<00:14, 1.10s/it] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 74.86it/s] 64%|██████▍ | 16/25 [00:00<00:00, 72.71it/s] 96%|█████████▌| 24/25 [00:00<00:00, 73.83it/s] 100%|██████████| 25/25 [00:00<00:00, 73.54it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 74.38it/s] 64%|██████▍ | 16/25 [00:00<00:00, 74.52it/s] 96%|█████████▌| 24/25 [00:00<00:00, 74.09it/s] 100%|██████████| 25/25 [00:00<00:00, 74.21it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 12.33it/s] 40%|████ | 4/10 [00:00<00:00, 12.25it/s] 60%|██████ | 6/10 [00:00<00:00, 12.22it/s] 80%|████████ | 8/10 [00:00<00:00, 12.21it/s] 100%|██████████| 10/10 [00:00<00:00, 12.20it/s] 100%|██████████| 10/10 [00:00<00:00, 12.21it/s] resized to 1000x500 frame_idx: 60 cond_prompt: an alien world with mossy terrain and steep mountains uncond_prompt: low quality, bad image, cropped, out of frame seed: 47 prior_seed: 281350 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: -0.6875 translation_z: 0.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 resized to 1000x500 frame_idx: 60 cond_prompt: an alien world with mossy terrain and steep mountains uncond_prompt: low quality, bad image, cropped, out of frame seed: 47 prior_seed: 281350 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: -0.6875 translation_z: 0.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 83%|████████▎ | 59/71 [01:29<00:17, 1.48s/it] resized to 1000x500 85%|████████▍ | 60/71 [01:29<00:12, 1.09s/it] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 74.06it/s] 64%|██████▍ | 16/25 [00:00<00:00, 74.76it/s] 96%|█████████▌| 24/25 [00:00<00:00, 72.92it/s] 100%|██████████| 25/25 [00:00<00:00, 73.40it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 75.34it/s] 64%|██████▍ | 16/25 [00:00<00:00, 73.43it/s] 96%|█████████▌| 24/25 [00:00<00:00, 72.75it/s] 100%|██████████| 25/25 [00:00<00:00, 72.94it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 12.34it/s] 40%|████ | 4/10 [00:00<00:00, 12.25it/s] 60%|██████ | 6/10 [00:00<00:00, 12.24it/s] 80%|████████ | 8/10 [00:00<00:00, 12.24it/s] 100%|██████████| 10/10 [00:00<00:00, 12.24it/s] 100%|██████████| 10/10 [00:00<00:00, 12.24it/s] resized to 1000x500 frame_idx: 62 cond_prompt: an alien world with mossy terrain and steep mountains uncond_prompt: low quality, bad image, cropped, out of frame seed: 48 prior_seed: 281350 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: -0.5625 translation_z: 0.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 resized to 1000x500 frame_idx: 62 cond_prompt: an alien world with mossy terrain and steep mountains uncond_prompt: low quality, bad image, cropped, out of frame seed: 48 prior_seed: 281350 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: -0.5625 translation_z: 0.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 86%|████████▌ | 61/71 [01:32<00:14, 1.48s/it] resized to 1000x500 87%|████████▋ | 62/71 [01:32<00:09, 1.10s/it] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 71.44it/s] 64%|██████▍ | 16/25 [00:00<00:00, 72.38it/s] 96%|█████████▌| 24/25 [00:00<00:00, 73.78it/s] 100%|██████████| 25/25 [00:00<00:00, 73.39it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 75.64it/s] 64%|██████▍ | 16/25 [00:00<00:00, 75.58it/s] 96%|█████████▌| 24/25 [00:00<00:00, 75.48it/s] 100%|██████████| 25/25 [00:00<00:00, 75.53it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 12.29it/s] 40%|████ | 4/10 [00:00<00:00, 12.25it/s] 60%|██████ | 6/10 [00:00<00:00, 12.23it/s] 80%|████████ | 8/10 [00:00<00:00, 12.23it/s] 100%|██████████| 10/10 [00:00<00:00, 12.21it/s] 100%|██████████| 10/10 [00:00<00:00, 12.22it/s] resized to 1000x500 frame_idx: 64 cond_prompt: an alien world with mossy terrain and steep mountains uncond_prompt: low quality, bad image, cropped, out of frame seed: 49 prior_seed: 281350 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: -0.4375 translation_z: 0.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 resized to 1000x500 frame_idx: 64 cond_prompt: an alien world with mossy terrain and steep mountains uncond_prompt: low quality, bad image, cropped, out of frame seed: 49 prior_seed: 281350 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: -0.4375 translation_z: 0.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 89%|████████▊ | 63/71 [01:34<00:11, 1.48s/it] resized to 1000x500 90%|█████████ | 64/71 [01:34<00:07, 1.10s/it] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 72.28it/s] 64%|██████▍ | 16/25 [00:00<00:00, 73.73it/s] 96%|█████████▌| 24/25 [00:00<00:00, 74.32it/s] 100%|██████████| 25/25 [00:00<00:00, 74.05it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 71.45it/s] 64%|██████▍ | 16/25 [00:00<00:00, 72.36it/s] 96%|█████████▌| 24/25 [00:00<00:00, 73.24it/s] 100%|██████████| 25/25 [00:00<00:00, 72.99it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 12.32it/s] 40%|████ | 4/10 [00:00<00:00, 12.25it/s] 60%|██████ | 6/10 [00:00<00:00, 12.24it/s] 80%|████████ | 8/10 [00:00<00:00, 12.23it/s] 100%|██████████| 10/10 [00:00<00:00, 12.23it/s] 100%|██████████| 10/10 [00:00<00:00, 12.24it/s] resized to 1000x500 frame_idx: 66 cond_prompt: an alien world with mossy terrain and steep mountains uncond_prompt: low quality, bad image, cropped, out of frame seed: 50 prior_seed: 281350 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: -0.3125 translation_z: 0.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 resized to 1000x500 frame_idx: 66 cond_prompt: an alien world with mossy terrain and steep mountains uncond_prompt: low quality, bad image, cropped, out of frame seed: 50 prior_seed: 281350 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: -0.3125 translation_z: 0.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 92%|█████████▏| 65/71 [01:37<00:08, 1.48s/it] resized to 1000x500 93%|█████████▎| 66/71 [01:37<00:05, 1.10s/it] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 72.27it/s] 64%|██████▍ | 16/25 [00:00<00:00, 70.64it/s] 96%|█████████▌| 24/25 [00:00<00:00, 71.07it/s] 100%|██████████| 25/25 [00:00<00:00, 71.25it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 75.60it/s] 64%|██████▍ | 16/25 [00:00<00:00, 71.87it/s] 96%|█████████▌| 24/25 [00:00<00:00, 70.29it/s] 100%|██████████| 25/25 [00:00<00:00, 70.94it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 12.28it/s] 40%|████ | 4/10 [00:00<00:00, 12.24it/s] 60%|██████ | 6/10 [00:00<00:00, 12.26it/s] 80%|████████ | 8/10 [00:00<00:00, 12.24it/s] 100%|██████████| 10/10 [00:00<00:00, 12.23it/s] 100%|██████████| 10/10 [00:00<00:00, 12.23it/s] resized to 1000x500 frame_idx: 68 cond_prompt: an alien world with mossy terrain and steep mountains uncond_prompt: low quality, bad image, cropped, out of frame seed: 51 prior_seed: 281350 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: -0.1875 translation_z: 0.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 resized to 1000x500 frame_idx: 68 cond_prompt: an alien world with mossy terrain and steep mountains uncond_prompt: low quality, bad image, cropped, out of frame seed: 51 prior_seed: 281350 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: -0.1875 translation_z: 0.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 94%|█████████▍| 67/71 [01:39<00:05, 1.49s/it] resized to 1000x500 96%|█████████▌| 68/71 [01:40<00:03, 1.10s/it] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 74.95it/s] 64%|██████▍ | 16/25 [00:00<00:00, 75.19it/s] 96%|█████████▌| 24/25 [00:00<00:00, 72.54it/s] 100%|██████████| 25/25 [00:00<00:00, 73.06it/s] 0%| | 0/25 [00:00<?, ?it/s] 28%|██▊ | 7/25 [00:00<00:00, 69.88it/s] 60%|██████ | 15/25 [00:00<00:00, 72.77it/s] 92%|█████████▏| 23/25 [00:00<00:00, 74.02it/s] 100%|██████████| 25/25 [00:00<00:00, 73.04it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 12.30it/s] 40%|████ | 4/10 [00:00<00:00, 12.26it/s] 60%|██████ | 6/10 [00:00<00:00, 12.24it/s] 80%|████████ | 8/10 [00:00<00:00, 12.22it/s] 100%|██████████| 10/10 [00:00<00:00, 12.21it/s] 100%|██████████| 10/10 [00:00<00:00, 12.23it/s] resized to 1000x500 frame_idx: 70 cond_prompt: an alien world with mossy terrain and steep mountains uncond_prompt: low quality, bad image, cropped, out of frame seed: 52 prior_seed: 281350 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: -0.0625 translation_z: 0.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 resized to 1000x500 frame_idx: 70 cond_prompt: an alien world with mossy terrain and steep mountains uncond_prompt: low quality, bad image, cropped, out of frame seed: 52 prior_seed: 281350 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: -0.0625 translation_z: 0.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 97%|█████████▋| 69/71 [01:42<00:02, 1.49s/it] resized to 1000x500 99%|█████████▊| 70/71 [01:42<00:01, 1.10s/it] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 71.98it/s] 64%|██████▍ | 16/25 [00:00<00:00, 73.93it/s] 96%|█████████▌| 24/25 [00:00<00:00, 74.19it/s] 100%|██████████| 25/25 [00:00<00:00, 73.98it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 75.56it/s] 64%|██████▍ | 16/25 [00:00<00:00, 72.87it/s] 96%|█████████▌| 24/25 [00:00<00:00, 71.33it/s] 100%|██████████| 25/25 [00:00<00:00, 71.90it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 12.33it/s] 40%|████ | 4/10 [00:00<00:00, 12.24it/s] 60%|██████ | 6/10 [00:00<00:00, 12.22it/s] 80%|████████ | 8/10 [00:00<00:00, 12.22it/s] 100%|██████████| 10/10 [00:00<00:00, 12.23it/s] 100%|██████████| 10/10 [00:00<00:00, 12.23it/s] 99%|█████████▊| 70/71 [01:44<00:01, 1.50s/it] 0%| | 0/70 [00:00<?, ?it/s] 1%|▏ | 1/70 [00:00<00:10, 6.50it/s] 43%|████▎ | 30/70 [00:00<00:00, 141.00it/s] 67%|██████▋ | 47/70 [00:00<00:00, 119.41it/s] 87%|████████▋ | 61/70 [00:00<00:00, 97.13it/s] 100%|██████████| 70/70 [00:00<00:00, 88.88it/s]
Prediction
adirik/deforum-kandinsky-2-2:550e576a484886c105a5cf4ff09ac746e691ab473d12a6afe14eed23bc3bbe42IDcalyyidb3i6l4eydzqug6iaa6mStatusSucceededSourceWebHardwareA40Total durationCreatedInput
- fps
- 15
- seed
- 17
- steps
- 80
- width
- 480
- height
- 640
- scheduler
- euler_ancestral
- animations
- zoomin
- max_frames
- 1000
- prompt_durations
- animation_prompts
- a beautiful forest by Asher Brown Durand, trending on Artstation
{ "fps": 15, "seed": 17, "steps": 80, "width": 480, "height": 640, "scheduler": "euler_ancestral", "animations": "zoomin", "max_frames": 1000, "prompt_durations": "", "animation_prompts": "a beautiful forest by Asher Brown Durand, trending on Artstation" }
Install Replicate’s Node.js client library:npm install replicate
Import and set up the client:import Replicate from "replicate"; const replicate = new Replicate({ auth: process.env.REPLICATE_API_TOKEN, });
Run adirik/deforum-kandinsky-2-2 using Replicate’s API. Check out the model's schema for an overview of inputs and outputs.
const output = await replicate.run( "adirik/deforum-kandinsky-2-2:550e576a484886c105a5cf4ff09ac746e691ab473d12a6afe14eed23bc3bbe42", { input: { fps: 15, seed: 17, steps: 80, width: 480, height: 640, scheduler: "euler_ancestral", animations: "zoomin", max_frames: 1000, prompt_durations: "", animation_prompts: "a beautiful forest by Asher Brown Durand, trending on Artstation" } } ); // To access the file URL: console.log(output.url()); //=> "http://example.com" // To write the file to disk: fs.writeFile("my-image.png", output);
To learn more, take a look at the guide on getting started with Node.js.
Install Replicate’s Python client library:pip install replicate
Import the client:import replicate
Run adirik/deforum-kandinsky-2-2 using Replicate’s API. Check out the model's schema for an overview of inputs and outputs.
output = replicate.run( "adirik/deforum-kandinsky-2-2:550e576a484886c105a5cf4ff09ac746e691ab473d12a6afe14eed23bc3bbe42", input={ "fps": 15, "seed": 17, "steps": 80, "width": 480, "height": 640, "scheduler": "euler_ancestral", "animations": "zoomin", "max_frames": 1000, "prompt_durations": "", "animation_prompts": "a beautiful forest by Asher Brown Durand, trending on Artstation" } ) print(output)
To learn more, take a look at the guide on getting started with Python.
Run adirik/deforum-kandinsky-2-2 using Replicate’s API. Check out the model's schema for an overview of inputs and outputs.
curl -s -X POST \ -H "Authorization: Bearer $REPLICATE_API_TOKEN" \ -H "Content-Type: application/json" \ -H "Prefer: wait" \ -d $'{ "version": "adirik/deforum-kandinsky-2-2:550e576a484886c105a5cf4ff09ac746e691ab473d12a6afe14eed23bc3bbe42", "input": { "fps": 15, "seed": 17, "steps": 80, "width": 480, "height": 640, "scheduler": "euler_ancestral", "animations": "zoomin", "max_frames": 1000, "prompt_durations": "", "animation_prompts": "a beautiful forest by Asher Brown Durand, trending on Artstation" } }' \ https://api.replicate.com/v1/predictions
To learn more, take a look at Replicate’s HTTP API reference docs.
Output
{ "completed_at": "2023-10-17T17:03:11.051621Z", "created_at": "2023-10-17T16:46:35.003028Z", "data_removed": false, "error": null, "id": "calyyidb3i6l4eydzqug6iaa6m", "input": { "fps": 15, "seed": 17, "steps": 80, "width": 480, "height": 640, "scheduler": "euler_ancestral", "animations": "zoomin", "max_frames": 1000, "prompt_durations": "", "animation_prompts": "a beautiful forest by Asher Brown Durand, trending on Artstation" }, "logs": "0%| | 0/999 [00:00<?, ?it/s]/src/deforum_kandinsky/helpers/animation.py:322: FutureWarning: Setting an item of incompatible dtype is deprecated and will raise in a future error of pandas. Value 'euler' has dtype incompatible with float64, please explicitly cast to a compatible dtype first.\nkey_frame_series[i] = numexpr.evaluate(value) if not is_single_string else value # workaround for values formatted like 0:(\"I am test\") //used for sampler schedules\n/src/deforum_kandinsky/helpers/animation.py:332: FutureWarning: Series.interpolate with object dtype is deprecated and will raise in a future version. Call obj.infer_objects(copy=False) before interpolating instead.\nkey_frame_series = key_frame_series.interpolate(method=interp_method.lower(), limit_direction='both')\n/src/deforum_kandinsky/helpers/render.py:242: FutureWarning: Setting an item of incompatible dtype is deprecated and will raise in a future error of pandas. Value 'a beautiful forest by Asher Brown Durand, trending on Artstation' has dtype incompatible with float64, please explicitly cast to a compatible dtype first.\ncond_prompt_series[int(i)] = prompt\n/src/deforum_kandinsky/helpers/render.py:248: FutureWarning: Setting an item of incompatible dtype is deprecated and will raise in a future error of pandas. Value 'low quality, bad image, cropped, out of frame' has dtype incompatible with float64, please explicitly cast to a compatible dtype first.\nuncond_prompt_series[int(i)] = prompt\nUsing cache found in torch-cache/hub/rwightman_gen-efficientnet-pytorch_master\nLoading base model ()...Done.\nRemoving last two layers (global_pool & classifier).\nBuilding Encoder-Decoder model..Done.\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 71.59it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 73.65it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 74.34it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 73.98it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 75.55it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 73.82it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 71.94it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 72.47it/s]\n 0%| | 0/80 [00:00<?, ?it/s]\u001b[A\n 1%|▏ | 1/80 [00:00<00:08, 9.21it/s]\u001b[A\n 4%|▍ | 3/80 [00:00<00:05, 14.89it/s]\u001b[A\n 6%|▋ | 5/80 [00:00<00:04, 16.68it/s]\u001b[A\n 9%|▉ | 7/80 [00:00<00:04, 17.51it/s]\u001b[A\n 11%|█▏ | 9/80 [00:00<00:03, 17.97it/s]\u001b[A\n 14%|█▍ | 11/80 [00:00<00:03, 18.22it/s]\u001b[A\n 16%|█▋ | 13/80 [00:00<00:03, 18.42it/s]\u001b[A\n 19%|█▉ | 15/80 [00:00<00:03, 18.52it/s]\u001b[A\n 21%|██▏ | 17/80 [00:00<00:03, 18.55it/s]\u001b[A\n 24%|██▍ | 19/80 [00:01<00:03, 18.64it/s]\u001b[A\n 26%|██▋ | 21/80 [00:01<00:03, 18.68it/s]\u001b[A\n 29%|██▉ | 23/80 [00:01<00:03, 18.71it/s]\u001b[A\n 31%|███▏ | 25/80 [00:01<00:02, 18.74it/s]\u001b[A\n 34%|███▍ | 27/80 [00:01<00:02, 18.75it/s]\u001b[A\n 36%|███▋ | 29/80 [00:01<00:02, 18.75it/s]\u001b[A\n 39%|███▉ | 31/80 [00:01<00:02, 18.76it/s]\u001b[A\n 41%|████▏ | 33/80 [00:01<00:02, 18.76it/s]\u001b[A\n 44%|████▍ | 35/80 [00:01<00:02, 18.75it/s]\u001b[A\n 46%|████▋ | 37/80 [00:02<00:02, 18.77it/s]\u001b[A\n 49%|████▉ | 39/80 [00:02<00:02, 18.80it/s]\u001b[A\n 51%|█████▏ | 41/80 [00:02<00:02, 18.82it/s]\u001b[A\n 54%|█████▍ | 43/80 [00:02<00:01, 18.84it/s]\u001b[A\n 56%|█████▋ | 45/80 [00:02<00:01, 18.83it/s]\u001b[A\n 59%|█████▉ | 47/80 [00:02<00:01, 18.84it/s]\u001b[A\n 61%|██████▏ | 49/80 [00:02<00:01, 18.81it/s]\u001b[A\n 64%|██████▍ | 51/80 [00:02<00:01, 18.82it/s]\u001b[A\n 66%|██████▋ | 53/80 [00:02<00:01, 18.83it/s]\u001b[A\n 69%|██████▉ | 55/80 [00:02<00:01, 18.83it/s]\u001b[A\n 71%|███████▏ | 57/80 [00:03<00:01, 18.84it/s]\u001b[A\n 74%|███████▍ | 59/80 [00:03<00:01, 18.83it/s]\u001b[A\n 76%|███████▋ | 61/80 [00:03<00:01, 18.81it/s]\u001b[A\n 79%|███████▉ | 63/80 [00:03<00:00, 18.83it/s]\u001b[A\n 81%|████████▏ | 65/80 [00:03<00:00, 18.83it/s]\u001b[A\n 84%|████████▍ | 67/80 [00:03<00:00, 18.85it/s]\u001b[A\n 86%|████████▋ | 69/80 [00:03<00:00, 18.85it/s]\u001b[A\n 89%|████████▉ | 71/80 [00:03<00:00, 18.87it/s]\u001b[A\n 91%|█████████▏| 73/80 [00:03<00:00, 18.84it/s]\u001b[A\n 94%|█████████▍| 75/80 [00:04<00:00, 18.84it/s]\u001b[A\n 96%|█████████▋| 77/80 [00:04<00:00, 18.86it/s]\u001b[A\n 99%|█████████▉| 79/80 [00:04<00:00, 18.87it/s]\u001b[A\n100%|██████████| 80/80 [00:04<00:00, 18.57it/s]\nframe_idx: 2\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 18\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nframe_idx: 2\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 18\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 0%| | 1/999 [00:10<3:00:15, 10.84s/it]\n 0%| | 2/999 [00:10<1:15:24, 4.54s/it]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 74.20it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 74.58it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 74.77it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 74.63it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 72.66it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 73.88it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 74.24it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 74.05it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 18.94it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 18.89it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 18.89it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 18.86it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.89it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.88it/s]\nframe_idx: 4\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 19\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nframe_idx: 4\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 19\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 0%| | 3/999 [00:12<54:24, 3.28s/it] \n 0%| | 4/999 [00:12<33:45, 2.04s/it]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 72.86it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 74.33it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 74.80it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 74.55it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 75.22it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 75.15it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 75.09it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 75.11it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 18.90it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 18.88it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 18.86it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 18.86it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.84it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.85it/s]\nframe_idx: 6\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 20\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nframe_idx: 6\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 20\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 1%| | 5/999 [00:14<32:07, 1.94s/it]\n 1%| | 6/999 [00:14<21:55, 1.32s/it]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 71.57it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 71.02it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 70.37it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 70.58it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 74.39it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 74.56it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 74.85it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 74.73it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 19.00it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 18.90it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 18.86it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 18.83it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.83it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.84it/s]\nframe_idx: 8\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 21\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nframe_idx: 8\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 21\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 1%| | 7/999 [00:16<24:29, 1.48s/it]\n 1%| | 8/999 [00:16<17:24, 1.05s/it]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 28%|██▊ | 7/25 [00:00<00:00, 65.91it/s]\u001b[A\n 56%|█████▌ | 14/25 [00:00<00:00, 67.18it/s]\u001b[A\n 84%|████████▍ | 21/25 [00:00<00:00, 67.39it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 67.91it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 74.89it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 74.82it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 71.89it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 72.48it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 18.95it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 18.85it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 18.85it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 18.85it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.85it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.85it/s]\nframe_idx: 10\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 22\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nframe_idx: 10\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 22\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 1%| | 9/999 [00:18<21:18, 1.29s/it]\n 1%| | 10/999 [00:18<15:23, 1.07it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 28%|██▊ | 7/25 [00:00<00:00, 67.56it/s]\u001b[A\n 56%|█████▌ | 14/25 [00:00<00:00, 68.06it/s]\u001b[A\n 84%|████████▍ | 21/25 [00:00<00:00, 68.42it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 68.09it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 72.63it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 73.73it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 71.19it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 71.58it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 18.90it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 18.82it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 18.81it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 18.79it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.76it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.77it/s]\nframe_idx: 12\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 23\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nframe_idx: 12\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 23\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 1%| | 11/999 [00:20<19:53, 1.21s/it]\n 1%| | 12/999 [00:20<14:31, 1.13it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 73.37it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 71.41it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 69.66it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 70.11it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 28%|██▊ | 7/25 [00:00<00:00, 68.77it/s]\u001b[A\n 56%|█████▌ | 14/25 [00:00<00:00, 68.52it/s]\u001b[A\n 84%|████████▍ | 21/25 [00:00<00:00, 67.98it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 68.91it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 18.91it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 18.85it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 18.79it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 18.78it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.77it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.78it/s]\nframe_idx: 14\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 24\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nframe_idx: 14\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 24\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 1%|▏ | 13/999 [00:22<19:13, 1.17s/it]\n 1%|▏ | 14/999 [00:22<14:05, 1.17it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 71.71it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 69.53it/s]\u001b[A\n 92%|█████████▏| 23/25 [00:00<00:00, 69.22it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 69.39it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 75.05it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 74.54it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 74.56it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 74.52it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 18.93it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 18.87it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 18.85it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 18.85it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.84it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.84it/s]\nframe_idx: 16\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 25\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nframe_idx: 16\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 25\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 2%|▏ | 15/999 [00:24<18:44, 1.14s/it]\n 2%|▏ | 16/999 [00:24<13:45, 1.19it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 73.75it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 71.51it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 70.03it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 70.55it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 73.94it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 70.06it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 69.71it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 70.07it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 18.86it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 18.86it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 18.85it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 18.79it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.80it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.81it/s]\nframe_idx: 18\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 26\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nframe_idx: 18\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 26\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 2%|▏ | 17/999 [00:26<18:33, 1.13s/it]\n 2%|▏ | 18/999 [00:26<13:38, 1.20it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 74.37it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 74.54it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 72.51it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 72.82it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 72.92it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 74.20it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 74.59it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 74.38it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 18.99it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 18.93it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 18.89it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 18.85it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.80it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.84it/s]\nframe_idx: 20\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 27\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nframe_idx: 20\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 27\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 2%|▏ | 19/999 [00:28<18:16, 1.12s/it]\n 2%|▏ | 20/999 [00:28<13:26, 1.21it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 73.62it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 74.18it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 74.20it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 74.12it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 28%|██▊ | 7/25 [00:00<00:00, 67.13it/s]\u001b[A\n 56%|█████▌ | 14/25 [00:00<00:00, 68.15it/s]\u001b[A\n 84%|████████▍ | 21/25 [00:00<00:00, 68.37it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 69.04it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 18.86it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 18.84it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 18.81it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 18.81it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.81it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.81it/s]\nframe_idx: 22\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 28\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nframe_idx: 22\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 28\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 2%|▏ | 21/999 [00:30<18:14, 1.12s/it]\n 2%|▏ | 22/999 [00:30<13:23, 1.22it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 74.19it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 73.30it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 73.80it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 73.79it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 28%|██▊ | 7/25 [00:00<00:00, 67.77it/s]\u001b[A\n 60%|██████ | 15/25 [00:00<00:00, 72.13it/s]\u001b[A\n 92%|█████████▏| 23/25 [00:00<00:00, 73.34it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 72.79it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 18.91it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 18.86it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 18.86it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 18.85it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.83it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.84it/s]\nframe_idx: 24\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 29\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nframe_idx: 24\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 29\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 2%|▏ | 23/999 [00:32<18:08, 1.11s/it]\n 2%|▏ | 24/999 [00:32<13:19, 1.22it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 73.52it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 74.28it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 74.40it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 74.32it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 72.93it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 70.58it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 72.58it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 72.38it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 18.88it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 18.82it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 18.79it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 18.77it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.77it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.78it/s]\nframe_idx: 26\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 30\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nframe_idx: 26\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 30\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 3%|▎ | 25/999 [00:34<18:00, 1.11s/it]\n 3%|▎ | 26/999 [00:34<13:14, 1.22it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 73.85it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 73.89it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 73.55it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 73.64it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 74.33it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 74.16it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 70.09it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 71.07it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 18.98it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 18.88it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 18.81it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 18.83it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.79it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.81it/s]\nframe_idx: 28\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 31\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nframe_idx: 28\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 31\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 3%|▎ | 27/999 [00:36<18:03, 1.11s/it]\n 3%|▎ | 28/999 [00:36<13:17, 1.22it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 74.04it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 74.39it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 74.68it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 74.61it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 75.02it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 74.40it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 72.88it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 73.21it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 18.95it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 18.82it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 18.83it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 18.82it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.82it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.82it/s]\nframe_idx: 30\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 32\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nframe_idx: 30\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 32\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 3%|▎ | 29/999 [00:37<17:56, 1.11s/it]\n 3%|▎ | 30/999 [00:38<13:13, 1.22it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 73.60it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 74.21it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 74.47it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 74.32it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 74.82it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 74.78it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 73.43it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 73.59it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 18.88it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 18.84it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 18.83it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 18.82it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.81it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.82it/s]\nframe_idx: 32\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 33\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nframe_idx: 32\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 33\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 3%|▎ | 31/999 [00:39<17:53, 1.11s/it]\n 3%|▎ | 32/999 [00:39<13:08, 1.23it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 28%|██▊ | 7/25 [00:00<00:00, 67.37it/s]\u001b[A\n 56%|█████▌ | 14/25 [00:00<00:00, 68.26it/s]\u001b[A\n 84%|████████▍ | 21/25 [00:00<00:00, 66.23it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 66.73it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 28%|██▊ | 7/25 [00:00<00:00, 68.77it/s]\u001b[A\n 56%|█████▌ | 14/25 [00:00<00:00, 69.03it/s]\u001b[A\n 84%|████████▍ | 21/25 [00:00<00:00, 68.89it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 68.73it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 18.88it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 18.88it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 18.83it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 18.82it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.84it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.84it/s]\nframe_idx: 34\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 34\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nframe_idx: 34\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 34\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 3%|▎ | 33/999 [00:41<18:06, 1.13s/it]\n 3%|▎ | 34/999 [00:41<13:19, 1.21it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 74.05it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 74.33it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 74.47it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 74.41it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 74.79it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 74.80it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 74.57it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 74.64it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 18.89it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 18.81it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 18.78it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 18.78it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.76it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.77it/s]\nframe_idx: 36\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 35\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nframe_idx: 36\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 35\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 4%|▎ | 35/999 [00:43<17:54, 1.11s/it]\n 4%|▎ | 36/999 [00:43<13:09, 1.22it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 73.68it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 74.33it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 74.14it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 74.16it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 74.47it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 74.61it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 74.64it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 74.61it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 18.84it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 18.74it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 18.79it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 18.78it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.75it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.76it/s]\nframe_idx: 38\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 36\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nframe_idx: 38\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 36\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 4%|▎ | 37/999 [00:45<17:47, 1.11s/it]\n 4%|▍ | 38/999 [00:45<13:06, 1.22it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 28%|██▊ | 7/25 [00:00<00:00, 68.81it/s]\u001b[A\n 56%|█████▌ | 14/25 [00:00<00:00, 69.36it/s]\u001b[A\n 88%|████████▊ | 22/25 [00:00<00:00, 70.35it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 70.01it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 28%|██▊ | 7/25 [00:00<00:00, 67.84it/s]\u001b[A\n 60%|██████ | 15/25 [00:00<00:00, 70.53it/s]\u001b[A\n 92%|█████████▏| 23/25 [00:00<00:00, 72.27it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 71.27it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 18.87it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 18.76it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 18.76it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 18.76it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.75it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.75it/s]\nframe_idx: 40\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 37\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nframe_idx: 40\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 37\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 4%|▍ | 39/999 [00:47<17:56, 1.12s/it]\n 4%|▍ | 40/999 [00:47<13:11, 1.21it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 28%|██▊ | 7/25 [00:00<00:00, 66.72it/s]\u001b[A\n 60%|██████ | 15/25 [00:00<00:00, 68.87it/s]\u001b[A\n 88%|████████▊ | 22/25 [00:00<00:00, 69.29it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 69.10it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 28%|██▊ | 7/25 [00:00<00:00, 69.81it/s]\u001b[A\n 60%|██████ | 15/25 [00:00<00:00, 71.90it/s]\u001b[A\n 92%|█████████▏| 23/25 [00:00<00:00, 71.54it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 71.22it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 18.89it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 18.78it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 18.74it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 18.76it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.75it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.76it/s]\nframe_idx: 42\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 38\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nframe_idx: 42\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 38\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 4%|▍ | 41/999 [00:49<17:59, 1.13s/it]\n 4%|▍ | 42/999 [00:49<13:14, 1.21it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 28%|██▊ | 7/25 [00:00<00:00, 68.28it/s]\u001b[A\n 60%|██████ | 15/25 [00:00<00:00, 71.12it/s]\u001b[A\n 92%|█████████▏| 23/25 [00:00<00:00, 71.57it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 71.30it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 71.29it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 73.06it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 72.03it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 71.83it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 18.88it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 18.84it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 18.83it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 18.82it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.80it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.81it/s]\nframe_idx: 44\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 39\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nframe_idx: 44\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 39\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 4%|▍ | 43/999 [00:51<17:54, 1.12s/it]\n 4%|▍ | 44/999 [00:51<13:09, 1.21it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 28%|██▊ | 7/25 [00:00<00:00, 68.75it/s]\u001b[A\n 56%|█████▌ | 14/25 [00:00<00:00, 69.40it/s]\u001b[A\n 88%|████████▊ | 22/25 [00:00<00:00, 71.78it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 71.60it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 75.66it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 75.50it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 75.20it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 75.32it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 18.89it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 18.79it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 18.70it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 18.69it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.72it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.73it/s]\nframe_idx: 46\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 40\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nframe_idx: 46\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 40\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 5%|▍ | 45/999 [00:53<17:44, 1.12s/it]\n 5%|▍ | 46/999 [00:53<13:05, 1.21it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 71.99it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 71.16it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 70.83it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 70.99it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 74.79it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 74.80it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 74.97it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 74.86it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 18.87it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 18.74it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 18.75it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 18.62it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.68it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.69it/s]\nframe_idx: 48\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 41\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nframe_idx: 48\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 41\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 5%|▍ | 47/999 [00:55<17:43, 1.12s/it]\n 5%|▍ | 48/999 [00:55<13:01, 1.22it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 74.35it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 72.75it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 72.08it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 72.26it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 75.09it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 72.19it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 73.21it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 72.99it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 18.88it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 18.70it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 18.67it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 18.65it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.54it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.60it/s]\nframe_idx: 50\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 42\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nframe_idx: 50\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 42\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 5%|▍ | 49/999 [00:57<17:40, 1.12s/it]\n 5%|▌ | 50/999 [00:57<13:01, 1.21it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 73.44it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 72.08it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 70.07it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 70.54it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 28%|██▊ | 7/25 [00:00<00:00, 68.89it/s]\u001b[A\n 60%|██████ | 15/25 [00:00<00:00, 72.12it/s]\u001b[A\n 92%|█████████▏| 23/25 [00:00<00:00, 72.84it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 72.20it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 18.88it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 18.78it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 18.73it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 18.71it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.70it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.72it/s]\nframe_idx: 52\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 43\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nframe_idx: 52\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 43\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 5%|▌ | 51/999 [00:59<17:44, 1.12s/it]\n 5%|▌ | 52/999 [00:59<13:02, 1.21it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 73.87it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 74.15it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 73.46it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 73.19it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 28%|██▊ | 7/25 [00:00<00:00, 68.19it/s]\u001b[A\n 60%|██████ | 15/25 [00:00<00:00, 72.00it/s]\u001b[A\n 92%|█████████▏| 23/25 [00:00<00:00, 73.14it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 72.59it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 18.85it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 18.80it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 18.74it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 18.72it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.71it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.73it/s]\nframe_idx: 54\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 44\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nframe_idx: 54\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 44\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 5%|▌ | 53/999 [01:01<17:40, 1.12s/it]\n 5%|▌ | 54/999 [01:01<13:01, 1.21it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 72.21it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 71.95it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 72.59it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 72.43it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 71.89it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 72.67it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 72.33it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 72.34it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 18.70it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 18.56it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 18.63it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 18.68it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.65it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.64it/s]\nframe_idx: 56\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 45\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nframe_idx: 56\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 45\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 6%|▌ | 55/999 [01:03<17:37, 1.12s/it]\n 6%|▌ | 56/999 [01:03<12:58, 1.21it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 74.13it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 74.42it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 74.11it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 73.74it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 28%|██▊ | 7/25 [00:00<00:00, 69.61it/s]\u001b[A\n 60%|██████ | 15/25 [00:00<00:00, 70.37it/s]\u001b[A\n 92%|█████████▏| 23/25 [00:00<00:00, 71.69it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 71.41it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 18.83it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 18.66it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 18.62it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 18.61it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.63it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.63it/s]\nframe_idx: 58\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 46\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nframe_idx: 58\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 46\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 6%|▌ | 57/999 [01:05<17:34, 1.12s/it]\n 6%|▌ | 58/999 [01:05<12:56, 1.21it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 73.50it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 73.94it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 73.78it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 73.72it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 72.19it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 72.28it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 72.93it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 72.51it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 18.86it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 18.77it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 18.70it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 18.68it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.68it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.69it/s]\nframe_idx: 60\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 47\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nframe_idx: 60\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 47\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 6%|▌ | 59/999 [01:07<17:32, 1.12s/it]\n 6%|▌ | 60/999 [01:07<12:53, 1.21it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 73.52it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 73.54it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 73.97it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 73.62it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 71.90it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 69.41it/s]\u001b[A\n 92%|█████████▏| 23/25 [00:00<00:00, 69.00it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 69.19it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 18.85it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 18.73it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 18.71it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 18.69it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.66it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.68it/s]\nframe_idx: 62\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 48\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nframe_idx: 62\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 48\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 6%|▌ | 61/999 [01:09<17:30, 1.12s/it]\n 6%|▌ | 62/999 [01:09<12:52, 1.21it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 73.06it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 73.93it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 73.97it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 73.75it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 28%|██▊ | 7/25 [00:00<00:00, 69.22it/s]\u001b[A\n 56%|█████▌ | 14/25 [00:00<00:00, 69.54it/s]\u001b[A\n 84%|████████▍ | 21/25 [00:00<00:00, 69.69it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 69.71it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 18.83it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 18.78it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 18.72it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 18.70it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.67it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.69it/s]\nframe_idx: 64\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 49\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nframe_idx: 64\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 49\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 6%|▋ | 63/999 [01:10<17:33, 1.13s/it]\n 6%|▋ | 64/999 [01:11<12:54, 1.21it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 73.10it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 73.55it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 72.77it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 72.48it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 28%|██▊ | 7/25 [00:00<00:00, 68.73it/s]\u001b[A\n 56%|█████▌ | 14/25 [00:00<00:00, 68.38it/s]\u001b[A\n 84%|████████▍ | 21/25 [00:00<00:00, 68.11it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 69.01it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 18.85it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 18.62it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 18.67it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 18.66it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.68it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.67it/s]\nframe_idx: 66\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 50\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nframe_idx: 66\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 50\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 7%|▋ | 65/999 [01:12<17:36, 1.13s/it]\n 7%|▋ | 66/999 [01:13<12:57, 1.20it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 73.73it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 73.40it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 73.47it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 73.41it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 71.61it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 71.94it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 70.64it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 70.59it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 18.84it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 18.74it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 18.70it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 18.66it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.63it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.66it/s]\nframe_idx: 68\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 51\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nframe_idx: 68\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 51\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 7%|▋ | 67/999 [01:14<17:32, 1.13s/it]\n 7%|▋ | 68/999 [01:15<12:54, 1.20it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 73.17it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 70.31it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 69.52it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 69.74it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 28%|██▊ | 7/25 [00:00<00:00, 69.71it/s]\u001b[A\n 60%|██████ | 15/25 [00:00<00:00, 72.25it/s]\u001b[A\n 92%|█████████▏| 23/25 [00:00<00:00, 69.79it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 69.93it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 18.86it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 18.75it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 18.69it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 18.66it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.66it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.68it/s]\nframe_idx: 70\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 52\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nframe_idx: 70\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 52\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 7%|▋ | 69/999 [01:16<17:35, 1.13s/it]\n 7%|▋ | 70/999 [01:17<12:55, 1.20it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 73.06it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 73.64it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 73.80it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 73.69it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 74.44it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 74.35it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 73.93it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 73.73it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 18.84it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 18.67it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 18.66it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 18.67it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.67it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.67it/s]\nframe_idx: 72\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 53\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nframe_idx: 72\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 53\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 7%|▋ | 71/999 [01:18<17:21, 1.12s/it]\n 7%|▋ | 72/999 [01:18<12:47, 1.21it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 73.83it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 73.85it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 73.57it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 73.57it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 73.98it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 74.31it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 74.37it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 74.29it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 18.69it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 18.72it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 18.71it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 18.71it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.72it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.71it/s]\nframe_idx: 74\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 54\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nframe_idx: 74\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 54\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 7%|▋ | 73/999 [01:20<17:18, 1.12s/it]\n 7%|▋ | 74/999 [01:20<12:44, 1.21it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 71.94it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 72.97it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 73.49it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 73.18it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 74.07it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 72.77it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 73.14it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 73.12it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 18.70it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 18.65it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 18.59it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 18.59it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.63it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.62it/s]\nframe_idx: 76\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 55\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nframe_idx: 76\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 55\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 8%|▊ | 75/999 [01:22<17:16, 1.12s/it]\n 8%|▊ | 76/999 [01:22<12:42, 1.21it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 73.74it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 73.98it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 74.34it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 74.21it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 74.65it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 74.68it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 74.68it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 74.71it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 18.77it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 18.73it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 18.73it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 18.72it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.68it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.69it/s]\nframe_idx: 78\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 56\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nframe_idx: 78\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 56\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 8%|▊ | 77/999 [01:24<17:08, 1.11s/it]\n 8%|▊ | 78/999 [01:24<12:35, 1.22it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 28%|██▊ | 7/25 [00:00<00:00, 67.06it/s]\u001b[A\n 56%|█████▌ | 14/25 [00:00<00:00, 67.84it/s]\u001b[A\n 84%|████████▍ | 21/25 [00:00<00:00, 67.64it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 67.80it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 73.54it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 73.18it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 73.51it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 73.37it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 14.30it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 16.59it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 17.33it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 17.54it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 17.85it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 17.33it/s]\nframe_idx: 80\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 57\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nframe_idx: 80\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 57\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 8%|▊ | 79/999 [01:26<17:39, 1.15s/it]\n 8%|▊ | 80/999 [01:27<14:18, 1.07it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 72.93it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 73.18it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 73.60it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 73.25it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 71.14it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 72.23it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 70.62it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 70.80it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 18.84it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 18.74it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 18.71it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 18.66it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.64it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.67it/s]\nframe_idx: 82\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 58\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nframe_idx: 82\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 58\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 8%|▊ | 81/999 [01:28<18:19, 1.20s/it]\n 8%|▊ | 82/999 [01:29<13:25, 1.14it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 73.79it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 73.19it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 72.62it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 72.68it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 73.60it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 73.55it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 71.54it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 71.99it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 18.86it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 18.73it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 18.71it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 18.67it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.67it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.68it/s]\nframe_idx: 84\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 59\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nframe_idx: 84\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 59\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 8%|▊ | 83/999 [01:30<17:39, 1.16s/it]\n 8%|▊ | 84/999 [01:31<12:57, 1.18it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 73.10it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 74.17it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 74.26it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 74.16it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 74.28it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 74.53it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 74.58it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 74.48it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 18.80it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 18.76it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 18.72it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 18.71it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.70it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.71it/s]\nframe_idx: 86\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 60\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nframe_idx: 86\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 60\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 9%|▊ | 85/999 [01:32<17:16, 1.13s/it]\n 9%|▊ | 86/999 [01:32<12:41, 1.20it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 73.71it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 74.27it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 73.91it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 73.85it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 74.21it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 74.65it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 74.46it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 74.34it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 18.75it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 18.68it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 18.63it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 18.61it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.60it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.61it/s]\nframe_idx: 88\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 61\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nframe_idx: 88\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 61\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 9%|▊ | 87/999 [01:34<17:03, 1.12s/it]\n 9%|▉ | 88/999 [01:34<12:33, 1.21it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 73.93it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 74.49it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 74.92it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 74.60it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 74.85it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 74.69it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 74.66it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 74.66it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 18.79it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 18.70it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 18.66it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 18.67it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.60it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.63it/s]\nframe_idx: 90\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 62\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nframe_idx: 90\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 62\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 9%|▉ | 89/999 [01:36<16:53, 1.11s/it]\n 9%|▉ | 90/999 [01:36<12:25, 1.22it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 28%|██▊ | 7/25 [00:00<00:00, 68.56it/s]\u001b[A\n 56%|█████▌ | 14/25 [00:00<00:00, 68.43it/s]\u001b[A\n 84%|████████▍ | 21/25 [00:00<00:00, 68.26it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 69.34it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 28%|██▊ | 7/25 [00:00<00:00, 68.20it/s]\u001b[A\n 56%|█████▌ | 14/25 [00:00<00:00, 68.60it/s]\u001b[A\n 88%|████████▊ | 22/25 [00:00<00:00, 70.60it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 70.37it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 18.82it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 18.71it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 18.70it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 18.64it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.60it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.62it/s]\nframe_idx: 92\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 63\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nframe_idx: 92\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 63\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 9%|▉ | 91/999 [01:38<17:04, 1.13s/it]\n 9%|▉ | 92/999 [01:38<12:32, 1.21it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 28%|██▊ | 7/25 [00:00<00:00, 67.45it/s]\u001b[A\n 56%|█████▌ | 14/25 [00:00<00:00, 67.90it/s]\u001b[A\n 84%|████████▍ | 21/25 [00:00<00:00, 67.74it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 67.52it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 28%|██▊ | 7/25 [00:00<00:00, 69.44it/s]\u001b[A\n 60%|██████ | 15/25 [00:00<00:00, 72.34it/s]\u001b[A\n 92%|█████████▏| 23/25 [00:00<00:00, 73.22it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 72.35it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 18.77it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 18.63it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 18.61it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 18.64it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.64it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.64it/s]\nframe_idx: 94\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 64\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nframe_idx: 94\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 64\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 9%|▉ | 93/999 [01:40<17:10, 1.14s/it]\n 9%|▉ | 94/999 [01:40<12:38, 1.19it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 28%|██▊ | 7/25 [00:00<00:00, 68.19it/s]\u001b[A\n 60%|██████ | 15/25 [00:00<00:00, 71.72it/s]\u001b[A\n 92%|█████████▏| 23/25 [00:00<00:00, 72.16it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 71.88it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 74.54it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 74.78it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 74.80it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 74.55it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 18.76it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 18.66it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 18.63it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 18.61it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.63it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.63it/s]\nframe_idx: 96\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 65\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nframe_idx: 96\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 65\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 10%|▉ | 95/999 [01:42<17:03, 1.13s/it]\n 10%|▉ | 96/999 [01:42<12:31, 1.20it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 28%|██▊ | 7/25 [00:00<00:00, 68.77it/s]\u001b[A\n 56%|█████▌ | 14/25 [00:00<00:00, 69.27it/s]\u001b[A\n 88%|████████▊ | 22/25 [00:00<00:00, 70.67it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 70.77it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 74.16it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 71.46it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 71.68it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 71.78it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 18.79it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 18.69it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 18.66it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 18.64it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.61it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.62it/s]\nframe_idx: 98\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 66\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nframe_idx: 98\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 66\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 10%|▉ | 97/999 [01:44<16:58, 1.13s/it]\n 10%|▉ | 98/999 [01:44<12:27, 1.21it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 71.79it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 71.20it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 71.69it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 71.59it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 75.15it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 75.04it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 74.87it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 74.85it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 18.81it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 18.71it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 18.64it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 18.67it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.64it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.65it/s]\nframe_idx: 100\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 67\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nframe_idx: 100\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 67\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 10%|▉ | 99/999 [01:46<16:47, 1.12s/it]\n 10%|█ | 100/999 [01:46<12:22, 1.21it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 73.43it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 69.75it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 70.12it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 70.32it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 72.68it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 71.62it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 70.88it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 71.01it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 18.89it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 18.72it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 18.69it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 18.47it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.51it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.55it/s]\nframe_idx: 102\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 68\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nframe_idx: 102\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 68\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 10%|█ | 101/999 [01:48<16:52, 1.13s/it]\n 10%|█ | 102/999 [01:48<12:25, 1.20it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 74.47it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 70.65it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 71.30it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 71.56it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 74.24it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 74.82it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 74.77it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 74.74it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 18.84it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 18.78it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 18.75it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 18.70it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.69it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.72it/s]\nframe_idx: 104\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 69\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nframe_idx: 104\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 69\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 10%|█ | 103/999 [01:50<16:47, 1.12s/it]\n 10%|█ | 104/999 [01:50<12:20, 1.21it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 73.79it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 74.70it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 73.19it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 73.57it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 73.78it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 74.39it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 74.78it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 74.55it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 18.88it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 18.77it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 18.72it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 18.68it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.64it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.68it/s]\nframe_idx: 106\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 70\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nframe_idx: 106\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 70\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 11%|█ | 105/999 [01:52<16:37, 1.12s/it]\n 11%|█ | 106/999 [01:52<12:13, 1.22it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 73.14it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 73.83it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 74.23it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 73.45it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 71.55it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 73.21it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 71.11it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 71.14it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 18.91it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 18.74it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 18.72it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 18.73it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.67it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.70it/s]\nframe_idx: 108\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 71\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nframe_idx: 108\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 71\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 11%|█ | 107/999 [01:54<16:41, 1.12s/it]\n 11%|█ | 108/999 [01:54<12:17, 1.21it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 74.43it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 74.58it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 74.27it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 74.21it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 28%|██▊ | 7/25 [00:00<00:00, 69.58it/s]\u001b[A\n 56%|█████▌ | 14/25 [00:00<00:00, 69.37it/s]\u001b[A\n 88%|████████▊ | 22/25 [00:00<00:00, 71.93it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 71.67it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 18.74it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 18.69it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 18.66it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 18.62it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.64it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.64it/s]\nframe_idx: 110\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 72\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nframe_idx: 110\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 72\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 11%|█ | 109/999 [01:56<16:42, 1.13s/it]\n 11%|█ | 110/999 [01:56<12:17, 1.20it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 28%|██▊ | 7/25 [00:00<00:00, 68.25it/s]\u001b[A\n 60%|██████ | 15/25 [00:00<00:00, 72.10it/s]\u001b[A\n 92%|█████████▏| 23/25 [00:00<00:00, 73.23it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 72.63it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 28%|██▊ | 7/25 [00:00<00:00, 69.06it/s]\u001b[A\n 60%|██████ | 15/25 [00:00<00:00, 70.93it/s]\u001b[A\n 92%|█████████▏| 23/25 [00:00<00:00, 70.99it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 71.04it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 18.83it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 18.69it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 18.68it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 18.63it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.62it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.64it/s]\nframe_idx: 112\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 73\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nframe_idx: 112\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 73\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 11%|█ | 111/999 [01:58<16:41, 1.13s/it]\n 11%|█ | 112/999 [01:58<12:16, 1.20it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 73.97it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 74.55it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 74.61it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 74.26it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 73.23it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 73.90it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 73.72it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 73.74it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 18.88it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 18.76it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 18.70it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 18.68it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.68it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.70it/s]\nframe_idx: 114\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 74\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nframe_idx: 114\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 74\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 11%|█▏ | 113/999 [02:00<16:35, 1.12s/it]\n 11%|█▏ | 114/999 [02:00<12:11, 1.21it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 73.91it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 74.65it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 74.60it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 74.55it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 73.42it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 72.35it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 73.62it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 73.43it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 18.87it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 18.81it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 18.78it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 18.73it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.72it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.74it/s]\nframe_idx: 116\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 75\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nframe_idx: 116\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 75\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 12%|█▏ | 115/999 [02:02<16:27, 1.12s/it]\n 12%|█▏ | 116/999 [02:02<12:05, 1.22it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 73.19it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 74.31it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 74.50it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 74.35it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 75.27it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 74.27it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 74.47it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 74.51it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 18.78it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 18.72it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 18.70it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 18.71it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.72it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.71it/s]\nframe_idx: 118\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 76\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nframe_idx: 118\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 76\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 12%|█▏ | 117/999 [02:04<16:22, 1.11s/it]\n 12%|█▏ | 118/999 [02:04<12:04, 1.22it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 73.53it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 74.17it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 74.08it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 73.96it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 28%|██▊ | 7/25 [00:00<00:00, 69.16it/s]\u001b[A\n 60%|██████ | 15/25 [00:00<00:00, 69.57it/s]\u001b[A\n 88%|████████▊ | 22/25 [00:00<00:00, 68.97it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 69.06it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 18.80it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 18.70it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 18.69it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 18.68it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.69it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.69it/s]\nframe_idx: 120\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 77\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nframe_idx: 120\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 77\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 12%|█▏ | 119/999 [02:05<16:26, 1.12s/it]\n 12%|█▏ | 120/999 [02:06<12:08, 1.21it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 73.06it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 73.71it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 70.91it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 71.63it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 28%|██▊ | 7/25 [00:00<00:00, 67.45it/s]\u001b[A\n 56%|█████▌ | 14/25 [00:00<00:00, 68.24it/s]\u001b[A\n 84%|████████▍ | 21/25 [00:00<00:00, 66.53it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 67.20it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 18.89it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 18.71it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 18.67it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 18.62it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.58it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.62it/s]\nframe_idx: 122\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 78\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nframe_idx: 122\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 78\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 12%|█▏ | 121/999 [02:07<16:35, 1.13s/it]\n 12%|█▏ | 122/999 [02:08<12:13, 1.20it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 28%|██▊ | 7/25 [00:00<00:00, 69.58it/s]\u001b[A\n 60%|██████ | 15/25 [00:00<00:00, 72.37it/s]\u001b[A\n 92%|█████████▏| 23/25 [00:00<00:00, 73.17it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 72.80it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 74.23it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 72.38it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 70.55it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 71.06it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 18.83it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 18.74it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 18.71it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 18.66it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.66it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.68it/s]\nframe_idx: 124\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 79\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nframe_idx: 124\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 79\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 12%|█▏ | 123/999 [02:09<16:30, 1.13s/it]\n 12%|█▏ | 124/999 [02:10<12:08, 1.20it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 74.08it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 74.42it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 74.38it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 74.35it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 73.15it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 74.13it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 73.51it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 73.31it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 18.78it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 18.69it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 18.66it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 18.63it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.63it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.63it/s]\nframe_idx: 126\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 80\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nframe_idx: 126\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 80\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 13%|█▎ | 125/999 [02:11<16:19, 1.12s/it]\n 13%|█▎ | 126/999 [02:11<11:58, 1.21it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 74.05it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 74.30it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 74.60it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 74.37it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 74.50it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 74.62it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 73.74it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 73.95it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 18.75it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 18.73it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 18.69it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 18.66it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.65it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.66it/s]\nframe_idx: 128\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 81\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nframe_idx: 128\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 81\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 13%|█▎ | 127/999 [02:13<16:09, 1.11s/it]\n 13%|█▎ | 128/999 [02:13<11:53, 1.22it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 74.29it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 74.68it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 74.78it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 74.62it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 74.03it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 74.40it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 74.18it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 74.15it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 18.79it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 18.65it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 18.63it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 18.62it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.61it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.62it/s]\nframe_idx: 130\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 82\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nframe_idx: 130\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 82\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 13%|█▎ | 129/999 [02:15<16:09, 1.11s/it]\n 13%|█▎ | 130/999 [02:15<11:56, 1.21it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 28%|██▊ | 7/25 [00:00<00:00, 68.81it/s]\u001b[A\n 60%|██████ | 15/25 [00:00<00:00, 71.12it/s]\u001b[A\n 92%|█████████▏| 23/25 [00:00<00:00, 70.26it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 70.07it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 74.70it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 74.63it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 74.26it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 73.86it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 18.91it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 18.77it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 18.76it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 18.73it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.71it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.73it/s]\nframe_idx: 132\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 83\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nframe_idx: 132\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 83\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 13%|█▎ | 131/999 [02:17<16:10, 1.12s/it]\n 13%|█▎ | 132/999 [02:17<11:54, 1.21it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 74.03it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 74.29it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 72.44it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 72.53it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 72.52it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 73.74it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 74.17it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 73.87it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 18.80it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 18.61it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 18.65it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 18.66it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.66it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.66it/s]\nframe_idx: 134\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 84\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nframe_idx: 134\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 84\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 13%|█▎ | 133/999 [02:19<16:08, 1.12s/it]\n 13%|█▎ | 134/999 [02:19<11:53, 1.21it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 28%|██▊ | 7/25 [00:00<00:00, 64.73it/s]\u001b[A\n 60%|██████ | 15/25 [00:00<00:00, 69.19it/s]\u001b[A\n 92%|█████████▏| 23/25 [00:00<00:00, 71.93it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 70.94it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 74.68it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 74.87it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 75.08it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 74.89it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 18.83it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 18.74it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 18.74it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 18.71it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.70it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.71it/s]\nframe_idx: 136\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 85\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nframe_idx: 136\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 85\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 14%|█▎ | 135/999 [02:21<16:10, 1.12s/it]\n 14%|█▎ | 136/999 [02:21<11:53, 1.21it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 71.40it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 73.44it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 74.34it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 73.91it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 74.24it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 74.61it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 74.64it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 74.55it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 18.90it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 18.75it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 18.72it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 18.65it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.65it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.67it/s]\nframe_idx: 138\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 86\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nframe_idx: 138\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 86\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 14%|█▎ | 137/999 [02:23<16:00, 1.11s/it]\n 14%|█▍ | 138/999 [02:23<11:45, 1.22it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 73.86it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 70.09it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 70.97it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 71.20it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 73.01it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 74.12it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 74.25it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 74.02it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 18.74it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 18.61it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 18.62it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 18.60it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.59it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.60it/s]\nframe_idx: 140\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 87\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nframe_idx: 140\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 87\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 14%|█▍ | 139/999 [02:25<15:59, 1.12s/it]\n 14%|█▍ | 140/999 [02:25<11:46, 1.22it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 73.40it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 72.57it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 71.97it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 71.82it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 73.52it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 74.47it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 74.44it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 74.28it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 18.88it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 18.74it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 18.66it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 18.67it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.62it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.65it/s]\nframe_idx: 142\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 88\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nframe_idx: 142\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 88\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 14%|█▍ | 141/999 [02:27<16:01, 1.12s/it]\n 14%|█▍ | 142/999 [02:27<11:47, 1.21it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 73.76it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 74.42it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 70.86it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 71.65it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 71.01it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 73.02it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 73.75it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 73.09it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 18.85it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 18.70it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 18.59it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 18.49it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.46it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.52it/s]\nframe_idx: 144\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 89\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nframe_idx: 144\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 89\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 14%|█▍ | 143/999 [02:29<16:01, 1.12s/it]\n 14%|█▍ | 144/999 [02:29<11:46, 1.21it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 70.99it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 72.84it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 71.13it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 71.34it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 72.94it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 74.00it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 74.56it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 74.31it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 18.72it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 18.64it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 18.64it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 18.64it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.57it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.59it/s]\nframe_idx: 146\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 90\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nframe_idx: 146\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 90\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 15%|█▍ | 145/999 [02:31<15:57, 1.12s/it]\n 15%|█▍ | 146/999 [02:31<11:45, 1.21it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 73.12it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 72.21it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 73.03it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 72.72it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 28%|██▊ | 7/25 [00:00<00:00, 66.62it/s]\u001b[A\n 56%|█████▌ | 14/25 [00:00<00:00, 68.52it/s]\u001b[A\n 84%|████████▍ | 21/25 [00:00<00:00, 68.38it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 68.09it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 18.73it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 18.64it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 18.60it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 18.61it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.63it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.62it/s]\nframe_idx: 148\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 91\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nframe_idx: 148\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 91\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 15%|█▍ | 147/999 [02:33<16:02, 1.13s/it]\n 15%|█▍ | 148/999 [02:33<11:48, 1.20it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 74.38it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 74.82it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 74.68it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 74.47it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 73.10it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 74.09it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 74.47it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 74.25it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 18.89it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 18.75it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 18.75it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 18.69it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.63it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.67it/s]\nframe_idx: 150\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 92\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nframe_idx: 150\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 92\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 15%|█▍ | 149/999 [02:35<15:52, 1.12s/it]\n 15%|█▌ | 150/999 [02:35<11:39, 1.21it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 74.75it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 75.07it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 74.84it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 74.83it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 70.26it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 70.35it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 70.28it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 70.05it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 18.87it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 18.74it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 18.72it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 18.70it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.67it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.69it/s]\nframe_idx: 152\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 93\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nframe_idx: 152\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 93\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 15%|█▌ | 151/999 [02:37<15:46, 1.12s/it]\n 15%|█▌ | 152/999 [02:37<11:36, 1.22it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 74.77it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 75.09it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 75.31it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 75.16it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 75.43it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 73.42it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 73.11it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 73.23it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 18.90it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 18.75it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 18.74it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 18.72it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.71it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.72it/s]\nframe_idx: 154\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 94\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nframe_idx: 154\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 94\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 15%|█▌ | 153/999 [02:39<15:40, 1.11s/it]\n 15%|█▌ | 154/999 [02:39<11:33, 1.22it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 73.60it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 73.85it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 74.29it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 74.17it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 28%|██▊ | 7/25 [00:00<00:00, 68.57it/s]\u001b[A\n 60%|██████ | 15/25 [00:00<00:00, 70.54it/s]\u001b[A\n 92%|█████████▏| 23/25 [00:00<00:00, 69.76it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 69.69it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 18.81it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 18.80it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 18.77it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 18.75it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.77it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.76it/s]\nframe_idx: 156\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 95\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nframe_idx: 156\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 95\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 16%|█▌ | 155/999 [02:40<15:42, 1.12s/it]\n 16%|█▌ | 156/999 [02:41<11:31, 1.22it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 28%|██▊ | 7/25 [00:00<00:00, 66.28it/s]\u001b[A\n 56%|█████▌ | 14/25 [00:00<00:00, 67.72it/s]\u001b[A\n 84%|████████▍ | 21/25 [00:00<00:00, 68.37it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 68.08it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 28%|██▊ | 7/25 [00:00<00:00, 68.51it/s]\u001b[A\n 56%|█████▌ | 14/25 [00:00<00:00, 68.56it/s]\u001b[A\n 84%|████████▍ | 21/25 [00:00<00:00, 67.25it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 68.39it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 18.87it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 18.78it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 18.76it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 18.73it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.71it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.73it/s]\nframe_idx: 158\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 96\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nframe_idx: 158\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 96\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 16%|█▌ | 157/999 [02:42<15:50, 1.13s/it]\n 16%|█▌ | 158/999 [02:43<11:38, 1.20it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 74.32it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 74.61it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 72.12it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 72.61it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 74.81it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 72.79it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 69.70it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 70.65it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 18.93it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 18.77it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 18.75it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 18.76it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.72it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.74it/s]\nframe_idx: 160\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 97\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nframe_idx: 160\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 97\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 16%|█▌ | 159/999 [02:44<15:44, 1.12s/it]\n 16%|█▌ | 160/999 [02:45<11:34, 1.21it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 71.49it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 70.84it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 72.55it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 71.82it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 72.12it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 71.59it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 69.75it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 70.21it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 18.89it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 18.79it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 18.73it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 18.73it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.69it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.72it/s]\nframe_idx: 162\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 98\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nframe_idx: 162\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 98\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 16%|█▌ | 161/999 [02:46<15:43, 1.13s/it]\n 16%|█▌ | 162/999 [02:46<11:34, 1.21it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 74.62it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 71.53it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 71.88it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 71.98it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 75.40it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 73.89it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 73.42it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 73.73it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 18.82it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 18.80it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 18.75it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 18.73it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.73it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.74it/s]\nframe_idx: 164\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 99\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nframe_idx: 164\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 99\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 16%|█▋ | 163/999 [02:48<15:36, 1.12s/it]\n 16%|█▋ | 164/999 [02:48<11:26, 1.22it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 73.96it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 70.90it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 71.94it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 72.06it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 28%|██▊ | 7/25 [00:00<00:00, 68.80it/s]\u001b[A\n 56%|█████▌ | 14/25 [00:00<00:00, 65.63it/s]\u001b[A\n 84%|████████▍ | 21/25 [00:00<00:00, 66.77it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 66.95it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 18.64it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 18.47it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 18.45it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 18.45it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.43it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.44it/s]\nframe_idx: 166\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 100\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nframe_idx: 166\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 100\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 17%|█▋ | 165/999 [02:50<15:42, 1.13s/it]\n 17%|█▋ | 166/999 [02:50<11:34, 1.20it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 74.41it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 74.51it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 74.63it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 74.59it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 28%|██▊ | 7/25 [00:00<00:00, 69.42it/s]\u001b[A\n 56%|█████▌ | 14/25 [00:00<00:00, 69.38it/s]\u001b[A\n 88%|████████▊ | 22/25 [00:00<00:00, 71.39it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 71.28it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 18.82it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 18.76it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 18.72it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 18.72it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.72it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.72it/s]\nframe_idx: 168\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 101\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nframe_idx: 168\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 101\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 17%|█▋ | 167/999 [02:52<15:35, 1.12s/it]\n 17%|█▋ | 168/999 [02:52<11:26, 1.21it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 74.26it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 72.74it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 73.56it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 73.28it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 75.39it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 75.15it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 75.17it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 75.12it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 18.85it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 18.73it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 18.69it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 18.69it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.67it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.69it/s]\nframe_idx: 170\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 102\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nframe_idx: 170\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 102\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 17%|█▋ | 169/999 [02:54<15:20, 1.11s/it]\n 17%|█▋ | 170/999 [02:54<11:17, 1.22it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 28%|██▊ | 7/25 [00:00<00:00, 69.91it/s]\u001b[A\n 60%|██████ | 15/25 [00:00<00:00, 72.77it/s]\u001b[A\n 92%|█████████▏| 23/25 [00:00<00:00, 73.66it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 73.26it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 75.30it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 75.21it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 74.79it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 74.86it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 18.84it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 18.75it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 18.72it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 18.72it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.69it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.71it/s]\nframe_idx: 172\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 103\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nframe_idx: 172\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 103\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 17%|█▋ | 171/999 [02:56<15:17, 1.11s/it]\n 17%|█▋ | 172/999 [02:56<11:13, 1.23it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 28%|██▊ | 7/25 [00:00<00:00, 68.72it/s]\u001b[A\n 60%|██████ | 15/25 [00:00<00:00, 70.21it/s]\u001b[A\n 92%|█████████▏| 23/25 [00:00<00:00, 70.61it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 70.17it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 75.41it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 75.18it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 75.07it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 74.84it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 18.90it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 18.72it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 18.64it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 18.63it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.64it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.66it/s]\nframe_idx: 174\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 104\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nframe_idx: 174\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 104\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 17%|█▋ | 173/999 [02:58<15:20, 1.11s/it]\n 17%|█▋ | 174/999 [02:58<11:18, 1.22it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 74.15it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 72.36it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 71.27it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 71.86it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 74.97it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 75.01it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 74.90it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 74.93it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 18.89it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 18.77it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 18.75it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 18.73it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.72it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.74it/s]\nframe_idx: 176\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 105\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nframe_idx: 176\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 105\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 18%|█▊ | 175/999 [03:00<15:15, 1.11s/it]\n 18%|█▊ | 176/999 [03:00<11:11, 1.23it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 73.92it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 74.46it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 73.47it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 73.62it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 74.85it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 74.74it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 74.63it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 74.53it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 18.87it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 18.72it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 18.68it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 18.67it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.67it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.68it/s]\nframe_idx: 178\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 106\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nframe_idx: 178\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 106\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 18%|█▊ | 177/999 [03:02<15:14, 1.11s/it]\n 18%|█▊ | 178/999 [03:02<11:13, 1.22it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 74.23it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 74.15it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 71.83it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 72.28it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 71.75it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 73.65it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 74.01it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 73.65it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 18.87it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 18.65it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 18.64it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 18.64it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.63it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.64it/s]\nframe_idx: 180\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 107\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nframe_idx: 180\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 107\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 18%|█▊ | 179/999 [03:04<15:13, 1.11s/it]\n 18%|█▊ | 180/999 [03:04<11:10, 1.22it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 71.34it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 69.71it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 71.15it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 70.08it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 28%|██▊ | 7/25 [00:00<00:00, 68.60it/s]\u001b[A\n 56%|█████▌ | 14/25 [00:00<00:00, 68.88it/s]\u001b[A\n 88%|████████▊ | 22/25 [00:00<00:00, 70.68it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 70.71it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 18.72it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 18.60it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 18.63it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 18.64it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.63it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.62it/s]\nframe_idx: 182\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 108\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nframe_idx: 182\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 108\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 18%|█▊ | 181/999 [03:06<15:45, 1.16s/it]\n 18%|█▊ | 182/999 [03:06<11:47, 1.15it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 71.97it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 73.03it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 73.06it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 73.00it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 74.53it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 74.73it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 73.75it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 73.48it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 18.79it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 18.68it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 18.68it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 18.66it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.62it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.64it/s]\nframe_idx: 184\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 109\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nframe_idx: 184\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 109\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 18%|█▊ | 183/999 [03:08<16:39, 1.23s/it]\n 18%|█▊ | 184/999 [03:08<12:09, 1.12it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 28%|██▊ | 7/25 [00:00<00:00, 69.22it/s]\u001b[A\n 60%|██████ | 15/25 [00:00<00:00, 72.39it/s]\u001b[A\n 92%|█████████▏| 23/25 [00:00<00:00, 73.05it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 72.09it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 28%|██▊ | 7/25 [00:00<00:00, 68.71it/s]\u001b[A\n 56%|█████▌ | 14/25 [00:00<00:00, 68.74it/s]\u001b[A\n 88%|████████▊ | 22/25 [00:00<00:00, 69.77it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 69.84it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 18.85it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 18.72it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 18.69it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 18.65it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.65it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.67it/s]\nframe_idx: 186\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 110\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nframe_idx: 186\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 110\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 19%|█▊ | 185/999 [03:10<15:53, 1.17s/it]\n 19%|█▊ | 186/999 [03:10<11:38, 1.16it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 28%|██▊ | 7/25 [00:00<00:00, 68.31it/s]\u001b[A\n 56%|█████▌ | 14/25 [00:00<00:00, 68.52it/s]\u001b[A\n 84%|████████▍ | 21/25 [00:00<00:00, 69.19it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 69.84it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 28%|██▊ | 7/25 [00:00<00:00, 68.63it/s]\u001b[A\n 56%|█████▌ | 14/25 [00:00<00:00, 69.04it/s]\u001b[A\n 88%|████████▊ | 22/25 [00:00<00:00, 71.70it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 71.32it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 18.89it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 18.78it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 18.74it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 18.75it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.72it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.74it/s]\nframe_idx: 188\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 111\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nframe_idx: 188\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 111\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 19%|█▊ | 187/999 [03:12<15:30, 1.15s/it]\n 19%|█▉ | 188/999 [03:12<11:22, 1.19it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 74.07it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 71.65it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 70.23it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 70.74it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 73.18it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 72.85it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 72.63it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 72.78it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 18.90it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 18.78it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 18.76it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 18.75it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.72it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.74it/s]\nframe_idx: 190\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 112\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nframe_idx: 190\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 112\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 19%|█▉ | 189/999 [03:14<15:12, 1.13s/it]\n 19%|█▉ | 190/999 [03:14<11:08, 1.21it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 74.09it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 74.37it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 71.87it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 72.34it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 28%|██▊ | 7/25 [00:00<00:00, 69.50it/s]\u001b[A\n 60%|██████ | 15/25 [00:00<00:00, 72.29it/s]\u001b[A\n 92%|█████████▏| 23/25 [00:00<00:00, 71.85it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 71.51it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 18.88it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 18.77it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 18.76it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 18.70it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.70it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.72it/s]\nframe_idx: 192\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 113\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nframe_idx: 192\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 113\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 19%|█▉ | 191/999 [03:16<15:04, 1.12s/it]\n 19%|█▉ | 192/999 [03:16<11:03, 1.22it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 74.61it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 74.68it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 74.47it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 74.24it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 72.19it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 70.35it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 71.64it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 71.35it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 18.89it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 18.80it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 18.76it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 18.72it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.68it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.71it/s]\nframe_idx: 194\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 114\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nframe_idx: 194\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 114\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 19%|█▉ | 193/999 [03:18<14:59, 1.12s/it]\n 19%|█▉ | 194/999 [03:18<11:00, 1.22it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 73.96it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 74.46it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 74.19it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 74.16it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 28%|██▊ | 7/25 [00:00<00:00, 69.56it/s]\u001b[A\n 56%|█████▌ | 14/25 [00:00<00:00, 69.18it/s]\u001b[A\n 84%|████████▍ | 21/25 [00:00<00:00, 69.16it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 69.85it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 18.89it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 18.74it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 18.71it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 18.68it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.67it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.69it/s]\nframe_idx: 196\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 115\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nframe_idx: 196\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 115\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 20%|█▉ | 195/999 [03:20<14:59, 1.12s/it]\n 20%|█▉ | 196/999 [03:20<11:00, 1.22it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 73.77it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 74.04it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 74.41it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 74.30it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 70.05it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 71.93it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 73.23it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 72.77it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 18.83it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 18.72it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 18.74it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 18.73it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.68it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.70it/s]\nframe_idx: 198\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 116\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nframe_idx: 198\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 116\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 20%|█▉ | 197/999 [03:22<14:52, 1.11s/it]\n 20%|█▉ | 198/999 [03:22<10:55, 1.22it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 74.93it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 71.98it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 71.30it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 71.67it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 73.26it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 71.89it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 73.35it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 72.96it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 18.84it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 18.76it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 18.73it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 18.70it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.70it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.71it/s]\nframe_idx: 200\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 117\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nframe_idx: 200\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 117\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 20%|█▉ | 199/999 [03:24<14:53, 1.12s/it]\n 20%|██ | 200/999 [03:24<10:57, 1.22it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 74.10it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 74.61it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 72.55it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 72.94it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 70.99it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 68.56it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 69.27it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 69.10it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 18.78it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 18.74it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 18.69it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 18.68it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.68it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.68it/s]\nframe_idx: 202\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 118\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nframe_idx: 202\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 118\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 20%|██ | 201/999 [03:26<14:57, 1.12s/it]\n 20%|██ | 202/999 [03:26<10:59, 1.21it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 74.20it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 74.61it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 74.88it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 73.72it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 75.19it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 74.20it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 73.66it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 73.90it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 18.89it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 18.76it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 18.76it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 18.71it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.68it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.70it/s]\nframe_idx: 204\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 119\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nframe_idx: 204\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 119\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 20%|██ | 203/999 [03:27<14:48, 1.12s/it]\n 20%|██ | 204/999 [03:28<10:53, 1.22it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 74.47it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 74.72it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 72.85it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 73.30it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 72.45it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 73.56it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 69.36it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 70.05it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 18.85it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 18.79it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 18.73it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 18.72it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.71it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.72it/s]\nframe_idx: 206\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 120\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nframe_idx: 206\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 120\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 21%|██ | 205/999 [03:29<14:49, 1.12s/it]\n 21%|██ | 206/999 [03:30<10:56, 1.21it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 74.11it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 74.57it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 74.84it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 74.65it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 75.36it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 75.11it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 74.17it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 74.23it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 18.93it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 18.77it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 18.76it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 18.71it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.70it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.73it/s]\nframe_idx: 208\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 121\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nframe_idx: 208\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 121\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 21%|██ | 207/999 [03:31<14:43, 1.12s/it]\n 21%|██ | 208/999 [03:31<10:50, 1.22it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 74.95it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 75.15it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 75.20it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 75.16it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 75.33it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 75.33it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 75.28it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 75.27it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 18.87it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 18.77it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 18.77it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 18.77it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.74it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.75it/s]\nframe_idx: 210\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 122\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nframe_idx: 210\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 122\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 21%|██ | 209/999 [03:33<14:39, 1.11s/it]\n 21%|██ | 210/999 [03:33<10:45, 1.22it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 74.57it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 74.94it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 75.10it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 75.00it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 75.29it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 75.32it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 75.32it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 75.33it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 18.57it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 18.67it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 18.68it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 18.73it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.73it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.70it/s]\nframe_idx: 212\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 123\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nframe_idx: 212\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 123\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 21%|██ | 211/999 [03:35<14:28, 1.10s/it]\n 21%|██ | 212/999 [03:35<10:38, 1.23it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 73.76it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 74.70it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 74.78it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 74.68it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 75.49it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 75.40it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 75.45it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 75.45it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 18.89it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 18.78it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 18.73it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 18.73it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.71it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.73it/s]\nframe_idx: 214\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 124\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nframe_idx: 214\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 124\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 21%|██▏ | 213/999 [03:37<14:22, 1.10s/it]\n 21%|██▏ | 214/999 [03:37<10:32, 1.24it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 28%|██▊ | 7/25 [00:00<00:00, 67.74it/s]\u001b[A\n 60%|██████ | 15/25 [00:00<00:00, 69.22it/s]\u001b[A\n 92%|█████████▏| 23/25 [00:00<00:00, 70.67it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 70.49it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 28%|██▊ | 7/25 [00:00<00:00, 69.73it/s]\u001b[A\n 60%|██████ | 15/25 [00:00<00:00, 71.01it/s]\u001b[A\n 92%|█████████▏| 23/25 [00:00<00:00, 72.89it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 72.46it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 18.80it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 18.76it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 18.67it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 18.70it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.68it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.69it/s]\nframe_idx: 216\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 125\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nframe_idx: 216\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 125\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 22%|██▏ | 215/999 [03:39<14:29, 1.11s/it]\n 22%|██▏ | 216/999 [03:39<10:39, 1.22it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 71.43it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 70.37it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 70.56it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 70.30it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 73.02it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 74.13it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 74.61it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 74.32it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 18.86it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 18.77it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 18.70it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 18.67it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.66it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.69it/s]\nframe_idx: 218\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 126\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nframe_idx: 218\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 126\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 22%|██▏ | 217/999 [03:41<14:29, 1.11s/it]\n 22%|██▏ | 218/999 [03:41<10:37, 1.22it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 72.54it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 70.41it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 70.47it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 70.63it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 74.86it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 75.12it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 75.17it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 75.08it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 18.89it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 18.80it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 18.76it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 18.75it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.72it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.74it/s]\nframe_idx: 220\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 127\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nframe_idx: 220\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 127\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 22%|██▏ | 219/999 [03:43<14:27, 1.11s/it]\n 22%|██▏ | 220/999 [03:43<10:36, 1.22it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 72.43it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 71.56it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 70.73it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 70.98it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 75.26it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 75.11it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 74.17it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 74.47it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 18.76it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 18.70it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 18.72it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 18.70it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.57it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.63it/s]\nframe_idx: 222\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 128\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nframe_idx: 222\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 128\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 22%|██▏ | 221/999 [03:45<14:23, 1.11s/it]\n 22%|██▏ | 222/999 [03:45<10:33, 1.23it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 28%|██▊ | 7/25 [00:00<00:00, 68.77it/s]\u001b[A\n 60%|██████ | 15/25 [00:00<00:00, 71.49it/s]\u001b[A\n 92%|█████████▏| 23/25 [00:00<00:00, 72.92it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 70.92it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 28%|██▊ | 7/25 [00:00<00:00, 69.87it/s]\u001b[A\n 56%|█████▌ | 14/25 [00:00<00:00, 69.70it/s]\u001b[A\n 84%|████████▍ | 21/25 [00:00<00:00, 69.83it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 69.87it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 18.87it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 18.79it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 18.72it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 18.70it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.66it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.69it/s]\nframe_idx: 224\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 129\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nframe_idx: 224\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 129\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 22%|██▏ | 223/999 [03:47<14:29, 1.12s/it]\n 22%|██▏ | 224/999 [03:47<10:38, 1.21it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 71.67it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 73.73it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 73.38it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 73.30it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 28%|██▊ | 7/25 [00:00<00:00, 68.71it/s]\u001b[A\n 56%|█████▌ | 14/25 [00:00<00:00, 68.42it/s]\u001b[A\n 84%|████████▍ | 21/25 [00:00<00:00, 68.30it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 68.59it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 18.82it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 18.74it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 18.72it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 18.65it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.62it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.65it/s]\nframe_idx: 226\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 130\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nframe_idx: 226\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 130\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 23%|██▎ | 225/999 [03:49<14:29, 1.12s/it]\n 23%|██▎ | 226/999 [03:49<10:38, 1.21it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 71.62it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 71.57it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 72.91it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 72.58it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 28%|██▊ | 7/25 [00:00<00:00, 67.29it/s]\u001b[A\n 60%|██████ | 15/25 [00:00<00:00, 70.01it/s]\u001b[A\n 92%|█████████▏| 23/25 [00:00<00:00, 72.20it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 71.58it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 18.87it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 18.76it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 18.74it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 18.70it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.68it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.70it/s]\nframe_idx: 228\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 131\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nframe_idx: 228\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 131\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 23%|██▎ | 227/999 [03:51<14:30, 1.13s/it]\n 23%|██▎ | 228/999 [03:51<10:39, 1.21it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 73.96it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 74.47it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 74.16it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 73.97it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 70.30it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 71.62it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 73.08it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 72.28it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 18.83it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 18.74it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 18.69it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 18.68it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.64it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.66it/s]\nframe_idx: 230\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 132\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nframe_idx: 230\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 132\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 23%|██▎ | 229/999 [03:53<14:22, 1.12s/it]\n 23%|██▎ | 230/999 [03:53<10:32, 1.22it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 73.41it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 74.25it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 74.61it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 74.40it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 75.33it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 72.54it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 71.46it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 71.90it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 18.83it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 18.70it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 18.64it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 18.67it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.64it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.66it/s]\nframe_idx: 232\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 133\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nframe_idx: 232\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 133\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 23%|██▎ | 231/999 [03:55<14:15, 1.11s/it]\n 23%|██▎ | 232/999 [03:55<10:28, 1.22it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 74.17it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 74.30it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 72.22it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 72.75it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 71.20it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 71.63it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 73.12it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 72.25it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 18.80it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 18.74it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 18.68it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 18.69it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.66it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.68it/s]\nframe_idx: 234\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 134\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nframe_idx: 234\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 134\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 23%|██▎ | 233/999 [03:56<14:13, 1.11s/it]\n 23%|██▎ | 234/999 [03:57<10:27, 1.22it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 74.45it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 74.76it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 74.82it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 74.69it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 75.42it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 74.82it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 72.99it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 72.98it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 18.78it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 18.76it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 18.72it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 18.72it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.74it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.73it/s]\nframe_idx: 236\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 135\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nframe_idx: 236\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 135\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 24%|██▎ | 235/999 [03:58<14:06, 1.11s/it]\n 24%|██▎ | 236/999 [03:59<10:23, 1.22it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 74.58it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 75.00it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 74.63it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 74.67it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 74.69it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 74.71it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 74.75it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 74.69it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 18.85it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 18.75it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 18.73it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 18.74it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.70it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.71it/s]\nframe_idx: 238\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 136\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nframe_idx: 238\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 136\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 24%|██▎ | 237/999 [04:00<14:04, 1.11s/it]\n 24%|██▍ | 238/999 [04:00<10:19, 1.23it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 74.10it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 74.82it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 74.50it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 74.30it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 75.23it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 75.01it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 74.83it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 74.84it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 18.85it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 18.73it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 18.70it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 18.69it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.68it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.70it/s]\nframe_idx: 240\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 137\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nframe_idx: 240\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 137\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 24%|██▍ | 239/999 [04:02<13:56, 1.10s/it]\n 24%|██▍ | 240/999 [04:02<10:13, 1.24it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 72.68it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 73.96it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 72.83it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 73.05it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 75.14it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 74.88it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 74.86it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 74.79it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 18.87it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 18.71it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 18.70it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 18.72it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.69it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.70it/s]\nframe_idx: 242\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 138\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nframe_idx: 242\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 138\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 24%|██▍ | 241/999 [04:04<13:52, 1.10s/it]\n 24%|██▍ | 242/999 [04:04<10:12, 1.24it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 28%|██▊ | 7/25 [00:00<00:00, 66.53it/s]\u001b[A\n 60%|██████ | 15/25 [00:00<00:00, 71.64it/s]\u001b[A\n 92%|█████████▏| 23/25 [00:00<00:00, 73.23it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 72.49it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 75.46it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 75.34it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 75.32it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 75.22it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 18.87it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 18.71it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 18.52it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 18.57it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.60it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.61it/s]\nframe_idx: 244\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 139\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nframe_idx: 244\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 139\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 24%|██▍ | 243/999 [04:06<13:48, 1.10s/it]\n 24%|██▍ | 244/999 [04:06<10:08, 1.24it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 74.67it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 69.63it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 69.88it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 70.01it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 72.14it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 73.88it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 74.41it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 74.04it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 18.87it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 18.73it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 18.73it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 18.68it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.68it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.70it/s]\nframe_idx: 246\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 140\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nframe_idx: 246\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 140\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 25%|██▍ | 245/999 [04:08<13:51, 1.10s/it]\n 25%|██▍ | 246/999 [04:08<10:10, 1.23it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 71.37it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 70.47it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 70.11it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 70.24it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 72.89it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 73.99it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 74.38it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 73.80it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 18.85it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 18.76it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 18.71it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 18.68it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.67it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.69it/s]\nframe_idx: 248\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 141\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nframe_idx: 248\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 141\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 25%|██▍ | 247/999 [04:10<13:52, 1.11s/it]\n 25%|██▍ | 248/999 [04:10<10:11, 1.23it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 74.20it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 74.76it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 73.48it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 73.62it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 75.34it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 74.69it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 74.78it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 74.81it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 18.78it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 18.70it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 18.69it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 18.69it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.68it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.69it/s]\nframe_idx: 250\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 142\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nframe_idx: 250\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 142\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 25%|██▍ | 249/999 [04:12<13:47, 1.10s/it]\n 25%|██▌ | 250/999 [04:12<10:07, 1.23it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 74.01it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 74.34it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 74.17it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 74.17it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 75.13it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 75.02it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 74.89it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 74.88it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 18.78it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 18.74it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 18.73it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 18.70it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.69it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.70it/s]\nframe_idx: 252\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 143\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nframe_idx: 252\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 143\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 25%|██▌ | 251/999 [04:14<13:45, 1.10s/it]\n 25%|██▌ | 252/999 [04:14<10:07, 1.23it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 74.42it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 74.97it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 75.13it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 75.04it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 28%|██▊ | 7/25 [00:00<00:00, 67.85it/s]\u001b[A\n 60%|██████ | 15/25 [00:00<00:00, 69.40it/s]\u001b[A\n 92%|█████████▏| 23/25 [00:00<00:00, 71.91it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 71.42it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 18.82it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 18.75it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 18.74it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 18.66it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.68it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.70it/s]\nframe_idx: 254\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 144\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nframe_idx: 254\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 144\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 25%|██▌ | 253/999 [04:16<13:45, 1.11s/it]\n 25%|██▌ | 254/999 [04:16<10:05, 1.23it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 74.86it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 75.32it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 75.28it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 75.24it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 72.39it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 69.25it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 70.62it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 70.45it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 18.82it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 18.74it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 18.71it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 18.70it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.70it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.71it/s]\nframe_idx: 256\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 145\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nframe_idx: 256\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 145\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 26%|██▌ | 255/999 [04:18<13:45, 1.11s/it]\n 26%|██▌ | 256/999 [04:18<10:06, 1.22it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 72.33it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 70.08it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 70.25it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 70.52it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 28%|██▊ | 7/25 [00:00<00:00, 68.10it/s]\u001b[A\n 56%|█████▌ | 14/25 [00:00<00:00, 68.14it/s]\u001b[A\n 84%|████████▍ | 21/25 [00:00<00:00, 68.44it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 69.33it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 18.89it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 18.75it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 18.73it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 18.72it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.65it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.69it/s]\nframe_idx: 258\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 146\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nframe_idx: 258\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 146\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 26%|██▌ | 257/999 [04:20<13:52, 1.12s/it]\n 26%|██▌ | 258/999 [04:20<10:11, 1.21it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 28%|██▊ | 7/25 [00:00<00:00, 63.62it/s]\u001b[A\n 60%|██████ | 15/25 [00:00<00:00, 70.10it/s]\u001b[A\n 92%|█████████▏| 23/25 [00:00<00:00, 69.72it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 69.21it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 74.59it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 72.21it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 70.70it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 71.23it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 18.85it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 18.78it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 18.74it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 18.73it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.72it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.73it/s]\nframe_idx: 260\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 147\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nframe_idx: 260\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 147\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 26%|██▌ | 259/999 [04:21<13:51, 1.12s/it]\n 26%|██▌ | 260/999 [04:22<10:10, 1.21it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 72.97it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 74.23it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 74.54it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 74.34it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 75.24it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 75.05it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 73.69it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 74.10it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 18.84it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 18.74it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 18.73it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 18.67it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.67it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.69it/s]\nframe_idx: 262\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 148\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nframe_idx: 262\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 148\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 26%|██▌ | 261/999 [04:23<13:40, 1.11s/it]\n 26%|██▌ | 262/999 [04:24<10:03, 1.22it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 74.34it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 74.57it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 74.74it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 74.69it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 70.99it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 72.99it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 73.26it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 72.82it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 18.74it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 18.75it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 18.69it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 18.70it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.71it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.70it/s]\nframe_idx: 264\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 149\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nframe_idx: 264\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 149\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 26%|██▋ | 263/999 [04:25<13:37, 1.11s/it]\n 26%|██▋ | 264/999 [04:25<10:01, 1.22it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 74.20it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 74.60it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 74.74it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 74.66it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 75.44it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 75.01it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 73.96it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 74.25it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 18.71it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 18.65it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 18.64it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 18.67it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.67it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.66it/s]\nframe_idx: 266\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 150\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nframe_idx: 266\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 150\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 27%|██▋ | 265/999 [04:27<13:34, 1.11s/it]\n 27%|██▋ | 266/999 [04:27<09:58, 1.23it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 73.19it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 74.11it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 73.92it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 73.86it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 74.71it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 74.65it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 74.77it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 74.71it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 18.82it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 18.74it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 18.70it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 18.68it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.70it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.69it/s]\nframe_idx: 268\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 151\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nframe_idx: 268\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 151\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 27%|██▋ | 267/999 [04:29<13:29, 1.11s/it]\n 27%|██▋ | 268/999 [04:29<09:54, 1.23it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 70.78it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 72.38it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 73.19it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 72.71it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 75.43it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 73.33it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 72.22it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 72.62it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 18.87it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 18.71it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 18.69it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 18.69it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.67it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.69it/s]\nframe_idx: 270\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 152\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nframe_idx: 270\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 152\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 27%|██▋ | 269/999 [04:31<13:29, 1.11s/it]\n 27%|██▋ | 270/999 [04:31<09:54, 1.23it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 72.35it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 73.71it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 72.32it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 72.48it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 75.33it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 72.79it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 73.23it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 73.44it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 18.85it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 18.73it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 18.73it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 18.71it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.66it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.69it/s]\nframe_idx: 272\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 153\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nframe_idx: 272\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 153\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 27%|██▋ | 271/999 [04:33<13:26, 1.11s/it]\n 27%|██▋ | 272/999 [04:33<09:52, 1.23it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 73.89it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 72.08it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 72.66it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 72.28it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 74.28it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 74.76it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 74.95it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 74.81it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 18.81it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 18.69it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 18.69it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 18.65it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.65it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.66it/s]\nframe_idx: 274\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 154\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nframe_idx: 274\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 154\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 27%|██▋ | 273/999 [04:35<13:24, 1.11s/it]\n 27%|██▋ | 274/999 [04:35<09:52, 1.22it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 73.84it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 72.58it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 71.48it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 71.99it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 75.01it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 74.80it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 74.94it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 74.94it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 18.86it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 18.79it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 18.77it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 18.73it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.70it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.72it/s]\nframe_idx: 276\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 155\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nframe_idx: 276\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 155\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 28%|██▊ | 275/999 [04:37<13:21, 1.11s/it]\n 28%|██▊ | 276/999 [04:37<09:48, 1.23it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 74.80it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 75.23it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 74.17it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 74.24it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 28%|██▊ | 7/25 [00:00<00:00, 69.64it/s]\u001b[A\n 60%|██████ | 15/25 [00:00<00:00, 71.25it/s]\u001b[A\n 92%|█████████▏| 23/25 [00:00<00:00, 73.10it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 72.62it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 18.89it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 18.79it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 18.77it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 18.67it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.68it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.71it/s]\nframe_idx: 278\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 156\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nframe_idx: 278\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 156\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 28%|██▊ | 277/999 [04:39<13:18, 1.11s/it]\n 28%|██▊ | 278/999 [04:39<09:46, 1.23it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 74.23it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 74.97it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 75.01it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 74.70it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 71.34it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 73.20it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 73.99it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 73.60it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 18.86it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 18.76it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 18.71it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 18.69it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.67it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.69it/s]\nframe_idx: 280\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 157\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nframe_idx: 280\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 157\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 28%|██▊ | 279/999 [04:41<13:16, 1.11s/it]\n 28%|██▊ | 280/999 [04:41<09:45, 1.23it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 74.05it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 73.79it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 72.56it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 72.92it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 72.58it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 73.41it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 74.38it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 74.03it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 18.86it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 18.79it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 18.74it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 18.71it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.70it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.72it/s]\nframe_idx: 282\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 158\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nframe_idx: 282\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 158\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 28%|██▊ | 281/999 [04:43<13:13, 1.11s/it]\n 28%|██▊ | 282/999 [04:43<09:43, 1.23it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 73.84it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 74.58it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 74.85it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 74.63it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 72.81it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 68.88it/s]\u001b[A\n 92%|█████████▏| 23/25 [00:00<00:00, 68.95it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 69.25it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 18.88it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 18.74it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 18.74it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 18.69it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.66it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.69it/s]\nframe_idx: 284\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 159\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nframe_idx: 284\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 159\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 28%|██▊ | 283/999 [04:45<13:15, 1.11s/it]\n 28%|██▊ | 284/999 [04:45<09:48, 1.21it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 73.04it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 73.51it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 74.29it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 73.65it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 73.15it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 68.80it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 69.92it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 70.23it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 15.92it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 17.15it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 17.81it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 18.07it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.16it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 17.83it/s]\nframe_idx: 286\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 160\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nframe_idx: 286\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 160\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 29%|██▊ | 285/999 [04:47<14:39, 1.23s/it]\n 29%|██▊ | 286/999 [04:47<10:43, 1.11it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 74.42it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 74.64it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 71.09it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 71.87it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 74.42it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 72.48it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 70.73it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 71.27it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 18.87it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 18.73it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 18.72it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 18.73it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.69it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.71it/s]\nframe_idx: 288\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 161\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nframe_idx: 288\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 161\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 29%|██▊ | 287/999 [04:49<13:54, 1.17s/it]\n 29%|██▉ | 288/999 [04:49<10:10, 1.16it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 70.99it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 72.81it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 72.96it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 72.51it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 28%|██▊ | 7/25 [00:00<00:00, 69.57it/s]\u001b[A\n 60%|██████ | 15/25 [00:00<00:00, 71.24it/s]\u001b[A\n 92%|█████████▏| 23/25 [00:00<00:00, 73.08it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 72.45it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 18.82it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 18.78it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 18.75it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 18.74it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.75it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.75it/s]\nframe_idx: 290\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 162\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nframe_idx: 290\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 162\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 29%|██▉ | 289/999 [04:51<13:29, 1.14s/it]\n 29%|██▉ | 290/999 [04:51<09:54, 1.19it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 73.84it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 74.32it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 74.20it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 74.16it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 28%|██▊ | 7/25 [00:00<00:00, 69.42it/s]\u001b[A\n 56%|█████▌ | 14/25 [00:00<00:00, 69.37it/s]\u001b[A\n 84%|████████▍ | 21/25 [00:00<00:00, 69.45it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 69.43it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 18.90it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 18.77it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 18.73it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 18.73it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.71it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.73it/s]\nframe_idx: 292\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 163\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nframe_idx: 292\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 163\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 29%|██▉ | 291/999 [04:53<13:16, 1.12s/it]\n 29%|██▉ | 292/999 [04:53<09:43, 1.21it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 28%|██▊ | 7/25 [00:00<00:00, 67.73it/s]\u001b[A\n 56%|█████▌ | 14/25 [00:00<00:00, 68.70it/s]\u001b[A\n 88%|████████▊ | 22/25 [00:00<00:00, 69.60it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 69.55it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 72.12it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 69.74it/s]\u001b[A\n 92%|█████████▏| 23/25 [00:00<00:00, 69.09it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 69.84it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 18.86it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 18.74it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 18.69it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 18.69it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.67it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.69it/s]\nframe_idx: 294\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 164\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nframe_idx: 294\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 164\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 29%|██▉ | 293/999 [04:55<13:12, 1.12s/it]\n 29%|██▉ | 294/999 [04:55<09:42, 1.21it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 73.76it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 74.40it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 71.24it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 71.80it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 28%|██▊ | 7/25 [00:00<00:00, 69.48it/s]\u001b[A\n 56%|█████▌ | 14/25 [00:00<00:00, 69.42it/s]\u001b[A\n 88%|████████▊ | 22/25 [00:00<00:00, 71.23it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 71.25it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 18.90it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 18.74it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 18.68it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 18.69it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.66it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.68it/s]\nframe_idx: 296\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 165\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nframe_idx: 296\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 165\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 30%|██▉ | 295/999 [04:57<13:08, 1.12s/it]\n 30%|██▉ | 296/999 [04:57<09:38, 1.22it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 74.79it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 75.00it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 75.07it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 74.96it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 75.34it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 74.27it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 72.71it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 73.06it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 18.89it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 18.74it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 18.70it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 18.69it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.66it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.69it/s]\nframe_idx: 298\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 166\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nframe_idx: 298\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 166\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 30%|██▉ | 297/999 [04:58<12:58, 1.11s/it]\n 30%|██▉ | 298/999 [04:59<09:30, 1.23it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 72.16it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 71.25it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 72.65it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 72.46it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 70.72it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 72.73it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 73.00it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 72.63it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 18.87it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 18.78it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 18.76it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 18.75it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.73it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.74it/s]\nframe_idx: 300\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 167\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nframe_idx: 300\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 167\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 30%|██▉ | 299/999 [05:00<12:54, 1.11s/it]\n 30%|███ | 300/999 [05:00<09:30, 1.23it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 28%|██▊ | 7/25 [00:00<00:00, 69.55it/s]\u001b[A\n 60%|██████ | 15/25 [00:00<00:00, 69.87it/s]\u001b[A\n 88%|████████▊ | 22/25 [00:00<00:00, 69.86it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 69.86it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 28%|██▊ | 7/25 [00:00<00:00, 69.50it/s]\u001b[A\n 60%|██████ | 15/25 [00:00<00:00, 70.67it/s]\u001b[A\n 92%|█████████▏| 23/25 [00:00<00:00, 72.48it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 72.18it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 17.83it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 18.31it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 18.48it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 18.57it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.58it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.48it/s]\nframe_idx: 302\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 168\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nframe_idx: 302\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 168\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 30%|███ | 301/999 [05:02<12:58, 1.12s/it]\n 30%|███ | 302/999 [05:02<09:32, 1.22it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 74.73it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 75.07it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 75.04it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 74.83it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 75.40it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 75.12it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 74.80it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 74.71it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 18.80it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 18.73it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 18.72it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 18.73it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.70it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.71it/s]\nframe_idx: 304\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 169\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nframe_idx: 304\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 169\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 30%|███ | 303/999 [05:04<12:49, 1.11s/it]\n 30%|███ | 304/999 [05:04<09:25, 1.23it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 74.49it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 74.95it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 75.20it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 75.01it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 74.98it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 74.85it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 74.82it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 74.83it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 18.75it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 18.64it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 18.64it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 18.64it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.62it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.63it/s]\nframe_idx: 306\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 170\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nframe_idx: 306\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 170\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 31%|███ | 305/999 [05:06<12:48, 1.11s/it]\n 31%|███ | 306/999 [05:06<09:25, 1.22it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 28%|██▊ | 7/25 [00:00<00:00, 67.53it/s]\u001b[A\n 56%|█████▌ | 14/25 [00:00<00:00, 68.00it/s]\u001b[A\n 84%|████████▍ | 21/25 [00:00<00:00, 67.96it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 68.03it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 74.09it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 73.85it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 70.97it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 71.29it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 18.88it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 18.69it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 18.70it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 18.68it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.62it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.65it/s]\nframe_idx: 308\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 171\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nframe_idx: 308\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 171\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 31%|███ | 307/999 [05:08<12:54, 1.12s/it]\n 31%|███ | 308/999 [05:08<09:28, 1.22it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 28%|██▊ | 7/25 [00:00<00:00, 68.00it/s]\u001b[A\n 60%|██████ | 15/25 [00:00<00:00, 71.33it/s]\u001b[A\n 92%|█████████▏| 23/25 [00:00<00:00, 70.63it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 70.28it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 75.13it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 74.84it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 74.78it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 74.79it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 18.80it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 18.69it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 18.66it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 18.66it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.64it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.66it/s]\nframe_idx: 310\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 172\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nframe_idx: 310\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 172\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 31%|███ | 309/999 [05:10<12:49, 1.11s/it]\n 31%|███ | 310/999 [05:10<09:24, 1.22it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 71.10it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 70.50it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 72.66it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 72.22it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 74.98it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 74.94it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 74.97it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 74.97it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 18.79it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 18.71it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 18.73it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 18.68it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.66it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.68it/s]\nframe_idx: 312\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 173\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nframe_idx: 312\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 173\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 31%|███ | 311/999 [05:12<12:42, 1.11s/it]\n 31%|███ | 312/999 [05:12<09:18, 1.23it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 74.54it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 74.31it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 73.50it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 73.32it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 71.93it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 73.87it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 74.39it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 73.94it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 18.88it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 18.72it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 18.66it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 18.71it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.71it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.71it/s]\nframe_idx: 314\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 174\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nframe_idx: 314\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 174\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 31%|███▏ | 313/999 [05:14<12:36, 1.10s/it]\n 31%|███▏ | 314/999 [05:14<09:17, 1.23it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 73.81it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 74.07it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 72.61it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 72.92it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 75.05it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 75.20it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 74.98it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 75.04it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 18.88it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 18.76it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 18.74it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 18.70it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.65it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.69it/s]\nframe_idx: 316\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 175\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nframe_idx: 316\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 175\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 32%|███▏ | 315/999 [05:16<12:33, 1.10s/it]\n 32%|███▏ | 316/999 [05:16<09:13, 1.23it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 28%|██▊ | 7/25 [00:00<00:00, 69.83it/s]\u001b[A\n 60%|██████ | 15/25 [00:00<00:00, 70.39it/s]\u001b[A\n 92%|█████████▏| 23/25 [00:00<00:00, 71.95it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 71.68it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 28%|██▊ | 7/25 [00:00<00:00, 60.56it/s]\u001b[A\n 60%|██████ | 15/25 [00:00<00:00, 67.47it/s]\u001b[A\n 92%|█████████▏| 23/25 [00:00<00:00, 71.00it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 69.77it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 18.85it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 18.75it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 18.74it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 18.72it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.71it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.72it/s]\nframe_idx: 318\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 176\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nframe_idx: 318\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 176\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 32%|███▏ | 317/999 [05:18<12:35, 1.11s/it]\n 32%|███▏ | 318/999 [05:18<09:14, 1.23it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 74.88it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 75.00it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 74.83it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 74.70it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 70.10it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 69.86it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 71.08it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 70.43it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 18.83it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 18.74it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 18.71it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 18.66it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.66it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.68it/s]\nframe_idx: 320\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 177\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nframe_idx: 320\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 177\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 32%|███▏ | 319/999 [05:20<12:34, 1.11s/it]\n 32%|███▏ | 320/999 [05:20<09:13, 1.23it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 74.46it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 74.68it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 74.79it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 74.65it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 73.15it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 70.05it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 72.21it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 72.00it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 18.81it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 18.77it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 18.72it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 18.66it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.66it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.68it/s]\nframe_idx: 322\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 178\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nframe_idx: 322\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 178\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 32%|███▏ | 321/999 [05:22<12:32, 1.11s/it]\n 32%|███▏ | 322/999 [05:22<09:13, 1.22it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 74.21it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 74.49it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 73.94it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 74.02it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 74.90it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 72.61it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 71.92it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 72.23it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 18.86it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 18.72it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 18.67it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 18.70it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.67it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.68it/s]\nframe_idx: 324\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 179\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nframe_idx: 324\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 179\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 32%|███▏ | 323/999 [05:23<12:29, 1.11s/it]\n 32%|███▏ | 324/999 [05:24<09:11, 1.22it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 74.26it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 74.70it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 74.81it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 74.34it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 72.81it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 71.54it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 71.07it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 71.28it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 18.84it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 18.78it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 18.73it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 18.69it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.72it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.72it/s]\nframe_idx: 326\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 180\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nframe_idx: 326\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 180\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 33%|███▎ | 325/999 [05:25<12:27, 1.11s/it]\n 33%|███▎ | 326/999 [05:26<09:09, 1.22it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 72.95it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 74.05it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 73.18it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 73.37it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 74.08it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 67.83it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 68.74it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 68.79it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 18.88it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 18.76it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 18.74it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 18.71it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.69it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.71it/s]\nframe_idx: 328\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 181\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nframe_idx: 328\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 181\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 33%|███▎ | 327/999 [05:27<12:28, 1.11s/it]\n 33%|███▎ | 328/999 [05:27<09:09, 1.22it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 74.11it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 74.41it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 74.72it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 74.54it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 72.19it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 73.82it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 74.30it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 74.00it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 18.71it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 18.56it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 18.61it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 18.61it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.61it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.60it/s]\nframe_idx: 330\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 182\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nframe_idx: 330\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 182\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 33%|███▎ | 329/999 [05:29<12:23, 1.11s/it]\n 33%|███▎ | 330/999 [05:29<09:05, 1.23it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 73.87it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 74.40it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 71.55it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 72.04it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 75.16it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 74.83it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 74.83it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 74.83it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 18.79it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 18.69it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 18.69it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 18.67it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.64it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.66it/s]\nframe_idx: 332\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 183\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nframe_idx: 332\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 183\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 33%|███▎ | 331/999 [05:31<12:20, 1.11s/it]\n 33%|███▎ | 332/999 [05:31<09:05, 1.22it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 71.46it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 72.13it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 71.73it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 71.37it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 28%|██▊ | 7/25 [00:00<00:00, 68.35it/s]\u001b[A\n 60%|██████ | 15/25 [00:00<00:00, 70.96it/s]\u001b[A\n 92%|█████████▏| 23/25 [00:00<00:00, 71.87it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 71.10it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 18.88it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 18.71it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 18.69it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 18.70it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.67it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.69it/s]\nframe_idx: 334\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 184\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nframe_idx: 334\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 184\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 33%|███▎ | 333/999 [05:33<12:23, 1.12s/it]\n 33%|███▎ | 334/999 [05:33<09:07, 1.22it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 70.98it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 69.80it/s]\u001b[A\n 92%|█████████▏| 23/25 [00:00<00:00, 69.17it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 69.32it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 28%|██▊ | 7/25 [00:00<00:00, 68.49it/s]\u001b[A\n 60%|██████ | 15/25 [00:00<00:00, 71.26it/s]\u001b[A\n 92%|█████████▏| 23/25 [00:00<00:00, 71.33it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 70.61it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 18.81it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 18.66it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 18.67it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 18.65it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.66it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.66it/s]\nframe_idx: 336\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 185\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nframe_idx: 336\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 185\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 34%|███▎ | 335/999 [05:35<12:26, 1.12s/it]\n 34%|███▎ | 336/999 [05:35<09:08, 1.21it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 28%|██▊ | 7/25 [00:00<00:00, 67.90it/s]\u001b[A\n 56%|█████▌ | 14/25 [00:00<00:00, 68.39it/s]\u001b[A\n 88%|████████▊ | 22/25 [00:00<00:00, 70.36it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 70.36it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 74.01it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 74.20it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 74.48it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 74.36it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 18.82it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 18.76it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 18.71it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 18.71it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.74it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.73it/s]\nframe_idx: 338\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 186\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nframe_idx: 338\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 186\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 34%|███▎ | 337/999 [05:37<12:23, 1.12s/it]\n 34%|███▍ | 338/999 [05:37<09:05, 1.21it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 73.16it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 70.44it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 69.72it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 70.12it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 70.95it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 71.13it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 71.09it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 71.21it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 18.86it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 18.79it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 18.76it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 18.77it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.74it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.76it/s]\nframe_idx: 340\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 187\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nframe_idx: 340\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 187\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 34%|███▍ | 339/999 [05:39<12:20, 1.12s/it]\n 34%|███▍ | 340/999 [05:39<09:03, 1.21it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 74.32it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 71.98it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 71.55it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 72.01it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 75.50it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 75.27it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 75.04it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 75.15it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 18.81it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 18.73it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 18.72it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 18.70it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.72it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.71it/s]\nframe_idx: 342\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 188\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nframe_idx: 342\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 188\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 34%|███▍ | 341/999 [05:41<12:11, 1.11s/it]\n 34%|███▍ | 342/999 [05:41<08:56, 1.22it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 74.10it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 74.38it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 72.19it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 72.78it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 70.95it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 69.62it/s]\u001b[A\n 92%|█████████▏| 23/25 [00:00<00:00, 69.65it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 70.06it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 18.80it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 18.78it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 18.76it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 18.72it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.69it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.71it/s]\nframe_idx: 344\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 189\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nframe_idx: 344\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 189\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 34%|███▍ | 343/999 [05:43<12:11, 1.12s/it]\n 34%|███▍ | 344/999 [05:43<08:56, 1.22it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 28%|██▊ | 7/25 [00:00<00:00, 69.12it/s]\u001b[A\n 60%|██████ | 15/25 [00:00<00:00, 70.68it/s]\u001b[A\n 92%|█████████▏| 23/25 [00:00<00:00, 72.01it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 71.06it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 28%|██▊ | 7/25 [00:00<00:00, 69.35it/s]\u001b[A\n 56%|█████▌ | 14/25 [00:00<00:00, 69.12it/s]\u001b[A\n 88%|████████▊ | 22/25 [00:00<00:00, 71.06it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 70.40it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 18.84it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 18.76it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 18.71it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 18.65it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.65it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.67it/s]\nframe_idx: 346\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 190\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nframe_idx: 346\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 190\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 35%|███▍ | 345/999 [05:45<12:10, 1.12s/it]\n 35%|███▍ | 346/999 [05:45<08:57, 1.22it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 73.93it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 74.43it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 74.22it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 74.05it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 74.89it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 74.99it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 75.01it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 75.02it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 18.85it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 18.74it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 18.73it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 18.68it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.65it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.67it/s]\nframe_idx: 348\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 191\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nframe_idx: 348\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 191\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 35%|███▍ | 347/999 [05:47<12:07, 1.12s/it]\n 35%|███▍ | 348/999 [05:47<08:54, 1.22it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 73.89it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 74.53it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 73.39it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 73.65it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 70.82it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 73.32it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 73.09it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 72.97it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 18.80it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 18.74it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 18.69it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 18.70it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.69it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.69it/s]\nframe_idx: 350\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 192\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nframe_idx: 350\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 192\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 35%|███▍ | 349/999 [05:49<12:03, 1.11s/it]\n 35%|███▌ | 350/999 [05:49<08:51, 1.22it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 73.81it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 74.42it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 74.42it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 74.37it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 72.07it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 70.29it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 72.35it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 72.07it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 18.87it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 18.74it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 18.69it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 18.69it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.67it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.69it/s]\nframe_idx: 352\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 193\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nframe_idx: 352\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 193\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 35%|███▌ | 351/999 [05:51<12:03, 1.12s/it]\n 35%|███▌ | 352/999 [05:51<08:52, 1.22it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 74.26it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 74.34it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 74.36it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 74.34it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 75.01it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 72.59it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 73.79it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 73.73it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 18.87it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 18.73it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 18.72it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 18.69it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.65it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.68it/s]\nframe_idx: 354\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 194\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nframe_idx: 354\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 194\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 35%|███▌ | 353/999 [05:53<11:58, 1.11s/it]\n 35%|███▌ | 354/999 [05:53<08:48, 1.22it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 73.36it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 72.45it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 72.62it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 72.53it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 72.84it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 72.96it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 72.45it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 72.64it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 18.88it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 18.75it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 18.75it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 18.72it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.71it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.72it/s]\nframe_idx: 356\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 195\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nframe_idx: 356\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 195\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 36%|███▌ | 355/999 [05:54<11:57, 1.11s/it]\n 36%|███▌ | 356/999 [05:55<08:46, 1.22it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 71.50it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 72.17it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 70.45it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 70.95it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 71.93it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 70.27it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 69.60it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 69.85it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 18.77it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 18.75it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 18.69it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 18.67it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.69it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.69it/s]\nframe_idx: 358\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 196\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nframe_idx: 358\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 196\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 36%|███▌ | 357/999 [05:56<12:05, 1.13s/it]\n 36%|███▌ | 358/999 [05:57<08:53, 1.20it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 73.12it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 72.02it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 72.34it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 71.87it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 74.24it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 74.38it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 72.93it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 72.94it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 18.89it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 18.78it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 18.71it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 18.68it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.68it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.70it/s]\nframe_idx: 360\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 197\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nframe_idx: 360\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 197\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 36%|███▌ | 359/999 [05:58<11:59, 1.12s/it]\n 36%|███▌ | 360/999 [05:59<08:48, 1.21it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 73.98it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 74.27it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 73.88it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 73.88it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 74.86it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 74.76it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 74.75it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 74.68it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 18.81it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 18.71it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 18.69it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 18.68it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.64it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.66it/s]\nframe_idx: 362\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 198\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nframe_idx: 362\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 198\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 36%|███▌ | 361/999 [06:00<11:51, 1.12s/it]\n 36%|███▌ | 362/999 [06:00<08:44, 1.22it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 72.68it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 74.11it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 74.46it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 74.21it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 28%|██▊ | 7/25 [00:00<00:00, 69.02it/s]\u001b[A\n 56%|█████▌ | 14/25 [00:00<00:00, 69.21it/s]\u001b[A\n 88%|████████▊ | 22/25 [00:00<00:00, 71.04it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 70.95it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 18.81it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 18.70it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 18.70it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 18.72it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.71it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.70it/s]\nframe_idx: 364\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 199\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nframe_idx: 364\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 199\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 36%|███▋ | 363/999 [06:02<11:49, 1.12s/it]\n 36%|███▋ | 364/999 [06:02<08:44, 1.21it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 28%|██▊ | 7/25 [00:00<00:00, 67.11it/s]\u001b[A\n 56%|█████▌ | 14/25 [00:00<00:00, 68.29it/s]\u001b[A\n 88%|████████▊ | 22/25 [00:00<00:00, 71.32it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 70.68it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 74.83it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 74.50it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 74.65it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 74.63it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 18.62it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 18.68it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 18.67it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 18.68it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.65it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.65it/s]\nframe_idx: 366\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 200\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nframe_idx: 366\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 200\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 37%|███▋ | 365/999 [06:04<11:48, 1.12s/it]\n 37%|███▋ | 366/999 [06:04<08:40, 1.22it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 71.37it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 72.64it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 72.56it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 72.12it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 28%|██▊ | 7/25 [00:00<00:00, 69.48it/s]\u001b[A\n 56%|█████▌ | 14/25 [00:00<00:00, 69.53it/s]\u001b[A\n 84%|████████▍ | 21/25 [00:00<00:00, 69.38it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 70.18it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 18.80it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 18.67it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 18.68it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 18.68it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.65it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.66it/s]\nframe_idx: 368\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 201\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nframe_idx: 368\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 201\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 37%|███▋ | 367/999 [06:06<11:48, 1.12s/it]\n 37%|███▋ | 368/999 [06:06<08:41, 1.21it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 28%|██▊ | 7/25 [00:00<00:00, 68.22it/s]\u001b[A\n 60%|██████ | 15/25 [00:00<00:00, 71.89it/s]\u001b[A\n 92%|█████████▏| 23/25 [00:00<00:00, 73.48it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 72.64it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 74.40it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 73.02it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 73.84it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 73.54it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 18.84it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 18.71it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 18.61it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 18.65it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.64it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.65it/s]\nframe_idx: 370\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 202\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nframe_idx: 370\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 202\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 37%|███▋ | 369/999 [06:08<11:44, 1.12s/it]\n 37%|███▋ | 370/999 [06:08<08:37, 1.21it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 70.72it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 70.50it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 72.54it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 72.10it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 74.64it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 74.72it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 74.76it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 74.75it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 18.79it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 18.77it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 18.54it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 18.59it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.58it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.60it/s]\nframe_idx: 372\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 203\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nframe_idx: 372\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 203\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 37%|███▋ | 371/999 [06:10<11:42, 1.12s/it]\n 37%|███▋ | 372/999 [06:10<08:37, 1.21it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 28%|██▊ | 7/25 [00:00<00:00, 67.57it/s]\u001b[A\n 56%|█████▌ | 14/25 [00:00<00:00, 68.55it/s]\u001b[A\n 88%|████████▊ | 22/25 [00:00<00:00, 71.57it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 71.08it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 28%|██▊ | 7/25 [00:00<00:00, 68.25it/s]\u001b[A\n 60%|██████ | 15/25 [00:00<00:00, 70.32it/s]\u001b[A\n 92%|█████████▏| 23/25 [00:00<00:00, 69.73it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 69.38it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 18.74it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 18.67it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 18.62it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 18.59it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.59it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.60it/s]\nframe_idx: 374\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 204\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nframe_idx: 374\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 204\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 37%|███▋ | 373/999 [06:12<11:45, 1.13s/it]\n 37%|███▋ | 374/999 [06:12<08:38, 1.20it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 73.25it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 68.88it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 70.03it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 69.79it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 28%|██▊ | 7/25 [00:00<00:00, 69.95it/s]\u001b[A\n 56%|█████▌ | 14/25 [00:00<00:00, 69.77it/s]\u001b[A\n 88%|████████▊ | 22/25 [00:00<00:00, 70.17it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 70.18it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 18.70it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 18.59it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 18.34it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 18.39it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.43it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.43it/s]\nframe_idx: 376\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 205\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nframe_idx: 376\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 205\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 38%|███▊ | 375/999 [06:14<11:50, 1.14s/it]\n 38%|███▊ | 376/999 [06:14<08:46, 1.18it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 28%|██▊ | 7/25 [00:00<00:00, 65.52it/s]\u001b[A\n 56%|█████▌ | 14/25 [00:00<00:00, 67.78it/s]\u001b[A\n 84%|████████▍ | 21/25 [00:00<00:00, 68.41it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 68.84it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 28%|██▊ | 7/25 [00:00<00:00, 68.92it/s]\u001b[A\n 56%|█████▌ | 14/25 [00:00<00:00, 64.30it/s]\u001b[A\n 84%|████████▍ | 21/25 [00:00<00:00, 65.22it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 65.09it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 18.67it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 18.28it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 18.33it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 18.28it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.30it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.31it/s]\nframe_idx: 378\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 206\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nframe_idx: 378\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 206\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 38%|███▊ | 377/999 [06:16<12:12, 1.18s/it]\n 38%|███▊ | 378/999 [06:16<08:59, 1.15it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 28%|██▊ | 7/25 [00:00<00:00, 64.72it/s]\u001b[A\n 56%|█████▌ | 14/25 [00:00<00:00, 65.53it/s]\u001b[A\n 88%|████████▊ | 22/25 [00:00<00:00, 68.55it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 68.24it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 24%|██▍ | 6/25 [00:00<00:00, 57.15it/s]\u001b[A\n 52%|█████▏ | 13/25 [00:00<00:00, 62.10it/s]\u001b[A\n 80%|████████ | 20/25 [00:00<00:00, 64.13it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 64.45it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 18.69it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 18.54it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 18.53it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 18.47it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.41it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.45it/s]\nframe_idx: 380\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 207\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nframe_idx: 380\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 207\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 38%|███▊ | 379/999 [06:18<12:11, 1.18s/it]\n 38%|███▊ | 380/999 [06:18<08:57, 1.15it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 73.18it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 74.20it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 74.57it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 74.35it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 72.22it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 73.28it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 73.54it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 73.37it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 18.72it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 18.58it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 18.54it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 18.53it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.52it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.53it/s]\nframe_idx: 382\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 208\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nframe_idx: 382\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 208\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 38%|███▊ | 381/999 [06:20<11:50, 1.15s/it]\n 38%|███▊ | 382/999 [06:20<08:41, 1.18it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 28%|██▊ | 7/25 [00:00<00:00, 68.09it/s]\u001b[A\n 60%|██████ | 15/25 [00:00<00:00, 69.21it/s]\u001b[A\n 88%|████████▊ | 22/25 [00:00<00:00, 69.50it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 69.42it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 72.89it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 71.16it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 72.43it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 72.28it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 18.76it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 18.57it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 18.57it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 18.57it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.60it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.59it/s]\nframe_idx: 384\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 209\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nframe_idx: 384\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 209\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 38%|███▊ | 383/999 [06:22<11:42, 1.14s/it]\n 38%|███▊ | 384/999 [06:22<08:36, 1.19it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 28%|██▊ | 7/25 [00:00<00:00, 66.27it/s]\u001b[A\n 56%|█████▌ | 14/25 [00:00<00:00, 68.00it/s]\u001b[A\n 84%|████████▍ | 21/25 [00:00<00:00, 68.61it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 68.49it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 72.37it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 72.11it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 73.15it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 72.85it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 18.69it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 18.59it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 18.61it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 18.61it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.57it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.58it/s]\nframe_idx: 386\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 210\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nframe_idx: 386\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 210\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 39%|███▊ | 385/999 [06:24<11:39, 1.14s/it]\n 39%|███▊ | 386/999 [06:24<08:33, 1.19it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 28%|██▊ | 7/25 [00:00<00:00, 67.25it/s]\u001b[A\n 56%|█████▌ | 14/25 [00:00<00:00, 68.41it/s]\u001b[A\n 84%|████████▍ | 21/25 [00:00<00:00, 68.43it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 68.78it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 74.35it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 71.72it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 73.11it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 72.80it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 15.45it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 17.13it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 17.56it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 17.80it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 17.97it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 17.62it/s]\nframe_idx: 388\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 211\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nframe_idx: 388\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 211\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 39%|███▊ | 387/999 [06:26<12:08, 1.19s/it]\n 39%|███▉ | 388/999 [06:26<09:19, 1.09it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 73.67it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 69.15it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 71.58it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 71.41it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 74.77it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 73.22it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 71.60it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 72.01it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 18.83it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 18.70it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 18.63it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 18.61it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.63it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.64it/s]\nframe_idx: 390\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 212\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nframe_idx: 390\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 212\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 39%|███▉ | 389/999 [06:28<12:43, 1.25s/it]\n 39%|███▉ | 390/999 [06:29<09:19, 1.09it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 74.10it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 74.26it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 71.88it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 72.43it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 72.30it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 73.16it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 71.71it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 71.55it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 18.80it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 18.67it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 18.63it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 18.61it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.58it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.61it/s]\nframe_idx: 392\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 213\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nframe_idx: 392\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 213\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 39%|███▉ | 391/999 [06:30<12:03, 1.19s/it]\n 39%|███▉ | 392/999 [06:31<08:50, 1.14it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 73.43it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 73.65it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 74.21it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 73.93it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 74.80it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 74.72it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 71.18it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 71.94it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 18.73it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 18.68it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 18.62it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 18.61it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.60it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.61it/s]\nframe_idx: 394\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 214\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nframe_idx: 394\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 214\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 39%|███▉ | 393/999 [06:32<11:40, 1.16s/it]\n 39%|███▉ | 394/999 [06:33<08:35, 1.17it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 74.65it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 74.80it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 74.87it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 74.71it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 74.41it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 74.72it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 72.80it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 73.12it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 18.86it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 18.69it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 18.68it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 18.64it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.64it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.66it/s]\nframe_idx: 396\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 215\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nframe_idx: 396\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 215\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 40%|███▉ | 395/999 [06:34<11:26, 1.14s/it]\n 40%|███▉ | 396/999 [06:35<08:25, 1.19it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 73.69it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 74.06it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 74.56it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 74.36it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 72.91it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 73.14it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 71.39it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 71.83it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 18.87it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 18.75it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 18.69it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 18.65it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.67it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.68it/s]\nframe_idx: 398\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 216\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nframe_idx: 398\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 216\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 40%|███▉ | 397/999 [06:36<11:19, 1.13s/it]\n 40%|███▉ | 398/999 [06:36<08:19, 1.20it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 73.50it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 71.56it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 73.15it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 73.00it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 74.42it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 73.98it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 74.52it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 74.22it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 18.12it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 18.48it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 18.55it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 18.59it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.65it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.57it/s]\nframe_idx: 400\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 217\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nframe_idx: 400\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 217\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 40%|███▉ | 399/999 [06:38<11:12, 1.12s/it]\n 40%|████ | 400/999 [06:38<08:13, 1.21it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 73.23it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 72.93it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 72.99it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 72.90it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 75.10it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 74.83it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 74.96it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 74.96it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 18.78it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 18.72it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 18.68it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 18.66it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.68it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.68it/s]\nframe_idx: 402\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 218\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nframe_idx: 402\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 218\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 40%|████ | 401/999 [06:40<11:05, 1.11s/it]\n 40%|████ | 402/999 [06:40<08:07, 1.22it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 70.87it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 73.42it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 74.23it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 73.82it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 75.18it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 75.34it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 75.22it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 75.18it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 18.83it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 18.73it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 18.72it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 18.66it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.66it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.68it/s]\nframe_idx: 404\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 219\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nframe_idx: 404\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 219\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 40%|████ | 403/999 [06:42<11:01, 1.11s/it]\n 40%|████ | 404/999 [06:42<08:05, 1.23it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 70.04it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 69.58it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 71.71it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 71.32it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 75.32it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 74.94it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 74.96it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 74.72it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 18.86it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 18.78it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 18.73it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 18.71it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.70it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.71it/s]\nframe_idx: 406\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 220\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nframe_idx: 406\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 220\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 41%|████ | 405/999 [06:44<10:59, 1.11s/it]\n 41%|████ | 406/999 [06:44<08:03, 1.23it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 28%|██▊ | 7/25 [00:00<00:00, 69.77it/s]\u001b[A\n 56%|█████▌ | 14/25 [00:00<00:00, 67.69it/s]\u001b[A\n 84%|████████▍ | 21/25 [00:00<00:00, 68.56it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 68.79it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 28%|██▊ | 7/25 [00:00<00:00, 69.80it/s]\u001b[A\n 60%|██████ | 15/25 [00:00<00:00, 70.02it/s]\u001b[A\n 92%|█████████▏| 23/25 [00:00<00:00, 71.02it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 71.07it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 18.82it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 18.74it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 18.66it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 18.64it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.59it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.63it/s]\nframe_idx: 408\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 221\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nframe_idx: 408\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 221\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 41%|████ | 407/999 [06:46<11:03, 1.12s/it]\n 41%|████ | 408/999 [06:46<08:07, 1.21it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 71.77it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 68.55it/s]\u001b[A\n 92%|█████████▏| 23/25 [00:00<00:00, 68.91it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 68.87it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 28%|██▊ | 7/25 [00:00<00:00, 69.57it/s]\u001b[A\n 60%|██████ | 15/25 [00:00<00:00, 71.08it/s]\u001b[A\n 92%|█████████▏| 23/25 [00:00<00:00, 70.67it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 70.90it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 18.89it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 18.70it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 18.66it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 18.63it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.63it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.65it/s]\nframe_idx: 410\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 222\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nframe_idx: 410\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 222\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 41%|████ | 409/999 [06:48<11:03, 1.13s/it]\n 41%|████ | 410/999 [06:48<08:07, 1.21it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 73.69it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 73.19it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 71.03it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 71.46it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 28%|██▊ | 7/25 [00:00<00:00, 68.81it/s]\u001b[A\n 56%|█████▌ | 14/25 [00:00<00:00, 68.98it/s]\u001b[A\n 84%|████████▍ | 21/25 [00:00<00:00, 69.03it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 69.75it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 18.84it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 18.72it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 18.66it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 18.63it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.62it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.64it/s]\nframe_idx: 412\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 223\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nframe_idx: 412\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 223\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 41%|████ | 411/999 [06:50<11:03, 1.13s/it]\n 41%|████ | 412/999 [06:50<08:07, 1.20it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 28%|██▊ | 7/25 [00:00<00:00, 67.80it/s]\u001b[A\n 60%|██████ | 15/25 [00:00<00:00, 69.40it/s]\u001b[A\n 88%|████████▊ | 22/25 [00:00<00:00, 68.70it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 68.76it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 75.10it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 71.03it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 71.77it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 72.02it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 18.81it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 18.66it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 18.65it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 18.66it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.66it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.66it/s]\nframe_idx: 414\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 224\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nframe_idx: 414\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 224\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 41%|████▏ | 413/999 [06:52<11:00, 1.13s/it]\n 41%|████▏ | 414/999 [06:52<08:05, 1.21it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 74.22it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 74.40it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 72.65it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 72.87it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 75.05it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 74.92it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 74.80it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 74.78it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 18.85it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 18.70it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 18.69it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 18.70it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.64it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.67it/s]\nframe_idx: 416\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 225\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nframe_idx: 416\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 225\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 42%|████▏ | 415/999 [06:54<10:52, 1.12s/it]\n 42%|████▏ | 416/999 [06:54<07:59, 1.22it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 28%|██▊ | 7/25 [00:00<00:00, 67.60it/s]\u001b[A\n 60%|██████ | 15/25 [00:00<00:00, 70.08it/s]\u001b[A\n 92%|█████████▏| 23/25 [00:00<00:00, 69.74it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 69.28it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 28%|██▊ | 7/25 [00:00<00:00, 69.56it/s]\u001b[A\n 60%|██████ | 15/25 [00:00<00:00, 70.31it/s]\u001b[A\n 92%|█████████▏| 23/25 [00:00<00:00, 72.36it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 71.89it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 18.81it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 18.74it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 18.72it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 18.70it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.71it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.71it/s]\nframe_idx: 418\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 226\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nframe_idx: 418\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 226\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 42%|████▏ | 417/999 [06:56<10:53, 1.12s/it]\n 42%|████▏ | 418/999 [06:56<07:59, 1.21it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 28%|██▊ | 7/25 [00:00<00:00, 66.55it/s]\u001b[A\n 56%|█████▌ | 14/25 [00:00<00:00, 67.82it/s]\u001b[A\n 88%|████████▊ | 22/25 [00:00<00:00, 71.11it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 70.72it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 28%|██▊ | 7/25 [00:00<00:00, 69.09it/s]\u001b[A\n 60%|██████ | 15/25 [00:00<00:00, 72.18it/s]\u001b[A\n 92%|█████████▏| 23/25 [00:00<00:00, 73.48it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 72.18it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 18.88it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 18.77it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 18.68it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 18.66it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.63it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.66it/s]\nframe_idx: 420\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 227\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nframe_idx: 420\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 227\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 42%|████▏ | 419/999 [06:58<10:50, 1.12s/it]\n 42%|████▏ | 420/999 [06:58<07:58, 1.21it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 74.05it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 74.51it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 74.60it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 74.48it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 70.34it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 71.43it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 70.69it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 70.68it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 18.80it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 18.75it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 18.68it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 18.67it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.69it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.69it/s]\nframe_idx: 422\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 228\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nframe_idx: 422\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 228\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 42%|████▏ | 421/999 [07:00<10:48, 1.12s/it]\n 42%|████▏ | 422/999 [07:00<07:58, 1.21it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 74.08it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 74.33it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 71.42it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 71.95it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 28%|██▊ | 7/25 [00:00<00:00, 68.58it/s]\u001b[A\n 56%|█████▌ | 14/25 [00:00<00:00, 68.50it/s]\u001b[A\n 84%|████████▍ | 21/25 [00:00<00:00, 68.53it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 68.41it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 18.83it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 18.71it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 18.68it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 18.65it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.64it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.66it/s]\nframe_idx: 424\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 229\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nframe_idx: 424\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 229\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 42%|████▏ | 423/999 [07:02<10:53, 1.13s/it]\n 42%|████▏ | 424/999 [07:02<07:59, 1.20it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 74.29it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 74.44it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 74.21it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 74.25it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 74.89it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 72.18it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 70.80it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 71.35it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 18.85it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 18.77it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 18.74it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 18.73it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.69it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.71it/s]\nframe_idx: 426\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 230\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nframe_idx: 426\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 230\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 43%|████▎ | 425/999 [07:04<10:44, 1.12s/it]\n 43%|████▎ | 426/999 [07:04<07:54, 1.21it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 73.85it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 74.26it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 74.54it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 74.42it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 74.64it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 73.47it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 73.22it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 73.46it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 18.80it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 18.74it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 18.69it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 18.67it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.69it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.69it/s]\nframe_idx: 428\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 231\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nframe_idx: 428\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 231\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 43%|████▎ | 427/999 [07:05<10:39, 1.12s/it]\n 43%|████▎ | 428/999 [07:06<07:50, 1.21it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 74.72it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 72.78it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 72.40it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 72.53it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 28%|██▊ | 7/25 [00:00<00:00, 69.53it/s]\u001b[A\n 56%|█████▌ | 14/25 [00:00<00:00, 69.69it/s]\u001b[A\n 84%|████████▍ | 21/25 [00:00<00:00, 69.55it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 69.37it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 18.85it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 18.74it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 18.69it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 18.70it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.68it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.69it/s]\nframe_idx: 430\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 232\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nframe_idx: 430\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 232\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 43%|████▎ | 429/999 [07:07<10:42, 1.13s/it]\n 43%|████▎ | 430/999 [07:08<07:51, 1.21it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 28%|██▊ | 7/25 [00:00<00:00, 68.41it/s]\u001b[A\n 60%|██████ | 15/25 [00:00<00:00, 72.26it/s]\u001b[A\n 92%|█████████▏| 23/25 [00:00<00:00, 73.64it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 73.08it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 28%|██▊ | 7/25 [00:00<00:00, 69.76it/s]\u001b[A\n 60%|██████ | 15/25 [00:00<00:00, 70.89it/s]\u001b[A\n 92%|█████████▏| 23/25 [00:00<00:00, 70.83it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 70.63it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 18.84it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 18.75it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 18.72it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 18.70it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.70it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.71it/s]\nframe_idx: 432\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 233\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nframe_idx: 432\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 233\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 43%|████▎ | 431/999 [07:09<10:38, 1.12s/it]\n 43%|████▎ | 432/999 [07:10<07:50, 1.20it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 74.29it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 74.51it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 74.53it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 74.44it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 28%|██▊ | 7/25 [00:00<00:00, 68.93it/s]\u001b[A\n 60%|██████ | 15/25 [00:00<00:00, 69.65it/s]\u001b[A\n 92%|█████████▏| 23/25 [00:00<00:00, 70.63it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 70.11it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 18.82it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 18.70it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 18.66it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 18.66it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.66it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.66it/s]\nframe_idx: 434\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 234\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nframe_idx: 434\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 234\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 43%|████▎ | 433/999 [07:11<10:36, 1.12s/it]\n 43%|████▎ | 434/999 [07:11<07:47, 1.21it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 74.35it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 74.26it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 71.82it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 72.32it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 70.68it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 69.96it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 70.79it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 70.49it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 18.86it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 18.77it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 18.70it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 18.70it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.70it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.71it/s]\nframe_idx: 436\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 235\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nframe_idx: 436\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 235\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 44%|████▎ | 435/999 [07:13<10:34, 1.12s/it]\n 44%|████▎ | 436/999 [07:13<07:46, 1.21it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 28%|██▊ | 7/25 [00:00<00:00, 69.49it/s]\u001b[A\n 60%|██████ | 15/25 [00:00<00:00, 72.11it/s]\u001b[A\n 92%|█████████▏| 23/25 [00:00<00:00, 70.67it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 70.61it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 72.74it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 72.36it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 71.14it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 71.62it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 18.82it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 18.71it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 18.68it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 18.68it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.65it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.67it/s]\nframe_idx: 438\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 236\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nframe_idx: 438\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 236\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 44%|████▎ | 437/999 [07:15<10:32, 1.13s/it]\n 44%|████▍ | 438/999 [07:15<07:45, 1.21it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 74.50it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 74.82it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 74.84it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 74.40it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 71.86it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 71.76it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 69.37it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 69.99it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 18.86it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 18.75it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 18.73it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 18.75it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.71it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.72it/s]\nframe_idx: 440\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 237\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nframe_idx: 440\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 237\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 44%|████▍ | 439/999 [07:17<10:31, 1.13s/it]\n 44%|████▍ | 440/999 [07:17<07:43, 1.21it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 73.79it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 74.27it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 73.61it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 73.61it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 71.31it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 69.09it/s]\u001b[A\n 92%|█████████▏| 23/25 [00:00<00:00, 68.97it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 69.19it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 18.81it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 18.70it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 18.69it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 18.69it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.67it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.68it/s]\nframe_idx: 442\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 238\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nframe_idx: 442\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 238\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 44%|████▍ | 441/999 [07:19<10:29, 1.13s/it]\n 44%|████▍ | 442/999 [07:19<07:42, 1.21it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 28%|██▊ | 7/25 [00:00<00:00, 67.71it/s]\u001b[A\n 60%|██████ | 15/25 [00:00<00:00, 71.69it/s]\u001b[A\n 92%|█████████▏| 23/25 [00:00<00:00, 73.17it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 72.53it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 28%|██▊ | 7/25 [00:00<00:00, 68.95it/s]\u001b[A\n 60%|██████ | 15/25 [00:00<00:00, 70.62it/s]\u001b[A\n 92%|█████████▏| 23/25 [00:00<00:00, 69.60it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 69.62it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 18.86it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 18.53it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 18.55it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 18.57it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.62it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.60it/s]\nframe_idx: 444\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 239\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nframe_idx: 444\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 239\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 44%|████▍ | 443/999 [07:21<10:26, 1.13s/it]\n 44%|████▍ | 444/999 [07:21<07:39, 1.21it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 28%|██▊ | 7/25 [00:00<00:00, 69.90it/s]\u001b[A\n 60%|██████ | 15/25 [00:00<00:00, 70.38it/s]\u001b[A\n 92%|█████████▏| 23/25 [00:00<00:00, 72.32it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 71.40it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 72.65it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 73.63it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 74.03it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 73.80it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 18.81it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 18.58it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 18.62it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 18.62it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.61it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.62it/s]\nframe_idx: 446\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 240\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nframe_idx: 446\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 240\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 45%|████▍ | 445/999 [07:23<10:24, 1.13s/it]\n 45%|████▍ | 446/999 [07:23<07:40, 1.20it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 28%|██▊ | 7/25 [00:00<00:00, 68.96it/s]\u001b[A\n 56%|█████▌ | 14/25 [00:00<00:00, 68.40it/s]\u001b[A\n 84%|████████▍ | 21/25 [00:00<00:00, 67.79it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 69.00it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 75.07it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 74.79it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 74.61it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 74.10it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 18.86it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 18.74it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 18.68it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 18.67it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.68it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.69it/s]\nframe_idx: 448\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 241\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nframe_idx: 448\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 241\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 45%|████▍ | 447/999 [07:25<10:22, 1.13s/it]\n 45%|████▍ | 448/999 [07:25<07:37, 1.20it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 72.09it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 69.97it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 68.27it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 68.90it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 28%|██▊ | 7/25 [00:00<00:00, 68.50it/s]\u001b[A\n 56%|█████▌ | 14/25 [00:00<00:00, 68.14it/s]\u001b[A\n 84%|████████▍ | 21/25 [00:00<00:00, 68.15it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 68.97it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 18.85it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 18.73it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 18.69it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 18.65it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.68it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.68it/s]\nframe_idx: 450\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 242\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nframe_idx: 450\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 242\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 45%|████▍ | 449/999 [07:27<10:23, 1.13s/it]\n 45%|████▌ | 450/999 [07:27<07:38, 1.20it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 70.09it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 69.30it/s]\u001b[A\n 92%|█████████▏| 23/25 [00:00<00:00, 68.77it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 68.96it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 71.62it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 73.41it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 73.78it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 73.04it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 18.87it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 18.73it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 18.70it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 18.68it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.68it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.70it/s]\nframe_idx: 452\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 243\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nframe_idx: 452\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 243\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 45%|████▌ | 451/999 [07:29<10:19, 1.13s/it]\n 45%|████▌ | 452/999 [07:29<07:35, 1.20it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 73.81it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 70.76it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 71.19it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 71.05it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 28%|██▊ | 7/25 [00:00<00:00, 68.19it/s]\u001b[A\n 56%|█████▌ | 14/25 [00:00<00:00, 69.18it/s]\u001b[A\n 88%|████████▊ | 22/25 [00:00<00:00, 71.61it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 71.23it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 18.83it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 18.75it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 18.70it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 18.70it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.69it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.70it/s]\nframe_idx: 454\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 244\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nframe_idx: 454\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 244\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 45%|████▌ | 453/999 [07:31<10:16, 1.13s/it]\n 45%|████▌ | 454/999 [07:31<07:33, 1.20it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 72.78it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 71.72it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 69.03it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 69.95it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 72.57it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 73.72it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 74.01it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 73.47it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 18.83it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 18.69it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 18.66it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 18.68it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.64it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.66it/s]\nframe_idx: 456\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 245\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nframe_idx: 456\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 245\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 46%|████▌ | 455/999 [07:33<10:13, 1.13s/it]\n 46%|████▌ | 456/999 [07:33<07:30, 1.21it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 74.13it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 74.53it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 71.92it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 72.04it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 28%|██▊ | 7/25 [00:00<00:00, 68.42it/s]\u001b[A\n 56%|█████▌ | 14/25 [00:00<00:00, 68.31it/s]\u001b[A\n 88%|████████▊ | 22/25 [00:00<00:00, 70.92it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 70.02it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 18.84it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 18.72it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 18.67it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 18.62it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.59it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.63it/s]\nframe_idx: 458\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 246\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nframe_idx: 458\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 246\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 46%|████▌ | 457/999 [07:35<10:10, 1.13s/it]\n 46%|████▌ | 458/999 [07:35<07:29, 1.20it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 28%|██▊ | 7/25 [00:00<00:00, 68.95it/s]\u001b[A\n 56%|█████▌ | 14/25 [00:00<00:00, 68.78it/s]\u001b[A\n 84%|████████▍ | 21/25 [00:00<00:00, 66.71it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 67.52it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 75.03it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 74.83it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 74.75it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 74.29it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 18.89it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 18.67it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 18.59it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 18.58it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.60it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.61it/s]\nframe_idx: 460\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 247\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nframe_idx: 460\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 247\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 46%|████▌ | 459/999 [07:37<10:09, 1.13s/it]\n 46%|████▌ | 460/999 [07:37<07:27, 1.20it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 74.63it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 74.28it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 74.00it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 73.90it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 28%|██▊ | 7/25 [00:00<00:00, 68.91it/s]\u001b[A\n 60%|██████ | 15/25 [00:00<00:00, 72.12it/s]\u001b[A\n 92%|█████████▏| 23/25 [00:00<00:00, 71.79it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 71.85it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 18.85it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 18.77it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 18.72it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 18.72it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.69it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.71it/s]\nframe_idx: 462\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 248\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nframe_idx: 462\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 248\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 46%|████▌ | 461/999 [07:39<10:02, 1.12s/it]\n 46%|████▌ | 462/999 [07:39<07:22, 1.21it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 74.34it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 70.61it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 70.71it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 71.15it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 28%|██▊ | 7/25 [00:00<00:00, 68.34it/s]\u001b[A\n 60%|██████ | 15/25 [00:00<00:00, 70.32it/s]\u001b[A\n 92%|█████████▏| 23/25 [00:00<00:00, 72.13it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 71.48it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 18.91it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 18.73it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 18.72it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 18.68it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.68it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.70it/s]\nframe_idx: 464\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 249\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nframe_idx: 464\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 249\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 46%|████▋ | 463/999 [07:41<10:01, 1.12s/it]\n 46%|████▋ | 464/999 [07:41<07:22, 1.21it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 71.62it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 73.74it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 74.06it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 73.39it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 71.00it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 70.70it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 72.19it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 71.70it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 18.85it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 18.75it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 18.70it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 18.69it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.68it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.69it/s]\nframe_idx: 466\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 250\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nframe_idx: 466\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 250\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 47%|████▋ | 465/999 [07:43<09:57, 1.12s/it]\n 47%|████▋ | 466/999 [07:43<07:19, 1.21it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 74.10it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 74.57it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 74.33it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 74.33it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 74.61it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 73.59it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 74.04it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 74.05it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 18.83it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 18.73it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 18.65it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 18.67it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.68it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.68it/s]\nframe_idx: 468\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 251\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nframe_idx: 468\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 251\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 47%|████▋ | 467/999 [07:45<09:54, 1.12s/it]\n 47%|████▋ | 468/999 [07:45<07:16, 1.22it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 71.44it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 71.28it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 72.10it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 71.96it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 74.67it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 72.30it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 73.00it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 73.09it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 18.76it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 18.71it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 18.68it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 18.66it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.67it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.67it/s]\nframe_idx: 470\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 252\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nframe_idx: 470\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 252\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 47%|████▋ | 469/999 [07:47<09:50, 1.11s/it]\n 47%|████▋ | 470/999 [07:47<07:13, 1.22it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 28%|██▊ | 7/25 [00:00<00:00, 67.90it/s]\u001b[A\n 60%|██████ | 15/25 [00:00<00:00, 70.92it/s]\u001b[A\n 92%|█████████▏| 23/25 [00:00<00:00, 72.67it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 72.09it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 74.90it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 74.61it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 71.75it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 72.34it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 18.85it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 18.69it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 18.70it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 18.68it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.68it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.69it/s]\nframe_idx: 472\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 253\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nframe_idx: 472\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 253\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 47%|████▋ | 471/999 [07:48<09:49, 1.12s/it]\n 47%|████▋ | 472/999 [07:49<07:13, 1.22it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 28%|██▊ | 7/25 [00:00<00:00, 67.92it/s]\u001b[A\n 56%|█████▌ | 14/25 [00:00<00:00, 68.44it/s]\u001b[A\n 84%|████████▍ | 21/25 [00:00<00:00, 68.46it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 69.14it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 28%|██▊ | 7/25 [00:00<00:00, 68.57it/s]\u001b[A\n 60%|██████ | 15/25 [00:00<00:00, 72.28it/s]\u001b[A\n 92%|█████████▏| 23/25 [00:00<00:00, 71.53it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 71.02it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 18.84it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 18.76it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 18.68it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 18.69it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.69it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.70it/s]\nframe_idx: 474\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 254\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nframe_idx: 474\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 254\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 47%|████▋ | 473/999 [07:50<09:50, 1.12s/it]\n 47%|████▋ | 474/999 [07:51<07:13, 1.21it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 74.37it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 74.73it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 74.88it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 74.80it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 74.95it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 74.56it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 74.74it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 73.53it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 18.86it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 18.74it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 18.74it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 18.72it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.68it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.70it/s]\nframe_idx: 476\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 255\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nframe_idx: 476\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 255\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 48%|████▊ | 475/999 [07:52<09:44, 1.12s/it]\n 48%|████▊ | 476/999 [07:52<07:09, 1.22it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 28%|██▊ | 7/25 [00:00<00:00, 69.05it/s]\u001b[A\n 56%|█████▌ | 14/25 [00:00<00:00, 68.85it/s]\u001b[A\n 88%|████████▊ | 22/25 [00:00<00:00, 70.00it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 69.71it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 72.30it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 73.34it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 73.83it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 73.57it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 18.84it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 18.73it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 18.71it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 18.71it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.66it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.69it/s]\nframe_idx: 478\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 256\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nframe_idx: 478\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 256\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 48%|████▊ | 477/999 [07:54<09:42, 1.12s/it]\n 48%|████▊ | 478/999 [07:54<07:07, 1.22it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 28%|██▊ | 7/25 [00:00<00:00, 68.72it/s]\u001b[A\n 60%|██████ | 15/25 [00:00<00:00, 71.18it/s]\u001b[A\n 92%|█████████▏| 23/25 [00:00<00:00, 72.29it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 72.00it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 74.54it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 74.74it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 74.60it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 74.62it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 18.84it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 18.74it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 18.72it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 18.70it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.69it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.70it/s]\nframe_idx: 480\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 257\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nframe_idx: 480\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 257\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 48%|████▊ | 479/999 [07:56<09:36, 1.11s/it]\n 48%|████▊ | 480/999 [07:56<07:03, 1.23it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 72.66it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 71.34it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 70.77it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 71.19it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 75.32it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 75.23it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 74.97it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 75.03it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 18.90it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 18.68it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 18.67it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 18.67it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.66it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.67it/s]\nframe_idx: 482\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 258\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nframe_idx: 482\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 258\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 48%|████▊ | 481/999 [07:58<09:35, 1.11s/it]\n 48%|████▊ | 482/999 [07:58<07:02, 1.22it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 28%|██▊ | 7/25 [00:00<00:00, 67.94it/s]\u001b[A\n 60%|██████ | 15/25 [00:00<00:00, 70.67it/s]\u001b[A\n 92%|█████████▏| 23/25 [00:00<00:00, 72.75it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 71.64it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 74.88it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 72.35it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 71.57it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 71.96it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 18.83it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 18.72it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 18.73it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 18.69it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.69it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.70it/s]\nframe_idx: 484\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 259\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nframe_idx: 484\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 259\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 48%|████▊ | 483/999 [08:00<09:34, 1.11s/it]\n 48%|████▊ | 484/999 [08:00<07:01, 1.22it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 72.23it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 72.61it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 73.90it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 73.55it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 75.49it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 75.04it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 74.96it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 74.68it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 18.87it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 18.74it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 18.66it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 18.66it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.67it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.68it/s]\nframe_idx: 486\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 260\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nframe_idx: 486\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 260\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 49%|████▊ | 485/999 [08:02<09:29, 1.11s/it]\n 49%|████▊ | 486/999 [08:02<06:57, 1.23it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 28%|██▊ | 7/25 [00:00<00:00, 67.43it/s]\u001b[A\n 56%|█████▌ | 14/25 [00:00<00:00, 67.98it/s]\u001b[A\n 84%|████████▍ | 21/25 [00:00<00:00, 68.44it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 68.27it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 73.91it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 70.75it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 69.70it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 70.21it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 18.85it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 18.77it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 18.71it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 18.66it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.65it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.67it/s]\nframe_idx: 488\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 261\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nframe_idx: 488\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 261\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 49%|████▊ | 487/999 [08:04<09:32, 1.12s/it]\n 49%|████▉ | 488/999 [08:04<07:00, 1.22it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 28%|██▊ | 7/25 [00:00<00:00, 67.77it/s]\u001b[A\n 56%|█████▌ | 14/25 [00:00<00:00, 68.02it/s]\u001b[A\n 88%|████████▊ | 22/25 [00:00<00:00, 69.68it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 69.78it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 28%|██▊ | 7/25 [00:00<00:00, 68.55it/s]\u001b[A\n 60%|██████ | 15/25 [00:00<00:00, 70.48it/s]\u001b[A\n 92%|█████████▏| 23/25 [00:00<00:00, 72.55it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 72.00it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 18.38it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 18.54it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 18.60it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 18.55it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.58it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.55it/s]\nframe_idx: 490\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 262\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nframe_idx: 490\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 262\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 49%|████▉ | 489/999 [08:06<10:02, 1.18s/it]\n 49%|████▉ | 490/999 [08:06<07:36, 1.12it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 24%|██▍ | 6/25 [00:00<00:00, 57.46it/s]\u001b[A\n 56%|█████▌ | 14/25 [00:00<00:00, 68.14it/s]\u001b[A\n 88%|████████▊ | 22/25 [00:00<00:00, 71.57it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 70.14it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 75.51it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 75.40it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 74.18it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 74.39it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 18.80it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 18.74it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 18.75it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 18.71it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.70it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.71it/s]\nframe_idx: 492\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 263\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nframe_idx: 492\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 263\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 49%|████▉ | 491/999 [08:08<10:21, 1.22s/it]\n 49%|████▉ | 492/999 [08:08<07:33, 1.12it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 74.37it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 72.37it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 73.76it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 73.44it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 74.13it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 74.60it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 74.88it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 74.59it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 18.84it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 18.78it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 18.74it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 18.72it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.67it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.70it/s]\nframe_idx: 494\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 264\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nframe_idx: 494\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 264\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 49%|████▉ | 493/999 [08:10<09:48, 1.16s/it]\n 49%|████▉ | 494/999 [08:10<07:10, 1.17it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 28%|██▊ | 7/25 [00:00<00:00, 68.16it/s]\u001b[A\n 56%|█████▌ | 14/25 [00:00<00:00, 68.57it/s]\u001b[A\n 84%|████████▍ | 21/25 [00:00<00:00, 69.02it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 69.05it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 72.58it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 70.65it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 71.50it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 71.61it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 18.80it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 18.74it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 18.72it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 18.72it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.72it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.72it/s]\nframe_idx: 496\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 265\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nframe_idx: 496\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 265\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 50%|████▉ | 495/999 [08:12<09:36, 1.14s/it]\n 50%|████▉ | 496/999 [08:12<07:02, 1.19it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 28%|██▊ | 7/25 [00:00<00:00, 65.59it/s]\u001b[A\n 60%|██████ | 15/25 [00:00<00:00, 70.02it/s]\u001b[A\n 92%|█████████▏| 23/25 [00:00<00:00, 72.37it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 71.61it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 28%|██▊ | 7/25 [00:00<00:00, 69.69it/s]\u001b[A\n 60%|██████ | 15/25 [00:00<00:00, 71.81it/s]\u001b[A\n 92%|█████████▏| 23/25 [00:00<00:00, 70.98it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 70.92it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 18.74it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 18.73it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 18.69it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 18.69it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.70it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.70it/s]\nframe_idx: 498\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 266\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nframe_idx: 498\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 266\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 50%|████▉ | 497/999 [08:14<09:26, 1.13s/it]\n 50%|████▉ | 498/999 [08:14<06:55, 1.21it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 70.77it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 70.31it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 71.25it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 71.00it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 75.40it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 74.13it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 73.02it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 73.27it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 18.84it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 18.74it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 18.52it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 18.57it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.60it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.60it/s]\nframe_idx: 500\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 267\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nframe_idx: 500\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 267\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 50%|████▉ | 499/999 [08:16<09:21, 1.12s/it]\n 50%|█████ | 500/999 [08:16<06:51, 1.21it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 70.02it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 68.94it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 71.66it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 71.18it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 75.60it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 75.38it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 75.33it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 75.37it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 18.81it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 18.76it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 18.71it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 18.65it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.65it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.67it/s]\nframe_idx: 502\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 268\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nframe_idx: 502\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 268\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 50%|█████ | 501/999 [08:18<09:12, 1.11s/it]\n 50%|█████ | 502/999 [08:18<06:45, 1.22it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 74.10it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 73.75it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 71.88it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 72.42it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 74.85it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 75.06it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 75.08it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 74.99it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 18.85it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 18.73it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 18.67it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 18.66it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.63it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.66it/s]\nframe_idx: 504\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 269\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nframe_idx: 504\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 269\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 50%|█████ | 503/999 [08:20<09:12, 1.11s/it]\n 50%|█████ | 504/999 [08:20<06:45, 1.22it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 72.65it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 73.90it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 71.37it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 71.79it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 75.51it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 75.21it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 74.51it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 74.63it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 18.78it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 18.73it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 18.67it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 18.62it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.60it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.62it/s]\nframe_idx: 506\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 270\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nframe_idx: 506\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 270\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 51%|█████ | 505/999 [08:22<09:08, 1.11s/it]\n 51%|█████ | 506/999 [08:22<06:42, 1.23it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 74.55it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 75.06it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 72.80it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 72.31it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 70.43it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 72.64it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 73.71it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 73.20it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 18.84it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 18.75it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 18.76it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 18.69it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.69it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.70it/s]\nframe_idx: 508\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 271\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nframe_idx: 508\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 271\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 51%|█████ | 507/999 [08:24<09:06, 1.11s/it]\n 51%|█████ | 508/999 [08:24<06:40, 1.23it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 74.54it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 74.80it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 74.68it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 74.71it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 71.38it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 73.45it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 74.33it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 73.95it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 18.88it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 18.78it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 18.71it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 18.66it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.65it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.68it/s]\nframe_idx: 510\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 272\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nframe_idx: 510\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 272\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 51%|█████ | 509/999 [08:26<09:04, 1.11s/it]\n 51%|█████ | 510/999 [08:26<06:39, 1.22it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 71.20it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 72.08it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 73.67it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 73.24it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 71.25it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 70.59it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 72.63it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 72.24it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 18.90it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 18.84it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 18.78it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 18.75it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.77it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.77it/s]\nframe_idx: 512\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 273\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nframe_idx: 512\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 273\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 51%|█████ | 511/999 [08:28<09:02, 1.11s/it]\n 51%|█████▏ | 512/999 [08:28<06:38, 1.22it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 73.49it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 73.98it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 72.29it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 72.23it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 73.64it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 70.99it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 70.73it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 70.97it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 18.84it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 18.75it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 18.69it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 18.68it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.66it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.68it/s]\nframe_idx: 514\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 274\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nframe_idx: 514\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 274\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 51%|█████▏ | 513/999 [08:30<09:04, 1.12s/it]\n 51%|█████▏ | 514/999 [08:30<06:38, 1.22it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 74.54it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 75.17it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 74.15it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 74.30it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 71.51it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 68.29it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 69.99it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 69.99it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 18.79it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 18.78it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 18.74it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 18.74it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.74it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.74it/s]\nframe_idx: 516\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 275\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nframe_idx: 516\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 275\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 52%|█████▏ | 515/999 [08:31<09:01, 1.12s/it]\n 52%|█████▏ | 516/999 [08:32<06:37, 1.22it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 74.77it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 75.09it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 75.31it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 75.16it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 75.18it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 75.15it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 73.96it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 74.12it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 18.89it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 18.71it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 18.70it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 18.68it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.68it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.70it/s]\nframe_idx: 518\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 276\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nframe_idx: 518\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 276\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 52%|█████▏ | 517/999 [08:33<08:54, 1.11s/it]\n 52%|█████▏ | 518/999 [08:34<06:31, 1.23it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 72.96it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 71.77it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 72.56it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 72.49it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 74.41it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 74.27it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 74.51it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 74.36it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 18.83it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 18.78it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 18.73it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 18.70it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.72it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.72it/s]\nframe_idx: 520\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 277\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nframe_idx: 520\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 277\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 52%|█████▏ | 519/999 [08:35<08:51, 1.11s/it]\n 52%|█████▏ | 520/999 [08:35<06:32, 1.22it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 74.49it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 75.05it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 75.09it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 74.98it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 74.97it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 74.72it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 72.65it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 73.03it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 18.87it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 18.75it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 18.74it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 18.75it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.71it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.73it/s]\nframe_idx: 522\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 278\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nframe_idx: 522\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 278\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 52%|█████▏ | 521/999 [08:37<08:50, 1.11s/it]\n 52%|█████▏ | 522/999 [08:37<06:30, 1.22it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 71.37it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 73.48it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 71.33it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 71.55it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 28%|██▊ | 7/25 [00:00<00:00, 69.59it/s]\u001b[A\n 60%|██████ | 15/25 [00:00<00:00, 72.63it/s]\u001b[A\n 92%|█████████▏| 23/25 [00:00<00:00, 73.45it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 73.05it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 18.76it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 18.70it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 18.64it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 18.66it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.64it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.65it/s]\nframe_idx: 524\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 279\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nframe_idx: 524\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 279\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 52%|█████▏ | 523/999 [08:39<08:52, 1.12s/it]\n 52%|█████▏ | 524/999 [08:39<06:30, 1.22it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 73.75it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 72.97it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 71.41it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 71.48it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 28%|██▊ | 7/25 [00:00<00:00, 69.82it/s]\u001b[A\n 56%|█████▌ | 14/25 [00:00<00:00, 69.67it/s]\u001b[A\n 84%|████████▍ | 21/25 [00:00<00:00, 69.71it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 69.72it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 18.79it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 18.64it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 18.65it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 18.65it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.64it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.65it/s]\nframe_idx: 526\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 280\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nframe_idx: 526\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 280\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 53%|█████▎ | 525/999 [08:41<08:53, 1.13s/it]\n 53%|█████▎ | 526/999 [08:41<06:32, 1.21it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 71.45it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 70.51it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 69.81it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 70.03it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 70.12it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 72.31it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 71.58it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 71.10it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 18.81it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 18.66it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 18.66it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 18.65it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.68it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.67it/s]\nframe_idx: 528\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 281\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nframe_idx: 528\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 281\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 53%|█████▎ | 527/999 [08:43<08:53, 1.13s/it]\n 53%|█████▎ | 528/999 [08:43<06:31, 1.20it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 28%|██▊ | 7/25 [00:00<00:00, 69.54it/s]\u001b[A\n 60%|██████ | 15/25 [00:00<00:00, 71.05it/s]\u001b[A\n 92%|█████████▏| 23/25 [00:00<00:00, 72.39it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 71.44it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 71.26it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 73.31it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 74.07it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 73.49it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 18.84it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 18.67it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 18.68it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 18.66it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.64it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.66it/s]\nframe_idx: 530\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 282\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nframe_idx: 530\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 282\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 53%|█████▎ | 529/999 [08:45<08:50, 1.13s/it]\n 53%|█████▎ | 530/999 [08:45<06:29, 1.20it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 28%|██▊ | 7/25 [00:00<00:00, 69.75it/s]\u001b[A\n 56%|█████▌ | 14/25 [00:00<00:00, 69.68it/s]\u001b[A\n 84%|████████▍ | 21/25 [00:00<00:00, 69.34it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 69.89it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 72.91it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 72.16it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 71.65it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 71.47it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 18.87it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 18.72it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 18.67it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 18.63it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.67it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.67it/s]\nframe_idx: 532\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 283\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nframe_idx: 532\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 283\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 53%|█████▎ | 531/999 [08:47<08:48, 1.13s/it]\n 53%|█████▎ | 532/999 [08:47<06:27, 1.21it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 70.24it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 70.19it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 70.20it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 69.90it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 71.01it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 73.21it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 73.93it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 73.51it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 18.85it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 18.72it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 18.68it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 18.65it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.67it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.68it/s]\nframe_idx: 534\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 284\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nframe_idx: 534\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 284\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 53%|█████▎ | 533/999 [08:49<08:43, 1.12s/it]\n 53%|█████▎ | 534/999 [08:49<06:25, 1.21it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 74.41it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 71.50it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 70.43it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 70.79it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 70.27it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 71.37it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 71.61it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 71.10it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 18.76it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 18.69it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 18.63it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 18.62it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.62it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.63it/s]\nframe_idx: 536\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 285\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nframe_idx: 536\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 285\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 54%|█████▎ | 535/999 [08:51<08:42, 1.13s/it]\n 54%|█████▎ | 536/999 [08:51<06:23, 1.21it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 73.17it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 70.22it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 70.99it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 70.71it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 73.27it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 74.29it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 74.69it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 74.44it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 18.82it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 18.76it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 18.72it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 18.67it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.66it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.69it/s]\nframe_idx: 538\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 286\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nframe_idx: 538\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 286\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 54%|█████▍ | 537/999 [08:53<08:37, 1.12s/it]\n 54%|█████▍ | 538/999 [08:53<06:20, 1.21it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 74.36it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 74.49it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 73.32it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 73.39it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 75.11it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 75.12it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 75.06it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 74.96it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 18.87it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 18.74it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 18.69it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 18.67it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.67it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.68it/s]\nframe_idx: 540\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 287\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nframe_idx: 540\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 287\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 54%|█████▍ | 539/999 [08:55<08:32, 1.11s/it]\n 54%|█████▍ | 540/999 [08:55<06:16, 1.22it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 73.25it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 74.40it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 74.55it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 74.33it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 69.99it/s]\u001b[A\n 60%|██████ | 15/25 [00:00<00:00, 68.10it/s]\u001b[A\n 88%|████████▊ | 22/25 [00:00<00:00, 67.94it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 68.16it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 18.51it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 18.42it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 18.40it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 18.37it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.31it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.34it/s]\nframe_idx: 542\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 288\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nframe_idx: 542\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 288\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 54%|█████▍ | 541/999 [08:57<08:36, 1.13s/it]\n 54%|█████▍ | 542/999 [08:57<06:19, 1.20it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 74.22it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 74.82it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 75.00it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 74.89it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 28%|██▊ | 7/25 [00:00<00:00, 69.45it/s]\u001b[A\n 60%|██████ | 15/25 [00:00<00:00, 72.84it/s]\u001b[A\n 92%|█████████▏| 23/25 [00:00<00:00, 73.97it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 73.47it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 18.87it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 18.76it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 18.70it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 18.67it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.64it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.66it/s]\nframe_idx: 544\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 289\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nframe_idx: 544\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 289\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 54%|█████▍ | 543/999 [08:59<08:29, 1.12s/it]\n 54%|█████▍ | 544/999 [08:59<06:14, 1.22it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 28%|██▊ | 7/25 [00:00<00:00, 68.91it/s]\u001b[A\n 60%|██████ | 15/25 [00:00<00:00, 71.83it/s]\u001b[A\n 92%|█████████▏| 23/25 [00:00<00:00, 73.28it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 72.71it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 70.27it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 72.89it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 72.19it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 72.10it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 18.85it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 18.76it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 18.69it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 18.67it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.65it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.67it/s]\nframe_idx: 546\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 290\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nframe_idx: 546\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 290\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 55%|█████▍ | 545/999 [09:01<08:26, 1.12s/it]\n 55%|█████▍ | 546/999 [09:01<06:12, 1.22it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 74.15it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 74.71it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 72.29it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 72.62it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 28%|██▊ | 7/25 [00:00<00:00, 66.48it/s]\u001b[A\n 60%|██████ | 15/25 [00:00<00:00, 68.90it/s]\u001b[A\n 92%|█████████▏| 23/25 [00:00<00:00, 69.71it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 69.45it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 18.84it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 18.78it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 18.70it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 18.67it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.65it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.68it/s]\nframe_idx: 548\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 291\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nframe_idx: 548\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 291\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 55%|█████▍ | 547/999 [09:03<08:27, 1.12s/it]\n 55%|█████▍ | 548/999 [09:03<06:13, 1.21it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 73.65it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 74.67it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 74.93it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 74.78it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 75.44it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 73.42it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 74.13it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 74.05it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 18.79it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 18.74it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 18.69it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 18.69it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.69it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.69it/s]\nframe_idx: 550\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 292\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nframe_idx: 550\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 292\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 55%|█████▍ | 549/999 [09:05<08:20, 1.11s/it]\n 55%|█████▌ | 550/999 [09:05<06:08, 1.22it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 74.68it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 74.61it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 74.74it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 74.47it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 72.55it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 73.81it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 72.15it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 72.34it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 18.91it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 18.78it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 18.72it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 18.73it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.70it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.72it/s]\nframe_idx: 552\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 293\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nframe_idx: 552\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 293\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 55%|█████▌ | 551/999 [09:06<08:18, 1.11s/it]\n 55%|█████▌ | 552/999 [09:07<06:06, 1.22it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 73.88it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 74.75it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 73.02it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 73.23it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 74.17it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 74.70it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 73.99it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 73.95it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 18.87it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 18.80it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 18.78it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 18.73it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.69it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.72it/s]\nframe_idx: 554\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 294\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nframe_idx: 554\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 294\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 55%|█████▌ | 553/999 [09:08<08:14, 1.11s/it]\n 55%|█████▌ | 554/999 [09:09<06:04, 1.22it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 74.61it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 71.93it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 70.90it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 71.36it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 28%|██▊ | 7/25 [00:00<00:00, 69.74it/s]\u001b[A\n 60%|██████ | 15/25 [00:00<00:00, 71.57it/s]\u001b[A\n 92%|█████████▏| 23/25 [00:00<00:00, 72.47it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 71.28it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 18.84it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 18.78it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 18.73it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 18.70it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.72it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.73it/s]\nframe_idx: 556\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 295\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nframe_idx: 556\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 295\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 56%|█████▌ | 555/999 [09:10<08:17, 1.12s/it]\n 56%|█████▌ | 556/999 [09:10<06:06, 1.21it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 74.48it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 74.88it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 75.18it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 75.03it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 75.02it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 75.37it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 74.64it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 74.63it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 18.83it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 18.75it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 18.70it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 18.72it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.71it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.71it/s]\nframe_idx: 558\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 296\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nframe_idx: 558\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 296\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 56%|█████▌ | 557/999 [09:12<08:12, 1.11s/it]\n 56%|█████▌ | 558/999 [09:12<06:02, 1.22it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 74.57it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 75.11it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 75.08it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 75.04it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 74.50it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 73.10it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 73.78it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 73.65it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 18.73it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 18.65it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 18.67it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 18.70it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.68it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.68it/s]\nframe_idx: 560\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 297\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nframe_idx: 560\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 297\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 56%|█████▌ | 559/999 [09:14<08:10, 1.11s/it]\n 56%|█████▌ | 560/999 [09:14<06:00, 1.22it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 70.99it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 73.79it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 74.64it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 74.11it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 75.14it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 74.92it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 72.76it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 73.43it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 18.87it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 18.75it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 18.69it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 18.68it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.68it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.69it/s]\nframe_idx: 562\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 298\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nframe_idx: 562\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 298\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 56%|█████▌ | 561/999 [09:16<08:06, 1.11s/it]\n 56%|█████▋ | 562/999 [09:16<05:57, 1.22it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 28%|██▊ | 7/25 [00:00<00:00, 69.22it/s]\u001b[A\n 60%|██████ | 15/25 [00:00<00:00, 69.87it/s]\u001b[A\n 92%|█████████▏| 23/25 [00:00<00:00, 70.33it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 70.12it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 75.82it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 72.61it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 71.46it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 71.99it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 18.82it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 18.45it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 18.54it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 18.61it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.60it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.58it/s]\nframe_idx: 564\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 299\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nframe_idx: 564\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 299\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 56%|█████▋ | 563/999 [09:18<08:08, 1.12s/it]\n 56%|█████▋ | 564/999 [09:18<05:58, 1.21it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 28%|██▊ | 7/25 [00:00<00:00, 65.29it/s]\u001b[A\n 60%|██████ | 15/25 [00:00<00:00, 68.59it/s]\u001b[A\n 88%|████████▊ | 22/25 [00:00<00:00, 68.68it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 68.56it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 74.02it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 73.92it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 71.66it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 71.96it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 18.88it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 18.73it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 18.70it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 18.66it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.64it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.67it/s]\nframe_idx: 566\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 300\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nframe_idx: 566\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 300\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 57%|█████▋ | 565/999 [09:20<08:08, 1.12s/it]\n 57%|█████▋ | 566/999 [09:20<05:59, 1.21it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 72.01it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 70.99it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 72.96it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 72.62it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 75.76it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 75.52it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 75.58it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 75.53it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 18.83it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 18.68it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 18.68it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 18.68it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.67it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.68it/s]\nframe_idx: 568\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 301\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nframe_idx: 568\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 301\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 57%|█████▋ | 567/999 [09:22<08:03, 1.12s/it]\n 57%|█████▋ | 568/999 [09:22<05:56, 1.21it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 73.61it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 69.31it/s]\u001b[A\n 92%|█████████▏| 23/25 [00:00<00:00, 69.15it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 69.65it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 74.63it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 73.93it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 71.89it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 72.08it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 18.86it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 18.73it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 18.68it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 18.70it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.69it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.69it/s]\nframe_idx: 570\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 302\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nframe_idx: 570\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 302\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 57%|█████▋ | 569/999 [09:24<08:04, 1.13s/it]\n 57%|█████▋ | 570/999 [09:24<05:54, 1.21it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 74.23it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 72.49it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 71.42it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 71.96it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 75.61it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 75.27it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 75.24it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 75.27it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 18.86it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 18.71it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 18.71it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 18.67it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.68it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.69it/s]\nframe_idx: 572\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 303\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nframe_idx: 572\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 303\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 57%|█████▋ | 571/999 [09:26<07:59, 1.12s/it]\n 57%|█████▋ | 572/999 [09:26<05:51, 1.21it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 69.31it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 71.09it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 69.16it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 69.49it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 73.53it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 71.43it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 71.82it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 72.04it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 18.79it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 18.72it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 18.73it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 18.71it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.68it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.70it/s]\nframe_idx: 574\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 304\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nframe_idx: 574\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 304\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 57%|█████▋ | 573/999 [09:28<07:59, 1.13s/it]\n 57%|█████▋ | 574/999 [09:28<05:51, 1.21it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 73.36it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 74.41it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 71.71it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 72.25it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 70.87it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 73.24it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 74.06it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 73.62it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 18.86it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 18.72it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 18.72it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 18.74it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.70it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.71it/s]\nframe_idx: 576\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 305\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nframe_idx: 576\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 305\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 58%|█████▊ | 575/999 [09:30<07:54, 1.12s/it]\n 58%|█████▊ | 576/999 [09:30<05:47, 1.22it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 74.46it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 74.09it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 72.54it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 72.88it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 73.09it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 74.44it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 74.94it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 74.69it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 18.89it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 18.73it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 18.71it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 18.72it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.69it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.70it/s]\nframe_idx: 578\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 306\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nframe_idx: 578\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 306\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 58%|█████▊ | 577/999 [09:32<07:49, 1.11s/it]\n 58%|█████▊ | 578/999 [09:32<05:44, 1.22it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 74.24it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 74.63it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 74.82it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 74.64it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 28%|██▊ | 7/25 [00:00<00:00, 68.21it/s]\u001b[A\n 60%|██████ | 15/25 [00:00<00:00, 70.72it/s]\u001b[A\n 92%|█████████▏| 23/25 [00:00<00:00, 72.38it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 71.90it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 18.80it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 18.75it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 18.73it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 18.69it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.66it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.68it/s]\nframe_idx: 580\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 307\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nframe_idx: 580\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 307\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 58%|█████▊ | 579/999 [09:34<07:46, 1.11s/it]\n 58%|█████▊ | 580/999 [09:34<05:42, 1.22it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 74.28it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 74.22it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 74.38it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 73.94it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 74.22it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 71.86it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 71.07it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 71.51it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 18.79it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 18.65it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 18.65it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 18.67it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.67it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.67it/s]\nframe_idx: 582\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 308\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nframe_idx: 582\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 308\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 58%|█████▊ | 581/999 [09:36<07:47, 1.12s/it]\n 58%|█████▊ | 582/999 [09:36<05:43, 1.21it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 73.78it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 74.32it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 72.96it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 73.27it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 75.31it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 71.21it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 71.07it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 71.12it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 18.92it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 18.76it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 18.74it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 18.69it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.68it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.70it/s]\nframe_idx: 584\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 309\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nframe_idx: 584\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 309\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 58%|█████▊ | 583/999 [09:38<07:45, 1.12s/it]\n 58%|█████▊ | 584/999 [09:38<05:41, 1.21it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 74.51it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 74.58it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 74.82it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 74.70it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 74.77it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 71.91it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 71.28it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 71.68it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 18.84it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 18.75it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 18.76it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 18.74it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.69it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.72it/s]\nframe_idx: 586\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 310\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nframe_idx: 586\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 310\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 59%|█████▊ | 585/999 [09:39<07:43, 1.12s/it]\n 59%|█████▊ | 586/999 [09:40<05:40, 1.21it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 74.46it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 72.76it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 73.77it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 73.54it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 74.91it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 73.97it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 73.16it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 73.37it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 18.82it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 18.75it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 18.72it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 18.68it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.67it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.69it/s]\nframe_idx: 588\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 311\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nframe_idx: 588\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 311\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 59%|█████▉ | 587/999 [09:41<07:39, 1.12s/it]\n 59%|█████▉ | 588/999 [09:42<05:38, 1.22it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 73.45it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 74.29it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 72.85it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 72.95it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 75.04it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 75.00it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 71.99it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 72.22it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 18.85it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 18.74it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 18.72it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 18.71it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.65it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.69it/s]\nframe_idx: 590\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 312\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nframe_idx: 590\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 312\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 59%|█████▉ | 589/999 [09:43<07:37, 1.12s/it]\n 59%|█████▉ | 590/999 [09:43<05:36, 1.22it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 72.94it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 71.31it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 70.68it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 70.92it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 73.79it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 74.35it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 74.54it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 74.42it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 18.74it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 18.76it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 18.71it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 18.69it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.72it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.71it/s]\nframe_idx: 592\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 313\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nframe_idx: 592\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 313\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 59%|█████▉ | 591/999 [09:46<08:07, 1.19s/it]\n 59%|█████▉ | 592/999 [09:46<06:10, 1.10it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 28%|██▊ | 7/25 [00:00<00:00, 64.28it/s]\u001b[A\n 60%|██████ | 15/25 [00:00<00:00, 69.20it/s]\u001b[A\n 92%|█████████▏| 23/25 [00:00<00:00, 70.38it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 69.54it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 28%|██▊ | 7/25 [00:00<00:00, 69.58it/s]\u001b[A\n 60%|██████ | 15/25 [00:00<00:00, 69.42it/s]\u001b[A\n 92%|█████████▏| 23/25 [00:00<00:00, 71.87it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 71.53it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 18.90it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 18.80it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 18.76it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 18.74it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.73it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.75it/s]\nframe_idx: 594\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 314\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nframe_idx: 594\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 314\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 59%|█████▉ | 593/999 [09:48<08:16, 1.22s/it]\n 59%|█████▉ | 594/999 [09:48<06:02, 1.12it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 28%|██▊ | 7/25 [00:00<00:00, 68.80it/s]\u001b[A\n 60%|██████ | 15/25 [00:00<00:00, 70.92it/s]\u001b[A\n 92%|█████████▏| 23/25 [00:00<00:00, 70.07it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 69.99it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 28%|██▊ | 7/25 [00:00<00:00, 69.49it/s]\u001b[A\n 56%|█████▌ | 14/25 [00:00<00:00, 69.62it/s]\u001b[A\n 88%|████████▊ | 22/25 [00:00<00:00, 71.84it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 70.99it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 18.80it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 18.79it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 18.74it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 18.72it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.72it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.73it/s]\nframe_idx: 596\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 315\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nframe_idx: 596\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 315\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 60%|█████▉ | 595/999 [09:50<07:55, 1.18s/it]\n 60%|█████▉ | 596/999 [09:50<05:48, 1.16it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 28%|██▊ | 7/25 [00:00<00:00, 68.65it/s]\u001b[A\n 60%|██████ | 15/25 [00:00<00:00, 72.11it/s]\u001b[A\n 92%|█████████▏| 23/25 [00:00<00:00, 73.38it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 72.41it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 28%|██▊ | 7/25 [00:00<00:00, 66.90it/s]\u001b[A\n 56%|█████▌ | 14/25 [00:00<00:00, 68.51it/s]\u001b[A\n 84%|████████▍ | 21/25 [00:00<00:00, 69.07it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 68.98it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 18.87it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 18.77it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 18.73it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 18.70it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.69it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.70it/s]\nframe_idx: 598\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 316\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nframe_idx: 598\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 316\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 60%|█████▉ | 597/999 [09:52<07:44, 1.16s/it]\n 60%|█████▉ | 598/999 [09:52<05:40, 1.18it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 28%|██▊ | 7/25 [00:00<00:00, 68.36it/s]\u001b[A\n 56%|█████▌ | 14/25 [00:00<00:00, 69.31it/s]\u001b[A\n 84%|████████▍ | 21/25 [00:00<00:00, 69.58it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 70.22it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 70.89it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 71.68it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 72.84it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 72.50it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 18.85it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 18.70it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 18.70it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 18.69it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.69it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.69it/s]\nframe_idx: 600\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 317\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nframe_idx: 600\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 317\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 60%|█████▉ | 599/999 [09:54<07:34, 1.14s/it]\n 60%|██████ | 600/999 [09:54<05:32, 1.20it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 73.86it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 70.93it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 71.74it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 71.70it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 74.81it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 68.72it/s]\u001b[A\n 92%|█████████▏| 23/25 [00:00<00:00, 67.72it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 68.46it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 18.80it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 18.74it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 18.74it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 18.71it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.67it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.69it/s]\nframe_idx: 602\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 318\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nframe_idx: 602\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 318\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 60%|██████ | 601/999 [09:56<07:28, 1.13s/it]\n 60%|██████ | 602/999 [09:56<05:28, 1.21it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 73.82it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 74.47it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 73.34it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 73.63it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 74.46it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 73.86it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 71.79it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 72.24it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 18.85it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 18.79it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 18.75it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 18.75it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.76it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.76it/s]\nframe_idx: 604\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 319\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nframe_idx: 604\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 319\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 60%|██████ | 603/999 [09:57<07:23, 1.12s/it]\n 60%|██████ | 604/999 [09:58<05:25, 1.21it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 74.32it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 74.62it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 74.84it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 74.70it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 74.50it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 74.56it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 71.07it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 71.85it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 18.88it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 18.70it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 18.68it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 18.65it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.64it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.67it/s]\nframe_idx: 606\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 320\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nframe_idx: 606\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 320\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 61%|██████ | 605/999 [09:59<07:19, 1.12s/it]\n 61%|██████ | 606/999 [10:00<05:23, 1.21it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 72.81it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 73.87it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 74.14it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 73.93it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 74.46it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 74.27it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 71.18it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 71.84it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 18.79it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 18.69it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 18.64it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 18.64it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.66it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.66it/s]\nframe_idx: 608\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 321\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nframe_idx: 608\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 321\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 61%|██████ | 607/999 [10:01<07:18, 1.12s/it]\n 61%|██████ | 608/999 [10:01<05:21, 1.22it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 73.93it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 74.27it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 74.54it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 74.37it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 71.60it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 72.64it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 70.98it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 71.04it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 18.76it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 18.77it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 18.73it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 18.69it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.69it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.70it/s]\nframe_idx: 610\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 322\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nframe_idx: 610\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 322\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 61%|██████ | 609/999 [10:03<07:18, 1.12s/it]\n 61%|██████ | 610/999 [10:03<05:21, 1.21it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 73.40it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 74.33it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 74.55it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 74.37it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 74.84it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 74.82it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 74.70it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 74.69it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 18.81it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 18.77it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 18.75it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 18.73it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.74it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.74it/s]\nframe_idx: 612\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 323\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nframe_idx: 612\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 323\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 61%|██████ | 611/999 [10:05<07:12, 1.11s/it]\n 61%|██████▏ | 612/999 [10:05<05:17, 1.22it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 73.12it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 71.35it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 70.29it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 70.85it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 74.74it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 73.09it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 74.01it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 73.72it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 18.76it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 18.72it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 18.75it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 18.74it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.72it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.72it/s]\nframe_idx: 614\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 324\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nframe_idx: 614\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 324\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 61%|██████▏ | 613/999 [10:07<07:11, 1.12s/it]\n 61%|██████▏ | 614/999 [10:07<05:16, 1.22it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 28%|██▊ | 7/25 [00:00<00:00, 69.06it/s]\u001b[A\n 60%|██████ | 15/25 [00:00<00:00, 72.06it/s]\u001b[A\n 92%|█████████▏| 23/25 [00:00<00:00, 73.22it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 72.85it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 74.72it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 73.27it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 72.40it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 72.82it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 18.80it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 18.74it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 18.70it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 18.69it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.72it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.71it/s]\nframe_idx: 616\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 325\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nframe_idx: 616\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 325\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 62%|██████▏ | 615/999 [10:09<07:07, 1.11s/it]\n 62%|██████▏ | 616/999 [10:09<05:13, 1.22it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 70.95it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 73.20it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 73.94it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 73.56it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 74.54it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 74.66it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 74.50it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 74.51it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 18.83it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 18.76it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 18.69it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 18.69it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.65it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.68it/s]\nframe_idx: 618\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 326\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nframe_idx: 618\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 326\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 62%|██████▏ | 617/999 [10:11<07:04, 1.11s/it]\n 62%|██████▏ | 618/999 [10:11<05:11, 1.22it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 73.26it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 70.99it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 69.82it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 70.25it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 74.63it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 73.43it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 73.09it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 72.81it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 18.90it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 18.74it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 18.69it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 18.69it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.65it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.68it/s]\nframe_idx: 620\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 327\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nframe_idx: 620\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 327\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 62%|██████▏ | 619/999 [10:13<07:03, 1.12s/it]\n 62%|██████▏ | 620/999 [10:13<05:11, 1.22it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 73.47it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 70.54it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 70.62it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 70.62it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 28%|██▊ | 7/25 [00:00<00:00, 69.08it/s]\u001b[A\n 56%|█████▌ | 14/25 [00:00<00:00, 68.95it/s]\u001b[A\n 88%|████████▊ | 22/25 [00:00<00:00, 71.22it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 70.65it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 18.78it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 18.69it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 18.69it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 18.69it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.65it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.67it/s]\nframe_idx: 622\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 328\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nframe_idx: 622\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 328\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 62%|██████▏ | 621/999 [10:15<07:04, 1.12s/it]\n 62%|██████▏ | 622/999 [10:15<05:11, 1.21it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 74.06it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 70.97it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 70.31it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 70.93it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 28%|██▊ | 7/25 [00:00<00:00, 69.48it/s]\u001b[A\n 56%|█████▌ | 14/25 [00:00<00:00, 69.48it/s]\u001b[A\n 88%|████████▊ | 22/25 [00:00<00:00, 70.65it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 70.86it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 18.86it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 18.53it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 18.61it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 18.65it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.67it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.65it/s]\nframe_idx: 624\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 329\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nframe_idx: 624\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 329\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 62%|██████▏ | 623/999 [10:17<07:03, 1.13s/it]\n 62%|██████▏ | 624/999 [10:17<05:10, 1.21it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 72.26it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 73.04it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 71.26it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 71.52it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 71.38it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 73.38it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 73.90it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 73.59it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 18.84it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 18.76it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 18.68it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 18.68it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.66it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.68it/s]\nframe_idx: 626\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 330\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nframe_idx: 626\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 330\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 63%|██████▎ | 625/999 [10:19<06:58, 1.12s/it]\n 63%|██████▎ | 626/999 [10:19<05:07, 1.21it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 73.50it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 74.18it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 73.56it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 73.44it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 28%|██▊ | 7/25 [00:00<00:00, 69.14it/s]\u001b[A\n 56%|█████▌ | 14/25 [00:00<00:00, 68.99it/s]\u001b[A\n 88%|████████▊ | 22/25 [00:00<00:00, 69.87it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 70.26it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 18.84it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 18.78it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 18.76it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 18.73it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.68it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.71it/s]\nframe_idx: 628\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 331\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nframe_idx: 628\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 331\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 63%|██████▎ | 627/999 [10:21<06:57, 1.12s/it]\n 63%|██████▎ | 628/999 [10:21<05:06, 1.21it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 74.04it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 74.35it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 74.40it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 73.96it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 28%|██▊ | 7/25 [00:00<00:00, 69.25it/s]\u001b[A\n 56%|█████▌ | 14/25 [00:00<00:00, 69.43it/s]\u001b[A\n 88%|████████▊ | 22/25 [00:00<00:00, 72.12it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 71.10it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 18.81it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 18.76it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 18.70it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 18.69it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.63it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.66it/s]\nframe_idx: 630\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 332\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nframe_idx: 630\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 332\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 63%|██████▎ | 629/999 [10:23<06:55, 1.12s/it]\n 63%|██████▎ | 630/999 [10:23<05:05, 1.21it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 74.29it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 74.08it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 72.22it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 72.30it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 72.68it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 73.88it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 74.21it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 73.89it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 18.87it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 18.73it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 18.70it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 18.67it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.66it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.68it/s]\nframe_idx: 632\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 333\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nframe_idx: 632\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 333\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 63%|██████▎ | 631/999 [10:25<06:53, 1.12s/it]\n 63%|██████▎ | 632/999 [10:25<05:03, 1.21it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 28%|██▊ | 7/25 [00:00<00:00, 69.28it/s]\u001b[A\n 60%|██████ | 15/25 [00:00<00:00, 70.08it/s]\u001b[A\n 92%|█████████▏| 23/25 [00:00<00:00, 69.60it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 69.97it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 72.33it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 72.78it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 72.24it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 71.94it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 18.84it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 18.75it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 18.69it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 18.64it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.63it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.66it/s]\nframe_idx: 634\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 334\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nframe_idx: 634\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 334\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 63%|██████▎ | 633/999 [10:27<06:51, 1.13s/it]\n 63%|██████▎ | 634/999 [10:27<05:02, 1.21it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 73.30it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 74.20it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 74.44it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 74.26it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 73.00it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 73.08it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 73.66it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 73.17it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 18.82it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 18.75it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 18.71it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 18.69it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.68it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.70it/s]\nframe_idx: 636\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 335\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nframe_idx: 636\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 335\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 64%|██████▎ | 635/999 [10:29<06:47, 1.12s/it]\n 64%|██████▎ | 636/999 [10:29<04:59, 1.21it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 74.31it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 74.65it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 74.25it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 74.27it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 73.15it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 72.39it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 73.20it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 73.09it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 18.81it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 18.73it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 18.70it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 18.68it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.69it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.69it/s]\nframe_idx: 638\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 336\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nframe_idx: 638\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 336\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 64%|██████▍ | 637/999 [10:31<06:43, 1.12s/it]\n 64%|██████▍ | 638/999 [10:31<04:56, 1.22it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 70.58it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 72.96it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 73.98it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 73.49it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 74.98it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 74.40it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 73.08it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 73.48it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 18.84it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 18.69it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 18.62it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 18.62it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.64it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.65it/s]\nframe_idx: 640\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 337\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nframe_idx: 640\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 337\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 64%|██████▍ | 639/999 [10:32<06:41, 1.11s/it]\n 64%|██████▍ | 640/999 [10:33<04:54, 1.22it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 74.32it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 74.73it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 73.57it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 73.62it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 71.88it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 70.21it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 69.45it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 69.82it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 18.88it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 18.74it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 18.68it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 18.67it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.67it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.68it/s]\nframe_idx: 642\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 338\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nframe_idx: 642\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 338\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 64%|██████▍ | 641/999 [10:34<06:40, 1.12s/it]\n 64%|██████▍ | 642/999 [10:35<04:53, 1.22it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 74.22it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 71.28it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 72.07it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 72.03it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 74.94it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 72.98it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 72.44it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 72.48it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 18.87it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 18.76it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 18.72it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 18.72it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.69it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.71it/s]\nframe_idx: 644\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 339\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nframe_idx: 644\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 339\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 64%|██████▍ | 643/999 [10:36<06:38, 1.12s/it]\n 64%|██████▍ | 644/999 [10:36<04:52, 1.21it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 74.55it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 74.86it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 75.01it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 74.87it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 70.82it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 73.22it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 74.09it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 73.62it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 18.75it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 18.67it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 18.66it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 18.65it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.64it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.65it/s]\nframe_idx: 646\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 340\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nframe_idx: 646\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 340\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 65%|██████▍ | 645/999 [10:38<06:34, 1.11s/it]\n 65%|██████▍ | 646/999 [10:38<04:51, 1.21it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 73.93it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 74.65it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 72.65it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 72.92it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 72.35it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 73.63it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 73.97it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 73.69it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 18.76it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 18.68it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 18.70it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 18.68it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.66it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.67it/s]\nframe_idx: 648\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 341\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nframe_idx: 648\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 341\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 65%|██████▍ | 647/999 [10:40<06:34, 1.12s/it]\n 65%|██████▍ | 648/999 [10:40<04:49, 1.21it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 74.45it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 74.82it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 75.07it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 74.99it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 74.79it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 74.89it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 74.90it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 74.89it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 18.84it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 18.74it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 18.72it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 18.68it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.68it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.69it/s]\nframe_idx: 650\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 342\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nframe_idx: 650\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 342\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 65%|██████▍ | 649/999 [10:42<06:29, 1.11s/it]\n 65%|██████▌ | 650/999 [10:42<04:46, 1.22it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 28%|██▊ | 7/25 [00:00<00:00, 69.32it/s]\u001b[A\n 60%|██████ | 15/25 [00:00<00:00, 72.77it/s]\u001b[A\n 92%|█████████▏| 23/25 [00:00<00:00, 73.85it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 73.34it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 70.47it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 72.70it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 71.76it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 71.86it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 18.91it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 18.77it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 18.73it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 18.70it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.69it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.71it/s]\nframe_idx: 652\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 343\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nframe_idx: 652\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 343\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 65%|██████▌ | 651/999 [10:44<06:29, 1.12s/it]\n 65%|██████▌ | 652/999 [10:44<04:46, 1.21it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 28%|██▊ | 7/25 [00:00<00:00, 69.96it/s]\u001b[A\n 60%|██████ | 15/25 [00:00<00:00, 70.97it/s]\u001b[A\n 92%|█████████▏| 23/25 [00:00<00:00, 70.72it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 70.97it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 75.26it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 74.48it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 74.47it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 74.38it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 18.83it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 18.78it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 18.71it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 18.72it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.70it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.71it/s]\nframe_idx: 654\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 344\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nframe_idx: 654\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 344\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 65%|██████▌ | 653/999 [10:46<06:26, 1.12s/it]\n 65%|██████▌ | 654/999 [10:46<04:43, 1.22it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 71.71it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 70.98it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 70.56it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 70.36it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 74.74it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 74.97it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 74.92it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 74.83it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 18.85it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 18.74it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 18.69it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 18.67it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.67it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.69it/s]\nframe_idx: 656\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 345\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nframe_idx: 656\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 345\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 66%|██████▌ | 655/999 [10:48<06:24, 1.12s/it]\n 66%|██████▌ | 656/999 [10:48<04:42, 1.21it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 73.71it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 72.03it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 70.50it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 70.97it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 73.22it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 72.87it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 73.29it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 72.74it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 18.86it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 18.74it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 18.72it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 18.68it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.69it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.70it/s]\nframe_idx: 658\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 346\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nframe_idx: 658\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 346\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 66%|██████▌ | 657/999 [10:50<06:22, 1.12s/it]\n 66%|██████▌ | 658/999 [10:50<04:40, 1.21it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 73.50it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 73.40it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 72.99it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 73.11it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 28%|██▊ | 7/25 [00:00<00:00, 69.39it/s]\u001b[A\n 60%|██████ | 15/25 [00:00<00:00, 70.28it/s]\u001b[A\n 92%|█████████▏| 23/25 [00:00<00:00, 69.85it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 70.12it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 18.87it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 18.69it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 18.67it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 18.69it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.67it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.68it/s]\nframe_idx: 660\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 347\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nframe_idx: 660\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 347\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 66%|██████▌ | 659/999 [10:52<06:21, 1.12s/it]\n 66%|██████▌ | 660/999 [10:52<04:40, 1.21it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 73.64it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 74.36it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 70.49it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 71.37it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 72.08it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 73.96it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 72.01it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 72.19it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 18.83it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 18.78it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 18.72it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 18.73it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.69it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.71it/s]\nframe_idx: 662\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 348\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nframe_idx: 662\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 348\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 66%|██████▌ | 661/999 [10:54<06:17, 1.12s/it]\n 66%|██████▋ | 662/999 [10:54<04:37, 1.22it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 73.38it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 73.35it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 71.60it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 71.92it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 74.27it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 74.09it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 73.98it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 73.86it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 18.78it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 18.70it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 18.69it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 18.67it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.67it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.68it/s]\nframe_idx: 664\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 349\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nframe_idx: 664\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 349\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 66%|██████▋ | 663/999 [10:56<06:14, 1.11s/it]\n 66%|██████▋ | 664/999 [10:56<04:33, 1.22it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 73.32it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 74.41it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 74.79it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 74.55it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 70.88it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 71.98it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 71.25it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 71.48it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 18.92it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 18.81it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 18.79it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 18.72it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.71it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.73it/s]\nframe_idx: 666\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 350\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nframe_idx: 666\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 350\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 67%|██████▋ | 665/999 [10:58<06:09, 1.11s/it]\n 67%|██████▋ | 666/999 [10:58<04:30, 1.23it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 72.85it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 70.36it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 72.37it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 71.95it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 71.02it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 69.29it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 70.55it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 70.54it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 18.89it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 18.80it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 18.76it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 18.76it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.72it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.74it/s]\nframe_idx: 668\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 351\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nframe_idx: 668\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 351\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 67%|██████▋ | 667/999 [11:00<06:08, 1.11s/it]\n 67%|██████▋ | 668/999 [11:00<04:30, 1.22it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 73.90it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 74.69it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 74.83it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 74.61it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 75.14it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 74.36it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 74.45it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 74.46it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 18.83it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 18.73it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 18.66it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 18.67it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.66it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.67it/s]\nframe_idx: 670\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 352\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nframe_idx: 670\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 352\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 67%|██████▋ | 669/999 [11:01<06:05, 1.11s/it]\n 67%|██████▋ | 670/999 [11:02<04:27, 1.23it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 74.63it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 74.60it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 73.38it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 73.68it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 75.41it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 75.05it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 71.37it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 72.21it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 18.78it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 18.73it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 18.69it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 18.63it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.65it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.66it/s]\nframe_idx: 672\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 353\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nframe_idx: 672\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 353\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 67%|██████▋ | 671/999 [11:03<06:04, 1.11s/it]\n 67%|██████▋ | 672/999 [11:04<04:27, 1.22it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 72.06it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 73.21it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 73.90it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 73.67it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 75.22it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 75.31it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 74.58it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 74.44it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 18.80it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 18.72it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 18.70it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 18.69it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.66it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.67it/s]\nframe_idx: 674\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 354\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nframe_idx: 674\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 354\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 67%|██████▋ | 673/999 [11:05<06:01, 1.11s/it]\n 67%|██████▋ | 674/999 [11:05<04:25, 1.22it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 74.22it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 74.67it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 74.40it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 74.48it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 75.22it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 72.55it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 72.59it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 72.73it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 18.90it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 18.77it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 18.76it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 18.73it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.70it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.73it/s]\nframe_idx: 676\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 355\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nframe_idx: 676\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 355\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 68%|██████▊ | 675/999 [11:07<05:59, 1.11s/it]\n 68%|██████▊ | 676/999 [11:07<04:23, 1.23it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 28%|██▊ | 7/25 [00:00<00:00, 68.25it/s]\u001b[A\n 60%|██████ | 15/25 [00:00<00:00, 71.41it/s]\u001b[A\n 92%|█████████▏| 23/25 [00:00<00:00, 73.02it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 72.05it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 69.94it/s]\u001b[A\n 60%|██████ | 15/25 [00:00<00:00, 69.62it/s]\u001b[A\n 92%|█████████▏| 23/25 [00:00<00:00, 70.64it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 70.74it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 18.83it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 18.73it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 18.71it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 18.72it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.70it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.71it/s]\nframe_idx: 678\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 356\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nframe_idx: 678\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 356\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 68%|██████▊ | 677/999 [11:09<06:00, 1.12s/it]\n 68%|██████▊ | 678/999 [11:09<04:24, 1.21it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 74.12it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 72.73it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 73.58it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 73.52it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 74.81it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 71.53it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 72.81it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 72.88it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 18.81it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 18.71it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 18.69it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 18.67it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.65it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.67it/s]\nframe_idx: 680\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 357\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nframe_idx: 680\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 357\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 68%|██████▊ | 679/999 [11:11<05:58, 1.12s/it]\n 68%|██████▊ | 680/999 [11:11<04:23, 1.21it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 28%|██▊ | 7/25 [00:00<00:00, 69.16it/s]\u001b[A\n 60%|██████ | 15/25 [00:00<00:00, 72.35it/s]\u001b[A\n 92%|█████████▏| 23/25 [00:00<00:00, 71.16it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 71.40it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 74.66it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 74.58it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 74.43it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 73.90it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 18.83it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 18.73it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 18.69it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 18.67it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.64it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.66it/s]\nframe_idx: 682\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 358\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nframe_idx: 682\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 358\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 68%|██████▊ | 681/999 [11:13<05:56, 1.12s/it]\n 68%|██████▊ | 682/999 [11:13<04:22, 1.21it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 28%|██▊ | 7/25 [00:00<00:00, 67.82it/s]\u001b[A\n 60%|██████ | 15/25 [00:00<00:00, 71.39it/s]\u001b[A\n 92%|█████████▏| 23/25 [00:00<00:00, 71.34it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 70.53it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 28%|██▊ | 7/25 [00:00<00:00, 69.34it/s]\u001b[A\n 56%|█████▌ | 14/25 [00:00<00:00, 68.76it/s]\u001b[A\n 88%|████████▊ | 22/25 [00:00<00:00, 70.77it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 70.79it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 18.88it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 18.77it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 18.75it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 18.72it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.72it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.73it/s]\nframe_idx: 684\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 359\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nframe_idx: 684\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 359\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 68%|██████▊ | 683/999 [11:15<05:57, 1.13s/it]\n 68%|██████▊ | 684/999 [11:15<04:21, 1.20it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 28%|██▊ | 7/25 [00:00<00:00, 69.49it/s]\u001b[A\n 60%|██████ | 15/25 [00:00<00:00, 71.13it/s]\u001b[A\n 92%|█████████▏| 23/25 [00:00<00:00, 73.10it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 72.28it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 72.17it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 73.25it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 74.23it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 73.82it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 18.89it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 18.73it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 18.69it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 18.68it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.64it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.66it/s]\nframe_idx: 686\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 360\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nframe_idx: 686\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 360\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 69%|██████▊ | 685/999 [11:17<05:51, 1.12s/it]\n 69%|██████▊ | 686/999 [11:17<04:17, 1.21it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 28%|██▊ | 7/25 [00:00<00:00, 63.05it/s]\u001b[A\n 56%|█████▌ | 14/25 [00:00<00:00, 64.65it/s]\u001b[A\n 84%|████████▍ | 21/25 [00:00<00:00, 65.76it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 65.58it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 28%|██▊ | 7/25 [00:00<00:00, 64.47it/s]\u001b[A\n 56%|█████▌ | 14/25 [00:00<00:00, 65.14it/s]\u001b[A\n 84%|████████▍ | 21/25 [00:00<00:00, 66.42it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 66.27it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 18.72it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 18.63it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 18.59it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 18.62it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.62it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.62it/s]\nframe_idx: 688\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 361\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nframe_idx: 688\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 361\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 69%|██████▉ | 687/999 [11:19<06:00, 1.16s/it]\n 69%|██████▉ | 688/999 [11:19<04:24, 1.18it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 28%|██▊ | 7/25 [00:00<00:00, 67.63it/s]\u001b[A\n 60%|██████ | 15/25 [00:00<00:00, 71.83it/s]\u001b[A\n 92%|█████████▏| 23/25 [00:00<00:00, 73.10it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 72.53it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 28%|██▊ | 7/25 [00:00<00:00, 68.78it/s]\u001b[A\n 60%|██████ | 15/25 [00:00<00:00, 71.95it/s]\u001b[A\n 92%|█████████▏| 23/25 [00:00<00:00, 73.23it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 72.68it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 18.92it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 18.75it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 18.70it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 18.69it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.68it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.70it/s]\nframe_idx: 690\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 362\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nframe_idx: 690\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 362\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 69%|██████▉ | 689/999 [11:21<05:53, 1.14s/it]\n 69%|██████▉ | 690/999 [11:21<04:19, 1.19it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 71.70it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 72.01it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 70.03it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 70.30it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 74.88it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 74.76it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 74.60it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 74.05it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 18.92it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 18.77it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 18.71it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 18.67it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.65it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.68it/s]\nframe_idx: 692\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 363\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nframe_idx: 692\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 363\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 69%|██████▉ | 691/999 [11:23<05:48, 1.13s/it]\n 69%|██████▉ | 692/999 [11:23<04:15, 1.20it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 73.50it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 70.67it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 71.00it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 71.27it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 72.08it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 73.71it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 73.38it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 73.15it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 18.84it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 18.77it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 18.73it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 18.68it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.70it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.71it/s]\nframe_idx: 694\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 364\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nframe_idx: 694\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 364\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 69%|██████▉ | 693/999 [11:25<05:48, 1.14s/it]\n 69%|██████▉ | 694/999 [11:25<04:17, 1.18it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 28%|██▊ | 7/25 [00:00<00:00, 64.90it/s]\u001b[A\n 60%|██████ | 15/25 [00:00<00:00, 68.99it/s]\u001b[A\n 92%|█████████▏| 23/25 [00:00<00:00, 70.95it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 70.21it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 74.76it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 69.58it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 71.00it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 71.21it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 16.13it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 17.50it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 18.01it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 18.27it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.43it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.09it/s]\nframe_idx: 696\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 365\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nframe_idx: 696\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 365\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 70%|██████▉ | 695/999 [11:27<06:00, 1.18s/it]\n 70%|██████▉ | 696/999 [11:27<04:23, 1.15it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 28%|██▊ | 7/25 [00:00<00:00, 66.52it/s]\u001b[A\n 56%|█████▌ | 14/25 [00:00<00:00, 68.24it/s]\u001b[A\n 84%|████████▍ | 21/25 [00:00<00:00, 68.98it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 68.94it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 74.48it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 74.76it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 74.53it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 74.51it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 18.82it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 18.75it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 18.72it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 18.71it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.70it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.71it/s]\nframe_idx: 698\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 366\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nframe_idx: 698\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 366\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 70%|██████▉ | 697/999 [11:29<05:49, 1.16s/it]\n 70%|██████▉ | 698/999 [11:29<04:15, 1.18it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 70.11it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 71.96it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 73.23it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 72.78it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 75.24it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 74.94it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 74.27it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 74.49it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 18.86it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 18.72it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 18.70it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 18.71it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.71it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.71it/s]\nframe_idx: 700\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 367\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nframe_idx: 700\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 367\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 70%|██████▉ | 699/999 [11:31<05:38, 1.13s/it]\n 70%|███████ | 700/999 [11:31<04:08, 1.20it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 73.93it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 71.42it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 72.71it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 72.69it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 75.30it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 75.16it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 75.11it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 75.08it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 18.79it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 18.73it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 18.74it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 18.73it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.71it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.72it/s]\nframe_idx: 702\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 368\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nframe_idx: 702\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 368\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 70%|███████ | 701/999 [11:33<05:32, 1.12s/it]\n 70%|███████ | 702/999 [11:33<04:03, 1.22it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 73.70it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 74.09it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 71.48it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 71.95it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 71.23it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 69.77it/s]\u001b[A\n 92%|█████████▏| 23/25 [00:00<00:00, 69.65it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 69.47it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 18.84it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 18.72it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 18.69it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 18.67it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.67it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.68it/s]\nframe_idx: 704\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 369\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nframe_idx: 704\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 369\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 70%|███████ | 703/999 [11:35<05:31, 1.12s/it]\n 70%|███████ | 704/999 [11:35<04:03, 1.21it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 73.88it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 74.14it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 71.80it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 71.75it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 71.53it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 73.35it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 73.98it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 73.62it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 18.83it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 18.72it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 18.72it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 18.68it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.68it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.69it/s]\nframe_idx: 706\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 370\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nframe_idx: 706\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 370\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 71%|███████ | 705/999 [11:37<05:28, 1.12s/it]\n 71%|███████ | 706/999 [11:37<04:01, 1.21it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 72.24it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 70.72it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 69.52it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 69.91it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 74.06it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 74.34it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 74.75it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 74.57it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 18.76it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 18.67it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 18.64it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 18.63it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.66it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.65it/s]\nframe_idx: 708\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 371\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nframe_idx: 708\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 371\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 71%|███████ | 707/999 [11:39<05:28, 1.13s/it]\n 71%|███████ | 708/999 [11:39<04:01, 1.21it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 28%|██▊ | 7/25 [00:00<00:00, 67.49it/s]\u001b[A\n 60%|██████ | 15/25 [00:00<00:00, 69.53it/s]\u001b[A\n 88%|████████▊ | 22/25 [00:00<00:00, 69.27it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 69.09it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 28%|██▊ | 7/25 [00:00<00:00, 69.26it/s]\u001b[A\n 56%|█████▌ | 14/25 [00:00<00:00, 68.61it/s]\u001b[A\n 88%|████████▊ | 22/25 [00:00<00:00, 71.52it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 71.21it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 18.81it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 18.73it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 18.72it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 18.68it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.71it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.70it/s]\nframe_idx: 710\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 372\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nframe_idx: 710\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 372\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 71%|███████ | 709/999 [11:41<05:26, 1.13s/it]\n 71%|███████ | 710/999 [11:41<03:59, 1.21it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 72.46it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 73.65it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 74.17it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 73.91it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 28%|██▊ | 7/25 [00:00<00:00, 66.05it/s]\u001b[A\n 56%|█████▌ | 14/25 [00:00<00:00, 67.95it/s]\u001b[A\n 88%|████████▊ | 22/25 [00:00<00:00, 71.33it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 70.18it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 18.81it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 18.75it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 18.73it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 18.71it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.71it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.72it/s]\nframe_idx: 712\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 373\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nframe_idx: 712\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 373\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 71%|███████ | 711/999 [11:43<05:22, 1.12s/it]\n 71%|███████▏ | 712/999 [11:43<03:57, 1.21it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 28%|██▊ | 7/25 [00:00<00:00, 68.17it/s]\u001b[A\n 60%|██████ | 15/25 [00:00<00:00, 70.75it/s]\u001b[A\n 92%|█████████▏| 23/25 [00:00<00:00, 72.74it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 71.94it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 71.92it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 71.65it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 70.70it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 70.92it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 18.76it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 18.70it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 18.66it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 18.65it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.63it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.64it/s]\nframe_idx: 714\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 374\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nframe_idx: 714\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 374\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 71%|███████▏ | 713/999 [11:45<05:20, 1.12s/it]\n 71%|███████▏ | 714/999 [11:45<03:54, 1.21it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 73.92it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 72.16it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 73.06it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 72.84it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 72.91it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 70.61it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 70.03it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 70.34it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 18.83it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 18.76it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 18.73it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 18.72it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.71it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.72it/s]\nframe_idx: 716\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 375\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nframe_idx: 716\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 375\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 72%|███████▏ | 715/999 [11:47<05:19, 1.12s/it]\n 72%|███████▏ | 716/999 [11:47<03:53, 1.21it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 74.35it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 74.63it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 72.15it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 72.69it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 72.27it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 69.55it/s]\u001b[A\n 92%|█████████▏| 23/25 [00:00<00:00, 69.39it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 69.69it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 18.89it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 18.76it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 18.70it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 18.70it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.67it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.69it/s]\nframe_idx: 718\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 376\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nframe_idx: 718\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 376\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 72%|███████▏ | 717/999 [11:49<05:16, 1.12s/it]\n 72%|███████▏ | 718/999 [11:49<03:51, 1.21it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 71.48it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 69.87it/s]\u001b[A\n 92%|█████████▏| 23/25 [00:00<00:00, 69.80it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 70.36it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 72.91it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 73.12it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 71.12it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 71.49it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 18.79it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 18.71it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 18.66it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 18.65it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.66it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.66it/s]\nframe_idx: 720\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 377\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nframe_idx: 720\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 377\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 72%|███████▏ | 719/999 [11:50<05:13, 1.12s/it]\n 72%|███████▏ | 720/999 [11:51<03:49, 1.21it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 74.18it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 74.66it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 74.64it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 74.63it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 74.43it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 74.65it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 73.56it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 73.59it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 18.90it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 18.75it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 18.73it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 18.74it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.73it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.74it/s]\nframe_idx: 722\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 378\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nframe_idx: 722\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 378\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 72%|███████▏ | 721/999 [11:52<05:09, 1.11s/it]\n 72%|███████▏ | 722/999 [11:52<03:46, 1.22it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 74.43it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 74.77it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 74.75it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 74.73it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 74.75it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 74.95it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 74.81it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 74.85it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 18.87it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 18.78it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 18.77it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 18.74it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.73it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.74it/s]\nframe_idx: 724\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 379\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nframe_idx: 724\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 379\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 72%|███████▏ | 723/999 [11:54<05:07, 1.11s/it]\n 72%|███████▏ | 724/999 [11:54<03:45, 1.22it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 28%|██▊ | 7/25 [00:00<00:00, 68.21it/s]\u001b[A\n 60%|██████ | 15/25 [00:00<00:00, 70.67it/s]\u001b[A\n 92%|█████████▏| 23/25 [00:00<00:00, 71.67it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 71.44it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 28%|██▊ | 7/25 [00:00<00:00, 69.35it/s]\u001b[A\n 56%|█████▌ | 14/25 [00:00<00:00, 69.65it/s]\u001b[A\n 88%|████████▊ | 22/25 [00:00<00:00, 69.95it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 70.13it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 18.80it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 18.69it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 18.66it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 18.62it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.62it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.63it/s]\nframe_idx: 726\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 380\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nframe_idx: 726\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 380\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 73%|███████▎ | 725/999 [11:56<05:06, 1.12s/it]\n 73%|███████▎ | 726/999 [11:56<03:45, 1.21it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 72.04it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 73.19it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 73.70it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 73.45it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 70.78it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 71.31it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 72.21it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 72.05it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 18.77it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 18.74it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 18.71it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 18.69it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.72it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.72it/s]\nframe_idx: 728\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 381\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nframe_idx: 728\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 381\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 73%|███████▎ | 727/999 [11:58<05:04, 1.12s/it]\n 73%|███████▎ | 728/999 [11:58<03:42, 1.22it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 73.44it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 74.36it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 74.54it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 73.93it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 70.98it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 70.79it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 71.95it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 71.60it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 18.80it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 18.71it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 18.68it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 18.65it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.63it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.66it/s]\nframe_idx: 730\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 382\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nframe_idx: 730\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 382\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 73%|███████▎ | 729/999 [12:00<05:01, 1.12s/it]\n 73%|███████▎ | 730/999 [12:00<03:41, 1.21it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 28%|██▊ | 7/25 [00:00<00:00, 68.51it/s]\u001b[A\n 56%|█████▌ | 14/25 [00:00<00:00, 67.95it/s]\u001b[A\n 88%|████████▊ | 22/25 [00:00<00:00, 70.40it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 70.35it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 74.80it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 74.62it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 74.42it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 74.23it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 18.90it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 18.78it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 18.75it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 18.73it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.72it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.73it/s]\nframe_idx: 732\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 383\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nframe_idx: 732\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 383\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 73%|███████▎ | 731/999 [12:02<04:59, 1.12s/it]\n 73%|███████▎ | 732/999 [12:02<03:39, 1.22it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 70.67it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 69.69it/s]\u001b[A\n 92%|█████████▏| 23/25 [00:00<00:00, 69.35it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 69.52it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 73.10it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 73.83it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 74.15it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 74.01it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 18.87it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 18.70it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 18.66it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 18.65it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.67it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.67it/s]\nframe_idx: 734\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 384\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nframe_idx: 734\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 384\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 73%|███████▎ | 733/999 [12:04<04:58, 1.12s/it]\n 73%|███████▎ | 734/999 [12:04<03:37, 1.22it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 73.13it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 70.71it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 72.53it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 72.11it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 71.41it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 73.00it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 73.59it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 73.33it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 18.84it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 18.70it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 18.69it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 18.68it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.68it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.68it/s]\nframe_idx: 736\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 385\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nframe_idx: 736\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 385\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 74%|███████▎ | 735/999 [12:06<04:54, 1.11s/it]\n 74%|███████▎ | 736/999 [12:06<03:36, 1.22it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 71.54it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 71.73it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 73.14it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 72.76it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 74.74it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 74.84it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 74.56it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 74.64it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 18.90it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 18.75it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 18.73it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 18.54it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.57it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.62it/s]\nframe_idx: 738\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 386\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nframe_idx: 738\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 386\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 74%|███████▍ | 737/999 [12:08<04:50, 1.11s/it]\n 74%|███████▍ | 738/999 [12:08<03:33, 1.22it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 74.04it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 74.54it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 72.35it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 72.67it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 72.60it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 74.02it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 74.36it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 74.15it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 18.82it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 18.80it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 18.73it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 18.71it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.67it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.69it/s]\nframe_idx: 740\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 387\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nframe_idx: 740\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 387\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 74%|███████▍ | 739/999 [12:10<04:49, 1.11s/it]\n 74%|███████▍ | 740/999 [12:10<03:31, 1.22it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 73.82it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 73.57it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 72.24it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 72.37it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 28%|██▊ | 7/25 [00:00<00:00, 69.51it/s]\u001b[A\n 60%|██████ | 15/25 [00:00<00:00, 72.88it/s]\u001b[A\n 92%|█████████▏| 23/25 [00:00<00:00, 70.88it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 71.08it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 18.85it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 18.73it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 18.71it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 18.68it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.68it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.69it/s]\nframe_idx: 742\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 388\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nframe_idx: 742\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 388\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 74%|███████▍ | 741/999 [12:12<04:48, 1.12s/it]\n 74%|███████▍ | 742/999 [12:12<03:31, 1.22it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 28%|██▊ | 7/25 [00:00<00:00, 68.71it/s]\u001b[A\n 60%|██████ | 15/25 [00:00<00:00, 71.34it/s]\u001b[A\n 92%|█████████▏| 23/25 [00:00<00:00, 72.17it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 71.41it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 70.84it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 73.37it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 72.83it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 72.82it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 18.88it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 18.76it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 18.73it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 18.72it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.67it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.70it/s]\nframe_idx: 744\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 389\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nframe_idx: 744\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 389\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 74%|███████▍ | 743/999 [12:14<04:46, 1.12s/it]\n 74%|███████▍ | 744/999 [12:14<03:29, 1.22it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 73.87it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 74.44it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 71.54it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 72.03it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 28%|██▊ | 7/25 [00:00<00:00, 69.64it/s]\u001b[A\n 56%|█████▌ | 14/25 [00:00<00:00, 69.20it/s]\u001b[A\n 88%|████████▊ | 22/25 [00:00<00:00, 70.56it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 70.86it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 18.83it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 18.71it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 18.66it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 18.65it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.68it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.68it/s]\nframe_idx: 746\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 390\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nframe_idx: 746\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 390\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 75%|███████▍ | 745/999 [12:16<04:44, 1.12s/it]\n 75%|███████▍ | 746/999 [12:16<03:28, 1.21it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 73.88it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 74.54it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 74.76it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 74.64it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 74.66it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 71.05it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 72.14it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 72.01it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 18.80it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 18.70it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 18.67it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 18.68it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.69it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.69it/s]\nframe_idx: 748\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 391\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nframe_idx: 748\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 391\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 75%|███████▍ | 747/999 [12:18<04:41, 1.12s/it]\n 75%|███████▍ | 748/999 [12:18<03:26, 1.22it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 74.15it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 70.71it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 69.94it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 70.65it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 75.02it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 72.39it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 73.23it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 73.35it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 18.83it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 18.73it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 18.69it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 18.71it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.73it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.72it/s]\nframe_idx: 750\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 392\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nframe_idx: 750\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 392\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 75%|███████▍ | 749/999 [12:20<04:39, 1.12s/it]\n 75%|███████▌ | 750/999 [12:20<03:25, 1.21it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 28%|██▊ | 7/25 [00:00<00:00, 63.90it/s]\u001b[A\n 60%|██████ | 15/25 [00:00<00:00, 69.98it/s]\u001b[A\n 92%|█████████▏| 23/25 [00:00<00:00, 69.10it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 68.75it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 28%|██▊ | 7/25 [00:00<00:00, 69.46it/s]\u001b[A\n 56%|█████▌ | 14/25 [00:00<00:00, 69.07it/s]\u001b[A\n 84%|████████▍ | 21/25 [00:00<00:00, 69.24it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 69.15it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 18.85it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 18.74it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 18.65it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 18.65it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.67it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.68it/s]\nframe_idx: 752\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 393\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nframe_idx: 752\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 393\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 75%|███████▌ | 751/999 [12:21<04:40, 1.13s/it]\n 75%|███████▌ | 752/999 [12:22<03:25, 1.20it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 28%|██▊ | 7/25 [00:00<00:00, 67.65it/s]\u001b[A\n 56%|█████▌ | 14/25 [00:00<00:00, 68.38it/s]\u001b[A\n 88%|████████▊ | 22/25 [00:00<00:00, 71.12it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 70.82it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 74.72it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 74.60it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 72.23it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 72.62it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 18.88it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 18.74it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 18.72it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 18.65it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.63it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.66it/s]\nframe_idx: 754\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 394\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nframe_idx: 754\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 394\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 75%|███████▌ | 753/999 [12:23<04:37, 1.13s/it]\n 75%|███████▌ | 754/999 [12:24<03:23, 1.20it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 73.50it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 73.21it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 73.83it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 73.75it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 75.36it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 75.32it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 72.49it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 73.12it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 18.92it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 18.78it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 18.75it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 18.73it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.72it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.74it/s]\nframe_idx: 756\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 395\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nframe_idx: 756\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 395\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 76%|███████▌ | 755/999 [12:25<04:33, 1.12s/it]\n 76%|███████▌ | 756/999 [12:26<03:19, 1.22it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 74.51it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 74.53it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 74.29it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 74.18it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 73.68it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 70.82it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 71.85it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 71.85it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 18.85it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 18.76it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 18.73it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 18.75it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.72it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.73it/s]\nframe_idx: 758\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 396\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nframe_idx: 758\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 396\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 76%|███████▌ | 757/999 [12:27<04:29, 1.11s/it]\n 76%|███████▌ | 758/999 [12:27<03:17, 1.22it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 74.32it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 74.20it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 73.80it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 73.82it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 74.88it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 74.65it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 74.53it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 74.55it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 18.80it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 18.74it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 18.72it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 18.72it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.71it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.71it/s]\nframe_idx: 760\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 397\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nframe_idx: 760\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 397\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 76%|███████▌ | 759/999 [12:29<04:26, 1.11s/it]\n 76%|███████▌ | 760/999 [12:29<03:15, 1.23it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 74.15it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 74.97it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 74.53it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 74.51it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 74.89it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 74.71it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 71.98it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 72.40it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 18.84it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 18.67it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 18.67it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 18.69it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.67it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.68it/s]\nframe_idx: 762\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 398\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nframe_idx: 762\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 398\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 76%|███████▌ | 761/999 [12:31<04:24, 1.11s/it]\n 76%|███████▋ | 762/999 [12:31<03:14, 1.22it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 28%|██▊ | 7/25 [00:00<00:00, 67.78it/s]\u001b[A\n 56%|█████▌ | 14/25 [00:00<00:00, 68.59it/s]\u001b[A\n 84%|████████▍ | 21/25 [00:00<00:00, 68.80it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 68.64it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 74.62it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 72.29it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 72.97it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 72.79it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 18.86it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 18.73it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 18.65it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 18.62it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.62it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.64it/s]\nframe_idx: 764\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 399\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nframe_idx: 764\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 399\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 76%|███████▋ | 763/999 [12:33<04:25, 1.12s/it]\n 76%|███████▋ | 764/999 [12:33<03:14, 1.21it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 28%|██▊ | 7/25 [00:00<00:00, 68.44it/s]\u001b[A\n 60%|██████ | 15/25 [00:00<00:00, 71.23it/s]\u001b[A\n 92%|█████████▏| 23/25 [00:00<00:00, 70.00it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 69.97it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 28%|██▊ | 7/25 [00:00<00:00, 69.01it/s]\u001b[A\n 60%|██████ | 15/25 [00:00<00:00, 69.85it/s]\u001b[A\n 92%|█████████▏| 23/25 [00:00<00:00, 70.53it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 69.81it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 18.87it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 18.69it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 18.68it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 18.67it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.64it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.66it/s]\nframe_idx: 766\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 400\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nframe_idx: 766\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 400\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 77%|███████▋ | 765/999 [12:35<04:25, 1.14s/it]\n 77%|███████▋ | 766/999 [12:35<03:14, 1.20it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 28%|██▊ | 7/25 [00:00<00:00, 69.55it/s]\u001b[A\n 60%|██████ | 15/25 [00:00<00:00, 72.87it/s]\u001b[A\n 92%|█████████▏| 23/25 [00:00<00:00, 73.99it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 73.54it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 75.16it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 74.87it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 74.83it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 73.63it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 18.89it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 18.78it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 18.78it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 18.75it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.74it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.75it/s]\nframe_idx: 768\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 401\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nframe_idx: 768\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 401\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 77%|███████▋ | 767/999 [12:37<04:21, 1.13s/it]\n 77%|███████▋ | 768/999 [12:37<03:11, 1.21it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 28%|██▊ | 7/25 [00:00<00:00, 68.07it/s]\u001b[A\n 60%|██████ | 15/25 [00:00<00:00, 69.43it/s]\u001b[A\n 88%|████████▊ | 22/25 [00:00<00:00, 69.42it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 69.38it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 73.91it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 72.32it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 71.32it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 71.29it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 18.78it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 18.68it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 18.67it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 18.62it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.60it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.63it/s]\nframe_idx: 770\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 402\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nframe_idx: 770\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 402\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 77%|███████▋ | 769/999 [12:39<04:19, 1.13s/it]\n 77%|███████▋ | 770/999 [12:39<03:10, 1.20it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 72.67it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 71.93it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 72.35it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 72.39it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 75.30it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 75.40it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 75.20it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 75.27it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 18.84it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 18.72it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 18.73it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 18.69it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.71it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.71it/s]\nframe_idx: 772\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 403\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nframe_idx: 772\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 403\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 77%|███████▋ | 771/999 [12:41<04:15, 1.12s/it]\n 77%|███████▋ | 772/999 [12:41<03:06, 1.22it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 74.00it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 70.69it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 70.39it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 70.76it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 74.43it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 74.81it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 74.67it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 74.70it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 18.88it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 18.76it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 18.69it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 18.71it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.68it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.70it/s]\nframe_idx: 774\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 404\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nframe_idx: 774\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 404\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 77%|███████▋ | 773/999 [12:43<04:12, 1.12s/it]\n 77%|███████▋ | 774/999 [12:43<03:05, 1.21it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 71.37it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 73.65it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 70.94it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 71.39it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 75.05it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 75.36it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 75.15it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 75.06it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 18.86it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 18.78it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 18.70it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 18.65it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.69it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.69it/s]\nframe_idx: 776\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 405\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nframe_idx: 776\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 405\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 78%|███████▊ | 775/999 [12:45<04:10, 1.12s/it]\n 78%|███████▊ | 776/999 [12:45<03:03, 1.22it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 72.76it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 74.17it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 74.61it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 73.23it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 70.43it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 73.09it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 74.12it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 73.61it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 18.81it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 18.72it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 18.70it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 18.72it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.70it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.70it/s]\nframe_idx: 778\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 406\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nframe_idx: 778\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 406\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 78%|███████▊ | 777/999 [12:47<04:06, 1.11s/it]\n 78%|███████▊ | 778/999 [12:47<03:00, 1.22it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 70.25it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 70.98it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 72.27it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 71.39it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 28%|██▊ | 7/25 [00:00<00:00, 69.31it/s]\u001b[A\n 56%|█████▌ | 14/25 [00:00<00:00, 69.06it/s]\u001b[A\n 84%|████████▍ | 21/25 [00:00<00:00, 69.26it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 69.73it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 18.81it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 18.69it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 18.67it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 18.67it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.64it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.65it/s]\nframe_idx: 780\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 407\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nframe_idx: 780\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 407\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 78%|███████▊ | 779/999 [12:49<04:06, 1.12s/it]\n 78%|███████▊ | 780/999 [12:49<03:00, 1.22it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 73.82it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 74.34it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 74.32it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 74.12it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 70.28it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 69.53it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 71.14it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 70.69it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 17.15it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 18.01it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 18.27it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 18.43it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.53it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.33it/s]\nframe_idx: 782\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 408\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nframe_idx: 782\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 408\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 78%|███████▊ | 781/999 [12:51<04:03, 1.12s/it]\n 78%|███████▊ | 782/999 [12:51<02:58, 1.22it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 73.45it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 74.20it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 74.53it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 73.92it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 28%|██▊ | 7/25 [00:00<00:00, 69.78it/s]\u001b[A\n 56%|█████▌ | 14/25 [00:00<00:00, 69.83it/s]\u001b[A\n 88%|████████▊ | 22/25 [00:00<00:00, 71.40it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 71.29it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 18.84it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 18.73it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 18.66it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 18.64it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.63it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.65it/s]\nframe_idx: 784\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 409\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nframe_idx: 784\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 409\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 78%|███████▊ | 783/999 [12:53<04:02, 1.12s/it]\n 78%|███████▊ | 784/999 [12:53<02:58, 1.21it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 74.26it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 74.75it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 74.89it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 74.81it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 75.13it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 72.56it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 73.71it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 73.72it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 18.76it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 18.73it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 18.64it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 18.65it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.64it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.65it/s]\nframe_idx: 786\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 410\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nframe_idx: 786\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 410\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 79%|███████▊ | 785/999 [12:55<03:59, 1.12s/it]\n 79%|███████▊ | 786/999 [12:55<02:55, 1.22it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 28%|██▊ | 7/25 [00:00<00:00, 67.82it/s]\u001b[A\n 60%|██████ | 15/25 [00:00<00:00, 70.60it/s]\u001b[A\n 92%|█████████▏| 23/25 [00:00<00:00, 72.44it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 71.38it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 28%|██▊ | 7/25 [00:00<00:00, 69.57it/s]\u001b[A\n 60%|██████ | 15/25 [00:00<00:00, 68.97it/s]\u001b[A\n 92%|█████████▏| 23/25 [00:00<00:00, 69.57it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 69.54it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 18.81it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 18.75it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 18.72it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 18.73it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.72it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.73it/s]\nframe_idx: 788\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 411\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nframe_idx: 788\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 411\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 79%|███████▉ | 787/999 [12:56<03:57, 1.12s/it]\n 79%|███████▉ | 788/999 [12:57<02:53, 1.21it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 74.22it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 74.58it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 74.72it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 74.58it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 73.92it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 69.92it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 69.09it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 69.57it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 18.85it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 18.70it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 18.69it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 18.63it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.64it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.66it/s]\nframe_idx: 790\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 412\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nframe_idx: 790\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 412\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 79%|███████▉ | 789/999 [12:58<03:54, 1.12s/it]\n 79%|███████▉ | 790/999 [12:59<02:52, 1.21it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 73.87it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 74.02it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 73.55it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 73.65it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 74.68it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 74.51it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 73.98it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 73.60it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 18.82it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 18.67it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 18.64it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 18.66it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.65it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.66it/s]\nframe_idx: 792\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 413\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nframe_idx: 792\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 413\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 79%|███████▉ | 791/999 [13:00<03:51, 1.11s/it]\n 79%|███████▉ | 792/999 [13:00<02:49, 1.22it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 28%|██▊ | 7/25 [00:00<00:00, 67.61it/s]\u001b[A\n 56%|█████▌ | 14/25 [00:00<00:00, 68.54it/s]\u001b[A\n 84%|████████▍ | 21/25 [00:00<00:00, 68.90it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 68.62it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 28%|██▊ | 7/25 [00:00<00:00, 69.04it/s]\u001b[A\n 56%|█████▌ | 14/25 [00:00<00:00, 68.37it/s]\u001b[A\n 88%|████████▊ | 22/25 [00:00<00:00, 70.13it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 70.22it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 17.87it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 18.28it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 18.47it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 18.56it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.56it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.47it/s]\nframe_idx: 794\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 414\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nframe_idx: 794\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 414\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 79%|███████▉ | 793/999 [13:02<03:52, 1.13s/it]\n 79%|███████▉ | 794/999 [13:02<02:50, 1.20it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 73.62it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 73.98it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 71.35it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 71.81it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 28%|██▊ | 7/25 [00:00<00:00, 69.42it/s]\u001b[A\n 60%|██████ | 15/25 [00:00<00:00, 70.11it/s]\u001b[A\n 92%|█████████▏| 23/25 [00:00<00:00, 72.05it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 71.72it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 18.85it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 18.74it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 18.72it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 18.71it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.68it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.70it/s]\nframe_idx: 796\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 415\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nframe_idx: 796\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 415\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 80%|███████▉ | 795/999 [13:04<03:50, 1.13s/it]\n 80%|███████▉ | 796/999 [13:04<02:49, 1.20it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 74.09it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 74.25it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 74.45it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 74.08it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 28%|██▊ | 7/25 [00:00<00:00, 67.99it/s]\u001b[A\n 60%|██████ | 15/25 [00:00<00:00, 72.21it/s]\u001b[A\n 92%|█████████▏| 23/25 [00:00<00:00, 70.19it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 70.18it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 18.24it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 18.45it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 18.51it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 18.57it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.48it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.46it/s]\nframe_idx: 798\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 416\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nframe_idx: 798\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 416\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 80%|███████▉ | 797/999 [13:06<03:55, 1.17s/it]\n 80%|███████▉ | 798/999 [13:07<03:03, 1.09it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 73.48it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 74.28it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 74.54it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 74.05it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 75.24it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 72.73it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 70.92it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 71.51it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 18.84it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 18.77it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 18.72it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 18.73it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.71it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.72it/s]\nframe_idx: 800\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 417\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nframe_idx: 800\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 417\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 80%|███████▉ | 799/999 [13:09<03:55, 1.18s/it]\n 80%|████████ | 800/999 [13:09<02:52, 1.15it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 70.97it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 69.45it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 71.38it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 71.11it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 74.76it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 72.01it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 70.38it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 71.22it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 18.84it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 18.77it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 18.72it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 18.70it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.70it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.71it/s]\nframe_idx: 802\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 418\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nframe_idx: 802\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 418\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 80%|████████ | 801/999 [13:10<03:48, 1.15s/it]\n 80%|████████ | 802/999 [13:11<02:46, 1.18it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 74.04it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 74.54it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 73.71it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 73.86it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 73.25it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 73.24it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 72.41it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 72.52it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 18.87it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 18.58it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 18.61it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 18.61it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.62it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.62it/s]\nframe_idx: 804\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 419\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nframe_idx: 804\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 419\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 80%|████████ | 803/999 [13:12<03:41, 1.13s/it]\n 80%|████████ | 804/999 [13:13<02:42, 1.20it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 73.06it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 74.23it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 74.54it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 74.29it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 73.96it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 74.31it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 73.81it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 73.88it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 18.79it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 18.69it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 18.65it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 18.66it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.64it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.65it/s]\nframe_idx: 806\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 420\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nframe_idx: 806\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 420\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 81%|████████ | 805/999 [13:14<03:37, 1.12s/it]\n 81%|████████ | 806/999 [13:14<02:39, 1.21it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 74.16it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 74.70it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 74.72it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 74.52it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 70.42it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 69.31it/s]\u001b[A\n 92%|█████████▏| 23/25 [00:00<00:00, 69.37it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 69.80it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 18.77it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 18.70it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 18.66it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 18.66it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.64it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.66it/s]\nframe_idx: 808\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 421\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nframe_idx: 808\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 421\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 81%|████████ | 807/999 [13:16<03:35, 1.12s/it]\n 81%|████████ | 808/999 [13:16<02:37, 1.21it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 74.21it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 74.86it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 74.47it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 74.44it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 75.43it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 74.92it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 74.92it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 74.89it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 18.77it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 18.69it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 18.67it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 18.66it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.66it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.67it/s]\nframe_idx: 810\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 422\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nframe_idx: 810\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 422\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 81%|████████ | 809/999 [13:18<03:30, 1.11s/it]\n 81%|████████ | 810/999 [13:18<02:34, 1.22it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 28%|██▊ | 7/25 [00:00<00:00, 69.78it/s]\u001b[A\n 60%|██████ | 15/25 [00:00<00:00, 72.44it/s]\u001b[A\n 92%|█████████▏| 23/25 [00:00<00:00, 73.37it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 72.32it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 73.96it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 72.88it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 73.96it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 73.65it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 18.84it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 18.68it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 18.64it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 18.63it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.65it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.65it/s]\nframe_idx: 812\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 423\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nframe_idx: 812\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 423\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 81%|████████ | 811/999 [13:20<03:28, 1.11s/it]\n 81%|████████▏ | 812/999 [13:20<02:33, 1.22it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 71.06it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 70.71it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 70.61it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 70.61it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 73.71it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 74.30it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 74.56it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 74.38it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 18.91it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 18.72it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 18.69it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 18.68it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.66it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.68it/s]\nframe_idx: 814\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 424\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nframe_idx: 814\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 424\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 81%|████████▏ | 813/999 [13:22<03:27, 1.11s/it]\n 81%|████████▏ | 814/999 [13:22<02:31, 1.22it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 28%|██▊ | 7/25 [00:00<00:00, 68.67it/s]\u001b[A\n 56%|█████▌ | 14/25 [00:00<00:00, 67.36it/s]\u001b[A\n 88%|████████▊ | 22/25 [00:00<00:00, 69.08it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 68.92it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 74.64it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 71.67it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 71.20it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 71.45it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 18.21it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 18.49it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 18.56it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 18.60it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.65it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.58it/s]\nframe_idx: 816\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 425\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nframe_idx: 816\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 425\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 82%|████████▏ | 815/999 [13:24<03:26, 1.12s/it]\n 82%|████████▏ | 816/999 [13:24<02:31, 1.21it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 71.28it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 69.18it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 71.43it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 71.18it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 75.43it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 75.11it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 74.94it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 74.84it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 18.84it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 18.76it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 18.76it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 18.70it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.70it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.72it/s]\nframe_idx: 818\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 426\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nframe_idx: 818\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 426\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 82%|████████▏ | 817/999 [13:26<03:23, 1.12s/it]\n 82%|████████▏ | 818/999 [13:26<02:29, 1.21it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 74.42it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 71.43it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 72.00it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 72.24it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 75.34it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 75.04it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 75.12it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 75.14it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 18.81it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 18.78it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 18.77it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 18.69it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.70it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.72it/s]\nframe_idx: 820\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 427\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nframe_idx: 820\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 427\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 82%|████████▏ | 819/999 [13:28<03:20, 1.11s/it]\n 82%|████████▏ | 820/999 [13:28<02:26, 1.22it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 74.50it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 74.78it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 71.60it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 72.29it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 74.54it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 74.57it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 74.91it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 74.85it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 18.89it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 18.79it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 18.70it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 18.70it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.67it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.70it/s]\nframe_idx: 822\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 428\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nframe_idx: 822\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 428\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 82%|████████▏ | 821/999 [13:30<03:18, 1.11s/it]\n 82%|████████▏ | 822/999 [13:30<02:25, 1.22it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 28%|██▊ | 7/25 [00:00<00:00, 65.06it/s]\u001b[A\n 60%|██████ | 15/25 [00:00<00:00, 70.64it/s]\u001b[A\n 92%|█████████▏| 23/25 [00:00<00:00, 71.75it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 70.85it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 75.39it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 75.33it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 75.32it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 75.27it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 18.88it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 18.73it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 18.73it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 18.70it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.69it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.71it/s]\nframe_idx: 824\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 429\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nframe_idx: 824\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 429\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 82%|████████▏ | 823/999 [13:32<03:16, 1.11s/it]\n 82%|████████▏ | 824/999 [13:32<02:23, 1.22it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 28%|██▊ | 7/25 [00:00<00:00, 68.97it/s]\u001b[A\n 60%|██████ | 15/25 [00:00<00:00, 71.80it/s]\u001b[A\n 92%|█████████▏| 23/25 [00:00<00:00, 71.74it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 71.57it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 71.16it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 69.81it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 70.50it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 70.53it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 18.77it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 18.70it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 18.65it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 18.62it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.61it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.62it/s]\nframe_idx: 826\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 430\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nframe_idx: 826\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 430\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 83%|████████▎ | 825/999 [13:34<03:14, 1.12s/it]\n 83%|████████▎ | 826/999 [13:34<02:22, 1.22it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 73.72it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 74.28it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 74.04it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 73.96it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 70.16it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 72.02it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 73.06it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 72.67it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 18.80it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 18.65it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 18.70it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 18.69it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.68it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.68it/s]\nframe_idx: 828\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 431\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nframe_idx: 828\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 431\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 83%|████████▎ | 827/999 [13:36<03:11, 1.11s/it]\n 83%|████████▎ | 828/999 [13:36<02:20, 1.22it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 73.62it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 73.60it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 73.56it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 73.64it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 75.26it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 71.66it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 71.39it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 71.65it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 18.57it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 18.65it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 18.69it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 18.67it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.68it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.65it/s]\nframe_idx: 830\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 432\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nframe_idx: 830\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 432\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 83%|████████▎ | 829/999 [13:38<03:09, 1.12s/it]\n 83%|████████▎ | 830/999 [13:38<02:19, 1.22it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 28%|██▊ | 7/25 [00:00<00:00, 69.10it/s]\u001b[A\n 56%|█████▌ | 14/25 [00:00<00:00, 69.45it/s]\u001b[A\n 84%|████████▍ | 21/25 [00:00<00:00, 69.54it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 69.67it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 72.02it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 71.23it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 72.13it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 71.90it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 18.83it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 18.76it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 18.72it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 18.72it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.70it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.71it/s]\nframe_idx: 832\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 433\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nframe_idx: 832\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 433\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 83%|████████▎ | 831/999 [13:40<03:08, 1.12s/it]\n 83%|████████▎ | 832/999 [13:40<02:17, 1.21it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 73.63it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 70.68it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 70.69it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 70.93it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 74.44it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 73.11it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 71.83it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 72.17it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 18.79it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 18.70it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 18.69it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 18.72it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.70it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.70it/s]\nframe_idx: 834\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 434\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nframe_idx: 834\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 434\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 83%|████████▎ | 833/999 [13:41<03:05, 1.12s/it]\n 83%|████████▎ | 834/999 [13:42<02:15, 1.22it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 74.54it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 74.94it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 75.15it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 75.07it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 75.19it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 75.40it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 72.55it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 73.11it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 18.90it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 18.78it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 18.75it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 18.75it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.72it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.74it/s]\nframe_idx: 836\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 435\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nframe_idx: 836\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 435\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 84%|████████▎ | 835/999 [13:43<03:02, 1.11s/it]\n 84%|████████▎ | 836/999 [13:43<02:13, 1.22it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 72.90it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 71.77it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 70.80it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 71.30it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 73.28it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 72.88it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 73.06it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 72.84it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 18.77it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 18.72it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 18.67it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 18.65it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.65it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.66it/s]\nframe_idx: 838\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 436\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nframe_idx: 838\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 436\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 84%|████████▍ | 837/999 [13:45<03:00, 1.11s/it]\n 84%|████████▍ | 838/999 [13:45<02:11, 1.22it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 74.14it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 74.50it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 74.43it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 74.29it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 75.38it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 71.57it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 72.25it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 72.45it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 18.62it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 18.64it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 18.63it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 18.63it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.66it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.64it/s]\nframe_idx: 840\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 437\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nframe_idx: 840\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 437\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 84%|████████▍ | 839/999 [13:47<02:57, 1.11s/it]\n 84%|████████▍ | 840/999 [13:47<02:09, 1.23it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 74.67it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 75.08it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 75.29it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 75.18it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 75.21it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 74.76it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 74.75it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 74.75it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 18.76it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 18.69it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 18.73it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 18.72it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.72it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.72it/s]\nframe_idx: 842\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 438\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nframe_idx: 842\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 438\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 84%|████████▍ | 841/999 [13:49<02:53, 1.10s/it]\n 84%|████████▍ | 842/999 [13:49<02:07, 1.23it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 28%|██▊ | 7/25 [00:00<00:00, 66.13it/s]\u001b[A\n 60%|██████ | 15/25 [00:00<00:00, 68.58it/s]\u001b[A\n 88%|████████▊ | 22/25 [00:00<00:00, 68.63it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 68.82it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 74.64it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 74.82it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 74.84it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 74.30it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 18.85it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 18.70it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 18.71it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 18.69it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.68it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.68it/s]\nframe_idx: 844\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 439\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nframe_idx: 844\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 439\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 84%|████████▍ | 843/999 [13:51<02:53, 1.11s/it]\n 84%|████████▍ | 844/999 [13:51<02:06, 1.23it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 28%|██▊ | 7/25 [00:00<00:00, 66.57it/s]\u001b[A\n 60%|██████ | 15/25 [00:00<00:00, 68.81it/s]\u001b[A\n 92%|█████████▏| 23/25 [00:00<00:00, 69.64it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 69.24it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 28%|██▊ | 7/25 [00:00<00:00, 69.97it/s]\u001b[A\n 56%|█████▌ | 14/25 [00:00<00:00, 69.88it/s]\u001b[A\n 88%|████████▊ | 22/25 [00:00<00:00, 71.53it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 71.05it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 18.87it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 18.74it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 18.57it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 18.61it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.63it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.63it/s]\nframe_idx: 846\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 440\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nframe_idx: 846\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 440\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 85%|████████▍ | 845/999 [13:53<02:52, 1.12s/it]\n 85%|████████▍ | 846/999 [13:53<02:05, 1.22it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 69.78it/s]\u001b[A\n 60%|██████ | 15/25 [00:00<00:00, 68.16it/s]\u001b[A\n 92%|█████████▏| 23/25 [00:00<00:00, 69.62it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 69.74it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 72.45it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 70.87it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 70.47it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 70.69it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 18.81it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 18.72it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 18.70it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 18.67it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.63it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.66it/s]\nframe_idx: 848\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 441\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nframe_idx: 848\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 441\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 85%|████████▍ | 847/999 [13:55<02:50, 1.12s/it]\n 85%|████████▍ | 848/999 [13:55<02:04, 1.21it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 28%|██▊ | 7/25 [00:00<00:00, 67.89it/s]\u001b[A\n 60%|██████ | 15/25 [00:00<00:00, 69.44it/s]\u001b[A\n 88%|████████▊ | 22/25 [00:00<00:00, 69.16it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 69.72it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 73.57it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 73.63it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 73.80it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 73.52it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 18.84it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 18.71it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 18.71it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 18.67it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.67it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.68it/s]\nframe_idx: 850\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 442\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nframe_idx: 850\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 442\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 85%|████████▍ | 849/999 [13:57<02:48, 1.13s/it]\n 85%|████████▌ | 850/999 [13:57<02:03, 1.20it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 73.96it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 70.82it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 69.10it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 69.73it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 28%|██▊ | 7/25 [00:00<00:00, 69.57it/s]\u001b[A\n 56%|█████▌ | 14/25 [00:00<00:00, 69.01it/s]\u001b[A\n 88%|████████▊ | 22/25 [00:00<00:00, 69.91it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 70.21it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 18.81it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 18.73it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 18.66it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 18.65it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.63it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.65it/s]\nframe_idx: 852\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 443\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nframe_idx: 852\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 443\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 85%|████████▌ | 851/999 [13:59<02:47, 1.13s/it]\n 85%|████████▌ | 852/999 [13:59<02:02, 1.20it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 28%|██▊ | 7/25 [00:00<00:00, 67.05it/s]\u001b[A\n 60%|██████ | 15/25 [00:00<00:00, 71.49it/s]\u001b[A\n 92%|█████████▏| 23/25 [00:00<00:00, 70.99it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 70.89it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 75.10it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 74.76it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 72.79it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 72.98it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 18.89it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 18.71it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 18.66it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 18.60it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.60it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.63it/s]\nframe_idx: 854\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 444\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nframe_idx: 854\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 444\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 85%|████████▌ | 853/999 [14:01<02:43, 1.12s/it]\n 85%|████████▌ | 854/999 [14:01<01:59, 1.21it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 74.25it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 74.55it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 73.07it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 73.17it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 28%|██▊ | 7/25 [00:00<00:00, 69.75it/s]\u001b[A\n 60%|██████ | 15/25 [00:00<00:00, 72.72it/s]\u001b[A\n 92%|█████████▏| 23/25 [00:00<00:00, 73.65it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 73.15it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 18.80it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 18.66it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 18.61it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 18.58it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.61it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.61it/s]\nframe_idx: 856\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 445\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nframe_idx: 856\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 445\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 86%|████████▌ | 855/999 [14:03<02:41, 1.12s/it]\n 86%|████████▌ | 856/999 [14:03<01:58, 1.21it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 71.66it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 73.51it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 73.05it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 72.85it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 71.74it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 73.12it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 73.67it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 73.32it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 18.85it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 18.74it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 18.70it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 18.72it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.69it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.70it/s]\nframe_idx: 858\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 446\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nframe_idx: 858\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 446\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 86%|████████▌ | 857/999 [14:05<02:39, 1.12s/it]\n 86%|████████▌ | 858/999 [14:05<01:56, 1.21it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 28%|██▊ | 7/25 [00:00<00:00, 69.03it/s]\u001b[A\n 60%|██████ | 15/25 [00:00<00:00, 72.49it/s]\u001b[A\n 92%|█████████▏| 23/25 [00:00<00:00, 72.87it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 72.18it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 28%|██▊ | 7/25 [00:00<00:00, 66.82it/s]\u001b[A\n 56%|█████▌ | 14/25 [00:00<00:00, 67.97it/s]\u001b[A\n 88%|████████▊ | 22/25 [00:00<00:00, 69.02it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 68.54it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 18.83it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 18.69it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 18.67it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 18.68it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.67it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.68it/s]\nframe_idx: 860\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 447\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nframe_idx: 860\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 447\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 86%|████████▌ | 859/999 [14:07<02:37, 1.13s/it]\n 86%|████████▌ | 860/999 [14:07<01:55, 1.21it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 71.48it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 70.26it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 70.06it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 70.17it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 28%|██▊ | 7/25 [00:00<00:00, 69.56it/s]\u001b[A\n 60%|██████ | 15/25 [00:00<00:00, 70.34it/s]\u001b[A\n 92%|█████████▏| 23/25 [00:00<00:00, 72.24it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 71.48it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 18.76it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 18.68it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 18.68it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 18.66it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.69it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.68it/s]\nframe_idx: 862\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 448\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nframe_idx: 862\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 448\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 86%|████████▌ | 861/999 [14:09<02:36, 1.13s/it]\n 86%|████████▋ | 862/999 [14:09<01:53, 1.20it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 73.53it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 71.70it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 72.03it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 72.19it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 28%|██▊ | 7/25 [00:00<00:00, 64.95it/s]\u001b[A\n 60%|██████ | 15/25 [00:00<00:00, 67.85it/s]\u001b[A\n 92%|█████████▏| 23/25 [00:00<00:00, 70.50it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 69.65it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 18.87it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 18.70it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 18.67it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 18.67it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.65it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.66it/s]\nframe_idx: 864\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 449\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nframe_idx: 864\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 449\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 86%|████████▋ | 863/999 [14:11<02:33, 1.13s/it]\n 86%|████████▋ | 864/999 [14:11<01:52, 1.20it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 73.26it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 74.05it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 74.31it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 73.71it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 73.19it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 71.09it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 70.24it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 70.76it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 18.01it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 18.37it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 18.48it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 18.53it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.57it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.49it/s]\nframe_idx: 866\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 450\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nframe_idx: 866\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 450\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 87%|████████▋ | 865/999 [14:13<02:31, 1.13s/it]\n 87%|████████▋ | 866/999 [14:13<01:50, 1.20it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 73.54it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 74.10it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 72.56it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 72.54it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 28%|██▊ | 7/25 [00:00<00:00, 68.19it/s]\u001b[A\n 56%|█████▌ | 14/25 [00:00<00:00, 68.09it/s]\u001b[A\n 88%|████████▊ | 22/25 [00:00<00:00, 69.33it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 69.23it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 18.80it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 18.74it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 18.70it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 18.68it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.67it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.68it/s]\nframe_idx: 868\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 451\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nframe_idx: 868\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 451\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 87%|████████▋ | 867/999 [14:15<02:29, 1.13s/it]\n 87%|████████▋ | 868/999 [14:15<01:49, 1.20it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 74.02it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 74.28it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 74.53it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 74.45it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 74.49it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 73.23it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 70.72it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 71.61it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 18.79it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 18.68it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 18.65it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 18.65it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.66it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.66it/s]\nframe_idx: 870\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 452\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nframe_idx: 870\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 452\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 87%|████████▋ | 869/999 [14:16<02:25, 1.12s/it]\n 87%|████████▋ | 870/999 [14:17<01:46, 1.21it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 73.98it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 74.19it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 74.19it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 74.04it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 73.73it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 72.89it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 70.61it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 71.28it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 18.66it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 18.52it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 18.52it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 18.58it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.59it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.57it/s]\nframe_idx: 872\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 453\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nframe_idx: 872\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 453\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 87%|████████▋ | 871/999 [14:18<02:23, 1.12s/it]\n 87%|████████▋ | 872/999 [14:19<01:45, 1.20it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 73.37it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 74.29it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 73.79it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 73.80it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 74.54it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 74.57it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 71.86it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 72.39it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 18.88it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 18.75it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 18.75it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 18.73it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.70it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.72it/s]\nframe_idx: 874\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 454\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nframe_idx: 874\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 454\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 87%|████████▋ | 873/999 [14:20<02:21, 1.12s/it]\n 87%|████████▋ | 874/999 [14:21<01:43, 1.21it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 72.73it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 73.76it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 73.00it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 73.14it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 74.41it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 72.62it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 71.76it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 71.93it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 18.79it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 18.75it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 18.67it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 18.66it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.67it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.68it/s]\nframe_idx: 876\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 455\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nframe_idx: 876\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 455\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 88%|████████▊ | 875/999 [14:22<02:19, 1.12s/it]\n 88%|████████▊ | 876/999 [14:22<01:41, 1.21it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 73.46it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 73.85it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 72.37it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 72.73it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 74.91it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 74.64it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 74.39it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 74.40it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 18.87it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 18.65it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 18.65it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 18.67it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.64it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.65it/s]\nframe_idx: 878\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 456\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nframe_idx: 878\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 456\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 88%|████████▊ | 877/999 [14:24<02:17, 1.12s/it]\n 88%|████████▊ | 878/999 [14:24<01:40, 1.20it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 73.25it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 73.98it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 73.87it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 73.82it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 71.63it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 70.39it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 69.62it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 69.87it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 18.85it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 18.78it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 18.74it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 18.74it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.71it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.72it/s]\nframe_idx: 880\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 457\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nframe_idx: 880\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 457\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 88%|████████▊ | 879/999 [14:26<02:15, 1.13s/it]\n 88%|████████▊ | 880/999 [14:26<01:38, 1.20it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 28%|██▊ | 7/25 [00:00<00:00, 67.80it/s]\u001b[A\n 56%|█████▌ | 14/25 [00:00<00:00, 68.48it/s]\u001b[A\n 84%|████████▍ | 21/25 [00:00<00:00, 68.83it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 68.83it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 28%|██▊ | 7/25 [00:00<00:00, 69.11it/s]\u001b[A\n 60%|██████ | 15/25 [00:00<00:00, 71.25it/s]\u001b[A\n 92%|█████████▏| 23/25 [00:00<00:00, 70.12it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 70.04it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 18.19it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 18.48it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 18.56it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 18.57it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.59it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.54it/s]\nframe_idx: 882\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 458\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nframe_idx: 882\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 458\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 88%|████████▊ | 881/999 [14:28<02:14, 1.14s/it]\n 88%|████████▊ | 882/999 [14:28<01:37, 1.19it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 72.34it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 70.50it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 69.41it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 69.69it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 70.89it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 70.08it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 71.25it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 71.12it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 18.82it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 18.75it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 18.70it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 18.73it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.72it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.72it/s]\nframe_idx: 884\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 459\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nframe_idx: 884\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 459\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 88%|████████▊ | 883/999 [14:30<02:11, 1.14s/it]\n 88%|████████▊ | 884/999 [14:30<01:36, 1.20it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 73.38it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 73.75it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 74.34it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 74.12it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 75.09it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 74.72it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 74.49it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 74.55it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 18.80it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 18.69it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 18.71it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 18.68it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.66it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.67it/s]\nframe_idx: 886\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 460\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nframe_idx: 886\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 460\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 89%|████████▊ | 885/999 [14:32<02:08, 1.12s/it]\n 89%|████████▊ | 886/999 [14:32<01:33, 1.20it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 28%|██▊ | 7/25 [00:00<00:00, 68.69it/s]\u001b[A\n 56%|█████▌ | 14/25 [00:00<00:00, 68.68it/s]\u001b[A\n 84%|████████▍ | 21/25 [00:00<00:00, 68.36it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 68.43it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 28%|██▊ | 7/25 [00:00<00:00, 69.32it/s]\u001b[A\n 56%|█████▌ | 14/25 [00:00<00:00, 69.02it/s]\u001b[A\n 84%|████████▍ | 21/25 [00:00<00:00, 68.83it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 68.59it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 18.79it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 18.70it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 18.64it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 18.63it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.65it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.65it/s]\nframe_idx: 888\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 461\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nframe_idx: 888\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 461\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 89%|████████▉ | 887/999 [14:34<02:07, 1.14s/it]\n 89%|████████▉ | 888/999 [14:34<01:33, 1.19it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 28%|██▊ | 7/25 [00:00<00:00, 66.73it/s]\u001b[A\n 60%|██████ | 15/25 [00:00<00:00, 71.03it/s]\u001b[A\n 92%|█████████▏| 23/25 [00:00<00:00, 72.90it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 72.14it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 72.12it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 73.10it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 73.83it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 73.52it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 18.76it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 18.63it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 18.60it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 18.61it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.56it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.58it/s]\nframe_idx: 890\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 462\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nframe_idx: 890\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 462\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 89%|████████▉ | 889/999 [14:36<02:04, 1.13s/it]\n 89%|████████▉ | 890/999 [14:36<01:30, 1.20it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 28%|██▊ | 7/25 [00:00<00:00, 68.86it/s]\u001b[A\n 60%|██████ | 15/25 [00:00<00:00, 72.02it/s]\u001b[A\n 92%|█████████▏| 23/25 [00:00<00:00, 73.25it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 72.38it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 71.03it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 71.53it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 72.93it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 72.36it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 18.82it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 18.72it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 18.64it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 18.66it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.65it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.66it/s]\nframe_idx: 892\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 463\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nframe_idx: 892\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 463\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 89%|████████▉ | 891/999 [14:38<02:01, 1.13s/it]\n 89%|████████▉ | 892/999 [14:38<01:28, 1.20it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 28%|██▊ | 7/25 [00:00<00:00, 65.82it/s]\u001b[A\n 56%|█████▌ | 14/25 [00:00<00:00, 68.18it/s]\u001b[A\n 88%|████████▊ | 22/25 [00:00<00:00, 70.84it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 70.43it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 70.35it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 70.01it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 71.83it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 71.41it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 18.79it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 18.70it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 18.62it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 18.56it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.52it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.56it/s]\nframe_idx: 894\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 464\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nframe_idx: 894\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 464\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 89%|████████▉ | 893/999 [14:40<02:00, 1.14s/it]\n 89%|████████▉ | 894/999 [14:40<01:28, 1.19it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 28%|██▊ | 7/25 [00:00<00:00, 67.36it/s]\u001b[A\n 60%|██████ | 15/25 [00:00<00:00, 70.27it/s]\u001b[A\n 92%|█████████▏| 23/25 [00:00<00:00, 70.64it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 70.59it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 74.36it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 74.45it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 74.25it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 73.96it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 18.77it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 18.69it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 18.52it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 18.57it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.62it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.61it/s]\nframe_idx: 896\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 465\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nframe_idx: 896\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 465\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 90%|████████▉ | 895/999 [14:42<01:57, 1.13s/it]\n 90%|████████▉ | 896/999 [14:42<01:26, 1.20it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 71.20it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 70.10it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 70.06it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 70.11it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 28%|██▊ | 7/25 [00:00<00:00, 69.44it/s]\u001b[A\n 60%|██████ | 15/25 [00:00<00:00, 70.28it/s]\u001b[A\n 92%|█████████▏| 23/25 [00:00<00:00, 72.27it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 71.46it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 18.84it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 18.75it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 18.74it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 18.72it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.68it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.70it/s]\nframe_idx: 898\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 466\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nframe_idx: 898\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 466\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 90%|████████▉ | 897/999 [14:44<01:55, 1.14s/it]\n 90%|████████▉ | 898/999 [14:44<01:24, 1.20it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 72.21it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 71.75it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 72.83it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 72.64it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 74.36it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 72.71it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 72.35it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 72.69it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 18.33it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 18.50it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 18.55it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 18.56it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.58it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.54it/s]\nframe_idx: 900\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 467\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nframe_idx: 900\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 467\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 90%|████████▉ | 899/999 [14:46<02:00, 1.20s/it]\n 90%|█████████ | 900/999 [14:47<01:32, 1.07it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 24%|██▍ | 6/25 [00:00<00:00, 59.86it/s]\u001b[A\n 56%|█████▌ | 14/25 [00:00<00:00, 69.00it/s]\u001b[A\n 88%|████████▊ | 22/25 [00:00<00:00, 71.52it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 70.35it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 74.48it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 68.68it/s]\u001b[A\n 92%|█████████▏| 23/25 [00:00<00:00, 68.98it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 69.42it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 18.72it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 18.67it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 18.63it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 18.69it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.69it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.67it/s]\nframe_idx: 902\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 468\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nframe_idx: 902\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 468\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 90%|█████████ | 901/999 [14:48<02:02, 1.25s/it]\n 90%|█████████ | 902/999 [14:49<01:28, 1.10it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 28%|██▊ | 7/25 [00:00<00:00, 68.99it/s]\u001b[A\n 60%|██████ | 15/25 [00:00<00:00, 70.25it/s]\u001b[A\n 92%|█████████▏| 23/25 [00:00<00:00, 70.05it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 69.94it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 70.16it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 70.21it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 69.79it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 69.85it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 18.76it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 18.67it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 18.65it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 18.63it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.63it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.64it/s]\nframe_idx: 904\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 469\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nframe_idx: 904\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 469\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 90%|█████████ | 903/999 [14:50<01:54, 1.19s/it]\n 90%|█████████ | 904/999 [14:51<01:22, 1.15it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 73.05it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 73.92it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 72.57it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 72.24it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 75.00it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 74.51it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 71.76it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 72.38it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 18.79it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 18.74it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 18.71it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 18.70it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.68it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.69it/s]\nframe_idx: 906\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 470\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nframe_idx: 906\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 470\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 91%|█████████ | 905/999 [14:52<01:48, 1.16s/it]\n 91%|█████████ | 906/999 [14:53<01:19, 1.17it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 28%|██▊ | 7/25 [00:00<00:00, 68.28it/s]\u001b[A\n 56%|█████▌ | 14/25 [00:00<00:00, 68.19it/s]\u001b[A\n 84%|████████▍ | 21/25 [00:00<00:00, 68.01it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 67.75it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 28%|██▊ | 7/25 [00:00<00:00, 68.56it/s]\u001b[A\n 56%|█████▌ | 14/25 [00:00<00:00, 68.77it/s]\u001b[A\n 84%|████████▍ | 21/25 [00:00<00:00, 69.10it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 69.12it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 18.87it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 18.75it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 18.73it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 18.74it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.70it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.71it/s]\nframe_idx: 908\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 471\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nframe_idx: 908\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 471\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 91%|█████████ | 907/999 [14:54<01:46, 1.16s/it]\n 91%|█████████ | 908/999 [14:55<01:17, 1.18it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 28%|██▊ | 7/25 [00:00<00:00, 68.22it/s]\u001b[A\n 56%|█████▌ | 14/25 [00:00<00:00, 68.75it/s]\u001b[A\n 84%|████████▍ | 21/25 [00:00<00:00, 68.63it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 68.73it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 74.36it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 71.24it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 68.68it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 69.60it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 18.91it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 18.77it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 18.75it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 18.70it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.71it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.72it/s]\nframe_idx: 910\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 472\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nframe_idx: 910\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 472\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 91%|█████████ | 909/999 [14:56<01:43, 1.15s/it]\n 91%|█████████ | 910/999 [14:57<01:15, 1.18it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 28%|██▊ | 7/25 [00:00<00:00, 68.25it/s]\u001b[A\n 56%|█████▌ | 14/25 [00:00<00:00, 68.58it/s]\u001b[A\n 84%|████████▍ | 21/25 [00:00<00:00, 68.99it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 68.95it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 28%|██▊ | 7/25 [00:00<00:00, 67.68it/s]\u001b[A\n 56%|█████▌ | 14/25 [00:00<00:00, 67.23it/s]\u001b[A\n 84%|████████▍ | 21/25 [00:00<00:00, 66.52it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 67.07it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 18.85it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 18.77it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 18.74it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 18.73it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.69it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.71it/s]\nframe_idx: 912\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 473\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nframe_idx: 912\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 473\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 91%|█████████ | 911/999 [14:58<01:41, 1.15s/it]\n 91%|█████████▏| 912/999 [14:59<01:13, 1.18it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 70.84it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 73.06it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 73.22it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 73.00it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 28%|██▊ | 7/25 [00:00<00:00, 69.26it/s]\u001b[A\n 56%|█████▌ | 14/25 [00:00<00:00, 69.32it/s]\u001b[A\n 84%|████████▍ | 21/25 [00:00<00:00, 69.31it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 69.32it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 18.83it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 18.75it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 18.76it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 18.71it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.69it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.71it/s]\nframe_idx: 914\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 474\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nframe_idx: 914\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 474\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 91%|█████████▏| 913/999 [15:00<01:38, 1.14s/it]\n 91%|█████████▏| 914/999 [15:01<01:11, 1.18it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 74.02it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 74.47it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 71.92it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 72.38it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 74.98it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 74.91it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 74.48it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 74.28it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 17.70it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 18.26it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 18.46it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 18.55it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.59it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.47it/s]\nframe_idx: 916\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 475\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nframe_idx: 916\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 475\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 92%|█████████▏| 915/999 [15:02<01:35, 1.13s/it]\n 92%|█████████▏| 916/999 [15:02<01:09, 1.20it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 73.17it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 74.06it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 74.17it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 73.77it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 75.34it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 74.69it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 74.57it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 74.41it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 18.84it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 18.68it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 18.65it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 18.65it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.68it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.67it/s]\nframe_idx: 918\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 476\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nframe_idx: 918\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 476\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 92%|█████████▏| 917/999 [15:04<01:32, 1.12s/it]\n 92%|█████████▏| 918/999 [15:04<01:06, 1.21it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 73.56it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 74.21it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 74.37it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 73.61it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 74.80it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 74.78it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 74.76it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 74.53it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 18.87it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 18.75it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 18.70it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 18.67it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.64it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.66it/s]\nframe_idx: 920\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 477\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nframe_idx: 920\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 477\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 92%|█████████▏| 919/999 [15:06<01:29, 1.11s/it]\n 92%|█████████▏| 920/999 [15:06<01:04, 1.22it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 70.21it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 72.95it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 73.97it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 73.44it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 74.21it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 74.92it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 75.30it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 75.11it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 18.78it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 18.74it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 18.71it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 18.72it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.73it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.72it/s]\nframe_idx: 922\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 478\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nframe_idx: 922\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 478\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 92%|█████████▏| 921/999 [15:08<01:26, 1.11s/it]\n 92%|█████████▏| 922/999 [15:08<01:02, 1.23it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 70.84it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 73.11it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 74.19it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 73.74it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 75.26it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 75.05it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 73.74it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 74.15it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 18.86it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 18.80it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 18.72it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 18.68it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.68it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.70it/s]\nframe_idx: 924\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 479\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nframe_idx: 924\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 479\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 92%|█████████▏| 923/999 [15:10<01:23, 1.10s/it]\n 92%|█████████▏| 924/999 [15:10<01:01, 1.23it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 74.10it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 69.59it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 70.33it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 70.68it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 73.24it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 74.19it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 74.31it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 74.11it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 18.83it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 18.70it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 18.67it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 18.66it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.66it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.67it/s]\nframe_idx: 926\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 480\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nframe_idx: 926\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 480\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 93%|█████████▎| 925/999 [15:12<01:22, 1.11s/it]\n 93%|█████████▎| 926/999 [15:12<00:59, 1.22it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 73.18it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 71.18it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 71.38it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 71.40it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 73.27it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 74.11it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 71.79it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 72.15it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 18.85it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 18.74it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 18.74it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 18.72it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.69it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.71it/s]\nframe_idx: 928\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 481\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nframe_idx: 928\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 481\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 93%|█████████▎| 927/999 [15:14<01:20, 1.12s/it]\n 93%|█████████▎| 928/999 [15:14<00:58, 1.21it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 28%|██▊ | 7/25 [00:00<00:00, 68.47it/s]\u001b[A\n 56%|█████▌ | 14/25 [00:00<00:00, 68.77it/s]\u001b[A\n 84%|████████▍ | 21/25 [00:00<00:00, 69.00it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 69.02it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 74.93it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 73.74it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 71.36it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 71.99it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 18.69it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 18.74it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 18.68it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 18.63it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.62it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.63it/s]\nframe_idx: 930\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 482\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nframe_idx: 930\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 482\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 93%|█████████▎| 929/999 [15:16<01:18, 1.12s/it]\n 93%|█████████▎| 930/999 [15:16<00:56, 1.21it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 74.45it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 74.91it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 73.27it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 73.48it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 72.17it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 70.49it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 71.43it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 71.23it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 18.84it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 18.76it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 18.75it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 18.72it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.71it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.72it/s]\nframe_idx: 932\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 483\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nframe_idx: 932\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 483\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 93%|█████████▎| 931/999 [15:18<01:16, 1.12s/it]\n 93%|█████████▎| 932/999 [15:18<00:55, 1.21it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 28%|██▊ | 7/25 [00:00<00:00, 68.89it/s]\u001b[A\n 60%|██████ | 15/25 [00:00<00:00, 72.24it/s]\u001b[A\n 92%|█████████▏| 23/25 [00:00<00:00, 73.45it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 72.29it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 72.07it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 74.00it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 72.75it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 72.95it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 18.79it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 18.74it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 18.71it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 18.69it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.65it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.67it/s]\nframe_idx: 934\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 484\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nframe_idx: 934\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 484\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 93%|█████████▎| 933/999 [15:20<01:13, 1.12s/it]\n 93%|█████████▎| 934/999 [15:20<00:53, 1.21it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 74.15it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 73.05it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 73.82it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 73.77it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 28%|██▊ | 7/25 [00:00<00:00, 69.08it/s]\u001b[A\n 56%|█████▌ | 14/25 [00:00<00:00, 68.70it/s]\u001b[A\n 84%|████████▍ | 21/25 [00:00<00:00, 68.62it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 69.22it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 18.86it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 18.74it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 18.74it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 18.69it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.70it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.71it/s]\nframe_idx: 936\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 485\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nframe_idx: 936\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 485\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 94%|█████████▎| 935/999 [15:22<01:11, 1.12s/it]\n 94%|█████████▎| 936/999 [15:22<00:52, 1.21it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 73.70it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 74.38it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 73.34it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 73.51it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 28%|██▊ | 7/25 [00:00<00:00, 69.93it/s]\u001b[A\n 56%|█████▌ | 14/25 [00:00<00:00, 68.78it/s]\u001b[A\n 84%|████████▍ | 21/25 [00:00<00:00, 68.62it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 68.58it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 18.90it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 18.75it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 18.72it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 18.74it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.69it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.71it/s]\nframe_idx: 938\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 486\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nframe_idx: 938\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 486\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 94%|█████████▍| 937/999 [15:24<01:09, 1.12s/it]\n 94%|█████████▍| 938/999 [15:24<00:50, 1.21it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 28%|██▊ | 7/25 [00:00<00:00, 67.56it/s]\u001b[A\n 56%|█████▌ | 14/25 [00:00<00:00, 68.27it/s]\u001b[A\n 88%|████████▊ | 22/25 [00:00<00:00, 71.37it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 70.26it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 28%|██▊ | 7/25 [00:00<00:00, 65.89it/s]\u001b[A\n 56%|█████▌ | 14/25 [00:00<00:00, 67.82it/s]\u001b[A\n 84%|████████▍ | 21/25 [00:00<00:00, 68.20it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 68.81it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 18.84it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 18.70it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 18.70it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 18.71it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.70it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.70it/s]\nframe_idx: 940\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 487\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nframe_idx: 940\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 487\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 94%|█████████▍| 939/999 [15:26<01:08, 1.14s/it]\n 94%|█████████▍| 940/999 [15:26<00:49, 1.20it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 72.65it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 72.95it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 73.98it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 73.72it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 28%|██▊ | 7/25 [00:00<00:00, 65.46it/s]\u001b[A\n 56%|█████▌ | 14/25 [00:00<00:00, 67.53it/s]\u001b[A\n 88%|████████▊ | 22/25 [00:00<00:00, 69.27it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 68.64it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 18.90it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 18.79it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 18.73it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 18.72it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.73it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.74it/s]\nframe_idx: 942\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 488\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nframe_idx: 942\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 488\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 94%|█████████▍| 941/999 [15:28<01:05, 1.13s/it]\n 94%|█████████▍| 942/999 [15:28<00:47, 1.20it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 74.49it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 74.89it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 74.68it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 74.45it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 75.43it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 71.78it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 72.86it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 72.64it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 18.87it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 18.77it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 18.72it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 18.68it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.66it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.68it/s]\nframe_idx: 944\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 489\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nframe_idx: 944\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 489\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 94%|█████████▍| 943/999 [15:30<01:02, 1.12s/it]\n 94%|█████████▍| 944/999 [15:30<00:45, 1.21it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 74.13it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 74.22it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 74.32it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 74.07it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 74.85it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 72.50it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 71.85it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 72.14it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 18.83it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 18.74it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 18.70it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 18.68it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.65it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.67it/s]\nframe_idx: 946\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 490\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nframe_idx: 946\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 490\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 95%|█████████▍| 945/999 [15:31<01:00, 1.12s/it]\n 95%|█████████▍| 946/999 [15:32<00:43, 1.21it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 74.05it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 72.46it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 73.57it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 73.19it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 74.81it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 71.43it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 70.22it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 70.81it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 18.78it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 18.77it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 18.73it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 18.71it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.72it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.73it/s]\nframe_idx: 948\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 491\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nframe_idx: 948\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 491\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 95%|█████████▍| 947/999 [15:33<00:58, 1.12s/it]\n 95%|█████████▍| 948/999 [15:34<00:42, 1.21it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 74.14it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 74.50it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 74.80it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 74.70it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 75.49it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 75.35it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 75.33it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 75.35it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 18.85it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 18.76it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 18.72it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 18.75it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.73it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.73it/s]\nframe_idx: 950\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 492\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nframe_idx: 950\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 492\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 95%|█████████▍| 949/999 [15:35<00:55, 1.11s/it]\n 95%|█████████▌| 950/999 [15:35<00:40, 1.22it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 74.27it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 74.94it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 75.02it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 74.94it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 75.34it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 73.96it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 74.50it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 74.53it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 18.50it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 18.61it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 18.66it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 18.71it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.71it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.67it/s]\nframe_idx: 952\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 493\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nframe_idx: 952\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 493\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 95%|█████████▌| 951/999 [15:37<00:52, 1.10s/it]\n 95%|█████████▌| 952/999 [15:37<00:38, 1.23it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 74.14it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 74.71it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 74.83it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 74.70it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 28%|██▊ | 7/25 [00:00<00:00, 69.05it/s]\u001b[A\n 60%|██████ | 15/25 [00:00<00:00, 70.73it/s]\u001b[A\n 92%|█████████▏| 23/25 [00:00<00:00, 70.56it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 70.39it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 18.01it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 18.40it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 18.51it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 18.59it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.63it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.54it/s]\nframe_idx: 954\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 494\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nframe_idx: 954\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 494\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 95%|█████████▌| 953/999 [15:39<00:51, 1.11s/it]\n 95%|█████████▌| 954/999 [15:39<00:36, 1.22it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 73.58it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 74.66it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 72.63it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 72.95it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 74.60it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 74.12it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 71.41it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 71.95it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 18.87it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 18.76it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 18.69it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 18.70it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.68it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.70it/s]\nframe_idx: 956\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 495\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nframe_idx: 956\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 495\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 96%|█████████▌| 955/999 [15:41<00:49, 1.11s/it]\n 96%|█████████▌| 956/999 [15:41<00:35, 1.22it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 28%|██▊ | 7/25 [00:00<00:00, 67.31it/s]\u001b[A\n 56%|█████▌ | 14/25 [00:00<00:00, 67.90it/s]\u001b[A\n 88%|████████▊ | 22/25 [00:00<00:00, 71.02it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 69.73it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 28%|██▊ | 7/25 [00:00<00:00, 68.98it/s]\u001b[A\n 60%|██████ | 15/25 [00:00<00:00, 72.26it/s]\u001b[A\n 92%|█████████▏| 23/25 [00:00<00:00, 73.35it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 72.84it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 18.84it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 18.73it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 18.70it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 18.65it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.65it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.67it/s]\nframe_idx: 958\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 496\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nframe_idx: 958\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 496\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 96%|█████████▌| 957/999 [15:43<00:46, 1.12s/it]\n 96%|█████████▌| 958/999 [15:43<00:33, 1.22it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 70.83it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 69.42it/s]\u001b[A\n 92%|█████████▏| 23/25 [00:00<00:00, 69.21it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 69.80it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 74.88it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 74.51it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 74.34it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 74.38it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 18.85it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 18.73it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 18.66it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 18.68it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.66it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.68it/s]\nframe_idx: 960\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 497\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nframe_idx: 960\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 497\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 96%|█████████▌| 959/999 [15:45<00:44, 1.12s/it]\n 96%|█████████▌| 960/999 [15:45<00:32, 1.22it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 28%|██▊ | 7/25 [00:00<00:00, 69.38it/s]\u001b[A\n 60%|██████ | 15/25 [00:00<00:00, 69.48it/s]\u001b[A\n 88%|████████▊ | 22/25 [00:00<00:00, 69.68it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 70.13it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 75.13it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 74.49it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 71.30it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 71.98it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 18.88it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 18.72it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 18.72it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 18.68it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.69it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.70it/s]\nframe_idx: 962\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 498\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nframe_idx: 962\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 498\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 96%|█████████▌| 961/999 [15:47<00:42, 1.12s/it]\n 96%|█████████▋| 962/999 [15:47<00:30, 1.22it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 72.64it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 68.54it/s]\u001b[A\n 92%|█████████▏| 23/25 [00:00<00:00, 68.77it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 69.05it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 73.86it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 74.89it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 74.90it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 74.72it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 18.82it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 18.79it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 18.73it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 18.72it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.73it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.73it/s]\nframe_idx: 964\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 499\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nframe_idx: 964\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 499\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 96%|█████████▋| 963/999 [15:49<00:40, 1.12s/it]\n 96%|█████████▋| 964/999 [15:49<00:28, 1.22it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 28%|██▊ | 7/25 [00:00<00:00, 69.88it/s]\u001b[A\n 60%|██████ | 15/25 [00:00<00:00, 71.69it/s]\u001b[A\n 92%|█████████▏| 23/25 [00:00<00:00, 70.70it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 70.96it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 70.86it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 72.84it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 73.48it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 72.96it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 18.76it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 18.71it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 18.69it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 18.67it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.66it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.66it/s]\nframe_idx: 966\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 500\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nframe_idx: 966\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 500\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 97%|█████████▋| 965/999 [15:51<00:37, 1.11s/it]\n 97%|█████████▋| 966/999 [15:51<00:27, 1.22it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 74.39it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 74.78it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 74.25it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 74.22it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 75.42it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 75.36it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 75.30it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 75.34it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 18.86it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 18.74it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 18.69it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 18.69it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.64it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.67it/s]\nframe_idx: 968\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 501\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nframe_idx: 968\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 501\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 97%|█████████▋| 967/999 [15:53<00:35, 1.11s/it]\n 97%|█████████▋| 968/999 [15:53<00:25, 1.22it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 71.01it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 72.82it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 71.21it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 71.50it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 70.43it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 70.06it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 72.29it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 71.80it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 18.90it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 18.76it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 18.73it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 18.70it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.69it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.71it/s]\nframe_idx: 970\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 502\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nframe_idx: 970\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 502\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 97%|█████████▋| 969/999 [15:55<00:33, 1.12s/it]\n 97%|█████████▋| 970/999 [15:55<00:23, 1.22it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 74.55it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 74.77it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 74.79it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 74.79it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 72.98it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 72.66it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 73.79it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 73.58it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 18.85it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 18.75it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 18.73it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 18.71it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.68it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.70it/s]\nframe_idx: 972\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 503\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nframe_idx: 972\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 503\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 97%|█████████▋| 971/999 [15:57<00:31, 1.11s/it]\n 97%|█████████▋| 972/999 [15:57<00:22, 1.22it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 72.38it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 73.95it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 74.45it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 74.07it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 75.59it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 70.61it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 69.83it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 70.62it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 18.82it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 18.72it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 18.69it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 18.69it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.67it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.68it/s]\nframe_idx: 974\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 504\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nframe_idx: 974\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 504\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 97%|█████████▋| 973/999 [15:59<00:28, 1.11s/it]\n 97%|█████████▋| 974/999 [15:59<00:20, 1.22it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 73.73it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 74.21it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 74.50it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 74.29it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 75.11it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 69.10it/s]\u001b[A\n 92%|█████████▏| 23/25 [00:00<00:00, 68.89it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 69.66it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 18.85it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 18.78it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 18.72it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 18.71it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.72it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.72it/s]\nframe_idx: 976\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 505\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nframe_idx: 976\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 505\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 98%|█████████▊| 975/999 [16:00<00:26, 1.11s/it]\n 98%|█████████▊| 976/999 [16:01<00:18, 1.22it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 70.97it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 72.98it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 73.74it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 73.12it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 28%|██▊ | 7/25 [00:00<00:00, 69.06it/s]\u001b[A\n 60%|██████ | 15/25 [00:00<00:00, 72.35it/s]\u001b[A\n 92%|█████████▏| 23/25 [00:00<00:00, 72.08it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 71.60it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 18.90it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 18.77it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 18.77it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 18.73it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.71it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.73it/s]\nframe_idx: 978\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 506\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nframe_idx: 978\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 506\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 98%|█████████▊| 977/999 [16:02<00:24, 1.11s/it]\n 98%|█████████▊| 978/999 [16:03<00:17, 1.22it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 73.43it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 71.83it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 72.99it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 72.69it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 74.51it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 74.70it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 74.76it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 74.37it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 18.84it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 18.77it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 18.73it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 18.73it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.74it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.74it/s]\nframe_idx: 980\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 507\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nframe_idx: 980\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 507\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 98%|█████████▊| 979/999 [16:04<00:22, 1.11s/it]\n 98%|█████████▊| 980/999 [16:04<00:15, 1.22it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 74.37it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 74.75it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 74.21it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 74.24it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 75.00it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 75.06it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 74.96it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 74.89it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 18.87it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 18.76it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 18.74it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 18.74it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.72it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.73it/s]\nframe_idx: 982\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 508\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nframe_idx: 982\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 508\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 98%|█████████▊| 981/999 [16:06<00:19, 1.11s/it]\n 98%|█████████▊| 982/999 [16:06<00:13, 1.22it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 74.42it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 74.74it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 75.00it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 74.24it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 70.32it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 70.31it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 71.33it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 70.87it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 18.84it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 18.76it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 18.70it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 18.67it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.66it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.68it/s]\nframe_idx: 984\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 509\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nframe_idx: 984\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 509\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 98%|█████████▊| 983/999 [16:08<00:17, 1.12s/it]\n 98%|█████████▊| 984/999 [16:08<00:12, 1.21it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 28%|██▊ | 7/25 [00:00<00:00, 69.23it/s]\u001b[A\n 60%|██████ | 15/25 [00:00<00:00, 73.00it/s]\u001b[A\n 92%|█████████▏| 23/25 [00:00<00:00, 71.18it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 71.39it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 72.86it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 74.04it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 74.50it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 73.64it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 18.88it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 18.75it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 18.69it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 18.69it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.67it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.69it/s]\nframe_idx: 986\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 510\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nframe_idx: 986\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 510\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 99%|█████████▊| 985/999 [16:10<00:15, 1.12s/it]\n 99%|█████████▊| 986/999 [16:10<00:10, 1.21it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 28%|██▊ | 7/25 [00:00<00:00, 69.01it/s]\u001b[A\n 60%|██████ | 15/25 [00:00<00:00, 71.91it/s]\u001b[A\n 92%|█████████▏| 23/25 [00:00<00:00, 73.34it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 72.85it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 71.39it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 73.55it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 74.13it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 73.74it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 18.79it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 18.70it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 18.70it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 18.67it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.67it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.68it/s]\nframe_idx: 988\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 511\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nframe_idx: 988\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 511\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 99%|█████████▉| 987/999 [16:12<00:13, 1.12s/it]\n 99%|█████████▉| 988/999 [16:12<00:09, 1.21it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 71.45it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 73.76it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 74.41it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 73.84it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 74.57it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 72.57it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 72.46it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 72.73it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 18.83it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 18.76it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 18.74it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 18.72it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.73it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.73it/s]\nframe_idx: 990\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 512\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nframe_idx: 990\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 512\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 99%|█████████▉| 989/999 [16:14<00:11, 1.12s/it]\n 99%|█████████▉| 990/999 [16:14<00:07, 1.21it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 70.86it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 70.33it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 72.43it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 72.02it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 74.96it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 71.60it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 72.20it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 72.44it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 18.78it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 18.70it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 18.66it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 18.68it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.72it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.70it/s]\nframe_idx: 992\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 513\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nframe_idx: 992\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 513\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 99%|█████████▉| 991/999 [16:16<00:08, 1.12s/it]\n 99%|█████████▉| 992/999 [16:16<00:05, 1.21it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 28%|██▊ | 7/25 [00:00<00:00, 64.22it/s]\u001b[A\n 60%|██████ | 15/25 [00:00<00:00, 67.69it/s]\u001b[A\n 88%|████████▊ | 22/25 [00:00<00:00, 67.95it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 67.74it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 28%|██▊ | 7/25 [00:00<00:00, 69.57it/s]\u001b[A\n 56%|█████▌ | 14/25 [00:00<00:00, 69.09it/s]\u001b[A\n 88%|████████▊ | 22/25 [00:00<00:00, 69.86it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 69.68it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 18.84it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 18.78it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 18.61it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 18.62it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.64it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.65it/s]\nframe_idx: 994\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 514\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nframe_idx: 994\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 514\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n 99%|█████████▉| 993/999 [16:18<00:06, 1.13s/it]\n 99%|█████████▉| 994/999 [16:18<00:04, 1.21it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 28%|██▊ | 7/25 [00:00<00:00, 69.90it/s]\u001b[A\n 60%|██████ | 15/25 [00:00<00:00, 71.08it/s]\u001b[A\n 92%|█████████▏| 23/25 [00:00<00:00, 70.41it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 70.58it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 75.30it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 75.07it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 74.95it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 74.91it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 18.87it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 18.76it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 18.73it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 18.70it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.69it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.70it/s]\nframe_idx: 996\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 515\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nframe_idx: 996\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 515\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n100%|█████████▉| 995/999 [16:20<00:04, 1.12s/it]\n100%|█████████▉| 996/999 [16:20<00:02, 1.22it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 71.69it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 73.42it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 70.58it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 71.01it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 74.71it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 74.85it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 74.73it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 74.62it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 18.86it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 18.79it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 18.75it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 18.72it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.70it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.72it/s]\nframe_idx: 998\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 516\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\nframe_idx: 998\ncond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation\nuncond_prompt: low quality, bad image, cropped, out of frame\nseed: 516\nprior_seed: 547339\nangle: 0.0\nzoom: 1.0\ntranslation_x: 0.0\ntranslation_y: 0.0\ntranslation_z: 1.0\nrotation_x: 0.0\nrotation_y: 0.0\nrotation_z: 0.0\nnoise: 0.0\nstrength: 0.13\ncontrast: 1.0\nkernel: 5\nsigma: 1.0\namount: 0.2\nthreshold: 0.0\n100%|█████████▉| 997/999 [16:22<00:02, 1.12s/it]\n100%|█████████▉| 998/999 [16:22<00:00, 1.22it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 74.09it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 74.43it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 73.52it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 73.52it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\u001b[A\n 32%|███▏ | 8/25 [00:00<00:00, 75.27it/s]\u001b[A\n 64%|██████▍ | 16/25 [00:00<00:00, 75.31it/s]\u001b[A\n 96%|█████████▌| 24/25 [00:00<00:00, 75.31it/s]\u001b[A\n100%|██████████| 25/25 [00:00<00:00, 75.28it/s]\n 0%| | 0/10 [00:00<?, ?it/s]\u001b[A\n 20%|██ | 2/10 [00:00<00:00, 18.87it/s]\u001b[A\n 40%|████ | 4/10 [00:00<00:00, 18.79it/s]\u001b[A\n 60%|██████ | 6/10 [00:00<00:00, 18.74it/s]\u001b[A\n 80%|████████ | 8/10 [00:00<00:00, 18.74it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.69it/s]\u001b[A\n100%|██████████| 10/10 [00:00<00:00, 18.72it/s]\n100%|█████████▉| 998/999 [16:24<00:00, 1.01it/s]\n 0%| | 0/998 [00:00<?, ?it/s]\n 0%| | 1/998 [00:00<02:51, 5.81it/s]\n 5%|▍ | 47/998 [00:00<00:05, 170.01it/s]\n 7%|▋ | 65/998 [00:00<00:06, 143.86it/s]\n 8%|▊ | 80/998 [00:00<00:07, 128.98it/s]\n 9%|▉ | 94/998 [00:00<00:07, 119.40it/s]\n 11%|█ | 106/998 [00:00<00:07, 111.77it/s]\n 12%|█▏ | 118/998 [00:01<00:07, 110.43it/s]\n 13%|█▎ | 129/998 [00:01<00:07, 108.85it/s]\n 14%|█▍ | 140/998 [00:01<00:07, 107.76it/s]\n 15%|█▌ | 153/998 [00:01<00:07, 106.13it/s]\n 17%|█▋ | 165/998 [00:01<00:07, 108.98it/s]\n 18%|█▊ | 176/998 [00:01<00:07, 105.01it/s]\n 19%|█▊ | 187/998 [00:01<00:07, 106.14it/s]\n 20%|█▉ | 198/998 [00:01<00:07, 102.84it/s]\n 21%|██ | 209/998 [00:01<00:07, 102.60it/s]\n 22%|██▏ | 222/998 [00:02<00:07, 104.94it/s]\n 23%|██▎ | 233/998 [00:02<00:07, 105.18it/s]\n 24%|██▍ | 244/998 [00:02<00:07, 101.63it/s]\n 26%|██▌ | 255/998 [00:02<00:07, 103.29it/s]\n 27%|██▋ | 266/998 [00:02<00:07, 102.24it/s]\n 28%|██▊ | 277/998 [00:02<00:07, 102.13it/s]\n 29%|██▉ | 289/998 [00:02<00:06, 104.63it/s]\n 30%|███ | 300/998 [00:02<00:06, 100.01it/s]\n 31%|███ | 311/998 [00:02<00:06, 98.20it/s] \n 32%|███▏ | 324/998 [00:03<00:06, 104.17it/s]\n 34%|███▎ | 335/998 [00:03<00:06, 96.96it/s] \n 35%|███▍ | 345/998 [00:03<00:06, 97.15it/s]\n 36%|███▌ | 355/998 [00:03<00:06, 96.28it/s]\n 37%|███▋ | 366/998 [00:03<00:06, 97.45it/s]\n 38%|███▊ | 378/998 [00:03<00:06, 102.96it/s]\n 39%|███▉ | 389/998 [00:03<00:06, 101.18it/s]\n 40%|████ | 400/998 [00:03<00:05, 101.92it/s]\n 41%|████ | 411/998 [00:03<00:05, 99.18it/s] \n 42%|████▏ | 423/998 [00:03<00:05, 104.63it/s]\n 43%|████▎ | 434/998 [00:04<00:05, 97.90it/s] \n 45%|████▍ | 445/998 [00:04<00:05, 100.80it/s]\n 46%|████▌ | 456/998 [00:04<00:05, 101.71it/s]\n 47%|████▋ | 467/998 [00:04<00:05, 100.09it/s]\n 48%|████▊ | 478/998 [00:04<00:05, 99.54it/s] \n 49%|████▉ | 490/998 [00:04<00:04, 103.89it/s]\n 50%|█████ | 503/998 [00:04<00:04, 109.59it/s]\n 52%|█████▏ | 515/998 [00:04<00:04, 104.83it/s]\n 53%|█████▎ | 526/998 [00:05<00:04, 100.96it/s]\n 54%|█████▍ | 537/998 [00:05<00:04, 100.94it/s]\n 55%|█████▍ | 548/998 [00:05<00:04, 98.30it/s] \n 56%|█████▌ | 559/998 [00:05<00:04, 101.16it/s]\n 57%|█████▋ | 570/998 [00:05<00:04, 102.59it/s]\n 58%|█████▊ | 581/998 [00:05<00:04, 97.93it/s] \n 59%|█████▉ | 592/998 [00:05<00:04, 99.11it/s]\n 61%|██████ | 604/998 [00:05<00:03, 102.97it/s]\n 62%|██████▏ | 615/998 [00:05<00:03, 100.10it/s]\n 63%|██████▎ | 626/998 [00:06<00:03, 93.72it/s] \n 64%|██████▍ | 637/998 [00:06<00:03, 97.95it/s]\n 65%|██████▍ | 648/998 [00:06<00:03, 100.06it/s]\n 66%|██████▌ | 659/998 [00:06<00:03, 101.20it/s]\n 67%|██████▋ | 670/998 [00:06<00:03, 97.51it/s] \n 68%|██████▊ | 680/998 [00:06<00:03, 96.16it/s]\n 69%|██████▉ | 691/998 [00:06<00:03, 99.02it/s]\n 70%|███████ | 701/998 [00:06<00:03, 98.78it/s]\n 71%|███████▏ | 712/998 [00:06<00:02, 99.46it/s]\n 72%|███████▏ | 723/998 [00:07<00:02, 96.30it/s]\n 74%|███████▎ | 735/998 [00:07<00:02, 101.91it/s]\n 75%|███████▍ | 746/998 [00:07<00:02, 99.67it/s] \n 76%|███████▌ | 757/998 [00:07<00:02, 99.15it/s]\n 77%|███████▋ | 769/998 [00:07<00:02, 100.24it/s]\n 78%|███████▊ | 780/998 [00:07<00:02, 101.11it/s]\n 79%|███████▉ | 791/998 [00:07<00:02, 101.15it/s]\n 80%|████████ | 802/998 [00:07<00:01, 100.03it/s]\n 81%|████████▏ | 813/998 [00:07<00:01, 102.48it/s]\n 83%|████████▎ | 824/998 [00:08<00:01, 101.60it/s]\n 84%|████████▎ | 835/998 [00:08<00:01, 100.86it/s]\n 85%|████████▍ | 846/998 [00:08<00:01, 97.03it/s] \n 86%|████████▌ | 859/998 [00:08<00:01, 102.49it/s]\n 87%|████████▋ | 870/998 [00:08<00:01, 102.26it/s]\n 88%|████████▊ | 881/998 [00:08<00:01, 100.97it/s]\n 89%|████████▉ | 892/998 [00:08<00:01, 98.15it/s] \n 91%|█████████ | 905/998 [00:08<00:00, 99.31it/s]\n 92%|█████████▏| 916/998 [00:08<00:00, 101.69it/s]\n 93%|█████████▎| 927/998 [00:09<00:00, 98.90it/s] \n 94%|█████████▍| 938/998 [00:09<00:00, 99.81it/s]\n 95%|█████████▌| 949/998 [00:09<00:00, 100.86it/s]\n 96%|█████████▌| 960/998 [00:09<00:00, 98.59it/s] \n 97%|█████████▋| 971/998 [00:09<00:00, 99.88it/s]\n 99%|█████████▊| 984/998 [00:09<00:00, 108.13it/s]\n100%|█████████▉| 995/998 [00:09<00:00, 99.94it/s] \n100%|██████████| 998/998 [00:09<00:00, 102.60it/s]", "metrics": { "predict_time": 996.059709, "total_time": 996.048593 }, "output": "https://pbxt.replicate.delivery/HdQWz6F09e29WqfTn69kBfrlGySVQ4sSLd1iRVYsvAe3Ec8GB/output_2_2.mp4", "started_at": "2023-10-17T16:46:34.991912Z", "status": "succeeded", "urls": { "get": "https://api.replicate.com/v1/predictions/calyyidb3i6l4eydzqug6iaa6m", "cancel": "https://api.replicate.com/v1/predictions/calyyidb3i6l4eydzqug6iaa6m/cancel" }, "version": "550e576a484886c105a5cf4ff09ac746e691ab473d12a6afe14eed23bc3bbe42" }
Generated in0%| | 0/999 [00:00<?, ?it/s]/src/deforum_kandinsky/helpers/animation.py:322: FutureWarning: Setting an item of incompatible dtype is deprecated and will raise in a future error of pandas. Value 'euler' has dtype incompatible with float64, please explicitly cast to a compatible dtype first. key_frame_series[i] = numexpr.evaluate(value) if not is_single_string else value # workaround for values formatted like 0:("I am test") //used for sampler schedules /src/deforum_kandinsky/helpers/animation.py:332: FutureWarning: Series.interpolate with object dtype is deprecated and will raise in a future version. Call obj.infer_objects(copy=False) before interpolating instead. key_frame_series = key_frame_series.interpolate(method=interp_method.lower(), limit_direction='both') /src/deforum_kandinsky/helpers/render.py:242: FutureWarning: Setting an item of incompatible dtype is deprecated and will raise in a future error of pandas. Value 'a beautiful forest by Asher Brown Durand, trending on Artstation' has dtype incompatible with float64, please explicitly cast to a compatible dtype first. cond_prompt_series[int(i)] = prompt /src/deforum_kandinsky/helpers/render.py:248: FutureWarning: Setting an item of incompatible dtype is deprecated and will raise in a future error of pandas. Value 'low quality, bad image, cropped, out of frame' has dtype incompatible with float64, please explicitly cast to a compatible dtype first. uncond_prompt_series[int(i)] = prompt Using cache found in torch-cache/hub/rwightman_gen-efficientnet-pytorch_master Loading base model ()...Done. Removing last two layers (global_pool & classifier). Building Encoder-Decoder model..Done. 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 71.59it/s] 64%|██████▍ | 16/25 [00:00<00:00, 73.65it/s] 96%|█████████▌| 24/25 [00:00<00:00, 74.34it/s] 100%|██████████| 25/25 [00:00<00:00, 73.98it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 75.55it/s] 64%|██████▍ | 16/25 [00:00<00:00, 73.82it/s] 96%|█████████▌| 24/25 [00:00<00:00, 71.94it/s] 100%|██████████| 25/25 [00:00<00:00, 72.47it/s] 0%| | 0/80 [00:00<?, ?it/s] 1%|▏ | 1/80 [00:00<00:08, 9.21it/s] 4%|▍ | 3/80 [00:00<00:05, 14.89it/s] 6%|▋ | 5/80 [00:00<00:04, 16.68it/s] 9%|▉ | 7/80 [00:00<00:04, 17.51it/s] 11%|█▏ | 9/80 [00:00<00:03, 17.97it/s] 14%|█▍ | 11/80 [00:00<00:03, 18.22it/s] 16%|█▋ | 13/80 [00:00<00:03, 18.42it/s] 19%|█▉ | 15/80 [00:00<00:03, 18.52it/s] 21%|██▏ | 17/80 [00:00<00:03, 18.55it/s] 24%|██▍ | 19/80 [00:01<00:03, 18.64it/s] 26%|██▋ | 21/80 [00:01<00:03, 18.68it/s] 29%|██▉ | 23/80 [00:01<00:03, 18.71it/s] 31%|███▏ | 25/80 [00:01<00:02, 18.74it/s] 34%|███▍ | 27/80 [00:01<00:02, 18.75it/s] 36%|███▋ | 29/80 [00:01<00:02, 18.75it/s] 39%|███▉ | 31/80 [00:01<00:02, 18.76it/s] 41%|████▏ | 33/80 [00:01<00:02, 18.76it/s] 44%|████▍ | 35/80 [00:01<00:02, 18.75it/s] 46%|████▋ | 37/80 [00:02<00:02, 18.77it/s] 49%|████▉ | 39/80 [00:02<00:02, 18.80it/s] 51%|█████▏ | 41/80 [00:02<00:02, 18.82it/s] 54%|█████▍ | 43/80 [00:02<00:01, 18.84it/s] 56%|█████▋ | 45/80 [00:02<00:01, 18.83it/s] 59%|█████▉ | 47/80 [00:02<00:01, 18.84it/s] 61%|██████▏ | 49/80 [00:02<00:01, 18.81it/s] 64%|██████▍ | 51/80 [00:02<00:01, 18.82it/s] 66%|██████▋ | 53/80 [00:02<00:01, 18.83it/s] 69%|██████▉ | 55/80 [00:02<00:01, 18.83it/s] 71%|███████▏ | 57/80 [00:03<00:01, 18.84it/s] 74%|███████▍ | 59/80 [00:03<00:01, 18.83it/s] 76%|███████▋ | 61/80 [00:03<00:01, 18.81it/s] 79%|███████▉ | 63/80 [00:03<00:00, 18.83it/s] 81%|████████▏ | 65/80 [00:03<00:00, 18.83it/s] 84%|████████▍ | 67/80 [00:03<00:00, 18.85it/s] 86%|████████▋ | 69/80 [00:03<00:00, 18.85it/s] 89%|████████▉ | 71/80 [00:03<00:00, 18.87it/s] 91%|█████████▏| 73/80 [00:03<00:00, 18.84it/s] 94%|█████████▍| 75/80 [00:04<00:00, 18.84it/s] 96%|█████████▋| 77/80 [00:04<00:00, 18.86it/s] 99%|█████████▉| 79/80 [00:04<00:00, 18.87it/s] 100%|██████████| 80/80 [00:04<00:00, 18.57it/s] frame_idx: 2 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 18 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 frame_idx: 2 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 18 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 0%| | 1/999 [00:10<3:00:15, 10.84s/it] 0%| | 2/999 [00:10<1:15:24, 4.54s/it] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 74.20it/s] 64%|██████▍ | 16/25 [00:00<00:00, 74.58it/s] 96%|█████████▌| 24/25 [00:00<00:00, 74.77it/s] 100%|██████████| 25/25 [00:00<00:00, 74.63it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 72.66it/s] 64%|██████▍ | 16/25 [00:00<00:00, 73.88it/s] 96%|█████████▌| 24/25 [00:00<00:00, 74.24it/s] 100%|██████████| 25/25 [00:00<00:00, 74.05it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 18.94it/s] 40%|████ | 4/10 [00:00<00:00, 18.89it/s] 60%|██████ | 6/10 [00:00<00:00, 18.89it/s] 80%|████████ | 8/10 [00:00<00:00, 18.86it/s] 100%|██████████| 10/10 [00:00<00:00, 18.89it/s] 100%|██████████| 10/10 [00:00<00:00, 18.88it/s] frame_idx: 4 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 19 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 frame_idx: 4 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 19 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 0%| | 3/999 [00:12<54:24, 3.28s/it] 0%| | 4/999 [00:12<33:45, 2.04s/it] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 72.86it/s] 64%|██████▍ | 16/25 [00:00<00:00, 74.33it/s] 96%|█████████▌| 24/25 [00:00<00:00, 74.80it/s] 100%|██████████| 25/25 [00:00<00:00, 74.55it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 75.22it/s] 64%|██████▍ | 16/25 [00:00<00:00, 75.15it/s] 96%|█████████▌| 24/25 [00:00<00:00, 75.09it/s] 100%|██████████| 25/25 [00:00<00:00, 75.11it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 18.90it/s] 40%|████ | 4/10 [00:00<00:00, 18.88it/s] 60%|██████ | 6/10 [00:00<00:00, 18.86it/s] 80%|████████ | 8/10 [00:00<00:00, 18.86it/s] 100%|██████████| 10/10 [00:00<00:00, 18.84it/s] 100%|██████████| 10/10 [00:00<00:00, 18.85it/s] frame_idx: 6 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 20 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 frame_idx: 6 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 20 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 1%| | 5/999 [00:14<32:07, 1.94s/it] 1%| | 6/999 [00:14<21:55, 1.32s/it] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 71.57it/s] 64%|██████▍ | 16/25 [00:00<00:00, 71.02it/s] 96%|█████████▌| 24/25 [00:00<00:00, 70.37it/s] 100%|██████████| 25/25 [00:00<00:00, 70.58it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 74.39it/s] 64%|██████▍ | 16/25 [00:00<00:00, 74.56it/s] 96%|█████████▌| 24/25 [00:00<00:00, 74.85it/s] 100%|██████████| 25/25 [00:00<00:00, 74.73it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 19.00it/s] 40%|████ | 4/10 [00:00<00:00, 18.90it/s] 60%|██████ | 6/10 [00:00<00:00, 18.86it/s] 80%|████████ | 8/10 [00:00<00:00, 18.83it/s] 100%|██████████| 10/10 [00:00<00:00, 18.83it/s] 100%|██████████| 10/10 [00:00<00:00, 18.84it/s] frame_idx: 8 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 21 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 frame_idx: 8 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 21 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 1%| | 7/999 [00:16<24:29, 1.48s/it] 1%| | 8/999 [00:16<17:24, 1.05s/it] 0%| | 0/25 [00:00<?, ?it/s] 28%|██▊ | 7/25 [00:00<00:00, 65.91it/s] 56%|█████▌ | 14/25 [00:00<00:00, 67.18it/s] 84%|████████▍ | 21/25 [00:00<00:00, 67.39it/s] 100%|██████████| 25/25 [00:00<00:00, 67.91it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 74.89it/s] 64%|██████▍ | 16/25 [00:00<00:00, 74.82it/s] 96%|█████████▌| 24/25 [00:00<00:00, 71.89it/s] 100%|██████████| 25/25 [00:00<00:00, 72.48it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 18.95it/s] 40%|████ | 4/10 [00:00<00:00, 18.85it/s] 60%|██████ | 6/10 [00:00<00:00, 18.85it/s] 80%|████████ | 8/10 [00:00<00:00, 18.85it/s] 100%|██████████| 10/10 [00:00<00:00, 18.85it/s] 100%|██████████| 10/10 [00:00<00:00, 18.85it/s] frame_idx: 10 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 22 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 frame_idx: 10 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 22 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 1%| | 9/999 [00:18<21:18, 1.29s/it] 1%| | 10/999 [00:18<15:23, 1.07it/s] 0%| | 0/25 [00:00<?, ?it/s] 28%|██▊ | 7/25 [00:00<00:00, 67.56it/s] 56%|█████▌ | 14/25 [00:00<00:00, 68.06it/s] 84%|████████▍ | 21/25 [00:00<00:00, 68.42it/s] 100%|██████████| 25/25 [00:00<00:00, 68.09it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 72.63it/s] 64%|██████▍ | 16/25 [00:00<00:00, 73.73it/s] 96%|█████████▌| 24/25 [00:00<00:00, 71.19it/s] 100%|██████████| 25/25 [00:00<00:00, 71.58it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 18.90it/s] 40%|████ | 4/10 [00:00<00:00, 18.82it/s] 60%|██████ | 6/10 [00:00<00:00, 18.81it/s] 80%|████████ | 8/10 [00:00<00:00, 18.79it/s] 100%|██████████| 10/10 [00:00<00:00, 18.76it/s] 100%|██████████| 10/10 [00:00<00:00, 18.77it/s] frame_idx: 12 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 23 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 frame_idx: 12 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 23 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 1%| | 11/999 [00:20<19:53, 1.21s/it] 1%| | 12/999 [00:20<14:31, 1.13it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 73.37it/s] 64%|██████▍ | 16/25 [00:00<00:00, 71.41it/s] 96%|█████████▌| 24/25 [00:00<00:00, 69.66it/s] 100%|██████████| 25/25 [00:00<00:00, 70.11it/s] 0%| | 0/25 [00:00<?, ?it/s] 28%|██▊ | 7/25 [00:00<00:00, 68.77it/s] 56%|█████▌ | 14/25 [00:00<00:00, 68.52it/s] 84%|████████▍ | 21/25 [00:00<00:00, 67.98it/s] 100%|██████████| 25/25 [00:00<00:00, 68.91it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 18.91it/s] 40%|████ | 4/10 [00:00<00:00, 18.85it/s] 60%|██████ | 6/10 [00:00<00:00, 18.79it/s] 80%|████████ | 8/10 [00:00<00:00, 18.78it/s] 100%|██████████| 10/10 [00:00<00:00, 18.77it/s] 100%|██████████| 10/10 [00:00<00:00, 18.78it/s] frame_idx: 14 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 24 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 frame_idx: 14 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 24 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 1%|▏ | 13/999 [00:22<19:13, 1.17s/it] 1%|▏ | 14/999 [00:22<14:05, 1.17it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 71.71it/s] 64%|██████▍ | 16/25 [00:00<00:00, 69.53it/s] 92%|█████████▏| 23/25 [00:00<00:00, 69.22it/s] 100%|██████████| 25/25 [00:00<00:00, 69.39it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 75.05it/s] 64%|██████▍ | 16/25 [00:00<00:00, 74.54it/s] 96%|█████████▌| 24/25 [00:00<00:00, 74.56it/s] 100%|██████████| 25/25 [00:00<00:00, 74.52it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 18.93it/s] 40%|████ | 4/10 [00:00<00:00, 18.87it/s] 60%|██████ | 6/10 [00:00<00:00, 18.85it/s] 80%|████████ | 8/10 [00:00<00:00, 18.85it/s] 100%|██████████| 10/10 [00:00<00:00, 18.84it/s] 100%|██████████| 10/10 [00:00<00:00, 18.84it/s] frame_idx: 16 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 25 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 frame_idx: 16 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 25 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 2%|▏ | 15/999 [00:24<18:44, 1.14s/it] 2%|▏ | 16/999 [00:24<13:45, 1.19it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 73.75it/s] 64%|██████▍ | 16/25 [00:00<00:00, 71.51it/s] 96%|█████████▌| 24/25 [00:00<00:00, 70.03it/s] 100%|██████████| 25/25 [00:00<00:00, 70.55it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 73.94it/s] 64%|██████▍ | 16/25 [00:00<00:00, 70.06it/s] 96%|█████████▌| 24/25 [00:00<00:00, 69.71it/s] 100%|██████████| 25/25 [00:00<00:00, 70.07it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 18.86it/s] 40%|████ | 4/10 [00:00<00:00, 18.86it/s] 60%|██████ | 6/10 [00:00<00:00, 18.85it/s] 80%|████████ | 8/10 [00:00<00:00, 18.79it/s] 100%|██████████| 10/10 [00:00<00:00, 18.80it/s] 100%|██████████| 10/10 [00:00<00:00, 18.81it/s] frame_idx: 18 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 26 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 frame_idx: 18 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 26 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 2%|▏ | 17/999 [00:26<18:33, 1.13s/it] 2%|▏ | 18/999 [00:26<13:38, 1.20it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 74.37it/s] 64%|██████▍ | 16/25 [00:00<00:00, 74.54it/s] 96%|█████████▌| 24/25 [00:00<00:00, 72.51it/s] 100%|██████████| 25/25 [00:00<00:00, 72.82it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 72.92it/s] 64%|██████▍ | 16/25 [00:00<00:00, 74.20it/s] 96%|█████████▌| 24/25 [00:00<00:00, 74.59it/s] 100%|██████████| 25/25 [00:00<00:00, 74.38it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 18.99it/s] 40%|████ | 4/10 [00:00<00:00, 18.93it/s] 60%|██████ | 6/10 [00:00<00:00, 18.89it/s] 80%|████████ | 8/10 [00:00<00:00, 18.85it/s] 100%|██████████| 10/10 [00:00<00:00, 18.80it/s] 100%|██████████| 10/10 [00:00<00:00, 18.84it/s] frame_idx: 20 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 27 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 frame_idx: 20 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 27 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 2%|▏ | 19/999 [00:28<18:16, 1.12s/it] 2%|▏ | 20/999 [00:28<13:26, 1.21it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 73.62it/s] 64%|██████▍ | 16/25 [00:00<00:00, 74.18it/s] 96%|█████████▌| 24/25 [00:00<00:00, 74.20it/s] 100%|██████████| 25/25 [00:00<00:00, 74.12it/s] 0%| | 0/25 [00:00<?, ?it/s] 28%|██▊ | 7/25 [00:00<00:00, 67.13it/s] 56%|█████▌ | 14/25 [00:00<00:00, 68.15it/s] 84%|████████▍ | 21/25 [00:00<00:00, 68.37it/s] 100%|██████████| 25/25 [00:00<00:00, 69.04it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 18.86it/s] 40%|████ | 4/10 [00:00<00:00, 18.84it/s] 60%|██████ | 6/10 [00:00<00:00, 18.81it/s] 80%|████████ | 8/10 [00:00<00:00, 18.81it/s] 100%|██████████| 10/10 [00:00<00:00, 18.81it/s] 100%|██████████| 10/10 [00:00<00:00, 18.81it/s] frame_idx: 22 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 28 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 frame_idx: 22 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 28 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 2%|▏ | 21/999 [00:30<18:14, 1.12s/it] 2%|▏ | 22/999 [00:30<13:23, 1.22it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 74.19it/s] 64%|██████▍ | 16/25 [00:00<00:00, 73.30it/s] 96%|█████████▌| 24/25 [00:00<00:00, 73.80it/s] 100%|██████████| 25/25 [00:00<00:00, 73.79it/s] 0%| | 0/25 [00:00<?, ?it/s] 28%|██▊ | 7/25 [00:00<00:00, 67.77it/s] 60%|██████ | 15/25 [00:00<00:00, 72.13it/s] 92%|█████████▏| 23/25 [00:00<00:00, 73.34it/s] 100%|██████████| 25/25 [00:00<00:00, 72.79it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 18.91it/s] 40%|████ | 4/10 [00:00<00:00, 18.86it/s] 60%|██████ | 6/10 [00:00<00:00, 18.86it/s] 80%|████████ | 8/10 [00:00<00:00, 18.85it/s] 100%|██████████| 10/10 [00:00<00:00, 18.83it/s] 100%|██████████| 10/10 [00:00<00:00, 18.84it/s] frame_idx: 24 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 29 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 frame_idx: 24 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 29 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 2%|▏ | 23/999 [00:32<18:08, 1.11s/it] 2%|▏ | 24/999 [00:32<13:19, 1.22it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 73.52it/s] 64%|██████▍ | 16/25 [00:00<00:00, 74.28it/s] 96%|█████████▌| 24/25 [00:00<00:00, 74.40it/s] 100%|██████████| 25/25 [00:00<00:00, 74.32it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 72.93it/s] 64%|██████▍ | 16/25 [00:00<00:00, 70.58it/s] 96%|█████████▌| 24/25 [00:00<00:00, 72.58it/s] 100%|██████████| 25/25 [00:00<00:00, 72.38it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 18.88it/s] 40%|████ | 4/10 [00:00<00:00, 18.82it/s] 60%|██████ | 6/10 [00:00<00:00, 18.79it/s] 80%|████████ | 8/10 [00:00<00:00, 18.77it/s] 100%|██████████| 10/10 [00:00<00:00, 18.77it/s] 100%|██████████| 10/10 [00:00<00:00, 18.78it/s] frame_idx: 26 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 30 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 frame_idx: 26 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 30 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 3%|▎ | 25/999 [00:34<18:00, 1.11s/it] 3%|▎ | 26/999 [00:34<13:14, 1.22it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 73.85it/s] 64%|██████▍ | 16/25 [00:00<00:00, 73.89it/s] 96%|█████████▌| 24/25 [00:00<00:00, 73.55it/s] 100%|██████████| 25/25 [00:00<00:00, 73.64it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 74.33it/s] 64%|██████▍ | 16/25 [00:00<00:00, 74.16it/s] 96%|█████████▌| 24/25 [00:00<00:00, 70.09it/s] 100%|██████████| 25/25 [00:00<00:00, 71.07it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 18.98it/s] 40%|████ | 4/10 [00:00<00:00, 18.88it/s] 60%|██████ | 6/10 [00:00<00:00, 18.81it/s] 80%|████████ | 8/10 [00:00<00:00, 18.83it/s] 100%|██████████| 10/10 [00:00<00:00, 18.79it/s] 100%|██████████| 10/10 [00:00<00:00, 18.81it/s] frame_idx: 28 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 31 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 frame_idx: 28 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 31 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 3%|▎ | 27/999 [00:36<18:03, 1.11s/it] 3%|▎ | 28/999 [00:36<13:17, 1.22it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 74.04it/s] 64%|██████▍ | 16/25 [00:00<00:00, 74.39it/s] 96%|█████████▌| 24/25 [00:00<00:00, 74.68it/s] 100%|██████████| 25/25 [00:00<00:00, 74.61it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 75.02it/s] 64%|██████▍ | 16/25 [00:00<00:00, 74.40it/s] 96%|█████████▌| 24/25 [00:00<00:00, 72.88it/s] 100%|██████████| 25/25 [00:00<00:00, 73.21it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 18.95it/s] 40%|████ | 4/10 [00:00<00:00, 18.82it/s] 60%|██████ | 6/10 [00:00<00:00, 18.83it/s] 80%|████████ | 8/10 [00:00<00:00, 18.82it/s] 100%|██████████| 10/10 [00:00<00:00, 18.82it/s] 100%|██████████| 10/10 [00:00<00:00, 18.82it/s] frame_idx: 30 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 32 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 frame_idx: 30 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 32 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 3%|▎ | 29/999 [00:37<17:56, 1.11s/it] 3%|▎ | 30/999 [00:38<13:13, 1.22it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 73.60it/s] 64%|██████▍ | 16/25 [00:00<00:00, 74.21it/s] 96%|█████████▌| 24/25 [00:00<00:00, 74.47it/s] 100%|██████████| 25/25 [00:00<00:00, 74.32it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 74.82it/s] 64%|██████▍ | 16/25 [00:00<00:00, 74.78it/s] 96%|█████████▌| 24/25 [00:00<00:00, 73.43it/s] 100%|██████████| 25/25 [00:00<00:00, 73.59it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 18.88it/s] 40%|████ | 4/10 [00:00<00:00, 18.84it/s] 60%|██████ | 6/10 [00:00<00:00, 18.83it/s] 80%|████████ | 8/10 [00:00<00:00, 18.82it/s] 100%|██████████| 10/10 [00:00<00:00, 18.81it/s] 100%|██████████| 10/10 [00:00<00:00, 18.82it/s] frame_idx: 32 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 33 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 frame_idx: 32 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 33 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 3%|▎ | 31/999 [00:39<17:53, 1.11s/it] 3%|▎ | 32/999 [00:39<13:08, 1.23it/s] 0%| | 0/25 [00:00<?, ?it/s] 28%|██▊ | 7/25 [00:00<00:00, 67.37it/s] 56%|█████▌ | 14/25 [00:00<00:00, 68.26it/s] 84%|████████▍ | 21/25 [00:00<00:00, 66.23it/s] 100%|██████████| 25/25 [00:00<00:00, 66.73it/s] 0%| | 0/25 [00:00<?, ?it/s] 28%|██▊ | 7/25 [00:00<00:00, 68.77it/s] 56%|█████▌ | 14/25 [00:00<00:00, 69.03it/s] 84%|████████▍ | 21/25 [00:00<00:00, 68.89it/s] 100%|██████████| 25/25 [00:00<00:00, 68.73it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 18.88it/s] 40%|████ | 4/10 [00:00<00:00, 18.88it/s] 60%|██████ | 6/10 [00:00<00:00, 18.83it/s] 80%|████████ | 8/10 [00:00<00:00, 18.82it/s] 100%|██████████| 10/10 [00:00<00:00, 18.84it/s] 100%|██████████| 10/10 [00:00<00:00, 18.84it/s] frame_idx: 34 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 34 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 frame_idx: 34 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 34 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 3%|▎ | 33/999 [00:41<18:06, 1.13s/it] 3%|▎ | 34/999 [00:41<13:19, 1.21it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 74.05it/s] 64%|██████▍ | 16/25 [00:00<00:00, 74.33it/s] 96%|█████████▌| 24/25 [00:00<00:00, 74.47it/s] 100%|██████████| 25/25 [00:00<00:00, 74.41it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 74.79it/s] 64%|██████▍ | 16/25 [00:00<00:00, 74.80it/s] 96%|█████████▌| 24/25 [00:00<00:00, 74.57it/s] 100%|██████████| 25/25 [00:00<00:00, 74.64it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 18.89it/s] 40%|████ | 4/10 [00:00<00:00, 18.81it/s] 60%|██████ | 6/10 [00:00<00:00, 18.78it/s] 80%|████████ | 8/10 [00:00<00:00, 18.78it/s] 100%|██████████| 10/10 [00:00<00:00, 18.76it/s] 100%|██████████| 10/10 [00:00<00:00, 18.77it/s] frame_idx: 36 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 35 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 frame_idx: 36 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 35 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 4%|▎ | 35/999 [00:43<17:54, 1.11s/it] 4%|▎ | 36/999 [00:43<13:09, 1.22it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 73.68it/s] 64%|██████▍ | 16/25 [00:00<00:00, 74.33it/s] 96%|█████████▌| 24/25 [00:00<00:00, 74.14it/s] 100%|██████████| 25/25 [00:00<00:00, 74.16it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 74.47it/s] 64%|██████▍ | 16/25 [00:00<00:00, 74.61it/s] 96%|█████████▌| 24/25 [00:00<00:00, 74.64it/s] 100%|██████████| 25/25 [00:00<00:00, 74.61it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 18.84it/s] 40%|████ | 4/10 [00:00<00:00, 18.74it/s] 60%|██████ | 6/10 [00:00<00:00, 18.79it/s] 80%|████████ | 8/10 [00:00<00:00, 18.78it/s] 100%|██████████| 10/10 [00:00<00:00, 18.75it/s] 100%|██████████| 10/10 [00:00<00:00, 18.76it/s] frame_idx: 38 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 36 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 frame_idx: 38 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 36 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 4%|▎ | 37/999 [00:45<17:47, 1.11s/it] 4%|▍ | 38/999 [00:45<13:06, 1.22it/s] 0%| | 0/25 [00:00<?, ?it/s] 28%|██▊ | 7/25 [00:00<00:00, 68.81it/s] 56%|█████▌ | 14/25 [00:00<00:00, 69.36it/s] 88%|████████▊ | 22/25 [00:00<00:00, 70.35it/s] 100%|██████████| 25/25 [00:00<00:00, 70.01it/s] 0%| | 0/25 [00:00<?, ?it/s] 28%|██▊ | 7/25 [00:00<00:00, 67.84it/s] 60%|██████ | 15/25 [00:00<00:00, 70.53it/s] 92%|█████████▏| 23/25 [00:00<00:00, 72.27it/s] 100%|██████████| 25/25 [00:00<00:00, 71.27it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 18.87it/s] 40%|████ | 4/10 [00:00<00:00, 18.76it/s] 60%|██████ | 6/10 [00:00<00:00, 18.76it/s] 80%|████████ | 8/10 [00:00<00:00, 18.76it/s] 100%|██████████| 10/10 [00:00<00:00, 18.75it/s] 100%|██████████| 10/10 [00:00<00:00, 18.75it/s] frame_idx: 40 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 37 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 frame_idx: 40 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 37 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 4%|▍ | 39/999 [00:47<17:56, 1.12s/it] 4%|▍ | 40/999 [00:47<13:11, 1.21it/s] 0%| | 0/25 [00:00<?, ?it/s] 28%|██▊ | 7/25 [00:00<00:00, 66.72it/s] 60%|██████ | 15/25 [00:00<00:00, 68.87it/s] 88%|████████▊ | 22/25 [00:00<00:00, 69.29it/s] 100%|██████████| 25/25 [00:00<00:00, 69.10it/s] 0%| | 0/25 [00:00<?, ?it/s] 28%|██▊ | 7/25 [00:00<00:00, 69.81it/s] 60%|██████ | 15/25 [00:00<00:00, 71.90it/s] 92%|█████████▏| 23/25 [00:00<00:00, 71.54it/s] 100%|██████████| 25/25 [00:00<00:00, 71.22it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 18.89it/s] 40%|████ | 4/10 [00:00<00:00, 18.78it/s] 60%|██████ | 6/10 [00:00<00:00, 18.74it/s] 80%|████████ | 8/10 [00:00<00:00, 18.76it/s] 100%|██████████| 10/10 [00:00<00:00, 18.75it/s] 100%|██████████| 10/10 [00:00<00:00, 18.76it/s] frame_idx: 42 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 38 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 frame_idx: 42 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 38 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 4%|▍ | 41/999 [00:49<17:59, 1.13s/it] 4%|▍ | 42/999 [00:49<13:14, 1.21it/s] 0%| | 0/25 [00:00<?, ?it/s] 28%|██▊ | 7/25 [00:00<00:00, 68.28it/s] 60%|██████ | 15/25 [00:00<00:00, 71.12it/s] 92%|█████████▏| 23/25 [00:00<00:00, 71.57it/s] 100%|██████████| 25/25 [00:00<00:00, 71.30it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 71.29it/s] 64%|██████▍ | 16/25 [00:00<00:00, 73.06it/s] 96%|█████████▌| 24/25 [00:00<00:00, 72.03it/s] 100%|██████████| 25/25 [00:00<00:00, 71.83it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 18.88it/s] 40%|████ | 4/10 [00:00<00:00, 18.84it/s] 60%|██████ | 6/10 [00:00<00:00, 18.83it/s] 80%|████████ | 8/10 [00:00<00:00, 18.82it/s] 100%|██████████| 10/10 [00:00<00:00, 18.80it/s] 100%|██████████| 10/10 [00:00<00:00, 18.81it/s] frame_idx: 44 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 39 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 frame_idx: 44 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 39 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 4%|▍ | 43/999 [00:51<17:54, 1.12s/it] 4%|▍ | 44/999 [00:51<13:09, 1.21it/s] 0%| | 0/25 [00:00<?, ?it/s] 28%|██▊ | 7/25 [00:00<00:00, 68.75it/s] 56%|█████▌ | 14/25 [00:00<00:00, 69.40it/s] 88%|████████▊ | 22/25 [00:00<00:00, 71.78it/s] 100%|██████████| 25/25 [00:00<00:00, 71.60it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 75.66it/s] 64%|██████▍ | 16/25 [00:00<00:00, 75.50it/s] 96%|█████████▌| 24/25 [00:00<00:00, 75.20it/s] 100%|██████████| 25/25 [00:00<00:00, 75.32it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 18.89it/s] 40%|████ | 4/10 [00:00<00:00, 18.79it/s] 60%|██████ | 6/10 [00:00<00:00, 18.70it/s] 80%|████████ | 8/10 [00:00<00:00, 18.69it/s] 100%|██████████| 10/10 [00:00<00:00, 18.72it/s] 100%|██████████| 10/10 [00:00<00:00, 18.73it/s] frame_idx: 46 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 40 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 frame_idx: 46 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 40 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 5%|▍ | 45/999 [00:53<17:44, 1.12s/it] 5%|▍ | 46/999 [00:53<13:05, 1.21it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 71.99it/s] 64%|██████▍ | 16/25 [00:00<00:00, 71.16it/s] 96%|█████████▌| 24/25 [00:00<00:00, 70.83it/s] 100%|██████████| 25/25 [00:00<00:00, 70.99it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 74.79it/s] 64%|██████▍ | 16/25 [00:00<00:00, 74.80it/s] 96%|█████████▌| 24/25 [00:00<00:00, 74.97it/s] 100%|██████████| 25/25 [00:00<00:00, 74.86it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 18.87it/s] 40%|████ | 4/10 [00:00<00:00, 18.74it/s] 60%|██████ | 6/10 [00:00<00:00, 18.75it/s] 80%|████████ | 8/10 [00:00<00:00, 18.62it/s] 100%|██████████| 10/10 [00:00<00:00, 18.68it/s] 100%|██████████| 10/10 [00:00<00:00, 18.69it/s] frame_idx: 48 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 41 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 frame_idx: 48 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 41 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 5%|▍ | 47/999 [00:55<17:43, 1.12s/it] 5%|▍ | 48/999 [00:55<13:01, 1.22it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 74.35it/s] 64%|██████▍ | 16/25 [00:00<00:00, 72.75it/s] 96%|█████████▌| 24/25 [00:00<00:00, 72.08it/s] 100%|██████████| 25/25 [00:00<00:00, 72.26it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 75.09it/s] 64%|██████▍ | 16/25 [00:00<00:00, 72.19it/s] 96%|█████████▌| 24/25 [00:00<00:00, 73.21it/s] 100%|██████████| 25/25 [00:00<00:00, 72.99it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 18.88it/s] 40%|████ | 4/10 [00:00<00:00, 18.70it/s] 60%|██████ | 6/10 [00:00<00:00, 18.67it/s] 80%|████████ | 8/10 [00:00<00:00, 18.65it/s] 100%|██████████| 10/10 [00:00<00:00, 18.54it/s] 100%|██████████| 10/10 [00:00<00:00, 18.60it/s] frame_idx: 50 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 42 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 frame_idx: 50 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 42 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 5%|▍ | 49/999 [00:57<17:40, 1.12s/it] 5%|▌ | 50/999 [00:57<13:01, 1.21it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 73.44it/s] 64%|██████▍ | 16/25 [00:00<00:00, 72.08it/s] 96%|█████████▌| 24/25 [00:00<00:00, 70.07it/s] 100%|██████████| 25/25 [00:00<00:00, 70.54it/s] 0%| | 0/25 [00:00<?, ?it/s] 28%|██▊ | 7/25 [00:00<00:00, 68.89it/s] 60%|██████ | 15/25 [00:00<00:00, 72.12it/s] 92%|█████████▏| 23/25 [00:00<00:00, 72.84it/s] 100%|██████████| 25/25 [00:00<00:00, 72.20it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 18.88it/s] 40%|████ | 4/10 [00:00<00:00, 18.78it/s] 60%|██████ | 6/10 [00:00<00:00, 18.73it/s] 80%|████████ | 8/10 [00:00<00:00, 18.71it/s] 100%|██████████| 10/10 [00:00<00:00, 18.70it/s] 100%|██████████| 10/10 [00:00<00:00, 18.72it/s] frame_idx: 52 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 43 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 frame_idx: 52 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 43 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 5%|▌ | 51/999 [00:59<17:44, 1.12s/it] 5%|▌ | 52/999 [00:59<13:02, 1.21it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 73.87it/s] 64%|██████▍ | 16/25 [00:00<00:00, 74.15it/s] 96%|█████████▌| 24/25 [00:00<00:00, 73.46it/s] 100%|██████████| 25/25 [00:00<00:00, 73.19it/s] 0%| | 0/25 [00:00<?, ?it/s] 28%|██▊ | 7/25 [00:00<00:00, 68.19it/s] 60%|██████ | 15/25 [00:00<00:00, 72.00it/s] 92%|█████████▏| 23/25 [00:00<00:00, 73.14it/s] 100%|██████████| 25/25 [00:00<00:00, 72.59it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 18.85it/s] 40%|████ | 4/10 [00:00<00:00, 18.80it/s] 60%|██████ | 6/10 [00:00<00:00, 18.74it/s] 80%|████████ | 8/10 [00:00<00:00, 18.72it/s] 100%|██████████| 10/10 [00:00<00:00, 18.71it/s] 100%|██████████| 10/10 [00:00<00:00, 18.73it/s] frame_idx: 54 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 44 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 frame_idx: 54 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 44 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 5%|▌ | 53/999 [01:01<17:40, 1.12s/it] 5%|▌ | 54/999 [01:01<13:01, 1.21it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 72.21it/s] 64%|██████▍ | 16/25 [00:00<00:00, 71.95it/s] 96%|█████████▌| 24/25 [00:00<00:00, 72.59it/s] 100%|██████████| 25/25 [00:00<00:00, 72.43it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 71.89it/s] 64%|██████▍ | 16/25 [00:00<00:00, 72.67it/s] 96%|█████████▌| 24/25 [00:00<00:00, 72.33it/s] 100%|██████████| 25/25 [00:00<00:00, 72.34it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 18.70it/s] 40%|████ | 4/10 [00:00<00:00, 18.56it/s] 60%|██████ | 6/10 [00:00<00:00, 18.63it/s] 80%|████████ | 8/10 [00:00<00:00, 18.68it/s] 100%|██████████| 10/10 [00:00<00:00, 18.65it/s] 100%|██████████| 10/10 [00:00<00:00, 18.64it/s] frame_idx: 56 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 45 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 frame_idx: 56 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 45 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 6%|▌ | 55/999 [01:03<17:37, 1.12s/it] 6%|▌ | 56/999 [01:03<12:58, 1.21it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 74.13it/s] 64%|██████▍ | 16/25 [00:00<00:00, 74.42it/s] 96%|█████████▌| 24/25 [00:00<00:00, 74.11it/s] 100%|██████████| 25/25 [00:00<00:00, 73.74it/s] 0%| | 0/25 [00:00<?, ?it/s] 28%|██▊ | 7/25 [00:00<00:00, 69.61it/s] 60%|██████ | 15/25 [00:00<00:00, 70.37it/s] 92%|█████████▏| 23/25 [00:00<00:00, 71.69it/s] 100%|██████████| 25/25 [00:00<00:00, 71.41it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 18.83it/s] 40%|████ | 4/10 [00:00<00:00, 18.66it/s] 60%|██████ | 6/10 [00:00<00:00, 18.62it/s] 80%|████████ | 8/10 [00:00<00:00, 18.61it/s] 100%|██████████| 10/10 [00:00<00:00, 18.63it/s] 100%|██████████| 10/10 [00:00<00:00, 18.63it/s] frame_idx: 58 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 46 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 frame_idx: 58 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 46 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 6%|▌ | 57/999 [01:05<17:34, 1.12s/it] 6%|▌ | 58/999 [01:05<12:56, 1.21it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 73.50it/s] 64%|██████▍ | 16/25 [00:00<00:00, 73.94it/s] 96%|█████████▌| 24/25 [00:00<00:00, 73.78it/s] 100%|██████████| 25/25 [00:00<00:00, 73.72it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 72.19it/s] 64%|██████▍ | 16/25 [00:00<00:00, 72.28it/s] 96%|█████████▌| 24/25 [00:00<00:00, 72.93it/s] 100%|██████████| 25/25 [00:00<00:00, 72.51it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 18.86it/s] 40%|████ | 4/10 [00:00<00:00, 18.77it/s] 60%|██████ | 6/10 [00:00<00:00, 18.70it/s] 80%|████████ | 8/10 [00:00<00:00, 18.68it/s] 100%|██████████| 10/10 [00:00<00:00, 18.68it/s] 100%|██████████| 10/10 [00:00<00:00, 18.69it/s] frame_idx: 60 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 47 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 frame_idx: 60 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 47 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 6%|▌ | 59/999 [01:07<17:32, 1.12s/it] 6%|▌ | 60/999 [01:07<12:53, 1.21it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 73.52it/s] 64%|██████▍ | 16/25 [00:00<00:00, 73.54it/s] 96%|█████████▌| 24/25 [00:00<00:00, 73.97it/s] 100%|██████████| 25/25 [00:00<00:00, 73.62it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 71.90it/s] 64%|██████▍ | 16/25 [00:00<00:00, 69.41it/s] 92%|█████████▏| 23/25 [00:00<00:00, 69.00it/s] 100%|██████████| 25/25 [00:00<00:00, 69.19it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 18.85it/s] 40%|████ | 4/10 [00:00<00:00, 18.73it/s] 60%|██████ | 6/10 [00:00<00:00, 18.71it/s] 80%|████████ | 8/10 [00:00<00:00, 18.69it/s] 100%|██████████| 10/10 [00:00<00:00, 18.66it/s] 100%|██████████| 10/10 [00:00<00:00, 18.68it/s] frame_idx: 62 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 48 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 frame_idx: 62 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 48 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 6%|▌ | 61/999 [01:09<17:30, 1.12s/it] 6%|▌ | 62/999 [01:09<12:52, 1.21it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 73.06it/s] 64%|██████▍ | 16/25 [00:00<00:00, 73.93it/s] 96%|█████████▌| 24/25 [00:00<00:00, 73.97it/s] 100%|██████████| 25/25 [00:00<00:00, 73.75it/s] 0%| | 0/25 [00:00<?, ?it/s] 28%|██▊ | 7/25 [00:00<00:00, 69.22it/s] 56%|█████▌ | 14/25 [00:00<00:00, 69.54it/s] 84%|████████▍ | 21/25 [00:00<00:00, 69.69it/s] 100%|██████████| 25/25 [00:00<00:00, 69.71it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 18.83it/s] 40%|████ | 4/10 [00:00<00:00, 18.78it/s] 60%|██████ | 6/10 [00:00<00:00, 18.72it/s] 80%|████████ | 8/10 [00:00<00:00, 18.70it/s] 100%|██████████| 10/10 [00:00<00:00, 18.67it/s] 100%|██████████| 10/10 [00:00<00:00, 18.69it/s] frame_idx: 64 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 49 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 frame_idx: 64 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 49 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 6%|▋ | 63/999 [01:10<17:33, 1.13s/it] 6%|▋ | 64/999 [01:11<12:54, 1.21it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 73.10it/s] 64%|██████▍ | 16/25 [00:00<00:00, 73.55it/s] 96%|█████████▌| 24/25 [00:00<00:00, 72.77it/s] 100%|██████████| 25/25 [00:00<00:00, 72.48it/s] 0%| | 0/25 [00:00<?, ?it/s] 28%|██▊ | 7/25 [00:00<00:00, 68.73it/s] 56%|█████▌ | 14/25 [00:00<00:00, 68.38it/s] 84%|████████▍ | 21/25 [00:00<00:00, 68.11it/s] 100%|██████████| 25/25 [00:00<00:00, 69.01it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 18.85it/s] 40%|████ | 4/10 [00:00<00:00, 18.62it/s] 60%|██████ | 6/10 [00:00<00:00, 18.67it/s] 80%|████████ | 8/10 [00:00<00:00, 18.66it/s] 100%|██████████| 10/10 [00:00<00:00, 18.68it/s] 100%|██████████| 10/10 [00:00<00:00, 18.67it/s] frame_idx: 66 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 50 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 frame_idx: 66 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 50 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 7%|▋ | 65/999 [01:12<17:36, 1.13s/it] 7%|▋ | 66/999 [01:13<12:57, 1.20it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 73.73it/s] 64%|██████▍ | 16/25 [00:00<00:00, 73.40it/s] 96%|█████████▌| 24/25 [00:00<00:00, 73.47it/s] 100%|██████████| 25/25 [00:00<00:00, 73.41it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 71.61it/s] 64%|██████▍ | 16/25 [00:00<00:00, 71.94it/s] 96%|█████████▌| 24/25 [00:00<00:00, 70.64it/s] 100%|██████████| 25/25 [00:00<00:00, 70.59it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 18.84it/s] 40%|████ | 4/10 [00:00<00:00, 18.74it/s] 60%|██████ | 6/10 [00:00<00:00, 18.70it/s] 80%|████████ | 8/10 [00:00<00:00, 18.66it/s] 100%|██████████| 10/10 [00:00<00:00, 18.63it/s] 100%|██████████| 10/10 [00:00<00:00, 18.66it/s] frame_idx: 68 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 51 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 frame_idx: 68 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 51 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 7%|▋ | 67/999 [01:14<17:32, 1.13s/it] 7%|▋ | 68/999 [01:15<12:54, 1.20it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 73.17it/s] 64%|██████▍ | 16/25 [00:00<00:00, 70.31it/s] 96%|█████████▌| 24/25 [00:00<00:00, 69.52it/s] 100%|██████████| 25/25 [00:00<00:00, 69.74it/s] 0%| | 0/25 [00:00<?, ?it/s] 28%|██▊ | 7/25 [00:00<00:00, 69.71it/s] 60%|██████ | 15/25 [00:00<00:00, 72.25it/s] 92%|█████████▏| 23/25 [00:00<00:00, 69.79it/s] 100%|██████████| 25/25 [00:00<00:00, 69.93it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 18.86it/s] 40%|████ | 4/10 [00:00<00:00, 18.75it/s] 60%|██████ | 6/10 [00:00<00:00, 18.69it/s] 80%|████████ | 8/10 [00:00<00:00, 18.66it/s] 100%|██████████| 10/10 [00:00<00:00, 18.66it/s] 100%|██████████| 10/10 [00:00<00:00, 18.68it/s] frame_idx: 70 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 52 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 frame_idx: 70 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 52 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 7%|▋ | 69/999 [01:16<17:35, 1.13s/it] 7%|▋ | 70/999 [01:17<12:55, 1.20it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 73.06it/s] 64%|██████▍ | 16/25 [00:00<00:00, 73.64it/s] 96%|█████████▌| 24/25 [00:00<00:00, 73.80it/s] 100%|██████████| 25/25 [00:00<00:00, 73.69it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 74.44it/s] 64%|██████▍ | 16/25 [00:00<00:00, 74.35it/s] 96%|█████████▌| 24/25 [00:00<00:00, 73.93it/s] 100%|██████████| 25/25 [00:00<00:00, 73.73it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 18.84it/s] 40%|████ | 4/10 [00:00<00:00, 18.67it/s] 60%|██████ | 6/10 [00:00<00:00, 18.66it/s] 80%|████████ | 8/10 [00:00<00:00, 18.67it/s] 100%|██████████| 10/10 [00:00<00:00, 18.67it/s] 100%|██████████| 10/10 [00:00<00:00, 18.67it/s] frame_idx: 72 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 53 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 frame_idx: 72 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 53 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 7%|▋ | 71/999 [01:18<17:21, 1.12s/it] 7%|▋ | 72/999 [01:18<12:47, 1.21it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 73.83it/s] 64%|██████▍ | 16/25 [00:00<00:00, 73.85it/s] 96%|█████████▌| 24/25 [00:00<00:00, 73.57it/s] 100%|██████████| 25/25 [00:00<00:00, 73.57it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 73.98it/s] 64%|██████▍ | 16/25 [00:00<00:00, 74.31it/s] 96%|█████████▌| 24/25 [00:00<00:00, 74.37it/s] 100%|██████████| 25/25 [00:00<00:00, 74.29it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 18.69it/s] 40%|████ | 4/10 [00:00<00:00, 18.72it/s] 60%|██████ | 6/10 [00:00<00:00, 18.71it/s] 80%|████████ | 8/10 [00:00<00:00, 18.71it/s] 100%|██████████| 10/10 [00:00<00:00, 18.72it/s] 100%|██████████| 10/10 [00:00<00:00, 18.71it/s] frame_idx: 74 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 54 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 frame_idx: 74 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 54 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 7%|▋ | 73/999 [01:20<17:18, 1.12s/it] 7%|▋ | 74/999 [01:20<12:44, 1.21it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 71.94it/s] 64%|██████▍ | 16/25 [00:00<00:00, 72.97it/s] 96%|█████████▌| 24/25 [00:00<00:00, 73.49it/s] 100%|██████████| 25/25 [00:00<00:00, 73.18it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 74.07it/s] 64%|██████▍ | 16/25 [00:00<00:00, 72.77it/s] 96%|█████████▌| 24/25 [00:00<00:00, 73.14it/s] 100%|██████████| 25/25 [00:00<00:00, 73.12it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 18.70it/s] 40%|████ | 4/10 [00:00<00:00, 18.65it/s] 60%|██████ | 6/10 [00:00<00:00, 18.59it/s] 80%|████████ | 8/10 [00:00<00:00, 18.59it/s] 100%|██████████| 10/10 [00:00<00:00, 18.63it/s] 100%|██████████| 10/10 [00:00<00:00, 18.62it/s] frame_idx: 76 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 55 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 frame_idx: 76 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 55 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 8%|▊ | 75/999 [01:22<17:16, 1.12s/it] 8%|▊ | 76/999 [01:22<12:42, 1.21it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 73.74it/s] 64%|██████▍ | 16/25 [00:00<00:00, 73.98it/s] 96%|█████████▌| 24/25 [00:00<00:00, 74.34it/s] 100%|██████████| 25/25 [00:00<00:00, 74.21it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 74.65it/s] 64%|██████▍ | 16/25 [00:00<00:00, 74.68it/s] 96%|█████████▌| 24/25 [00:00<00:00, 74.68it/s] 100%|██████████| 25/25 [00:00<00:00, 74.71it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 18.77it/s] 40%|████ | 4/10 [00:00<00:00, 18.73it/s] 60%|██████ | 6/10 [00:00<00:00, 18.73it/s] 80%|████████ | 8/10 [00:00<00:00, 18.72it/s] 100%|██████████| 10/10 [00:00<00:00, 18.68it/s] 100%|██████████| 10/10 [00:00<00:00, 18.69it/s] frame_idx: 78 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 56 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 frame_idx: 78 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 56 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 8%|▊ | 77/999 [01:24<17:08, 1.11s/it] 8%|▊ | 78/999 [01:24<12:35, 1.22it/s] 0%| | 0/25 [00:00<?, ?it/s] 28%|██▊ | 7/25 [00:00<00:00, 67.06it/s] 56%|█████▌ | 14/25 [00:00<00:00, 67.84it/s] 84%|████████▍ | 21/25 [00:00<00:00, 67.64it/s] 100%|██████████| 25/25 [00:00<00:00, 67.80it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 73.54it/s] 64%|██████▍ | 16/25 [00:00<00:00, 73.18it/s] 96%|█████████▌| 24/25 [00:00<00:00, 73.51it/s] 100%|██████████| 25/25 [00:00<00:00, 73.37it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 14.30it/s] 40%|████ | 4/10 [00:00<00:00, 16.59it/s] 60%|██████ | 6/10 [00:00<00:00, 17.33it/s] 80%|████████ | 8/10 [00:00<00:00, 17.54it/s] 100%|██████████| 10/10 [00:00<00:00, 17.85it/s] 100%|██████████| 10/10 [00:00<00:00, 17.33it/s] frame_idx: 80 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 57 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 frame_idx: 80 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 57 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 8%|▊ | 79/999 [01:26<17:39, 1.15s/it] 8%|▊ | 80/999 [01:27<14:18, 1.07it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 72.93it/s] 64%|██████▍ | 16/25 [00:00<00:00, 73.18it/s] 96%|█████████▌| 24/25 [00:00<00:00, 73.60it/s] 100%|██████████| 25/25 [00:00<00:00, 73.25it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 71.14it/s] 64%|██████▍ | 16/25 [00:00<00:00, 72.23it/s] 96%|█████████▌| 24/25 [00:00<00:00, 70.62it/s] 100%|██████████| 25/25 [00:00<00:00, 70.80it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 18.84it/s] 40%|████ | 4/10 [00:00<00:00, 18.74it/s] 60%|██████ | 6/10 [00:00<00:00, 18.71it/s] 80%|████████ | 8/10 [00:00<00:00, 18.66it/s] 100%|██████████| 10/10 [00:00<00:00, 18.64it/s] 100%|██████████| 10/10 [00:00<00:00, 18.67it/s] frame_idx: 82 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 58 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 frame_idx: 82 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 58 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 8%|▊ | 81/999 [01:28<18:19, 1.20s/it] 8%|▊ | 82/999 [01:29<13:25, 1.14it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 73.79it/s] 64%|██████▍ | 16/25 [00:00<00:00, 73.19it/s] 96%|█████████▌| 24/25 [00:00<00:00, 72.62it/s] 100%|██████████| 25/25 [00:00<00:00, 72.68it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 73.60it/s] 64%|██████▍ | 16/25 [00:00<00:00, 73.55it/s] 96%|█████████▌| 24/25 [00:00<00:00, 71.54it/s] 100%|██████████| 25/25 [00:00<00:00, 71.99it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 18.86it/s] 40%|████ | 4/10 [00:00<00:00, 18.73it/s] 60%|██████ | 6/10 [00:00<00:00, 18.71it/s] 80%|████████ | 8/10 [00:00<00:00, 18.67it/s] 100%|██████████| 10/10 [00:00<00:00, 18.67it/s] 100%|██████████| 10/10 [00:00<00:00, 18.68it/s] frame_idx: 84 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 59 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 frame_idx: 84 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 59 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 8%|▊ | 83/999 [01:30<17:39, 1.16s/it] 8%|▊ | 84/999 [01:31<12:57, 1.18it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 73.10it/s] 64%|██████▍ | 16/25 [00:00<00:00, 74.17it/s] 96%|█████████▌| 24/25 [00:00<00:00, 74.26it/s] 100%|██████████| 25/25 [00:00<00:00, 74.16it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 74.28it/s] 64%|██████▍ | 16/25 [00:00<00:00, 74.53it/s] 96%|█████████▌| 24/25 [00:00<00:00, 74.58it/s] 100%|██████████| 25/25 [00:00<00:00, 74.48it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 18.80it/s] 40%|████ | 4/10 [00:00<00:00, 18.76it/s] 60%|██████ | 6/10 [00:00<00:00, 18.72it/s] 80%|████████ | 8/10 [00:00<00:00, 18.71it/s] 100%|██████████| 10/10 [00:00<00:00, 18.70it/s] 100%|██████████| 10/10 [00:00<00:00, 18.71it/s] frame_idx: 86 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 60 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 frame_idx: 86 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 60 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 9%|▊ | 85/999 [01:32<17:16, 1.13s/it] 9%|▊ | 86/999 [01:32<12:41, 1.20it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 73.71it/s] 64%|██████▍ | 16/25 [00:00<00:00, 74.27it/s] 96%|█████████▌| 24/25 [00:00<00:00, 73.91it/s] 100%|██████████| 25/25 [00:00<00:00, 73.85it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 74.21it/s] 64%|██████▍ | 16/25 [00:00<00:00, 74.65it/s] 96%|█████████▌| 24/25 [00:00<00:00, 74.46it/s] 100%|██████████| 25/25 [00:00<00:00, 74.34it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 18.75it/s] 40%|████ | 4/10 [00:00<00:00, 18.68it/s] 60%|██████ | 6/10 [00:00<00:00, 18.63it/s] 80%|████████ | 8/10 [00:00<00:00, 18.61it/s] 100%|██████████| 10/10 [00:00<00:00, 18.60it/s] 100%|██████████| 10/10 [00:00<00:00, 18.61it/s] frame_idx: 88 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 61 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 frame_idx: 88 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 61 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 9%|▊ | 87/999 [01:34<17:03, 1.12s/it] 9%|▉ | 88/999 [01:34<12:33, 1.21it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 73.93it/s] 64%|██████▍ | 16/25 [00:00<00:00, 74.49it/s] 96%|█████████▌| 24/25 [00:00<00:00, 74.92it/s] 100%|██████████| 25/25 [00:00<00:00, 74.60it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 74.85it/s] 64%|██████▍ | 16/25 [00:00<00:00, 74.69it/s] 96%|█████████▌| 24/25 [00:00<00:00, 74.66it/s] 100%|██████████| 25/25 [00:00<00:00, 74.66it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 18.79it/s] 40%|████ | 4/10 [00:00<00:00, 18.70it/s] 60%|██████ | 6/10 [00:00<00:00, 18.66it/s] 80%|████████ | 8/10 [00:00<00:00, 18.67it/s] 100%|██████████| 10/10 [00:00<00:00, 18.60it/s] 100%|██████████| 10/10 [00:00<00:00, 18.63it/s] frame_idx: 90 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 62 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 frame_idx: 90 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 62 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 9%|▉ | 89/999 [01:36<16:53, 1.11s/it] 9%|▉ | 90/999 [01:36<12:25, 1.22it/s] 0%| | 0/25 [00:00<?, ?it/s] 28%|██▊ | 7/25 [00:00<00:00, 68.56it/s] 56%|█████▌ | 14/25 [00:00<00:00, 68.43it/s] 84%|████████▍ | 21/25 [00:00<00:00, 68.26it/s] 100%|██████████| 25/25 [00:00<00:00, 69.34it/s] 0%| | 0/25 [00:00<?, ?it/s] 28%|██▊ | 7/25 [00:00<00:00, 68.20it/s] 56%|█████▌ | 14/25 [00:00<00:00, 68.60it/s] 88%|████████▊ | 22/25 [00:00<00:00, 70.60it/s] 100%|██████████| 25/25 [00:00<00:00, 70.37it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 18.82it/s] 40%|████ | 4/10 [00:00<00:00, 18.71it/s] 60%|██████ | 6/10 [00:00<00:00, 18.70it/s] 80%|████████ | 8/10 [00:00<00:00, 18.64it/s] 100%|██████████| 10/10 [00:00<00:00, 18.60it/s] 100%|██████████| 10/10 [00:00<00:00, 18.62it/s] frame_idx: 92 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 63 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 frame_idx: 92 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 63 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 9%|▉ | 91/999 [01:38<17:04, 1.13s/it] 9%|▉ | 92/999 [01:38<12:32, 1.21it/s] 0%| | 0/25 [00:00<?, ?it/s] 28%|██▊ | 7/25 [00:00<00:00, 67.45it/s] 56%|█████▌ | 14/25 [00:00<00:00, 67.90it/s] 84%|████████▍ | 21/25 [00:00<00:00, 67.74it/s] 100%|██████████| 25/25 [00:00<00:00, 67.52it/s] 0%| | 0/25 [00:00<?, ?it/s] 28%|██▊ | 7/25 [00:00<00:00, 69.44it/s] 60%|██████ | 15/25 [00:00<00:00, 72.34it/s] 92%|█████████▏| 23/25 [00:00<00:00, 73.22it/s] 100%|██████████| 25/25 [00:00<00:00, 72.35it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 18.77it/s] 40%|████ | 4/10 [00:00<00:00, 18.63it/s] 60%|██████ | 6/10 [00:00<00:00, 18.61it/s] 80%|████████ | 8/10 [00:00<00:00, 18.64it/s] 100%|██████████| 10/10 [00:00<00:00, 18.64it/s] 100%|██████████| 10/10 [00:00<00:00, 18.64it/s] frame_idx: 94 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 64 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 frame_idx: 94 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 64 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 9%|▉ | 93/999 [01:40<17:10, 1.14s/it] 9%|▉ | 94/999 [01:40<12:38, 1.19it/s] 0%| | 0/25 [00:00<?, ?it/s] 28%|██▊ | 7/25 [00:00<00:00, 68.19it/s] 60%|██████ | 15/25 [00:00<00:00, 71.72it/s] 92%|█████████▏| 23/25 [00:00<00:00, 72.16it/s] 100%|██████████| 25/25 [00:00<00:00, 71.88it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 74.54it/s] 64%|██████▍ | 16/25 [00:00<00:00, 74.78it/s] 96%|█████████▌| 24/25 [00:00<00:00, 74.80it/s] 100%|██████████| 25/25 [00:00<00:00, 74.55it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 18.76it/s] 40%|████ | 4/10 [00:00<00:00, 18.66it/s] 60%|██████ | 6/10 [00:00<00:00, 18.63it/s] 80%|████████ | 8/10 [00:00<00:00, 18.61it/s] 100%|██████████| 10/10 [00:00<00:00, 18.63it/s] 100%|██████████| 10/10 [00:00<00:00, 18.63it/s] frame_idx: 96 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 65 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 frame_idx: 96 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 65 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 10%|▉ | 95/999 [01:42<17:03, 1.13s/it] 10%|▉ | 96/999 [01:42<12:31, 1.20it/s] 0%| | 0/25 [00:00<?, ?it/s] 28%|██▊ | 7/25 [00:00<00:00, 68.77it/s] 56%|█████▌ | 14/25 [00:00<00:00, 69.27it/s] 88%|████████▊ | 22/25 [00:00<00:00, 70.67it/s] 100%|██████████| 25/25 [00:00<00:00, 70.77it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 74.16it/s] 64%|██████▍ | 16/25 [00:00<00:00, 71.46it/s] 96%|█████████▌| 24/25 [00:00<00:00, 71.68it/s] 100%|██████████| 25/25 [00:00<00:00, 71.78it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 18.79it/s] 40%|████ | 4/10 [00:00<00:00, 18.69it/s] 60%|██████ | 6/10 [00:00<00:00, 18.66it/s] 80%|████████ | 8/10 [00:00<00:00, 18.64it/s] 100%|██████████| 10/10 [00:00<00:00, 18.61it/s] 100%|██████████| 10/10 [00:00<00:00, 18.62it/s] frame_idx: 98 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 66 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 frame_idx: 98 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 66 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 10%|▉ | 97/999 [01:44<16:58, 1.13s/it] 10%|▉ | 98/999 [01:44<12:27, 1.21it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 71.79it/s] 64%|██████▍ | 16/25 [00:00<00:00, 71.20it/s] 96%|█████████▌| 24/25 [00:00<00:00, 71.69it/s] 100%|██████████| 25/25 [00:00<00:00, 71.59it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 75.15it/s] 64%|██████▍ | 16/25 [00:00<00:00, 75.04it/s] 96%|█████████▌| 24/25 [00:00<00:00, 74.87it/s] 100%|██████████| 25/25 [00:00<00:00, 74.85it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 18.81it/s] 40%|████ | 4/10 [00:00<00:00, 18.71it/s] 60%|██████ | 6/10 [00:00<00:00, 18.64it/s] 80%|████████ | 8/10 [00:00<00:00, 18.67it/s] 100%|██████████| 10/10 [00:00<00:00, 18.64it/s] 100%|██████████| 10/10 [00:00<00:00, 18.65it/s] frame_idx: 100 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 67 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 frame_idx: 100 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 67 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 10%|▉ | 99/999 [01:46<16:47, 1.12s/it] 10%|█ | 100/999 [01:46<12:22, 1.21it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 73.43it/s] 64%|██████▍ | 16/25 [00:00<00:00, 69.75it/s] 96%|█████████▌| 24/25 [00:00<00:00, 70.12it/s] 100%|██████████| 25/25 [00:00<00:00, 70.32it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 72.68it/s] 64%|██████▍ | 16/25 [00:00<00:00, 71.62it/s] 96%|█████████▌| 24/25 [00:00<00:00, 70.88it/s] 100%|██████████| 25/25 [00:00<00:00, 71.01it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 18.89it/s] 40%|████ | 4/10 [00:00<00:00, 18.72it/s] 60%|██████ | 6/10 [00:00<00:00, 18.69it/s] 80%|████████ | 8/10 [00:00<00:00, 18.47it/s] 100%|██████████| 10/10 [00:00<00:00, 18.51it/s] 100%|██████████| 10/10 [00:00<00:00, 18.55it/s] frame_idx: 102 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 68 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 frame_idx: 102 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 68 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 10%|█ | 101/999 [01:48<16:52, 1.13s/it] 10%|█ | 102/999 [01:48<12:25, 1.20it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 74.47it/s] 64%|██████▍ | 16/25 [00:00<00:00, 70.65it/s] 96%|█████████▌| 24/25 [00:00<00:00, 71.30it/s] 100%|██████████| 25/25 [00:00<00:00, 71.56it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 74.24it/s] 64%|██████▍ | 16/25 [00:00<00:00, 74.82it/s] 96%|█████████▌| 24/25 [00:00<00:00, 74.77it/s] 100%|██████████| 25/25 [00:00<00:00, 74.74it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 18.84it/s] 40%|████ | 4/10 [00:00<00:00, 18.78it/s] 60%|██████ | 6/10 [00:00<00:00, 18.75it/s] 80%|████████ | 8/10 [00:00<00:00, 18.70it/s] 100%|██████████| 10/10 [00:00<00:00, 18.69it/s] 100%|██████████| 10/10 [00:00<00:00, 18.72it/s] frame_idx: 104 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 69 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 frame_idx: 104 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 69 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 10%|█ | 103/999 [01:50<16:47, 1.12s/it] 10%|█ | 104/999 [01:50<12:20, 1.21it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 73.79it/s] 64%|██████▍ | 16/25 [00:00<00:00, 74.70it/s] 96%|█████████▌| 24/25 [00:00<00:00, 73.19it/s] 100%|██████████| 25/25 [00:00<00:00, 73.57it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 73.78it/s] 64%|██████▍ | 16/25 [00:00<00:00, 74.39it/s] 96%|█████████▌| 24/25 [00:00<00:00, 74.78it/s] 100%|██████████| 25/25 [00:00<00:00, 74.55it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 18.88it/s] 40%|████ | 4/10 [00:00<00:00, 18.77it/s] 60%|██████ | 6/10 [00:00<00:00, 18.72it/s] 80%|████████ | 8/10 [00:00<00:00, 18.68it/s] 100%|██████████| 10/10 [00:00<00:00, 18.64it/s] 100%|██████████| 10/10 [00:00<00:00, 18.68it/s] frame_idx: 106 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 70 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 frame_idx: 106 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 70 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 11%|█ | 105/999 [01:52<16:37, 1.12s/it] 11%|█ | 106/999 [01:52<12:13, 1.22it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 73.14it/s] 64%|██████▍ | 16/25 [00:00<00:00, 73.83it/s] 96%|█████████▌| 24/25 [00:00<00:00, 74.23it/s] 100%|██████████| 25/25 [00:00<00:00, 73.45it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 71.55it/s] 64%|██████▍ | 16/25 [00:00<00:00, 73.21it/s] 96%|█████████▌| 24/25 [00:00<00:00, 71.11it/s] 100%|██████████| 25/25 [00:00<00:00, 71.14it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 18.91it/s] 40%|████ | 4/10 [00:00<00:00, 18.74it/s] 60%|██████ | 6/10 [00:00<00:00, 18.72it/s] 80%|████████ | 8/10 [00:00<00:00, 18.73it/s] 100%|██████████| 10/10 [00:00<00:00, 18.67it/s] 100%|██████████| 10/10 [00:00<00:00, 18.70it/s] frame_idx: 108 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 71 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 frame_idx: 108 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 71 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 11%|█ | 107/999 [01:54<16:41, 1.12s/it] 11%|█ | 108/999 [01:54<12:17, 1.21it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 74.43it/s] 64%|██████▍ | 16/25 [00:00<00:00, 74.58it/s] 96%|█████████▌| 24/25 [00:00<00:00, 74.27it/s] 100%|██████████| 25/25 [00:00<00:00, 74.21it/s] 0%| | 0/25 [00:00<?, ?it/s] 28%|██▊ | 7/25 [00:00<00:00, 69.58it/s] 56%|█████▌ | 14/25 [00:00<00:00, 69.37it/s] 88%|████████▊ | 22/25 [00:00<00:00, 71.93it/s] 100%|██████████| 25/25 [00:00<00:00, 71.67it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 18.74it/s] 40%|████ | 4/10 [00:00<00:00, 18.69it/s] 60%|██████ | 6/10 [00:00<00:00, 18.66it/s] 80%|████████ | 8/10 [00:00<00:00, 18.62it/s] 100%|██████████| 10/10 [00:00<00:00, 18.64it/s] 100%|██████████| 10/10 [00:00<00:00, 18.64it/s] frame_idx: 110 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 72 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 frame_idx: 110 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 72 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 11%|█ | 109/999 [01:56<16:42, 1.13s/it] 11%|█ | 110/999 [01:56<12:17, 1.20it/s] 0%| | 0/25 [00:00<?, ?it/s] 28%|██▊ | 7/25 [00:00<00:00, 68.25it/s] 60%|██████ | 15/25 [00:00<00:00, 72.10it/s] 92%|█████████▏| 23/25 [00:00<00:00, 73.23it/s] 100%|██████████| 25/25 [00:00<00:00, 72.63it/s] 0%| | 0/25 [00:00<?, ?it/s] 28%|██▊ | 7/25 [00:00<00:00, 69.06it/s] 60%|██████ | 15/25 [00:00<00:00, 70.93it/s] 92%|█████████▏| 23/25 [00:00<00:00, 70.99it/s] 100%|██████████| 25/25 [00:00<00:00, 71.04it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 18.83it/s] 40%|████ | 4/10 [00:00<00:00, 18.69it/s] 60%|██████ | 6/10 [00:00<00:00, 18.68it/s] 80%|████████ | 8/10 [00:00<00:00, 18.63it/s] 100%|██████████| 10/10 [00:00<00:00, 18.62it/s] 100%|██████████| 10/10 [00:00<00:00, 18.64it/s] frame_idx: 112 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 73 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 frame_idx: 112 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 73 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 11%|█ | 111/999 [01:58<16:41, 1.13s/it] 11%|█ | 112/999 [01:58<12:16, 1.20it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 73.97it/s] 64%|██████▍ | 16/25 [00:00<00:00, 74.55it/s] 96%|█████████▌| 24/25 [00:00<00:00, 74.61it/s] 100%|██████████| 25/25 [00:00<00:00, 74.26it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 73.23it/s] 64%|██████▍ | 16/25 [00:00<00:00, 73.90it/s] 96%|█████████▌| 24/25 [00:00<00:00, 73.72it/s] 100%|██████████| 25/25 [00:00<00:00, 73.74it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 18.88it/s] 40%|████ | 4/10 [00:00<00:00, 18.76it/s] 60%|██████ | 6/10 [00:00<00:00, 18.70it/s] 80%|████████ | 8/10 [00:00<00:00, 18.68it/s] 100%|██████████| 10/10 [00:00<00:00, 18.68it/s] 100%|██████████| 10/10 [00:00<00:00, 18.70it/s] frame_idx: 114 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 74 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 frame_idx: 114 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 74 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 11%|█▏ | 113/999 [02:00<16:35, 1.12s/it] 11%|█▏ | 114/999 [02:00<12:11, 1.21it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 73.91it/s] 64%|██████▍ | 16/25 [00:00<00:00, 74.65it/s] 96%|█████████▌| 24/25 [00:00<00:00, 74.60it/s] 100%|██████████| 25/25 [00:00<00:00, 74.55it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 73.42it/s] 64%|██████▍ | 16/25 [00:00<00:00, 72.35it/s] 96%|█████████▌| 24/25 [00:00<00:00, 73.62it/s] 100%|██████████| 25/25 [00:00<00:00, 73.43it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 18.87it/s] 40%|████ | 4/10 [00:00<00:00, 18.81it/s] 60%|██████ | 6/10 [00:00<00:00, 18.78it/s] 80%|████████ | 8/10 [00:00<00:00, 18.73it/s] 100%|██████████| 10/10 [00:00<00:00, 18.72it/s] 100%|██████████| 10/10 [00:00<00:00, 18.74it/s] frame_idx: 116 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 75 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 frame_idx: 116 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 75 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 12%|█▏ | 115/999 [02:02<16:27, 1.12s/it] 12%|█▏ | 116/999 [02:02<12:05, 1.22it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 73.19it/s] 64%|██████▍ | 16/25 [00:00<00:00, 74.31it/s] 96%|█████████▌| 24/25 [00:00<00:00, 74.50it/s] 100%|██████████| 25/25 [00:00<00:00, 74.35it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 75.27it/s] 64%|██████▍ | 16/25 [00:00<00:00, 74.27it/s] 96%|█████████▌| 24/25 [00:00<00:00, 74.47it/s] 100%|██████████| 25/25 [00:00<00:00, 74.51it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 18.78it/s] 40%|████ | 4/10 [00:00<00:00, 18.72it/s] 60%|██████ | 6/10 [00:00<00:00, 18.70it/s] 80%|████████ | 8/10 [00:00<00:00, 18.71it/s] 100%|██████████| 10/10 [00:00<00:00, 18.72it/s] 100%|██████████| 10/10 [00:00<00:00, 18.71it/s] frame_idx: 118 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 76 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 frame_idx: 118 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 76 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 12%|█▏ | 117/999 [02:04<16:22, 1.11s/it] 12%|█▏ | 118/999 [02:04<12:04, 1.22it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 73.53it/s] 64%|██████▍ | 16/25 [00:00<00:00, 74.17it/s] 96%|█████████▌| 24/25 [00:00<00:00, 74.08it/s] 100%|██████████| 25/25 [00:00<00:00, 73.96it/s] 0%| | 0/25 [00:00<?, ?it/s] 28%|██▊ | 7/25 [00:00<00:00, 69.16it/s] 60%|██████ | 15/25 [00:00<00:00, 69.57it/s] 88%|████████▊ | 22/25 [00:00<00:00, 68.97it/s] 100%|██████████| 25/25 [00:00<00:00, 69.06it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 18.80it/s] 40%|████ | 4/10 [00:00<00:00, 18.70it/s] 60%|██████ | 6/10 [00:00<00:00, 18.69it/s] 80%|████████ | 8/10 [00:00<00:00, 18.68it/s] 100%|██████████| 10/10 [00:00<00:00, 18.69it/s] 100%|██████████| 10/10 [00:00<00:00, 18.69it/s] frame_idx: 120 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 77 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 frame_idx: 120 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 77 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 12%|█▏ | 119/999 [02:05<16:26, 1.12s/it] 12%|█▏ | 120/999 [02:06<12:08, 1.21it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 73.06it/s] 64%|██████▍ | 16/25 [00:00<00:00, 73.71it/s] 96%|█████████▌| 24/25 [00:00<00:00, 70.91it/s] 100%|██████████| 25/25 [00:00<00:00, 71.63it/s] 0%| | 0/25 [00:00<?, ?it/s] 28%|██▊ | 7/25 [00:00<00:00, 67.45it/s] 56%|█████▌ | 14/25 [00:00<00:00, 68.24it/s] 84%|████████▍ | 21/25 [00:00<00:00, 66.53it/s] 100%|██████████| 25/25 [00:00<00:00, 67.20it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 18.89it/s] 40%|████ | 4/10 [00:00<00:00, 18.71it/s] 60%|██████ | 6/10 [00:00<00:00, 18.67it/s] 80%|████████ | 8/10 [00:00<00:00, 18.62it/s] 100%|██████████| 10/10 [00:00<00:00, 18.58it/s] 100%|██████████| 10/10 [00:00<00:00, 18.62it/s] frame_idx: 122 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 78 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 frame_idx: 122 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 78 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 12%|█▏ | 121/999 [02:07<16:35, 1.13s/it] 12%|█▏ | 122/999 [02:08<12:13, 1.20it/s] 0%| | 0/25 [00:00<?, ?it/s] 28%|██▊ | 7/25 [00:00<00:00, 69.58it/s] 60%|██████ | 15/25 [00:00<00:00, 72.37it/s] 92%|█████████▏| 23/25 [00:00<00:00, 73.17it/s] 100%|██████████| 25/25 [00:00<00:00, 72.80it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 74.23it/s] 64%|██████▍ | 16/25 [00:00<00:00, 72.38it/s] 96%|█████████▌| 24/25 [00:00<00:00, 70.55it/s] 100%|██████████| 25/25 [00:00<00:00, 71.06it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 18.83it/s] 40%|████ | 4/10 [00:00<00:00, 18.74it/s] 60%|██████ | 6/10 [00:00<00:00, 18.71it/s] 80%|████████ | 8/10 [00:00<00:00, 18.66it/s] 100%|██████████| 10/10 [00:00<00:00, 18.66it/s] 100%|██████████| 10/10 [00:00<00:00, 18.68it/s] frame_idx: 124 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 79 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 frame_idx: 124 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 79 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 12%|█▏ | 123/999 [02:09<16:30, 1.13s/it] 12%|█▏ | 124/999 [02:10<12:08, 1.20it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 74.08it/s] 64%|██████▍ | 16/25 [00:00<00:00, 74.42it/s] 96%|█████████▌| 24/25 [00:00<00:00, 74.38it/s] 100%|██████████| 25/25 [00:00<00:00, 74.35it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 73.15it/s] 64%|██████▍ | 16/25 [00:00<00:00, 74.13it/s] 96%|█████████▌| 24/25 [00:00<00:00, 73.51it/s] 100%|██████████| 25/25 [00:00<00:00, 73.31it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 18.78it/s] 40%|████ | 4/10 [00:00<00:00, 18.69it/s] 60%|██████ | 6/10 [00:00<00:00, 18.66it/s] 80%|████████ | 8/10 [00:00<00:00, 18.63it/s] 100%|██████████| 10/10 [00:00<00:00, 18.63it/s] 100%|██████████| 10/10 [00:00<00:00, 18.63it/s] frame_idx: 126 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 80 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 frame_idx: 126 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 80 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 13%|█▎ | 125/999 [02:11<16:19, 1.12s/it] 13%|█▎ | 126/999 [02:11<11:58, 1.21it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 74.05it/s] 64%|██████▍ | 16/25 [00:00<00:00, 74.30it/s] 96%|█████████▌| 24/25 [00:00<00:00, 74.60it/s] 100%|██████████| 25/25 [00:00<00:00, 74.37it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 74.50it/s] 64%|██████▍ | 16/25 [00:00<00:00, 74.62it/s] 96%|█████████▌| 24/25 [00:00<00:00, 73.74it/s] 100%|██████████| 25/25 [00:00<00:00, 73.95it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 18.75it/s] 40%|████ | 4/10 [00:00<00:00, 18.73it/s] 60%|██████ | 6/10 [00:00<00:00, 18.69it/s] 80%|████████ | 8/10 [00:00<00:00, 18.66it/s] 100%|██████████| 10/10 [00:00<00:00, 18.65it/s] 100%|██████████| 10/10 [00:00<00:00, 18.66it/s] frame_idx: 128 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 81 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 frame_idx: 128 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 81 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 13%|█▎ | 127/999 [02:13<16:09, 1.11s/it] 13%|█▎ | 128/999 [02:13<11:53, 1.22it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 74.29it/s] 64%|██████▍ | 16/25 [00:00<00:00, 74.68it/s] 96%|█████████▌| 24/25 [00:00<00:00, 74.78it/s] 100%|██████████| 25/25 [00:00<00:00, 74.62it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 74.03it/s] 64%|██████▍ | 16/25 [00:00<00:00, 74.40it/s] 96%|█████████▌| 24/25 [00:00<00:00, 74.18it/s] 100%|██████████| 25/25 [00:00<00:00, 74.15it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 18.79it/s] 40%|████ | 4/10 [00:00<00:00, 18.65it/s] 60%|██████ | 6/10 [00:00<00:00, 18.63it/s] 80%|████████ | 8/10 [00:00<00:00, 18.62it/s] 100%|██████████| 10/10 [00:00<00:00, 18.61it/s] 100%|██████████| 10/10 [00:00<00:00, 18.62it/s] frame_idx: 130 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 82 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 frame_idx: 130 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 82 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 13%|█▎ | 129/999 [02:15<16:09, 1.11s/it] 13%|█▎ | 130/999 [02:15<11:56, 1.21it/s] 0%| | 0/25 [00:00<?, ?it/s] 28%|██▊ | 7/25 [00:00<00:00, 68.81it/s] 60%|██████ | 15/25 [00:00<00:00, 71.12it/s] 92%|█████████▏| 23/25 [00:00<00:00, 70.26it/s] 100%|██████████| 25/25 [00:00<00:00, 70.07it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 74.70it/s] 64%|██████▍ | 16/25 [00:00<00:00, 74.63it/s] 96%|█████████▌| 24/25 [00:00<00:00, 74.26it/s] 100%|██████████| 25/25 [00:00<00:00, 73.86it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 18.91it/s] 40%|████ | 4/10 [00:00<00:00, 18.77it/s] 60%|██████ | 6/10 [00:00<00:00, 18.76it/s] 80%|████████ | 8/10 [00:00<00:00, 18.73it/s] 100%|██████████| 10/10 [00:00<00:00, 18.71it/s] 100%|██████████| 10/10 [00:00<00:00, 18.73it/s] frame_idx: 132 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 83 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 frame_idx: 132 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 83 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 13%|█▎ | 131/999 [02:17<16:10, 1.12s/it] 13%|█▎ | 132/999 [02:17<11:54, 1.21it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 74.03it/s] 64%|██████▍ | 16/25 [00:00<00:00, 74.29it/s] 96%|█████████▌| 24/25 [00:00<00:00, 72.44it/s] 100%|██████████| 25/25 [00:00<00:00, 72.53it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 72.52it/s] 64%|██████▍ | 16/25 [00:00<00:00, 73.74it/s] 96%|█████████▌| 24/25 [00:00<00:00, 74.17it/s] 100%|██████████| 25/25 [00:00<00:00, 73.87it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 18.80it/s] 40%|████ | 4/10 [00:00<00:00, 18.61it/s] 60%|██████ | 6/10 [00:00<00:00, 18.65it/s] 80%|████████ | 8/10 [00:00<00:00, 18.66it/s] 100%|██████████| 10/10 [00:00<00:00, 18.66it/s] 100%|██████████| 10/10 [00:00<00:00, 18.66it/s] frame_idx: 134 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 84 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 frame_idx: 134 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 84 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 13%|█▎ | 133/999 [02:19<16:08, 1.12s/it] 13%|█▎ | 134/999 [02:19<11:53, 1.21it/s] 0%| | 0/25 [00:00<?, ?it/s] 28%|██▊ | 7/25 [00:00<00:00, 64.73it/s] 60%|██████ | 15/25 [00:00<00:00, 69.19it/s] 92%|█████████▏| 23/25 [00:00<00:00, 71.93it/s] 100%|██████████| 25/25 [00:00<00:00, 70.94it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 74.68it/s] 64%|██████▍ | 16/25 [00:00<00:00, 74.87it/s] 96%|█████████▌| 24/25 [00:00<00:00, 75.08it/s] 100%|██████████| 25/25 [00:00<00:00, 74.89it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 18.83it/s] 40%|████ | 4/10 [00:00<00:00, 18.74it/s] 60%|██████ | 6/10 [00:00<00:00, 18.74it/s] 80%|████████ | 8/10 [00:00<00:00, 18.71it/s] 100%|██████████| 10/10 [00:00<00:00, 18.70it/s] 100%|██████████| 10/10 [00:00<00:00, 18.71it/s] frame_idx: 136 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 85 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 frame_idx: 136 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 85 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 14%|█▎ | 135/999 [02:21<16:10, 1.12s/it] 14%|█▎ | 136/999 [02:21<11:53, 1.21it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 71.40it/s] 64%|██████▍ | 16/25 [00:00<00:00, 73.44it/s] 96%|█████████▌| 24/25 [00:00<00:00, 74.34it/s] 100%|██████████| 25/25 [00:00<00:00, 73.91it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 74.24it/s] 64%|██████▍ | 16/25 [00:00<00:00, 74.61it/s] 96%|█████████▌| 24/25 [00:00<00:00, 74.64it/s] 100%|██████████| 25/25 [00:00<00:00, 74.55it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 18.90it/s] 40%|████ | 4/10 [00:00<00:00, 18.75it/s] 60%|██████ | 6/10 [00:00<00:00, 18.72it/s] 80%|████████ | 8/10 [00:00<00:00, 18.65it/s] 100%|██████████| 10/10 [00:00<00:00, 18.65it/s] 100%|██████████| 10/10 [00:00<00:00, 18.67it/s] frame_idx: 138 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 86 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 frame_idx: 138 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 86 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 14%|█▎ | 137/999 [02:23<16:00, 1.11s/it] 14%|█▍ | 138/999 [02:23<11:45, 1.22it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 73.86it/s] 64%|██████▍ | 16/25 [00:00<00:00, 70.09it/s] 96%|█████████▌| 24/25 [00:00<00:00, 70.97it/s] 100%|██████████| 25/25 [00:00<00:00, 71.20it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 73.01it/s] 64%|██████▍ | 16/25 [00:00<00:00, 74.12it/s] 96%|█████████▌| 24/25 [00:00<00:00, 74.25it/s] 100%|██████████| 25/25 [00:00<00:00, 74.02it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 18.74it/s] 40%|████ | 4/10 [00:00<00:00, 18.61it/s] 60%|██████ | 6/10 [00:00<00:00, 18.62it/s] 80%|████████ | 8/10 [00:00<00:00, 18.60it/s] 100%|██████████| 10/10 [00:00<00:00, 18.59it/s] 100%|██████████| 10/10 [00:00<00:00, 18.60it/s] frame_idx: 140 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 87 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 frame_idx: 140 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 87 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 14%|█▍ | 139/999 [02:25<15:59, 1.12s/it] 14%|█▍ | 140/999 [02:25<11:46, 1.22it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 73.40it/s] 64%|██████▍ | 16/25 [00:00<00:00, 72.57it/s] 96%|█████████▌| 24/25 [00:00<00:00, 71.97it/s] 100%|██████████| 25/25 [00:00<00:00, 71.82it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 73.52it/s] 64%|██████▍ | 16/25 [00:00<00:00, 74.47it/s] 96%|█████████▌| 24/25 [00:00<00:00, 74.44it/s] 100%|██████████| 25/25 [00:00<00:00, 74.28it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 18.88it/s] 40%|████ | 4/10 [00:00<00:00, 18.74it/s] 60%|██████ | 6/10 [00:00<00:00, 18.66it/s] 80%|████████ | 8/10 [00:00<00:00, 18.67it/s] 100%|██████████| 10/10 [00:00<00:00, 18.62it/s] 100%|██████████| 10/10 [00:00<00:00, 18.65it/s] frame_idx: 142 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 88 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 frame_idx: 142 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 88 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 14%|█▍ | 141/999 [02:27<16:01, 1.12s/it] 14%|█▍ | 142/999 [02:27<11:47, 1.21it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 73.76it/s] 64%|██████▍ | 16/25 [00:00<00:00, 74.42it/s] 96%|█████████▌| 24/25 [00:00<00:00, 70.86it/s] 100%|██████████| 25/25 [00:00<00:00, 71.65it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 71.01it/s] 64%|██████▍ | 16/25 [00:00<00:00, 73.02it/s] 96%|█████████▌| 24/25 [00:00<00:00, 73.75it/s] 100%|██████████| 25/25 [00:00<00:00, 73.09it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 18.85it/s] 40%|████ | 4/10 [00:00<00:00, 18.70it/s] 60%|██████ | 6/10 [00:00<00:00, 18.59it/s] 80%|████████ | 8/10 [00:00<00:00, 18.49it/s] 100%|██████████| 10/10 [00:00<00:00, 18.46it/s] 100%|██████████| 10/10 [00:00<00:00, 18.52it/s] frame_idx: 144 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 89 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 frame_idx: 144 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 89 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 14%|█▍ | 143/999 [02:29<16:01, 1.12s/it] 14%|█▍ | 144/999 [02:29<11:46, 1.21it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 70.99it/s] 64%|██████▍ | 16/25 [00:00<00:00, 72.84it/s] 96%|█████████▌| 24/25 [00:00<00:00, 71.13it/s] 100%|██████████| 25/25 [00:00<00:00, 71.34it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 72.94it/s] 64%|██████▍ | 16/25 [00:00<00:00, 74.00it/s] 96%|█████████▌| 24/25 [00:00<00:00, 74.56it/s] 100%|██████████| 25/25 [00:00<00:00, 74.31it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 18.72it/s] 40%|████ | 4/10 [00:00<00:00, 18.64it/s] 60%|██████ | 6/10 [00:00<00:00, 18.64it/s] 80%|████████ | 8/10 [00:00<00:00, 18.64it/s] 100%|██████████| 10/10 [00:00<00:00, 18.57it/s] 100%|██████████| 10/10 [00:00<00:00, 18.59it/s] frame_idx: 146 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 90 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 frame_idx: 146 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 90 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 15%|█▍ | 145/999 [02:31<15:57, 1.12s/it] 15%|█▍ | 146/999 [02:31<11:45, 1.21it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 73.12it/s] 64%|██████▍ | 16/25 [00:00<00:00, 72.21it/s] 96%|█████████▌| 24/25 [00:00<00:00, 73.03it/s] 100%|██████████| 25/25 [00:00<00:00, 72.72it/s] 0%| | 0/25 [00:00<?, ?it/s] 28%|██▊ | 7/25 [00:00<00:00, 66.62it/s] 56%|█████▌ | 14/25 [00:00<00:00, 68.52it/s] 84%|████████▍ | 21/25 [00:00<00:00, 68.38it/s] 100%|██████████| 25/25 [00:00<00:00, 68.09it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 18.73it/s] 40%|████ | 4/10 [00:00<00:00, 18.64it/s] 60%|██████ | 6/10 [00:00<00:00, 18.60it/s] 80%|████████ | 8/10 [00:00<00:00, 18.61it/s] 100%|██████████| 10/10 [00:00<00:00, 18.63it/s] 100%|██████████| 10/10 [00:00<00:00, 18.62it/s] frame_idx: 148 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 91 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 frame_idx: 148 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 91 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 15%|█▍ | 147/999 [02:33<16:02, 1.13s/it] 15%|█▍ | 148/999 [02:33<11:48, 1.20it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 74.38it/s] 64%|██████▍ | 16/25 [00:00<00:00, 74.82it/s] 96%|█████████▌| 24/25 [00:00<00:00, 74.68it/s] 100%|██████████| 25/25 [00:00<00:00, 74.47it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 73.10it/s] 64%|██████▍ | 16/25 [00:00<00:00, 74.09it/s] 96%|█████████▌| 24/25 [00:00<00:00, 74.47it/s] 100%|██████████| 25/25 [00:00<00:00, 74.25it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 18.89it/s] 40%|████ | 4/10 [00:00<00:00, 18.75it/s] 60%|██████ | 6/10 [00:00<00:00, 18.75it/s] 80%|████████ | 8/10 [00:00<00:00, 18.69it/s] 100%|██████████| 10/10 [00:00<00:00, 18.63it/s] 100%|██████████| 10/10 [00:00<00:00, 18.67it/s] frame_idx: 150 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 92 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 frame_idx: 150 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 92 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 15%|█▍ | 149/999 [02:35<15:52, 1.12s/it] 15%|█▌ | 150/999 [02:35<11:39, 1.21it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 74.75it/s] 64%|██████▍ | 16/25 [00:00<00:00, 75.07it/s] 96%|█████████▌| 24/25 [00:00<00:00, 74.84it/s] 100%|██████████| 25/25 [00:00<00:00, 74.83it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 70.26it/s] 64%|██████▍ | 16/25 [00:00<00:00, 70.35it/s] 96%|█████████▌| 24/25 [00:00<00:00, 70.28it/s] 100%|██████████| 25/25 [00:00<00:00, 70.05it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 18.87it/s] 40%|████ | 4/10 [00:00<00:00, 18.74it/s] 60%|██████ | 6/10 [00:00<00:00, 18.72it/s] 80%|████████ | 8/10 [00:00<00:00, 18.70it/s] 100%|██████████| 10/10 [00:00<00:00, 18.67it/s] 100%|██████████| 10/10 [00:00<00:00, 18.69it/s] frame_idx: 152 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 93 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 frame_idx: 152 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 93 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 15%|█▌ | 151/999 [02:37<15:46, 1.12s/it] 15%|█▌ | 152/999 [02:37<11:36, 1.22it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 74.77it/s] 64%|██████▍ | 16/25 [00:00<00:00, 75.09it/s] 96%|█████████▌| 24/25 [00:00<00:00, 75.31it/s] 100%|██████████| 25/25 [00:00<00:00, 75.16it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 75.43it/s] 64%|██████▍ | 16/25 [00:00<00:00, 73.42it/s] 96%|█████████▌| 24/25 [00:00<00:00, 73.11it/s] 100%|██████████| 25/25 [00:00<00:00, 73.23it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 18.90it/s] 40%|████ | 4/10 [00:00<00:00, 18.75it/s] 60%|██████ | 6/10 [00:00<00:00, 18.74it/s] 80%|████████ | 8/10 [00:00<00:00, 18.72it/s] 100%|██████████| 10/10 [00:00<00:00, 18.71it/s] 100%|██████████| 10/10 [00:00<00:00, 18.72it/s] frame_idx: 154 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 94 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 frame_idx: 154 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 94 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 15%|█▌ | 153/999 [02:39<15:40, 1.11s/it] 15%|█▌ | 154/999 [02:39<11:33, 1.22it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 73.60it/s] 64%|██████▍ | 16/25 [00:00<00:00, 73.85it/s] 96%|█████████▌| 24/25 [00:00<00:00, 74.29it/s] 100%|██████████| 25/25 [00:00<00:00, 74.17it/s] 0%| | 0/25 [00:00<?, ?it/s] 28%|██▊ | 7/25 [00:00<00:00, 68.57it/s] 60%|██████ | 15/25 [00:00<00:00, 70.54it/s] 92%|█████████▏| 23/25 [00:00<00:00, 69.76it/s] 100%|██████████| 25/25 [00:00<00:00, 69.69it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 18.81it/s] 40%|████ | 4/10 [00:00<00:00, 18.80it/s] 60%|██████ | 6/10 [00:00<00:00, 18.77it/s] 80%|████████ | 8/10 [00:00<00:00, 18.75it/s] 100%|██████████| 10/10 [00:00<00:00, 18.77it/s] 100%|██████████| 10/10 [00:00<00:00, 18.76it/s] frame_idx: 156 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 95 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 frame_idx: 156 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 95 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 16%|█▌ | 155/999 [02:40<15:42, 1.12s/it] 16%|█▌ | 156/999 [02:41<11:31, 1.22it/s] 0%| | 0/25 [00:00<?, ?it/s] 28%|██▊ | 7/25 [00:00<00:00, 66.28it/s] 56%|█████▌ | 14/25 [00:00<00:00, 67.72it/s] 84%|████████▍ | 21/25 [00:00<00:00, 68.37it/s] 100%|██████████| 25/25 [00:00<00:00, 68.08it/s] 0%| | 0/25 [00:00<?, ?it/s] 28%|██▊ | 7/25 [00:00<00:00, 68.51it/s] 56%|█████▌ | 14/25 [00:00<00:00, 68.56it/s] 84%|████████▍ | 21/25 [00:00<00:00, 67.25it/s] 100%|██████████| 25/25 [00:00<00:00, 68.39it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 18.87it/s] 40%|████ | 4/10 [00:00<00:00, 18.78it/s] 60%|██████ | 6/10 [00:00<00:00, 18.76it/s] 80%|████████ | 8/10 [00:00<00:00, 18.73it/s] 100%|██████████| 10/10 [00:00<00:00, 18.71it/s] 100%|██████████| 10/10 [00:00<00:00, 18.73it/s] frame_idx: 158 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 96 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 frame_idx: 158 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 96 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 16%|█▌ | 157/999 [02:42<15:50, 1.13s/it] 16%|█▌ | 158/999 [02:43<11:38, 1.20it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 74.32it/s] 64%|██████▍ | 16/25 [00:00<00:00, 74.61it/s] 96%|█████████▌| 24/25 [00:00<00:00, 72.12it/s] 100%|██████████| 25/25 [00:00<00:00, 72.61it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 74.81it/s] 64%|██████▍ | 16/25 [00:00<00:00, 72.79it/s] 96%|█████████▌| 24/25 [00:00<00:00, 69.70it/s] 100%|██████████| 25/25 [00:00<00:00, 70.65it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 18.93it/s] 40%|████ | 4/10 [00:00<00:00, 18.77it/s] 60%|██████ | 6/10 [00:00<00:00, 18.75it/s] 80%|████████ | 8/10 [00:00<00:00, 18.76it/s] 100%|██████████| 10/10 [00:00<00:00, 18.72it/s] 100%|██████████| 10/10 [00:00<00:00, 18.74it/s] frame_idx: 160 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 97 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 frame_idx: 160 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 97 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 16%|█▌ | 159/999 [02:44<15:44, 1.12s/it] 16%|█▌ | 160/999 [02:45<11:34, 1.21it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 71.49it/s] 64%|██████▍ | 16/25 [00:00<00:00, 70.84it/s] 96%|█████████▌| 24/25 [00:00<00:00, 72.55it/s] 100%|██████████| 25/25 [00:00<00:00, 71.82it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 72.12it/s] 64%|██████▍ | 16/25 [00:00<00:00, 71.59it/s] 96%|█████████▌| 24/25 [00:00<00:00, 69.75it/s] 100%|██████████| 25/25 [00:00<00:00, 70.21it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 18.89it/s] 40%|████ | 4/10 [00:00<00:00, 18.79it/s] 60%|██████ | 6/10 [00:00<00:00, 18.73it/s] 80%|████████ | 8/10 [00:00<00:00, 18.73it/s] 100%|██████████| 10/10 [00:00<00:00, 18.69it/s] 100%|██████████| 10/10 [00:00<00:00, 18.72it/s] frame_idx: 162 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 98 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 frame_idx: 162 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 98 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 16%|█▌ | 161/999 [02:46<15:43, 1.13s/it] 16%|█▌ | 162/999 [02:46<11:34, 1.21it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 74.62it/s] 64%|██████▍ | 16/25 [00:00<00:00, 71.53it/s] 96%|█████████▌| 24/25 [00:00<00:00, 71.88it/s] 100%|██████████| 25/25 [00:00<00:00, 71.98it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 75.40it/s] 64%|██████▍ | 16/25 [00:00<00:00, 73.89it/s] 96%|█████████▌| 24/25 [00:00<00:00, 73.42it/s] 100%|██████████| 25/25 [00:00<00:00, 73.73it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 18.82it/s] 40%|████ | 4/10 [00:00<00:00, 18.80it/s] 60%|██████ | 6/10 [00:00<00:00, 18.75it/s] 80%|████████ | 8/10 [00:00<00:00, 18.73it/s] 100%|██████████| 10/10 [00:00<00:00, 18.73it/s] 100%|██████████| 10/10 [00:00<00:00, 18.74it/s] frame_idx: 164 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 99 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 frame_idx: 164 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 99 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 16%|█▋ | 163/999 [02:48<15:36, 1.12s/it] 16%|█▋ | 164/999 [02:48<11:26, 1.22it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 73.96it/s] 64%|██████▍ | 16/25 [00:00<00:00, 70.90it/s] 96%|█████████▌| 24/25 [00:00<00:00, 71.94it/s] 100%|██████████| 25/25 [00:00<00:00, 72.06it/s] 0%| | 0/25 [00:00<?, ?it/s] 28%|██▊ | 7/25 [00:00<00:00, 68.80it/s] 56%|█████▌ | 14/25 [00:00<00:00, 65.63it/s] 84%|████████▍ | 21/25 [00:00<00:00, 66.77it/s] 100%|██████████| 25/25 [00:00<00:00, 66.95it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 18.64it/s] 40%|████ | 4/10 [00:00<00:00, 18.47it/s] 60%|██████ | 6/10 [00:00<00:00, 18.45it/s] 80%|████████ | 8/10 [00:00<00:00, 18.45it/s] 100%|██████████| 10/10 [00:00<00:00, 18.43it/s] 100%|██████████| 10/10 [00:00<00:00, 18.44it/s] frame_idx: 166 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 100 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 frame_idx: 166 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 100 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 17%|█▋ | 165/999 [02:50<15:42, 1.13s/it] 17%|█▋ | 166/999 [02:50<11:34, 1.20it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 74.41it/s] 64%|██████▍ | 16/25 [00:00<00:00, 74.51it/s] 96%|█████████▌| 24/25 [00:00<00:00, 74.63it/s] 100%|██████████| 25/25 [00:00<00:00, 74.59it/s] 0%| | 0/25 [00:00<?, ?it/s] 28%|██▊ | 7/25 [00:00<00:00, 69.42it/s] 56%|█████▌ | 14/25 [00:00<00:00, 69.38it/s] 88%|████████▊ | 22/25 [00:00<00:00, 71.39it/s] 100%|██████████| 25/25 [00:00<00:00, 71.28it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 18.82it/s] 40%|████ | 4/10 [00:00<00:00, 18.76it/s] 60%|██████ | 6/10 [00:00<00:00, 18.72it/s] 80%|████████ | 8/10 [00:00<00:00, 18.72it/s] 100%|██████████| 10/10 [00:00<00:00, 18.72it/s] 100%|██████████| 10/10 [00:00<00:00, 18.72it/s] frame_idx: 168 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 101 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 frame_idx: 168 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 101 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 17%|█▋ | 167/999 [02:52<15:35, 1.12s/it] 17%|█▋ | 168/999 [02:52<11:26, 1.21it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 74.26it/s] 64%|██████▍ | 16/25 [00:00<00:00, 72.74it/s] 96%|█████████▌| 24/25 [00:00<00:00, 73.56it/s] 100%|██████████| 25/25 [00:00<00:00, 73.28it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 75.39it/s] 64%|██████▍ | 16/25 [00:00<00:00, 75.15it/s] 96%|█████████▌| 24/25 [00:00<00:00, 75.17it/s] 100%|██████████| 25/25 [00:00<00:00, 75.12it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 18.85it/s] 40%|████ | 4/10 [00:00<00:00, 18.73it/s] 60%|██████ | 6/10 [00:00<00:00, 18.69it/s] 80%|████████ | 8/10 [00:00<00:00, 18.69it/s] 100%|██████████| 10/10 [00:00<00:00, 18.67it/s] 100%|██████████| 10/10 [00:00<00:00, 18.69it/s] frame_idx: 170 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 102 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 frame_idx: 170 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 102 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 17%|█▋ | 169/999 [02:54<15:20, 1.11s/it] 17%|█▋ | 170/999 [02:54<11:17, 1.22it/s] 0%| | 0/25 [00:00<?, ?it/s] 28%|██▊ | 7/25 [00:00<00:00, 69.91it/s] 60%|██████ | 15/25 [00:00<00:00, 72.77it/s] 92%|█████████▏| 23/25 [00:00<00:00, 73.66it/s] 100%|██████████| 25/25 [00:00<00:00, 73.26it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 75.30it/s] 64%|██████▍ | 16/25 [00:00<00:00, 75.21it/s] 96%|█████████▌| 24/25 [00:00<00:00, 74.79it/s] 100%|██████████| 25/25 [00:00<00:00, 74.86it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 18.84it/s] 40%|████ | 4/10 [00:00<00:00, 18.75it/s] 60%|██████ | 6/10 [00:00<00:00, 18.72it/s] 80%|████████ | 8/10 [00:00<00:00, 18.72it/s] 100%|██████████| 10/10 [00:00<00:00, 18.69it/s] 100%|██████████| 10/10 [00:00<00:00, 18.71it/s] frame_idx: 172 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 103 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 frame_idx: 172 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 103 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 17%|█▋ | 171/999 [02:56<15:17, 1.11s/it] 17%|█▋ | 172/999 [02:56<11:13, 1.23it/s] 0%| | 0/25 [00:00<?, ?it/s] 28%|██▊ | 7/25 [00:00<00:00, 68.72it/s] 60%|██████ | 15/25 [00:00<00:00, 70.21it/s] 92%|█████████▏| 23/25 [00:00<00:00, 70.61it/s] 100%|██████████| 25/25 [00:00<00:00, 70.17it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 75.41it/s] 64%|██████▍ | 16/25 [00:00<00:00, 75.18it/s] 96%|█████████▌| 24/25 [00:00<00:00, 75.07it/s] 100%|██████████| 25/25 [00:00<00:00, 74.84it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 18.90it/s] 40%|████ | 4/10 [00:00<00:00, 18.72it/s] 60%|██████ | 6/10 [00:00<00:00, 18.64it/s] 80%|████████ | 8/10 [00:00<00:00, 18.63it/s] 100%|██████████| 10/10 [00:00<00:00, 18.64it/s] 100%|██████████| 10/10 [00:00<00:00, 18.66it/s] frame_idx: 174 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 104 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 frame_idx: 174 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 104 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 17%|█▋ | 173/999 [02:58<15:20, 1.11s/it] 17%|█▋ | 174/999 [02:58<11:18, 1.22it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 74.15it/s] 64%|██████▍ | 16/25 [00:00<00:00, 72.36it/s] 96%|█████████▌| 24/25 [00:00<00:00, 71.27it/s] 100%|██████████| 25/25 [00:00<00:00, 71.86it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 74.97it/s] 64%|██████▍ | 16/25 [00:00<00:00, 75.01it/s] 96%|█████████▌| 24/25 [00:00<00:00, 74.90it/s] 100%|██████████| 25/25 [00:00<00:00, 74.93it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 18.89it/s] 40%|████ | 4/10 [00:00<00:00, 18.77it/s] 60%|██████ | 6/10 [00:00<00:00, 18.75it/s] 80%|████████ | 8/10 [00:00<00:00, 18.73it/s] 100%|██████████| 10/10 [00:00<00:00, 18.72it/s] 100%|██████████| 10/10 [00:00<00:00, 18.74it/s] frame_idx: 176 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 105 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 frame_idx: 176 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 105 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 18%|█▊ | 175/999 [03:00<15:15, 1.11s/it] 18%|█▊ | 176/999 [03:00<11:11, 1.23it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 73.92it/s] 64%|██████▍ | 16/25 [00:00<00:00, 74.46it/s] 96%|█████████▌| 24/25 [00:00<00:00, 73.47it/s] 100%|██████████| 25/25 [00:00<00:00, 73.62it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 74.85it/s] 64%|██████▍ | 16/25 [00:00<00:00, 74.74it/s] 96%|█████████▌| 24/25 [00:00<00:00, 74.63it/s] 100%|██████████| 25/25 [00:00<00:00, 74.53it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 18.87it/s] 40%|████ | 4/10 [00:00<00:00, 18.72it/s] 60%|██████ | 6/10 [00:00<00:00, 18.68it/s] 80%|████████ | 8/10 [00:00<00:00, 18.67it/s] 100%|██████████| 10/10 [00:00<00:00, 18.67it/s] 100%|██████████| 10/10 [00:00<00:00, 18.68it/s] frame_idx: 178 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 106 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 frame_idx: 178 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 106 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 18%|█▊ | 177/999 [03:02<15:14, 1.11s/it] 18%|█▊ | 178/999 [03:02<11:13, 1.22it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 74.23it/s] 64%|██████▍ | 16/25 [00:00<00:00, 74.15it/s] 96%|█████████▌| 24/25 [00:00<00:00, 71.83it/s] 100%|██████████| 25/25 [00:00<00:00, 72.28it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 71.75it/s] 64%|██████▍ | 16/25 [00:00<00:00, 73.65it/s] 96%|█████████▌| 24/25 [00:00<00:00, 74.01it/s] 100%|██████████| 25/25 [00:00<00:00, 73.65it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 18.87it/s] 40%|████ | 4/10 [00:00<00:00, 18.65it/s] 60%|██████ | 6/10 [00:00<00:00, 18.64it/s] 80%|████████ | 8/10 [00:00<00:00, 18.64it/s] 100%|██████████| 10/10 [00:00<00:00, 18.63it/s] 100%|██████████| 10/10 [00:00<00:00, 18.64it/s] frame_idx: 180 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 107 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 frame_idx: 180 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 107 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 18%|█▊ | 179/999 [03:04<15:13, 1.11s/it] 18%|█▊ | 180/999 [03:04<11:10, 1.22it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 71.34it/s] 64%|██████▍ | 16/25 [00:00<00:00, 69.71it/s] 96%|█████████▌| 24/25 [00:00<00:00, 71.15it/s] 100%|██████████| 25/25 [00:00<00:00, 70.08it/s] 0%| | 0/25 [00:00<?, ?it/s] 28%|██▊ | 7/25 [00:00<00:00, 68.60it/s] 56%|█████▌ | 14/25 [00:00<00:00, 68.88it/s] 88%|████████▊ | 22/25 [00:00<00:00, 70.68it/s] 100%|██████████| 25/25 [00:00<00:00, 70.71it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 18.72it/s] 40%|████ | 4/10 [00:00<00:00, 18.60it/s] 60%|██████ | 6/10 [00:00<00:00, 18.63it/s] 80%|████████ | 8/10 [00:00<00:00, 18.64it/s] 100%|██████████| 10/10 [00:00<00:00, 18.63it/s] 100%|██████████| 10/10 [00:00<00:00, 18.62it/s] frame_idx: 182 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 108 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 frame_idx: 182 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 108 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 18%|█▊ | 181/999 [03:06<15:45, 1.16s/it] 18%|█▊ | 182/999 [03:06<11:47, 1.15it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 71.97it/s] 64%|██████▍ | 16/25 [00:00<00:00, 73.03it/s] 96%|█████████▌| 24/25 [00:00<00:00, 73.06it/s] 100%|██████████| 25/25 [00:00<00:00, 73.00it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 74.53it/s] 64%|██████▍ | 16/25 [00:00<00:00, 74.73it/s] 96%|█████████▌| 24/25 [00:00<00:00, 73.75it/s] 100%|██████████| 25/25 [00:00<00:00, 73.48it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 18.79it/s] 40%|████ | 4/10 [00:00<00:00, 18.68it/s] 60%|██████ | 6/10 [00:00<00:00, 18.68it/s] 80%|████████ | 8/10 [00:00<00:00, 18.66it/s] 100%|██████████| 10/10 [00:00<00:00, 18.62it/s] 100%|██████████| 10/10 [00:00<00:00, 18.64it/s] frame_idx: 184 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 109 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 frame_idx: 184 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 109 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 18%|█▊ | 183/999 [03:08<16:39, 1.23s/it] 18%|█▊ | 184/999 [03:08<12:09, 1.12it/s] 0%| | 0/25 [00:00<?, ?it/s] 28%|██▊ | 7/25 [00:00<00:00, 69.22it/s] 60%|██████ | 15/25 [00:00<00:00, 72.39it/s] 92%|█████████▏| 23/25 [00:00<00:00, 73.05it/s] 100%|██████████| 25/25 [00:00<00:00, 72.09it/s] 0%| | 0/25 [00:00<?, ?it/s] 28%|██▊ | 7/25 [00:00<00:00, 68.71it/s] 56%|█████▌ | 14/25 [00:00<00:00, 68.74it/s] 88%|████████▊ | 22/25 [00:00<00:00, 69.77it/s] 100%|██████████| 25/25 [00:00<00:00, 69.84it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 18.85it/s] 40%|████ | 4/10 [00:00<00:00, 18.72it/s] 60%|██████ | 6/10 [00:00<00:00, 18.69it/s] 80%|████████ | 8/10 [00:00<00:00, 18.65it/s] 100%|██████████| 10/10 [00:00<00:00, 18.65it/s] 100%|██████████| 10/10 [00:00<00:00, 18.67it/s] frame_idx: 186 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 110 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 frame_idx: 186 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 110 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 19%|█▊ | 185/999 [03:10<15:53, 1.17s/it] 19%|█▊ | 186/999 [03:10<11:38, 1.16it/s] 0%| | 0/25 [00:00<?, ?it/s] 28%|██▊ | 7/25 [00:00<00:00, 68.31it/s] 56%|█████▌ | 14/25 [00:00<00:00, 68.52it/s] 84%|████████▍ | 21/25 [00:00<00:00, 69.19it/s] 100%|██████████| 25/25 [00:00<00:00, 69.84it/s] 0%| | 0/25 [00:00<?, ?it/s] 28%|██▊ | 7/25 [00:00<00:00, 68.63it/s] 56%|█████▌ | 14/25 [00:00<00:00, 69.04it/s] 88%|████████▊ | 22/25 [00:00<00:00, 71.70it/s] 100%|██████████| 25/25 [00:00<00:00, 71.32it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 18.89it/s] 40%|████ | 4/10 [00:00<00:00, 18.78it/s] 60%|██████ | 6/10 [00:00<00:00, 18.74it/s] 80%|████████ | 8/10 [00:00<00:00, 18.75it/s] 100%|██████████| 10/10 [00:00<00:00, 18.72it/s] 100%|██████████| 10/10 [00:00<00:00, 18.74it/s] frame_idx: 188 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 111 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 frame_idx: 188 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 111 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 19%|█▊ | 187/999 [03:12<15:30, 1.15s/it] 19%|█▉ | 188/999 [03:12<11:22, 1.19it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 74.07it/s] 64%|██████▍ | 16/25 [00:00<00:00, 71.65it/s] 96%|█████████▌| 24/25 [00:00<00:00, 70.23it/s] 100%|██████████| 25/25 [00:00<00:00, 70.74it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 73.18it/s] 64%|██████▍ | 16/25 [00:00<00:00, 72.85it/s] 96%|█████████▌| 24/25 [00:00<00:00, 72.63it/s] 100%|██████████| 25/25 [00:00<00:00, 72.78it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 18.90it/s] 40%|████ | 4/10 [00:00<00:00, 18.78it/s] 60%|██████ | 6/10 [00:00<00:00, 18.76it/s] 80%|████████ | 8/10 [00:00<00:00, 18.75it/s] 100%|██████████| 10/10 [00:00<00:00, 18.72it/s] 100%|██████████| 10/10 [00:00<00:00, 18.74it/s] frame_idx: 190 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 112 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 frame_idx: 190 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 112 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 19%|█▉ | 189/999 [03:14<15:12, 1.13s/it] 19%|█▉ | 190/999 [03:14<11:08, 1.21it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 74.09it/s] 64%|██████▍ | 16/25 [00:00<00:00, 74.37it/s] 96%|█████████▌| 24/25 [00:00<00:00, 71.87it/s] 100%|██████████| 25/25 [00:00<00:00, 72.34it/s] 0%| | 0/25 [00:00<?, ?it/s] 28%|██▊ | 7/25 [00:00<00:00, 69.50it/s] 60%|██████ | 15/25 [00:00<00:00, 72.29it/s] 92%|█████████▏| 23/25 [00:00<00:00, 71.85it/s] 100%|██████████| 25/25 [00:00<00:00, 71.51it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 18.88it/s] 40%|████ | 4/10 [00:00<00:00, 18.77it/s] 60%|██████ | 6/10 [00:00<00:00, 18.76it/s] 80%|████████ | 8/10 [00:00<00:00, 18.70it/s] 100%|██████████| 10/10 [00:00<00:00, 18.70it/s] 100%|██████████| 10/10 [00:00<00:00, 18.72it/s] frame_idx: 192 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 113 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 frame_idx: 192 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 113 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 19%|█▉ | 191/999 [03:16<15:04, 1.12s/it] 19%|█▉ | 192/999 [03:16<11:03, 1.22it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 74.61it/s] 64%|██████▍ | 16/25 [00:00<00:00, 74.68it/s] 96%|█████████▌| 24/25 [00:00<00:00, 74.47it/s] 100%|██████████| 25/25 [00:00<00:00, 74.24it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 72.19it/s] 64%|██████▍ | 16/25 [00:00<00:00, 70.35it/s] 96%|█████████▌| 24/25 [00:00<00:00, 71.64it/s] 100%|██████████| 25/25 [00:00<00:00, 71.35it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 18.89it/s] 40%|████ | 4/10 [00:00<00:00, 18.80it/s] 60%|██████ | 6/10 [00:00<00:00, 18.76it/s] 80%|████████ | 8/10 [00:00<00:00, 18.72it/s] 100%|██████████| 10/10 [00:00<00:00, 18.68it/s] 100%|██████████| 10/10 [00:00<00:00, 18.71it/s] frame_idx: 194 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 114 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 frame_idx: 194 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 114 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 19%|█▉ | 193/999 [03:18<14:59, 1.12s/it] 19%|█▉ | 194/999 [03:18<11:00, 1.22it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 73.96it/s] 64%|██████▍ | 16/25 [00:00<00:00, 74.46it/s] 96%|█████████▌| 24/25 [00:00<00:00, 74.19it/s] 100%|██████████| 25/25 [00:00<00:00, 74.16it/s] 0%| | 0/25 [00:00<?, ?it/s] 28%|██▊ | 7/25 [00:00<00:00, 69.56it/s] 56%|█████▌ | 14/25 [00:00<00:00, 69.18it/s] 84%|████████▍ | 21/25 [00:00<00:00, 69.16it/s] 100%|██████████| 25/25 [00:00<00:00, 69.85it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 18.89it/s] 40%|████ | 4/10 [00:00<00:00, 18.74it/s] 60%|██████ | 6/10 [00:00<00:00, 18.71it/s] 80%|████████ | 8/10 [00:00<00:00, 18.68it/s] 100%|██████████| 10/10 [00:00<00:00, 18.67it/s] 100%|██████████| 10/10 [00:00<00:00, 18.69it/s] frame_idx: 196 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 115 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 frame_idx: 196 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 115 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 20%|█▉ | 195/999 [03:20<14:59, 1.12s/it] 20%|█▉ | 196/999 [03:20<11:00, 1.22it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 73.77it/s] 64%|██████▍ | 16/25 [00:00<00:00, 74.04it/s] 96%|█████████▌| 24/25 [00:00<00:00, 74.41it/s] 100%|██████████| 25/25 [00:00<00:00, 74.30it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 70.05it/s] 64%|██████▍ | 16/25 [00:00<00:00, 71.93it/s] 96%|█████████▌| 24/25 [00:00<00:00, 73.23it/s] 100%|██████████| 25/25 [00:00<00:00, 72.77it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 18.83it/s] 40%|████ | 4/10 [00:00<00:00, 18.72it/s] 60%|██████ | 6/10 [00:00<00:00, 18.74it/s] 80%|████████ | 8/10 [00:00<00:00, 18.73it/s] 100%|██████████| 10/10 [00:00<00:00, 18.68it/s] 100%|██████████| 10/10 [00:00<00:00, 18.70it/s] frame_idx: 198 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 116 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 frame_idx: 198 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 116 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 20%|█▉ | 197/999 [03:22<14:52, 1.11s/it] 20%|█▉ | 198/999 [03:22<10:55, 1.22it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 74.93it/s] 64%|██████▍ | 16/25 [00:00<00:00, 71.98it/s] 96%|█████████▌| 24/25 [00:00<00:00, 71.30it/s] 100%|██████████| 25/25 [00:00<00:00, 71.67it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 73.26it/s] 64%|██████▍ | 16/25 [00:00<00:00, 71.89it/s] 96%|█████████▌| 24/25 [00:00<00:00, 73.35it/s] 100%|██████████| 25/25 [00:00<00:00, 72.96it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 18.84it/s] 40%|████ | 4/10 [00:00<00:00, 18.76it/s] 60%|██████ | 6/10 [00:00<00:00, 18.73it/s] 80%|████████ | 8/10 [00:00<00:00, 18.70it/s] 100%|██████████| 10/10 [00:00<00:00, 18.70it/s] 100%|██████████| 10/10 [00:00<00:00, 18.71it/s] frame_idx: 200 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 117 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 frame_idx: 200 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 117 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 20%|█▉ | 199/999 [03:24<14:53, 1.12s/it] 20%|██ | 200/999 [03:24<10:57, 1.22it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 74.10it/s] 64%|██████▍ | 16/25 [00:00<00:00, 74.61it/s] 96%|█████████▌| 24/25 [00:00<00:00, 72.55it/s] 100%|██████████| 25/25 [00:00<00:00, 72.94it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 70.99it/s] 64%|██████▍ | 16/25 [00:00<00:00, 68.56it/s] 96%|█████████▌| 24/25 [00:00<00:00, 69.27it/s] 100%|██████████| 25/25 [00:00<00:00, 69.10it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 18.78it/s] 40%|████ | 4/10 [00:00<00:00, 18.74it/s] 60%|██████ | 6/10 [00:00<00:00, 18.69it/s] 80%|████████ | 8/10 [00:00<00:00, 18.68it/s] 100%|██████████| 10/10 [00:00<00:00, 18.68it/s] 100%|██████████| 10/10 [00:00<00:00, 18.68it/s] frame_idx: 202 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 118 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 frame_idx: 202 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 118 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 20%|██ | 201/999 [03:26<14:57, 1.12s/it] 20%|██ | 202/999 [03:26<10:59, 1.21it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 74.20it/s] 64%|██████▍ | 16/25 [00:00<00:00, 74.61it/s] 96%|█████████▌| 24/25 [00:00<00:00, 74.88it/s] 100%|██████████| 25/25 [00:00<00:00, 73.72it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 75.19it/s] 64%|██████▍ | 16/25 [00:00<00:00, 74.20it/s] 96%|█████████▌| 24/25 [00:00<00:00, 73.66it/s] 100%|██████████| 25/25 [00:00<00:00, 73.90it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 18.89it/s] 40%|████ | 4/10 [00:00<00:00, 18.76it/s] 60%|██████ | 6/10 [00:00<00:00, 18.76it/s] 80%|████████ | 8/10 [00:00<00:00, 18.71it/s] 100%|██████████| 10/10 [00:00<00:00, 18.68it/s] 100%|██████████| 10/10 [00:00<00:00, 18.70it/s] frame_idx: 204 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 119 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 frame_idx: 204 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 119 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 20%|██ | 203/999 [03:27<14:48, 1.12s/it] 20%|██ | 204/999 [03:28<10:53, 1.22it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 74.47it/s] 64%|██████▍ | 16/25 [00:00<00:00, 74.72it/s] 96%|█████████▌| 24/25 [00:00<00:00, 72.85it/s] 100%|██████████| 25/25 [00:00<00:00, 73.30it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 72.45it/s] 64%|██████▍ | 16/25 [00:00<00:00, 73.56it/s] 96%|█████████▌| 24/25 [00:00<00:00, 69.36it/s] 100%|██████████| 25/25 [00:00<00:00, 70.05it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 18.85it/s] 40%|████ | 4/10 [00:00<00:00, 18.79it/s] 60%|██████ | 6/10 [00:00<00:00, 18.73it/s] 80%|████████ | 8/10 [00:00<00:00, 18.72it/s] 100%|██████████| 10/10 [00:00<00:00, 18.71it/s] 100%|██████████| 10/10 [00:00<00:00, 18.72it/s] frame_idx: 206 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 120 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 frame_idx: 206 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 120 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 21%|██ | 205/999 [03:29<14:49, 1.12s/it] 21%|██ | 206/999 [03:30<10:56, 1.21it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 74.11it/s] 64%|██████▍ | 16/25 [00:00<00:00, 74.57it/s] 96%|█████████▌| 24/25 [00:00<00:00, 74.84it/s] 100%|██████████| 25/25 [00:00<00:00, 74.65it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 75.36it/s] 64%|██████▍ | 16/25 [00:00<00:00, 75.11it/s] 96%|█████████▌| 24/25 [00:00<00:00, 74.17it/s] 100%|██████████| 25/25 [00:00<00:00, 74.23it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 18.93it/s] 40%|████ | 4/10 [00:00<00:00, 18.77it/s] 60%|██████ | 6/10 [00:00<00:00, 18.76it/s] 80%|████████ | 8/10 [00:00<00:00, 18.71it/s] 100%|██████████| 10/10 [00:00<00:00, 18.70it/s] 100%|██████████| 10/10 [00:00<00:00, 18.73it/s] frame_idx: 208 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 121 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 frame_idx: 208 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 121 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 21%|██ | 207/999 [03:31<14:43, 1.12s/it] 21%|██ | 208/999 [03:31<10:50, 1.22it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 74.95it/s] 64%|██████▍ | 16/25 [00:00<00:00, 75.15it/s] 96%|█████████▌| 24/25 [00:00<00:00, 75.20it/s] 100%|██████████| 25/25 [00:00<00:00, 75.16it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 75.33it/s] 64%|██████▍ | 16/25 [00:00<00:00, 75.33it/s] 96%|█████████▌| 24/25 [00:00<00:00, 75.28it/s] 100%|██████████| 25/25 [00:00<00:00, 75.27it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 18.87it/s] 40%|████ | 4/10 [00:00<00:00, 18.77it/s] 60%|██████ | 6/10 [00:00<00:00, 18.77it/s] 80%|████████ | 8/10 [00:00<00:00, 18.77it/s] 100%|██████████| 10/10 [00:00<00:00, 18.74it/s] 100%|██████████| 10/10 [00:00<00:00, 18.75it/s] frame_idx: 210 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 122 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 frame_idx: 210 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 122 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 21%|██ | 209/999 [03:33<14:39, 1.11s/it] 21%|██ | 210/999 [03:33<10:45, 1.22it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 74.57it/s] 64%|██████▍ | 16/25 [00:00<00:00, 74.94it/s] 96%|█████████▌| 24/25 [00:00<00:00, 75.10it/s] 100%|██████████| 25/25 [00:00<00:00, 75.00it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 75.29it/s] 64%|██████▍ | 16/25 [00:00<00:00, 75.32it/s] 96%|█████████▌| 24/25 [00:00<00:00, 75.32it/s] 100%|██████████| 25/25 [00:00<00:00, 75.33it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 18.57it/s] 40%|████ | 4/10 [00:00<00:00, 18.67it/s] 60%|██████ | 6/10 [00:00<00:00, 18.68it/s] 80%|████████ | 8/10 [00:00<00:00, 18.73it/s] 100%|██████████| 10/10 [00:00<00:00, 18.73it/s] 100%|██████████| 10/10 [00:00<00:00, 18.70it/s] frame_idx: 212 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 123 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 frame_idx: 212 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 123 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 21%|██ | 211/999 [03:35<14:28, 1.10s/it] 21%|██ | 212/999 [03:35<10:38, 1.23it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 73.76it/s] 64%|██████▍ | 16/25 [00:00<00:00, 74.70it/s] 96%|█████████▌| 24/25 [00:00<00:00, 74.78it/s] 100%|██████████| 25/25 [00:00<00:00, 74.68it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 75.49it/s] 64%|██████▍ | 16/25 [00:00<00:00, 75.40it/s] 96%|█████████▌| 24/25 [00:00<00:00, 75.45it/s] 100%|██████████| 25/25 [00:00<00:00, 75.45it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 18.89it/s] 40%|████ | 4/10 [00:00<00:00, 18.78it/s] 60%|██████ | 6/10 [00:00<00:00, 18.73it/s] 80%|████████ | 8/10 [00:00<00:00, 18.73it/s] 100%|██████████| 10/10 [00:00<00:00, 18.71it/s] 100%|██████████| 10/10 [00:00<00:00, 18.73it/s] frame_idx: 214 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 124 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 frame_idx: 214 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 124 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 21%|██▏ | 213/999 [03:37<14:22, 1.10s/it] 21%|██▏ | 214/999 [03:37<10:32, 1.24it/s] 0%| | 0/25 [00:00<?, ?it/s] 28%|██▊ | 7/25 [00:00<00:00, 67.74it/s] 60%|██████ | 15/25 [00:00<00:00, 69.22it/s] 92%|█████████▏| 23/25 [00:00<00:00, 70.67it/s] 100%|██████████| 25/25 [00:00<00:00, 70.49it/s] 0%| | 0/25 [00:00<?, ?it/s] 28%|██▊ | 7/25 [00:00<00:00, 69.73it/s] 60%|██████ | 15/25 [00:00<00:00, 71.01it/s] 92%|█████████▏| 23/25 [00:00<00:00, 72.89it/s] 100%|██████████| 25/25 [00:00<00:00, 72.46it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 18.80it/s] 40%|████ | 4/10 [00:00<00:00, 18.76it/s] 60%|██████ | 6/10 [00:00<00:00, 18.67it/s] 80%|████████ | 8/10 [00:00<00:00, 18.70it/s] 100%|██████████| 10/10 [00:00<00:00, 18.68it/s] 100%|██████████| 10/10 [00:00<00:00, 18.69it/s] frame_idx: 216 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 125 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 frame_idx: 216 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 125 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 22%|██▏ | 215/999 [03:39<14:29, 1.11s/it] 22%|██▏ | 216/999 [03:39<10:39, 1.22it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 71.43it/s] 64%|██████▍ | 16/25 [00:00<00:00, 70.37it/s] 96%|█████████▌| 24/25 [00:00<00:00, 70.56it/s] 100%|██████████| 25/25 [00:00<00:00, 70.30it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 73.02it/s] 64%|██████▍ | 16/25 [00:00<00:00, 74.13it/s] 96%|█████████▌| 24/25 [00:00<00:00, 74.61it/s] 100%|██████████| 25/25 [00:00<00:00, 74.32it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 18.86it/s] 40%|████ | 4/10 [00:00<00:00, 18.77it/s] 60%|██████ | 6/10 [00:00<00:00, 18.70it/s] 80%|████████ | 8/10 [00:00<00:00, 18.67it/s] 100%|██████████| 10/10 [00:00<00:00, 18.66it/s] 100%|██████████| 10/10 [00:00<00:00, 18.69it/s] frame_idx: 218 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 126 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 frame_idx: 218 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 126 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 22%|██▏ | 217/999 [03:41<14:29, 1.11s/it] 22%|██▏ | 218/999 [03:41<10:37, 1.22it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 72.54it/s] 64%|██████▍ | 16/25 [00:00<00:00, 70.41it/s] 96%|█████████▌| 24/25 [00:00<00:00, 70.47it/s] 100%|██████████| 25/25 [00:00<00:00, 70.63it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 74.86it/s] 64%|██████▍ | 16/25 [00:00<00:00, 75.12it/s] 96%|█████████▌| 24/25 [00:00<00:00, 75.17it/s] 100%|██████████| 25/25 [00:00<00:00, 75.08it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 18.89it/s] 40%|████ | 4/10 [00:00<00:00, 18.80it/s] 60%|██████ | 6/10 [00:00<00:00, 18.76it/s] 80%|████████ | 8/10 [00:00<00:00, 18.75it/s] 100%|██████████| 10/10 [00:00<00:00, 18.72it/s] 100%|██████████| 10/10 [00:00<00:00, 18.74it/s] frame_idx: 220 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 127 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 frame_idx: 220 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 127 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 22%|██▏ | 219/999 [03:43<14:27, 1.11s/it] 22%|██▏ | 220/999 [03:43<10:36, 1.22it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 72.43it/s] 64%|██████▍ | 16/25 [00:00<00:00, 71.56it/s] 96%|█████████▌| 24/25 [00:00<00:00, 70.73it/s] 100%|██████████| 25/25 [00:00<00:00, 70.98it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 75.26it/s] 64%|██████▍ | 16/25 [00:00<00:00, 75.11it/s] 96%|█████████▌| 24/25 [00:00<00:00, 74.17it/s] 100%|██████████| 25/25 [00:00<00:00, 74.47it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 18.76it/s] 40%|████ | 4/10 [00:00<00:00, 18.70it/s] 60%|██████ | 6/10 [00:00<00:00, 18.72it/s] 80%|████████ | 8/10 [00:00<00:00, 18.70it/s] 100%|██████████| 10/10 [00:00<00:00, 18.57it/s] 100%|██████████| 10/10 [00:00<00:00, 18.63it/s] frame_idx: 222 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 128 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 frame_idx: 222 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 128 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 22%|██▏ | 221/999 [03:45<14:23, 1.11s/it] 22%|██▏ | 222/999 [03:45<10:33, 1.23it/s] 0%| | 0/25 [00:00<?, ?it/s] 28%|██▊ | 7/25 [00:00<00:00, 68.77it/s] 60%|██████ | 15/25 [00:00<00:00, 71.49it/s] 92%|█████████▏| 23/25 [00:00<00:00, 72.92it/s] 100%|██████████| 25/25 [00:00<00:00, 70.92it/s] 0%| | 0/25 [00:00<?, ?it/s] 28%|██▊ | 7/25 [00:00<00:00, 69.87it/s] 56%|█████▌ | 14/25 [00:00<00:00, 69.70it/s] 84%|████████▍ | 21/25 [00:00<00:00, 69.83it/s] 100%|██████████| 25/25 [00:00<00:00, 69.87it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 18.87it/s] 40%|████ | 4/10 [00:00<00:00, 18.79it/s] 60%|██████ | 6/10 [00:00<00:00, 18.72it/s] 80%|████████ | 8/10 [00:00<00:00, 18.70it/s] 100%|██████████| 10/10 [00:00<00:00, 18.66it/s] 100%|██████████| 10/10 [00:00<00:00, 18.69it/s] frame_idx: 224 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 129 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 frame_idx: 224 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 129 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 22%|██▏ | 223/999 [03:47<14:29, 1.12s/it] 22%|██▏ | 224/999 [03:47<10:38, 1.21it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 71.67it/s] 64%|██████▍ | 16/25 [00:00<00:00, 73.73it/s] 96%|█████████▌| 24/25 [00:00<00:00, 73.38it/s] 100%|██████████| 25/25 [00:00<00:00, 73.30it/s] 0%| | 0/25 [00:00<?, ?it/s] 28%|██▊ | 7/25 [00:00<00:00, 68.71it/s] 56%|█████▌ | 14/25 [00:00<00:00, 68.42it/s] 84%|████████▍ | 21/25 [00:00<00:00, 68.30it/s] 100%|██████████| 25/25 [00:00<00:00, 68.59it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 18.82it/s] 40%|████ | 4/10 [00:00<00:00, 18.74it/s] 60%|██████ | 6/10 [00:00<00:00, 18.72it/s] 80%|████████ | 8/10 [00:00<00:00, 18.65it/s] 100%|██████████| 10/10 [00:00<00:00, 18.62it/s] 100%|██████████| 10/10 [00:00<00:00, 18.65it/s] frame_idx: 226 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 130 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 frame_idx: 226 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 130 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 23%|██▎ | 225/999 [03:49<14:29, 1.12s/it] 23%|██▎ | 226/999 [03:49<10:38, 1.21it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 71.62it/s] 64%|██████▍ | 16/25 [00:00<00:00, 71.57it/s] 96%|█████████▌| 24/25 [00:00<00:00, 72.91it/s] 100%|██████████| 25/25 [00:00<00:00, 72.58it/s] 0%| | 0/25 [00:00<?, ?it/s] 28%|██▊ | 7/25 [00:00<00:00, 67.29it/s] 60%|██████ | 15/25 [00:00<00:00, 70.01it/s] 92%|█████████▏| 23/25 [00:00<00:00, 72.20it/s] 100%|██████████| 25/25 [00:00<00:00, 71.58it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 18.87it/s] 40%|████ | 4/10 [00:00<00:00, 18.76it/s] 60%|██████ | 6/10 [00:00<00:00, 18.74it/s] 80%|████████ | 8/10 [00:00<00:00, 18.70it/s] 100%|██████████| 10/10 [00:00<00:00, 18.68it/s] 100%|██████████| 10/10 [00:00<00:00, 18.70it/s] frame_idx: 228 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 131 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 frame_idx: 228 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 131 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 23%|██▎ | 227/999 [03:51<14:30, 1.13s/it] 23%|██▎ | 228/999 [03:51<10:39, 1.21it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 73.96it/s] 64%|██████▍ | 16/25 [00:00<00:00, 74.47it/s] 96%|█████████▌| 24/25 [00:00<00:00, 74.16it/s] 100%|██████████| 25/25 [00:00<00:00, 73.97it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 70.30it/s] 64%|██████▍ | 16/25 [00:00<00:00, 71.62it/s] 96%|█████████▌| 24/25 [00:00<00:00, 73.08it/s] 100%|██████████| 25/25 [00:00<00:00, 72.28it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 18.83it/s] 40%|████ | 4/10 [00:00<00:00, 18.74it/s] 60%|██████ | 6/10 [00:00<00:00, 18.69it/s] 80%|████████ | 8/10 [00:00<00:00, 18.68it/s] 100%|██████████| 10/10 [00:00<00:00, 18.64it/s] 100%|██████████| 10/10 [00:00<00:00, 18.66it/s] frame_idx: 230 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 132 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 frame_idx: 230 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 132 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 23%|██▎ | 229/999 [03:53<14:22, 1.12s/it] 23%|██▎ | 230/999 [03:53<10:32, 1.22it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 73.41it/s] 64%|██████▍ | 16/25 [00:00<00:00, 74.25it/s] 96%|█████████▌| 24/25 [00:00<00:00, 74.61it/s] 100%|██████████| 25/25 [00:00<00:00, 74.40it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 75.33it/s] 64%|██████▍ | 16/25 [00:00<00:00, 72.54it/s] 96%|█████████▌| 24/25 [00:00<00:00, 71.46it/s] 100%|██████████| 25/25 [00:00<00:00, 71.90it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 18.83it/s] 40%|████ | 4/10 [00:00<00:00, 18.70it/s] 60%|██████ | 6/10 [00:00<00:00, 18.64it/s] 80%|████████ | 8/10 [00:00<00:00, 18.67it/s] 100%|██████████| 10/10 [00:00<00:00, 18.64it/s] 100%|██████████| 10/10 [00:00<00:00, 18.66it/s] frame_idx: 232 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 133 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 frame_idx: 232 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 133 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 23%|██▎ | 231/999 [03:55<14:15, 1.11s/it] 23%|██▎ | 232/999 [03:55<10:28, 1.22it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 74.17it/s] 64%|██████▍ | 16/25 [00:00<00:00, 74.30it/s] 96%|█████████▌| 24/25 [00:00<00:00, 72.22it/s] 100%|██████████| 25/25 [00:00<00:00, 72.75it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 71.20it/s] 64%|██████▍ | 16/25 [00:00<00:00, 71.63it/s] 96%|█████████▌| 24/25 [00:00<00:00, 73.12it/s] 100%|██████████| 25/25 [00:00<00:00, 72.25it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 18.80it/s] 40%|████ | 4/10 [00:00<00:00, 18.74it/s] 60%|██████ | 6/10 [00:00<00:00, 18.68it/s] 80%|████████ | 8/10 [00:00<00:00, 18.69it/s] 100%|██████████| 10/10 [00:00<00:00, 18.66it/s] 100%|██████████| 10/10 [00:00<00:00, 18.68it/s] frame_idx: 234 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 134 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 frame_idx: 234 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 134 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 23%|██▎ | 233/999 [03:56<14:13, 1.11s/it] 23%|██▎ | 234/999 [03:57<10:27, 1.22it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 74.45it/s] 64%|██████▍ | 16/25 [00:00<00:00, 74.76it/s] 96%|█████████▌| 24/25 [00:00<00:00, 74.82it/s] 100%|██████████| 25/25 [00:00<00:00, 74.69it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 75.42it/s] 64%|██████▍ | 16/25 [00:00<00:00, 74.82it/s] 96%|█████████▌| 24/25 [00:00<00:00, 72.99it/s] 100%|██████████| 25/25 [00:00<00:00, 72.98it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 18.78it/s] 40%|████ | 4/10 [00:00<00:00, 18.76it/s] 60%|██████ | 6/10 [00:00<00:00, 18.72it/s] 80%|████████ | 8/10 [00:00<00:00, 18.72it/s] 100%|██████████| 10/10 [00:00<00:00, 18.74it/s] 100%|██████████| 10/10 [00:00<00:00, 18.73it/s] frame_idx: 236 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 135 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 frame_idx: 236 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 135 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 24%|██▎ | 235/999 [03:58<14:06, 1.11s/it] 24%|██▎ | 236/999 [03:59<10:23, 1.22it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 74.58it/s] 64%|██████▍ | 16/25 [00:00<00:00, 75.00it/s] 96%|█████████▌| 24/25 [00:00<00:00, 74.63it/s] 100%|██████████| 25/25 [00:00<00:00, 74.67it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 74.69it/s] 64%|██████▍ | 16/25 [00:00<00:00, 74.71it/s] 96%|█████████▌| 24/25 [00:00<00:00, 74.75it/s] 100%|██████████| 25/25 [00:00<00:00, 74.69it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 18.85it/s] 40%|████ | 4/10 [00:00<00:00, 18.75it/s] 60%|██████ | 6/10 [00:00<00:00, 18.73it/s] 80%|████████ | 8/10 [00:00<00:00, 18.74it/s] 100%|██████████| 10/10 [00:00<00:00, 18.70it/s] 100%|██████████| 10/10 [00:00<00:00, 18.71it/s] frame_idx: 238 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 136 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 frame_idx: 238 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 136 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 24%|██▎ | 237/999 [04:00<14:04, 1.11s/it] 24%|██▍ | 238/999 [04:00<10:19, 1.23it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 74.10it/s] 64%|██████▍ | 16/25 [00:00<00:00, 74.82it/s] 96%|█████████▌| 24/25 [00:00<00:00, 74.50it/s] 100%|██████████| 25/25 [00:00<00:00, 74.30it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 75.23it/s] 64%|██████▍ | 16/25 [00:00<00:00, 75.01it/s] 96%|█████████▌| 24/25 [00:00<00:00, 74.83it/s] 100%|██████████| 25/25 [00:00<00:00, 74.84it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 18.85it/s] 40%|████ | 4/10 [00:00<00:00, 18.73it/s] 60%|██████ | 6/10 [00:00<00:00, 18.70it/s] 80%|████████ | 8/10 [00:00<00:00, 18.69it/s] 100%|██████████| 10/10 [00:00<00:00, 18.68it/s] 100%|██████████| 10/10 [00:00<00:00, 18.70it/s] frame_idx: 240 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 137 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 frame_idx: 240 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 137 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 24%|██▍ | 239/999 [04:02<13:56, 1.10s/it] 24%|██▍ | 240/999 [04:02<10:13, 1.24it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 72.68it/s] 64%|██████▍ | 16/25 [00:00<00:00, 73.96it/s] 96%|█████████▌| 24/25 [00:00<00:00, 72.83it/s] 100%|██████████| 25/25 [00:00<00:00, 73.05it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 75.14it/s] 64%|██████▍ | 16/25 [00:00<00:00, 74.88it/s] 96%|█████████▌| 24/25 [00:00<00:00, 74.86it/s] 100%|██████████| 25/25 [00:00<00:00, 74.79it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 18.87it/s] 40%|████ | 4/10 [00:00<00:00, 18.71it/s] 60%|██████ | 6/10 [00:00<00:00, 18.70it/s] 80%|████████ | 8/10 [00:00<00:00, 18.72it/s] 100%|██████████| 10/10 [00:00<00:00, 18.69it/s] 100%|██████████| 10/10 [00:00<00:00, 18.70it/s] frame_idx: 242 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 138 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 frame_idx: 242 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 138 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 24%|██▍ | 241/999 [04:04<13:52, 1.10s/it] 24%|██▍ | 242/999 [04:04<10:12, 1.24it/s] 0%| | 0/25 [00:00<?, ?it/s] 28%|██▊ | 7/25 [00:00<00:00, 66.53it/s] 60%|██████ | 15/25 [00:00<00:00, 71.64it/s] 92%|█████████▏| 23/25 [00:00<00:00, 73.23it/s] 100%|██████████| 25/25 [00:00<00:00, 72.49it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 75.46it/s] 64%|██████▍ | 16/25 [00:00<00:00, 75.34it/s] 96%|█████████▌| 24/25 [00:00<00:00, 75.32it/s] 100%|██████████| 25/25 [00:00<00:00, 75.22it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 18.87it/s] 40%|████ | 4/10 [00:00<00:00, 18.71it/s] 60%|██████ | 6/10 [00:00<00:00, 18.52it/s] 80%|████████ | 8/10 [00:00<00:00, 18.57it/s] 100%|██████████| 10/10 [00:00<00:00, 18.60it/s] 100%|██████████| 10/10 [00:00<00:00, 18.61it/s] frame_idx: 244 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 139 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 frame_idx: 244 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 139 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 24%|██▍ | 243/999 [04:06<13:48, 1.10s/it] 24%|██▍ | 244/999 [04:06<10:08, 1.24it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 74.67it/s] 64%|██████▍ | 16/25 [00:00<00:00, 69.63it/s] 96%|█████████▌| 24/25 [00:00<00:00, 69.88it/s] 100%|██████████| 25/25 [00:00<00:00, 70.01it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 72.14it/s] 64%|██████▍ | 16/25 [00:00<00:00, 73.88it/s] 96%|█████████▌| 24/25 [00:00<00:00, 74.41it/s] 100%|██████████| 25/25 [00:00<00:00, 74.04it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 18.87it/s] 40%|████ | 4/10 [00:00<00:00, 18.73it/s] 60%|██████ | 6/10 [00:00<00:00, 18.73it/s] 80%|████████ | 8/10 [00:00<00:00, 18.68it/s] 100%|██████████| 10/10 [00:00<00:00, 18.68it/s] 100%|██████████| 10/10 [00:00<00:00, 18.70it/s] frame_idx: 246 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 140 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 frame_idx: 246 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 140 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 25%|██▍ | 245/999 [04:08<13:51, 1.10s/it] 25%|██▍ | 246/999 [04:08<10:10, 1.23it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 71.37it/s] 64%|██████▍ | 16/25 [00:00<00:00, 70.47it/s] 96%|█████████▌| 24/25 [00:00<00:00, 70.11it/s] 100%|██████████| 25/25 [00:00<00:00, 70.24it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 72.89it/s] 64%|██████▍ | 16/25 [00:00<00:00, 73.99it/s] 96%|█████████▌| 24/25 [00:00<00:00, 74.38it/s] 100%|██████████| 25/25 [00:00<00:00, 73.80it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 18.85it/s] 40%|████ | 4/10 [00:00<00:00, 18.76it/s] 60%|██████ | 6/10 [00:00<00:00, 18.71it/s] 80%|████████ | 8/10 [00:00<00:00, 18.68it/s] 100%|██████████| 10/10 [00:00<00:00, 18.67it/s] 100%|██████████| 10/10 [00:00<00:00, 18.69it/s] frame_idx: 248 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 141 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 frame_idx: 248 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 141 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 25%|██▍ | 247/999 [04:10<13:52, 1.11s/it] 25%|██▍ | 248/999 [04:10<10:11, 1.23it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 74.20it/s] 64%|██████▍ | 16/25 [00:00<00:00, 74.76it/s] 96%|█████████▌| 24/25 [00:00<00:00, 73.48it/s] 100%|██████████| 25/25 [00:00<00:00, 73.62it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 75.34it/s] 64%|██████▍ | 16/25 [00:00<00:00, 74.69it/s] 96%|█████████▌| 24/25 [00:00<00:00, 74.78it/s] 100%|██████████| 25/25 [00:00<00:00, 74.81it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 18.78it/s] 40%|████ | 4/10 [00:00<00:00, 18.70it/s] 60%|██████ | 6/10 [00:00<00:00, 18.69it/s] 80%|████████ | 8/10 [00:00<00:00, 18.69it/s] 100%|██████████| 10/10 [00:00<00:00, 18.68it/s] 100%|██████████| 10/10 [00:00<00:00, 18.69it/s] frame_idx: 250 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 142 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 frame_idx: 250 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 142 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 25%|██▍ | 249/999 [04:12<13:47, 1.10s/it] 25%|██▌ | 250/999 [04:12<10:07, 1.23it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 74.01it/s] 64%|██████▍ | 16/25 [00:00<00:00, 74.34it/s] 96%|█████████▌| 24/25 [00:00<00:00, 74.17it/s] 100%|██████████| 25/25 [00:00<00:00, 74.17it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 75.13it/s] 64%|██████▍ | 16/25 [00:00<00:00, 75.02it/s] 96%|█████████▌| 24/25 [00:00<00:00, 74.89it/s] 100%|██████████| 25/25 [00:00<00:00, 74.88it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 18.78it/s] 40%|████ | 4/10 [00:00<00:00, 18.74it/s] 60%|██████ | 6/10 [00:00<00:00, 18.73it/s] 80%|████████ | 8/10 [00:00<00:00, 18.70it/s] 100%|██████████| 10/10 [00:00<00:00, 18.69it/s] 100%|██████████| 10/10 [00:00<00:00, 18.70it/s] frame_idx: 252 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 143 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 frame_idx: 252 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 143 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 25%|██▌ | 251/999 [04:14<13:45, 1.10s/it] 25%|██▌ | 252/999 [04:14<10:07, 1.23it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 74.42it/s] 64%|██████▍ | 16/25 [00:00<00:00, 74.97it/s] 96%|█████████▌| 24/25 [00:00<00:00, 75.13it/s] 100%|██████████| 25/25 [00:00<00:00, 75.04it/s] 0%| | 0/25 [00:00<?, ?it/s] 28%|██▊ | 7/25 [00:00<00:00, 67.85it/s] 60%|██████ | 15/25 [00:00<00:00, 69.40it/s] 92%|█████████▏| 23/25 [00:00<00:00, 71.91it/s] 100%|██████████| 25/25 [00:00<00:00, 71.42it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 18.82it/s] 40%|████ | 4/10 [00:00<00:00, 18.75it/s] 60%|██████ | 6/10 [00:00<00:00, 18.74it/s] 80%|████████ | 8/10 [00:00<00:00, 18.66it/s] 100%|██████████| 10/10 [00:00<00:00, 18.68it/s] 100%|██████████| 10/10 [00:00<00:00, 18.70it/s] frame_idx: 254 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 144 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 frame_idx: 254 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 144 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 25%|██▌ | 253/999 [04:16<13:45, 1.11s/it] 25%|██▌ | 254/999 [04:16<10:05, 1.23it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 74.86it/s] 64%|██████▍ | 16/25 [00:00<00:00, 75.32it/s] 96%|█████████▌| 24/25 [00:00<00:00, 75.28it/s] 100%|██████████| 25/25 [00:00<00:00, 75.24it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 72.39it/s] 64%|██████▍ | 16/25 [00:00<00:00, 69.25it/s] 96%|█████████▌| 24/25 [00:00<00:00, 70.62it/s] 100%|██████████| 25/25 [00:00<00:00, 70.45it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 18.82it/s] 40%|████ | 4/10 [00:00<00:00, 18.74it/s] 60%|██████ | 6/10 [00:00<00:00, 18.71it/s] 80%|████████ | 8/10 [00:00<00:00, 18.70it/s] 100%|██████████| 10/10 [00:00<00:00, 18.70it/s] 100%|██████████| 10/10 [00:00<00:00, 18.71it/s] frame_idx: 256 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 145 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 frame_idx: 256 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 145 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 26%|██▌ | 255/999 [04:18<13:45, 1.11s/it] 26%|██▌ | 256/999 [04:18<10:06, 1.22it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 72.33it/s] 64%|██████▍ | 16/25 [00:00<00:00, 70.08it/s] 96%|█████████▌| 24/25 [00:00<00:00, 70.25it/s] 100%|██████████| 25/25 [00:00<00:00, 70.52it/s] 0%| | 0/25 [00:00<?, ?it/s] 28%|██▊ | 7/25 [00:00<00:00, 68.10it/s] 56%|█████▌ | 14/25 [00:00<00:00, 68.14it/s] 84%|████████▍ | 21/25 [00:00<00:00, 68.44it/s] 100%|██████████| 25/25 [00:00<00:00, 69.33it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 18.89it/s] 40%|████ | 4/10 [00:00<00:00, 18.75it/s] 60%|██████ | 6/10 [00:00<00:00, 18.73it/s] 80%|████████ | 8/10 [00:00<00:00, 18.72it/s] 100%|██████████| 10/10 [00:00<00:00, 18.65it/s] 100%|██████████| 10/10 [00:00<00:00, 18.69it/s] frame_idx: 258 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 146 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 frame_idx: 258 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 146 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 26%|██▌ | 257/999 [04:20<13:52, 1.12s/it] 26%|██▌ | 258/999 [04:20<10:11, 1.21it/s] 0%| | 0/25 [00:00<?, ?it/s] 28%|██▊ | 7/25 [00:00<00:00, 63.62it/s] 60%|██████ | 15/25 [00:00<00:00, 70.10it/s] 92%|█████████▏| 23/25 [00:00<00:00, 69.72it/s] 100%|██████████| 25/25 [00:00<00:00, 69.21it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 74.59it/s] 64%|██████▍ | 16/25 [00:00<00:00, 72.21it/s] 96%|█████████▌| 24/25 [00:00<00:00, 70.70it/s] 100%|██████████| 25/25 [00:00<00:00, 71.23it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 18.85it/s] 40%|████ | 4/10 [00:00<00:00, 18.78it/s] 60%|██████ | 6/10 [00:00<00:00, 18.74it/s] 80%|████████ | 8/10 [00:00<00:00, 18.73it/s] 100%|██████████| 10/10 [00:00<00:00, 18.72it/s] 100%|██████████| 10/10 [00:00<00:00, 18.73it/s] frame_idx: 260 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 147 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 frame_idx: 260 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 147 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 26%|██▌ | 259/999 [04:21<13:51, 1.12s/it] 26%|██▌ | 260/999 [04:22<10:10, 1.21it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 72.97it/s] 64%|██████▍ | 16/25 [00:00<00:00, 74.23it/s] 96%|█████████▌| 24/25 [00:00<00:00, 74.54it/s] 100%|██████████| 25/25 [00:00<00:00, 74.34it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 75.24it/s] 64%|██████▍ | 16/25 [00:00<00:00, 75.05it/s] 96%|█████████▌| 24/25 [00:00<00:00, 73.69it/s] 100%|██████████| 25/25 [00:00<00:00, 74.10it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 18.84it/s] 40%|████ | 4/10 [00:00<00:00, 18.74it/s] 60%|██████ | 6/10 [00:00<00:00, 18.73it/s] 80%|████████ | 8/10 [00:00<00:00, 18.67it/s] 100%|██████████| 10/10 [00:00<00:00, 18.67it/s] 100%|██████████| 10/10 [00:00<00:00, 18.69it/s] frame_idx: 262 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 148 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 frame_idx: 262 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 148 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 26%|██▌ | 261/999 [04:23<13:40, 1.11s/it] 26%|██▌ | 262/999 [04:24<10:03, 1.22it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 74.34it/s] 64%|██████▍ | 16/25 [00:00<00:00, 74.57it/s] 96%|█████████▌| 24/25 [00:00<00:00, 74.74it/s] 100%|██████████| 25/25 [00:00<00:00, 74.69it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 70.99it/s] 64%|██████▍ | 16/25 [00:00<00:00, 72.99it/s] 96%|█████████▌| 24/25 [00:00<00:00, 73.26it/s] 100%|██████████| 25/25 [00:00<00:00, 72.82it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 18.74it/s] 40%|████ | 4/10 [00:00<00:00, 18.75it/s] 60%|██████ | 6/10 [00:00<00:00, 18.69it/s] 80%|████████ | 8/10 [00:00<00:00, 18.70it/s] 100%|██████████| 10/10 [00:00<00:00, 18.71it/s] 100%|██████████| 10/10 [00:00<00:00, 18.70it/s] frame_idx: 264 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 149 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 frame_idx: 264 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 149 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 26%|██▋ | 263/999 [04:25<13:37, 1.11s/it] 26%|██▋ | 264/999 [04:25<10:01, 1.22it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 74.20it/s] 64%|██████▍ | 16/25 [00:00<00:00, 74.60it/s] 96%|█████████▌| 24/25 [00:00<00:00, 74.74it/s] 100%|██████████| 25/25 [00:00<00:00, 74.66it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 75.44it/s] 64%|██████▍ | 16/25 [00:00<00:00, 75.01it/s] 96%|█████████▌| 24/25 [00:00<00:00, 73.96it/s] 100%|██████████| 25/25 [00:00<00:00, 74.25it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 18.71it/s] 40%|████ | 4/10 [00:00<00:00, 18.65it/s] 60%|██████ | 6/10 [00:00<00:00, 18.64it/s] 80%|████████ | 8/10 [00:00<00:00, 18.67it/s] 100%|██████████| 10/10 [00:00<00:00, 18.67it/s] 100%|██████████| 10/10 [00:00<00:00, 18.66it/s] frame_idx: 266 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 150 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 frame_idx: 266 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 150 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 27%|██▋ | 265/999 [04:27<13:34, 1.11s/it] 27%|██▋ | 266/999 [04:27<09:58, 1.23it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 73.19it/s] 64%|██████▍ | 16/25 [00:00<00:00, 74.11it/s] 96%|█████████▌| 24/25 [00:00<00:00, 73.92it/s] 100%|██████████| 25/25 [00:00<00:00, 73.86it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 74.71it/s] 64%|██████▍ | 16/25 [00:00<00:00, 74.65it/s] 96%|█████████▌| 24/25 [00:00<00:00, 74.77it/s] 100%|██████████| 25/25 [00:00<00:00, 74.71it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 18.82it/s] 40%|████ | 4/10 [00:00<00:00, 18.74it/s] 60%|██████ | 6/10 [00:00<00:00, 18.70it/s] 80%|████████ | 8/10 [00:00<00:00, 18.68it/s] 100%|██████████| 10/10 [00:00<00:00, 18.70it/s] 100%|██████████| 10/10 [00:00<00:00, 18.69it/s] frame_idx: 268 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 151 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 frame_idx: 268 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 151 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 27%|██▋ | 267/999 [04:29<13:29, 1.11s/it] 27%|██▋ | 268/999 [04:29<09:54, 1.23it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 70.78it/s] 64%|██████▍ | 16/25 [00:00<00:00, 72.38it/s] 96%|█████████▌| 24/25 [00:00<00:00, 73.19it/s] 100%|██████████| 25/25 [00:00<00:00, 72.71it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 75.43it/s] 64%|██████▍ | 16/25 [00:00<00:00, 73.33it/s] 96%|█████████▌| 24/25 [00:00<00:00, 72.22it/s] 100%|██████████| 25/25 [00:00<00:00, 72.62it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 18.87it/s] 40%|████ | 4/10 [00:00<00:00, 18.71it/s] 60%|██████ | 6/10 [00:00<00:00, 18.69it/s] 80%|████████ | 8/10 [00:00<00:00, 18.69it/s] 100%|██████████| 10/10 [00:00<00:00, 18.67it/s] 100%|██████████| 10/10 [00:00<00:00, 18.69it/s] frame_idx: 270 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 152 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 frame_idx: 270 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 152 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 27%|██▋ | 269/999 [04:31<13:29, 1.11s/it] 27%|██▋ | 270/999 [04:31<09:54, 1.23it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 72.35it/s] 64%|██████▍ | 16/25 [00:00<00:00, 73.71it/s] 96%|█████████▌| 24/25 [00:00<00:00, 72.32it/s] 100%|██████████| 25/25 [00:00<00:00, 72.48it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 75.33it/s] 64%|██████▍ | 16/25 [00:00<00:00, 72.79it/s] 96%|█████████▌| 24/25 [00:00<00:00, 73.23it/s] 100%|██████████| 25/25 [00:00<00:00, 73.44it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 18.85it/s] 40%|████ | 4/10 [00:00<00:00, 18.73it/s] 60%|██████ | 6/10 [00:00<00:00, 18.73it/s] 80%|████████ | 8/10 [00:00<00:00, 18.71it/s] 100%|██████████| 10/10 [00:00<00:00, 18.66it/s] 100%|██████████| 10/10 [00:00<00:00, 18.69it/s] frame_idx: 272 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 153 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 frame_idx: 272 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 153 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 27%|██▋ | 271/999 [04:33<13:26, 1.11s/it] 27%|██▋ | 272/999 [04:33<09:52, 1.23it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 73.89it/s] 64%|██████▍ | 16/25 [00:00<00:00, 72.08it/s] 96%|█████████▌| 24/25 [00:00<00:00, 72.66it/s] 100%|██████████| 25/25 [00:00<00:00, 72.28it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 74.28it/s] 64%|██████▍ | 16/25 [00:00<00:00, 74.76it/s] 96%|█████████▌| 24/25 [00:00<00:00, 74.95it/s] 100%|██████████| 25/25 [00:00<00:00, 74.81it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 18.81it/s] 40%|████ | 4/10 [00:00<00:00, 18.69it/s] 60%|██████ | 6/10 [00:00<00:00, 18.69it/s] 80%|████████ | 8/10 [00:00<00:00, 18.65it/s] 100%|██████████| 10/10 [00:00<00:00, 18.65it/s] 100%|██████████| 10/10 [00:00<00:00, 18.66it/s] frame_idx: 274 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 154 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 frame_idx: 274 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 154 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 27%|██▋ | 273/999 [04:35<13:24, 1.11s/it] 27%|██▋ | 274/999 [04:35<09:52, 1.22it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 73.84it/s] 64%|██████▍ | 16/25 [00:00<00:00, 72.58it/s] 96%|█████████▌| 24/25 [00:00<00:00, 71.48it/s] 100%|██████████| 25/25 [00:00<00:00, 71.99it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 75.01it/s] 64%|██████▍ | 16/25 [00:00<00:00, 74.80it/s] 96%|█████████▌| 24/25 [00:00<00:00, 74.94it/s] 100%|██████████| 25/25 [00:00<00:00, 74.94it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 18.86it/s] 40%|████ | 4/10 [00:00<00:00, 18.79it/s] 60%|██████ | 6/10 [00:00<00:00, 18.77it/s] 80%|████████ | 8/10 [00:00<00:00, 18.73it/s] 100%|██████████| 10/10 [00:00<00:00, 18.70it/s] 100%|██████████| 10/10 [00:00<00:00, 18.72it/s] frame_idx: 276 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 155 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 frame_idx: 276 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 155 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 28%|██▊ | 275/999 [04:37<13:21, 1.11s/it] 28%|██▊ | 276/999 [04:37<09:48, 1.23it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 74.80it/s] 64%|██████▍ | 16/25 [00:00<00:00, 75.23it/s] 96%|█████████▌| 24/25 [00:00<00:00, 74.17it/s] 100%|██████████| 25/25 [00:00<00:00, 74.24it/s] 0%| | 0/25 [00:00<?, ?it/s] 28%|██▊ | 7/25 [00:00<00:00, 69.64it/s] 60%|██████ | 15/25 [00:00<00:00, 71.25it/s] 92%|█████████▏| 23/25 [00:00<00:00, 73.10it/s] 100%|██████████| 25/25 [00:00<00:00, 72.62it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 18.89it/s] 40%|████ | 4/10 [00:00<00:00, 18.79it/s] 60%|██████ | 6/10 [00:00<00:00, 18.77it/s] 80%|████████ | 8/10 [00:00<00:00, 18.67it/s] 100%|██████████| 10/10 [00:00<00:00, 18.68it/s] 100%|██████████| 10/10 [00:00<00:00, 18.71it/s] frame_idx: 278 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 156 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 frame_idx: 278 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 156 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 28%|██▊ | 277/999 [04:39<13:18, 1.11s/it] 28%|██▊ | 278/999 [04:39<09:46, 1.23it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 74.23it/s] 64%|██████▍ | 16/25 [00:00<00:00, 74.97it/s] 96%|█████████▌| 24/25 [00:00<00:00, 75.01it/s] 100%|██████████| 25/25 [00:00<00:00, 74.70it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 71.34it/s] 64%|██████▍ | 16/25 [00:00<00:00, 73.20it/s] 96%|█████████▌| 24/25 [00:00<00:00, 73.99it/s] 100%|██████████| 25/25 [00:00<00:00, 73.60it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 18.86it/s] 40%|████ | 4/10 [00:00<00:00, 18.76it/s] 60%|██████ | 6/10 [00:00<00:00, 18.71it/s] 80%|████████ | 8/10 [00:00<00:00, 18.69it/s] 100%|██████████| 10/10 [00:00<00:00, 18.67it/s] 100%|██████████| 10/10 [00:00<00:00, 18.69it/s] frame_idx: 280 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 157 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 frame_idx: 280 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 157 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 28%|██▊ | 279/999 [04:41<13:16, 1.11s/it] 28%|██▊ | 280/999 [04:41<09:45, 1.23it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 74.05it/s] 64%|██████▍ | 16/25 [00:00<00:00, 73.79it/s] 96%|█████████▌| 24/25 [00:00<00:00, 72.56it/s] 100%|██████████| 25/25 [00:00<00:00, 72.92it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 72.58it/s] 64%|██████▍ | 16/25 [00:00<00:00, 73.41it/s] 96%|█████████▌| 24/25 [00:00<00:00, 74.38it/s] 100%|██████████| 25/25 [00:00<00:00, 74.03it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 18.86it/s] 40%|████ | 4/10 [00:00<00:00, 18.79it/s] 60%|██████ | 6/10 [00:00<00:00, 18.74it/s] 80%|████████ | 8/10 [00:00<00:00, 18.71it/s] 100%|██████████| 10/10 [00:00<00:00, 18.70it/s] 100%|██████████| 10/10 [00:00<00:00, 18.72it/s] frame_idx: 282 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 158 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 frame_idx: 282 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 158 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 28%|██▊ | 281/999 [04:43<13:13, 1.11s/it] 28%|██▊ | 282/999 [04:43<09:43, 1.23it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 73.84it/s] 64%|██████▍ | 16/25 [00:00<00:00, 74.58it/s] 96%|█████████▌| 24/25 [00:00<00:00, 74.85it/s] 100%|██████████| 25/25 [00:00<00:00, 74.63it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 72.81it/s] 64%|██████▍ | 16/25 [00:00<00:00, 68.88it/s] 92%|█████████▏| 23/25 [00:00<00:00, 68.95it/s] 100%|██████████| 25/25 [00:00<00:00, 69.25it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 18.88it/s] 40%|████ | 4/10 [00:00<00:00, 18.74it/s] 60%|██████ | 6/10 [00:00<00:00, 18.74it/s] 80%|████████ | 8/10 [00:00<00:00, 18.69it/s] 100%|██████████| 10/10 [00:00<00:00, 18.66it/s] 100%|██████████| 10/10 [00:00<00:00, 18.69it/s] frame_idx: 284 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 159 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 frame_idx: 284 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 159 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 28%|██▊ | 283/999 [04:45<13:15, 1.11s/it] 28%|██▊ | 284/999 [04:45<09:48, 1.21it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 73.04it/s] 64%|██████▍ | 16/25 [00:00<00:00, 73.51it/s] 96%|█████████▌| 24/25 [00:00<00:00, 74.29it/s] 100%|██████████| 25/25 [00:00<00:00, 73.65it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 73.15it/s] 64%|██████▍ | 16/25 [00:00<00:00, 68.80it/s] 96%|█████████▌| 24/25 [00:00<00:00, 69.92it/s] 100%|██████████| 25/25 [00:00<00:00, 70.23it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 15.92it/s] 40%|████ | 4/10 [00:00<00:00, 17.15it/s] 60%|██████ | 6/10 [00:00<00:00, 17.81it/s] 80%|████████ | 8/10 [00:00<00:00, 18.07it/s] 100%|██████████| 10/10 [00:00<00:00, 18.16it/s] 100%|██████████| 10/10 [00:00<00:00, 17.83it/s] frame_idx: 286 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 160 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 frame_idx: 286 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 160 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 29%|██▊ | 285/999 [04:47<14:39, 1.23s/it] 29%|██▊ | 286/999 [04:47<10:43, 1.11it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 74.42it/s] 64%|██████▍ | 16/25 [00:00<00:00, 74.64it/s] 96%|█████████▌| 24/25 [00:00<00:00, 71.09it/s] 100%|██████████| 25/25 [00:00<00:00, 71.87it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 74.42it/s] 64%|██████▍ | 16/25 [00:00<00:00, 72.48it/s] 96%|█████████▌| 24/25 [00:00<00:00, 70.73it/s] 100%|██████████| 25/25 [00:00<00:00, 71.27it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 18.87it/s] 40%|████ | 4/10 [00:00<00:00, 18.73it/s] 60%|██████ | 6/10 [00:00<00:00, 18.72it/s] 80%|████████ | 8/10 [00:00<00:00, 18.73it/s] 100%|██████████| 10/10 [00:00<00:00, 18.69it/s] 100%|██████████| 10/10 [00:00<00:00, 18.71it/s] frame_idx: 288 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 161 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 frame_idx: 288 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 161 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 29%|██▊ | 287/999 [04:49<13:54, 1.17s/it] 29%|██▉ | 288/999 [04:49<10:10, 1.16it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 70.99it/s] 64%|██████▍ | 16/25 [00:00<00:00, 72.81it/s] 96%|█████████▌| 24/25 [00:00<00:00, 72.96it/s] 100%|██████████| 25/25 [00:00<00:00, 72.51it/s] 0%| | 0/25 [00:00<?, ?it/s] 28%|██▊ | 7/25 [00:00<00:00, 69.57it/s] 60%|██████ | 15/25 [00:00<00:00, 71.24it/s] 92%|█████████▏| 23/25 [00:00<00:00, 73.08it/s] 100%|██████████| 25/25 [00:00<00:00, 72.45it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 18.82it/s] 40%|████ | 4/10 [00:00<00:00, 18.78it/s] 60%|██████ | 6/10 [00:00<00:00, 18.75it/s] 80%|████████ | 8/10 [00:00<00:00, 18.74it/s] 100%|██████████| 10/10 [00:00<00:00, 18.75it/s] 100%|██████████| 10/10 [00:00<00:00, 18.75it/s] frame_idx: 290 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 162 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 frame_idx: 290 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 162 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 29%|██▉ | 289/999 [04:51<13:29, 1.14s/it] 29%|██▉ | 290/999 [04:51<09:54, 1.19it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 73.84it/s] 64%|██████▍ | 16/25 [00:00<00:00, 74.32it/s] 96%|█████████▌| 24/25 [00:00<00:00, 74.20it/s] 100%|██████████| 25/25 [00:00<00:00, 74.16it/s] 0%| | 0/25 [00:00<?, ?it/s] 28%|██▊ | 7/25 [00:00<00:00, 69.42it/s] 56%|█████▌ | 14/25 [00:00<00:00, 69.37it/s] 84%|████████▍ | 21/25 [00:00<00:00, 69.45it/s] 100%|██████████| 25/25 [00:00<00:00, 69.43it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 18.90it/s] 40%|████ | 4/10 [00:00<00:00, 18.77it/s] 60%|██████ | 6/10 [00:00<00:00, 18.73it/s] 80%|████████ | 8/10 [00:00<00:00, 18.73it/s] 100%|██████████| 10/10 [00:00<00:00, 18.71it/s] 100%|██████████| 10/10 [00:00<00:00, 18.73it/s] frame_idx: 292 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 163 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 frame_idx: 292 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 163 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 29%|██▉ | 291/999 [04:53<13:16, 1.12s/it] 29%|██▉ | 292/999 [04:53<09:43, 1.21it/s] 0%| | 0/25 [00:00<?, ?it/s] 28%|██▊ | 7/25 [00:00<00:00, 67.73it/s] 56%|█████▌ | 14/25 [00:00<00:00, 68.70it/s] 88%|████████▊ | 22/25 [00:00<00:00, 69.60it/s] 100%|██████████| 25/25 [00:00<00:00, 69.55it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 72.12it/s] 64%|██████▍ | 16/25 [00:00<00:00, 69.74it/s] 92%|█████████▏| 23/25 [00:00<00:00, 69.09it/s] 100%|██████████| 25/25 [00:00<00:00, 69.84it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 18.86it/s] 40%|████ | 4/10 [00:00<00:00, 18.74it/s] 60%|██████ | 6/10 [00:00<00:00, 18.69it/s] 80%|████████ | 8/10 [00:00<00:00, 18.69it/s] 100%|██████████| 10/10 [00:00<00:00, 18.67it/s] 100%|██████████| 10/10 [00:00<00:00, 18.69it/s] frame_idx: 294 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 164 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 frame_idx: 294 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 164 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 29%|██▉ | 293/999 [04:55<13:12, 1.12s/it] 29%|██▉ | 294/999 [04:55<09:42, 1.21it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 73.76it/s] 64%|██████▍ | 16/25 [00:00<00:00, 74.40it/s] 96%|█████████▌| 24/25 [00:00<00:00, 71.24it/s] 100%|██████████| 25/25 [00:00<00:00, 71.80it/s] 0%| | 0/25 [00:00<?, ?it/s] 28%|██▊ | 7/25 [00:00<00:00, 69.48it/s] 56%|█████▌ | 14/25 [00:00<00:00, 69.42it/s] 88%|████████▊ | 22/25 [00:00<00:00, 71.23it/s] 100%|██████████| 25/25 [00:00<00:00, 71.25it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 18.90it/s] 40%|████ | 4/10 [00:00<00:00, 18.74it/s] 60%|██████ | 6/10 [00:00<00:00, 18.68it/s] 80%|████████ | 8/10 [00:00<00:00, 18.69it/s] 100%|██████████| 10/10 [00:00<00:00, 18.66it/s] 100%|██████████| 10/10 [00:00<00:00, 18.68it/s] frame_idx: 296 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 165 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 frame_idx: 296 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 165 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 30%|██▉ | 295/999 [04:57<13:08, 1.12s/it] 30%|██▉ | 296/999 [04:57<09:38, 1.22it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 74.79it/s] 64%|██████▍ | 16/25 [00:00<00:00, 75.00it/s] 96%|█████████▌| 24/25 [00:00<00:00, 75.07it/s] 100%|██████████| 25/25 [00:00<00:00, 74.96it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 75.34it/s] 64%|██████▍ | 16/25 [00:00<00:00, 74.27it/s] 96%|█████████▌| 24/25 [00:00<00:00, 72.71it/s] 100%|██████████| 25/25 [00:00<00:00, 73.06it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 18.89it/s] 40%|████ | 4/10 [00:00<00:00, 18.74it/s] 60%|██████ | 6/10 [00:00<00:00, 18.70it/s] 80%|████████ | 8/10 [00:00<00:00, 18.69it/s] 100%|██████████| 10/10 [00:00<00:00, 18.66it/s] 100%|██████████| 10/10 [00:00<00:00, 18.69it/s] frame_idx: 298 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 166 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 frame_idx: 298 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 166 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 30%|██▉ | 297/999 [04:58<12:58, 1.11s/it] 30%|██▉ | 298/999 [04:59<09:30, 1.23it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 72.16it/s] 64%|██████▍ | 16/25 [00:00<00:00, 71.25it/s] 96%|█████████▌| 24/25 [00:00<00:00, 72.65it/s] 100%|██████████| 25/25 [00:00<00:00, 72.46it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 70.72it/s] 64%|██████▍ | 16/25 [00:00<00:00, 72.73it/s] 96%|█████████▌| 24/25 [00:00<00:00, 73.00it/s] 100%|██████████| 25/25 [00:00<00:00, 72.63it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 18.87it/s] 40%|████ | 4/10 [00:00<00:00, 18.78it/s] 60%|██████ | 6/10 [00:00<00:00, 18.76it/s] 80%|████████ | 8/10 [00:00<00:00, 18.75it/s] 100%|██████████| 10/10 [00:00<00:00, 18.73it/s] 100%|██████████| 10/10 [00:00<00:00, 18.74it/s] frame_idx: 300 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 167 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 frame_idx: 300 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 167 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 30%|██▉ | 299/999 [05:00<12:54, 1.11s/it] 30%|███ | 300/999 [05:00<09:30, 1.23it/s] 0%| | 0/25 [00:00<?, ?it/s] 28%|██▊ | 7/25 [00:00<00:00, 69.55it/s] 60%|██████ | 15/25 [00:00<00:00, 69.87it/s] 88%|████████▊ | 22/25 [00:00<00:00, 69.86it/s] 100%|██████████| 25/25 [00:00<00:00, 69.86it/s] 0%| | 0/25 [00:00<?, ?it/s] 28%|██▊ | 7/25 [00:00<00:00, 69.50it/s] 60%|██████ | 15/25 [00:00<00:00, 70.67it/s] 92%|█████████▏| 23/25 [00:00<00:00, 72.48it/s] 100%|██████████| 25/25 [00:00<00:00, 72.18it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 17.83it/s] 40%|████ | 4/10 [00:00<00:00, 18.31it/s] 60%|██████ | 6/10 [00:00<00:00, 18.48it/s] 80%|████████ | 8/10 [00:00<00:00, 18.57it/s] 100%|██████████| 10/10 [00:00<00:00, 18.58it/s] 100%|██████████| 10/10 [00:00<00:00, 18.48it/s] frame_idx: 302 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 168 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 frame_idx: 302 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 168 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 30%|███ | 301/999 [05:02<12:58, 1.12s/it] 30%|███ | 302/999 [05:02<09:32, 1.22it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 74.73it/s] 64%|██████▍ | 16/25 [00:00<00:00, 75.07it/s] 96%|█████████▌| 24/25 [00:00<00:00, 75.04it/s] 100%|██████████| 25/25 [00:00<00:00, 74.83it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 75.40it/s] 64%|██████▍ | 16/25 [00:00<00:00, 75.12it/s] 96%|█████████▌| 24/25 [00:00<00:00, 74.80it/s] 100%|██████████| 25/25 [00:00<00:00, 74.71it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 18.80it/s] 40%|████ | 4/10 [00:00<00:00, 18.73it/s] 60%|██████ | 6/10 [00:00<00:00, 18.72it/s] 80%|████████ | 8/10 [00:00<00:00, 18.73it/s] 100%|██████████| 10/10 [00:00<00:00, 18.70it/s] 100%|██████████| 10/10 [00:00<00:00, 18.71it/s] frame_idx: 304 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 169 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 frame_idx: 304 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 169 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 30%|███ | 303/999 [05:04<12:49, 1.11s/it] 30%|███ | 304/999 [05:04<09:25, 1.23it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 74.49it/s] 64%|██████▍ | 16/25 [00:00<00:00, 74.95it/s] 96%|█████████▌| 24/25 [00:00<00:00, 75.20it/s] 100%|██████████| 25/25 [00:00<00:00, 75.01it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 74.98it/s] 64%|██████▍ | 16/25 [00:00<00:00, 74.85it/s] 96%|█████████▌| 24/25 [00:00<00:00, 74.82it/s] 100%|██████████| 25/25 [00:00<00:00, 74.83it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 18.75it/s] 40%|████ | 4/10 [00:00<00:00, 18.64it/s] 60%|██████ | 6/10 [00:00<00:00, 18.64it/s] 80%|████████ | 8/10 [00:00<00:00, 18.64it/s] 100%|██████████| 10/10 [00:00<00:00, 18.62it/s] 100%|██████████| 10/10 [00:00<00:00, 18.63it/s] frame_idx: 306 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 170 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 frame_idx: 306 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 170 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 31%|███ | 305/999 [05:06<12:48, 1.11s/it] 31%|███ | 306/999 [05:06<09:25, 1.22it/s] 0%| | 0/25 [00:00<?, ?it/s] 28%|██▊ | 7/25 [00:00<00:00, 67.53it/s] 56%|█████▌ | 14/25 [00:00<00:00, 68.00it/s] 84%|████████▍ | 21/25 [00:00<00:00, 67.96it/s] 100%|██████████| 25/25 [00:00<00:00, 68.03it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 74.09it/s] 64%|██████▍ | 16/25 [00:00<00:00, 73.85it/s] 96%|█████████▌| 24/25 [00:00<00:00, 70.97it/s] 100%|██████████| 25/25 [00:00<00:00, 71.29it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 18.88it/s] 40%|████ | 4/10 [00:00<00:00, 18.69it/s] 60%|██████ | 6/10 [00:00<00:00, 18.70it/s] 80%|████████ | 8/10 [00:00<00:00, 18.68it/s] 100%|██████████| 10/10 [00:00<00:00, 18.62it/s] 100%|██████████| 10/10 [00:00<00:00, 18.65it/s] frame_idx: 308 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 171 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 frame_idx: 308 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 171 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 31%|███ | 307/999 [05:08<12:54, 1.12s/it] 31%|███ | 308/999 [05:08<09:28, 1.22it/s] 0%| | 0/25 [00:00<?, ?it/s] 28%|██▊ | 7/25 [00:00<00:00, 68.00it/s] 60%|██████ | 15/25 [00:00<00:00, 71.33it/s] 92%|█████████▏| 23/25 [00:00<00:00, 70.63it/s] 100%|██████████| 25/25 [00:00<00:00, 70.28it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 75.13it/s] 64%|██████▍ | 16/25 [00:00<00:00, 74.84it/s] 96%|█████████▌| 24/25 [00:00<00:00, 74.78it/s] 100%|██████████| 25/25 [00:00<00:00, 74.79it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 18.80it/s] 40%|████ | 4/10 [00:00<00:00, 18.69it/s] 60%|██████ | 6/10 [00:00<00:00, 18.66it/s] 80%|████████ | 8/10 [00:00<00:00, 18.66it/s] 100%|██████████| 10/10 [00:00<00:00, 18.64it/s] 100%|██████████| 10/10 [00:00<00:00, 18.66it/s] frame_idx: 310 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 172 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 frame_idx: 310 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 172 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 31%|███ | 309/999 [05:10<12:49, 1.11s/it] 31%|███ | 310/999 [05:10<09:24, 1.22it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 71.10it/s] 64%|██████▍ | 16/25 [00:00<00:00, 70.50it/s] 96%|█████████▌| 24/25 [00:00<00:00, 72.66it/s] 100%|██████████| 25/25 [00:00<00:00, 72.22it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 74.98it/s] 64%|██████▍ | 16/25 [00:00<00:00, 74.94it/s] 96%|█████████▌| 24/25 [00:00<00:00, 74.97it/s] 100%|██████████| 25/25 [00:00<00:00, 74.97it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 18.79it/s] 40%|████ | 4/10 [00:00<00:00, 18.71it/s] 60%|██████ | 6/10 [00:00<00:00, 18.73it/s] 80%|████████ | 8/10 [00:00<00:00, 18.68it/s] 100%|██████████| 10/10 [00:00<00:00, 18.66it/s] 100%|██████████| 10/10 [00:00<00:00, 18.68it/s] frame_idx: 312 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 173 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 frame_idx: 312 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 173 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 31%|███ | 311/999 [05:12<12:42, 1.11s/it] 31%|███ | 312/999 [05:12<09:18, 1.23it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 74.54it/s] 64%|██████▍ | 16/25 [00:00<00:00, 74.31it/s] 96%|█████████▌| 24/25 [00:00<00:00, 73.50it/s] 100%|██████████| 25/25 [00:00<00:00, 73.32it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 71.93it/s] 64%|██████▍ | 16/25 [00:00<00:00, 73.87it/s] 96%|█████████▌| 24/25 [00:00<00:00, 74.39it/s] 100%|██████████| 25/25 [00:00<00:00, 73.94it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 18.88it/s] 40%|████ | 4/10 [00:00<00:00, 18.72it/s] 60%|██████ | 6/10 [00:00<00:00, 18.66it/s] 80%|████████ | 8/10 [00:00<00:00, 18.71it/s] 100%|██████████| 10/10 [00:00<00:00, 18.71it/s] 100%|██████████| 10/10 [00:00<00:00, 18.71it/s] frame_idx: 314 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 174 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 frame_idx: 314 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 174 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 31%|███▏ | 313/999 [05:14<12:36, 1.10s/it] 31%|███▏ | 314/999 [05:14<09:17, 1.23it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 73.81it/s] 64%|██████▍ | 16/25 [00:00<00:00, 74.07it/s] 96%|█████████▌| 24/25 [00:00<00:00, 72.61it/s] 100%|██████████| 25/25 [00:00<00:00, 72.92it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 75.05it/s] 64%|██████▍ | 16/25 [00:00<00:00, 75.20it/s] 96%|█████████▌| 24/25 [00:00<00:00, 74.98it/s] 100%|██████████| 25/25 [00:00<00:00, 75.04it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 18.88it/s] 40%|████ | 4/10 [00:00<00:00, 18.76it/s] 60%|██████ | 6/10 [00:00<00:00, 18.74it/s] 80%|████████ | 8/10 [00:00<00:00, 18.70it/s] 100%|██████████| 10/10 [00:00<00:00, 18.65it/s] 100%|██████████| 10/10 [00:00<00:00, 18.69it/s] frame_idx: 316 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 175 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 frame_idx: 316 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 175 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 32%|███▏ | 315/999 [05:16<12:33, 1.10s/it] 32%|███▏ | 316/999 [05:16<09:13, 1.23it/s] 0%| | 0/25 [00:00<?, ?it/s] 28%|██▊ | 7/25 [00:00<00:00, 69.83it/s] 60%|██████ | 15/25 [00:00<00:00, 70.39it/s] 92%|█████████▏| 23/25 [00:00<00:00, 71.95it/s] 100%|██████████| 25/25 [00:00<00:00, 71.68it/s] 0%| | 0/25 [00:00<?, ?it/s] 28%|██▊ | 7/25 [00:00<00:00, 60.56it/s] 60%|██████ | 15/25 [00:00<00:00, 67.47it/s] 92%|█████████▏| 23/25 [00:00<00:00, 71.00it/s] 100%|██████████| 25/25 [00:00<00:00, 69.77it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 18.85it/s] 40%|████ | 4/10 [00:00<00:00, 18.75it/s] 60%|██████ | 6/10 [00:00<00:00, 18.74it/s] 80%|████████ | 8/10 [00:00<00:00, 18.72it/s] 100%|██████████| 10/10 [00:00<00:00, 18.71it/s] 100%|██████████| 10/10 [00:00<00:00, 18.72it/s] frame_idx: 318 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 176 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 frame_idx: 318 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 176 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 32%|███▏ | 317/999 [05:18<12:35, 1.11s/it] 32%|███▏ | 318/999 [05:18<09:14, 1.23it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 74.88it/s] 64%|██████▍ | 16/25 [00:00<00:00, 75.00it/s] 96%|█████████▌| 24/25 [00:00<00:00, 74.83it/s] 100%|██████████| 25/25 [00:00<00:00, 74.70it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 70.10it/s] 64%|██████▍ | 16/25 [00:00<00:00, 69.86it/s] 96%|█████████▌| 24/25 [00:00<00:00, 71.08it/s] 100%|██████████| 25/25 [00:00<00:00, 70.43it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 18.83it/s] 40%|████ | 4/10 [00:00<00:00, 18.74it/s] 60%|██████ | 6/10 [00:00<00:00, 18.71it/s] 80%|████████ | 8/10 [00:00<00:00, 18.66it/s] 100%|██████████| 10/10 [00:00<00:00, 18.66it/s] 100%|██████████| 10/10 [00:00<00:00, 18.68it/s] frame_idx: 320 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 177 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 frame_idx: 320 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 177 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 32%|███▏ | 319/999 [05:20<12:34, 1.11s/it] 32%|███▏ | 320/999 [05:20<09:13, 1.23it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 74.46it/s] 64%|██████▍ | 16/25 [00:00<00:00, 74.68it/s] 96%|█████████▌| 24/25 [00:00<00:00, 74.79it/s] 100%|██████████| 25/25 [00:00<00:00, 74.65it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 73.15it/s] 64%|██████▍ | 16/25 [00:00<00:00, 70.05it/s] 96%|█████████▌| 24/25 [00:00<00:00, 72.21it/s] 100%|██████████| 25/25 [00:00<00:00, 72.00it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 18.81it/s] 40%|████ | 4/10 [00:00<00:00, 18.77it/s] 60%|██████ | 6/10 [00:00<00:00, 18.72it/s] 80%|████████ | 8/10 [00:00<00:00, 18.66it/s] 100%|██████████| 10/10 [00:00<00:00, 18.66it/s] 100%|██████████| 10/10 [00:00<00:00, 18.68it/s] frame_idx: 322 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 178 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 frame_idx: 322 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 178 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 32%|███▏ | 321/999 [05:22<12:32, 1.11s/it] 32%|███▏ | 322/999 [05:22<09:13, 1.22it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 74.21it/s] 64%|██████▍ | 16/25 [00:00<00:00, 74.49it/s] 96%|█████████▌| 24/25 [00:00<00:00, 73.94it/s] 100%|██████████| 25/25 [00:00<00:00, 74.02it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 74.90it/s] 64%|██████▍ | 16/25 [00:00<00:00, 72.61it/s] 96%|█████████▌| 24/25 [00:00<00:00, 71.92it/s] 100%|██████████| 25/25 [00:00<00:00, 72.23it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 18.86it/s] 40%|████ | 4/10 [00:00<00:00, 18.72it/s] 60%|██████ | 6/10 [00:00<00:00, 18.67it/s] 80%|████████ | 8/10 [00:00<00:00, 18.70it/s] 100%|██████████| 10/10 [00:00<00:00, 18.67it/s] 100%|██████████| 10/10 [00:00<00:00, 18.68it/s] frame_idx: 324 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 179 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 frame_idx: 324 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 179 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 32%|███▏ | 323/999 [05:23<12:29, 1.11s/it] 32%|███▏ | 324/999 [05:24<09:11, 1.22it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 74.26it/s] 64%|██████▍ | 16/25 [00:00<00:00, 74.70it/s] 96%|█████████▌| 24/25 [00:00<00:00, 74.81it/s] 100%|██████████| 25/25 [00:00<00:00, 74.34it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 72.81it/s] 64%|██████▍ | 16/25 [00:00<00:00, 71.54it/s] 96%|█████████▌| 24/25 [00:00<00:00, 71.07it/s] 100%|██████████| 25/25 [00:00<00:00, 71.28it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 18.84it/s] 40%|████ | 4/10 [00:00<00:00, 18.78it/s] 60%|██████ | 6/10 [00:00<00:00, 18.73it/s] 80%|████████ | 8/10 [00:00<00:00, 18.69it/s] 100%|██████████| 10/10 [00:00<00:00, 18.72it/s] 100%|██████████| 10/10 [00:00<00:00, 18.72it/s] frame_idx: 326 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 180 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 frame_idx: 326 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 180 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 33%|███▎ | 325/999 [05:25<12:27, 1.11s/it] 33%|███▎ | 326/999 [05:26<09:09, 1.22it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 72.95it/s] 64%|██████▍ | 16/25 [00:00<00:00, 74.05it/s] 96%|█████████▌| 24/25 [00:00<00:00, 73.18it/s] 100%|██████████| 25/25 [00:00<00:00, 73.37it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 74.08it/s] 64%|██████▍ | 16/25 [00:00<00:00, 67.83it/s] 96%|█████████▌| 24/25 [00:00<00:00, 68.74it/s] 100%|██████████| 25/25 [00:00<00:00, 68.79it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 18.88it/s] 40%|████ | 4/10 [00:00<00:00, 18.76it/s] 60%|██████ | 6/10 [00:00<00:00, 18.74it/s] 80%|████████ | 8/10 [00:00<00:00, 18.71it/s] 100%|██████████| 10/10 [00:00<00:00, 18.69it/s] 100%|██████████| 10/10 [00:00<00:00, 18.71it/s] frame_idx: 328 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 181 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 frame_idx: 328 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 181 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 33%|███▎ | 327/999 [05:27<12:28, 1.11s/it] 33%|███▎ | 328/999 [05:27<09:09, 1.22it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 74.11it/s] 64%|██████▍ | 16/25 [00:00<00:00, 74.41it/s] 96%|█████████▌| 24/25 [00:00<00:00, 74.72it/s] 100%|██████████| 25/25 [00:00<00:00, 74.54it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 72.19it/s] 64%|██████▍ | 16/25 [00:00<00:00, 73.82it/s] 96%|█████████▌| 24/25 [00:00<00:00, 74.30it/s] 100%|██████████| 25/25 [00:00<00:00, 74.00it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 18.71it/s] 40%|████ | 4/10 [00:00<00:00, 18.56it/s] 60%|██████ | 6/10 [00:00<00:00, 18.61it/s] 80%|████████ | 8/10 [00:00<00:00, 18.61it/s] 100%|██████████| 10/10 [00:00<00:00, 18.61it/s] 100%|██████████| 10/10 [00:00<00:00, 18.60it/s] frame_idx: 330 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 182 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 frame_idx: 330 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 182 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 33%|███▎ | 329/999 [05:29<12:23, 1.11s/it] 33%|███▎ | 330/999 [05:29<09:05, 1.23it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 73.87it/s] 64%|██████▍ | 16/25 [00:00<00:00, 74.40it/s] 96%|█████████▌| 24/25 [00:00<00:00, 71.55it/s] 100%|██████████| 25/25 [00:00<00:00, 72.04it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 75.16it/s] 64%|██████▍ | 16/25 [00:00<00:00, 74.83it/s] 96%|█████████▌| 24/25 [00:00<00:00, 74.83it/s] 100%|██████████| 25/25 [00:00<00:00, 74.83it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 18.79it/s] 40%|████ | 4/10 [00:00<00:00, 18.69it/s] 60%|██████ | 6/10 [00:00<00:00, 18.69it/s] 80%|████████ | 8/10 [00:00<00:00, 18.67it/s] 100%|██████████| 10/10 [00:00<00:00, 18.64it/s] 100%|██████████| 10/10 [00:00<00:00, 18.66it/s] frame_idx: 332 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 183 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 frame_idx: 332 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 183 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 33%|███▎ | 331/999 [05:31<12:20, 1.11s/it] 33%|███▎ | 332/999 [05:31<09:05, 1.22it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 71.46it/s] 64%|██████▍ | 16/25 [00:00<00:00, 72.13it/s] 96%|█████████▌| 24/25 [00:00<00:00, 71.73it/s] 100%|██████████| 25/25 [00:00<00:00, 71.37it/s] 0%| | 0/25 [00:00<?, ?it/s] 28%|██▊ | 7/25 [00:00<00:00, 68.35it/s] 60%|██████ | 15/25 [00:00<00:00, 70.96it/s] 92%|█████████▏| 23/25 [00:00<00:00, 71.87it/s] 100%|██████████| 25/25 [00:00<00:00, 71.10it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 18.88it/s] 40%|████ | 4/10 [00:00<00:00, 18.71it/s] 60%|██████ | 6/10 [00:00<00:00, 18.69it/s] 80%|████████ | 8/10 [00:00<00:00, 18.70it/s] 100%|██████████| 10/10 [00:00<00:00, 18.67it/s] 100%|██████████| 10/10 [00:00<00:00, 18.69it/s] frame_idx: 334 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 184 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 frame_idx: 334 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 184 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 33%|███▎ | 333/999 [05:33<12:23, 1.12s/it] 33%|███▎ | 334/999 [05:33<09:07, 1.22it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 70.98it/s] 64%|██████▍ | 16/25 [00:00<00:00, 69.80it/s] 92%|█████████▏| 23/25 [00:00<00:00, 69.17it/s] 100%|██████████| 25/25 [00:00<00:00, 69.32it/s] 0%| | 0/25 [00:00<?, ?it/s] 28%|██▊ | 7/25 [00:00<00:00, 68.49it/s] 60%|██████ | 15/25 [00:00<00:00, 71.26it/s] 92%|█████████▏| 23/25 [00:00<00:00, 71.33it/s] 100%|██████████| 25/25 [00:00<00:00, 70.61it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 18.81it/s] 40%|████ | 4/10 [00:00<00:00, 18.66it/s] 60%|██████ | 6/10 [00:00<00:00, 18.67it/s] 80%|████████ | 8/10 [00:00<00:00, 18.65it/s] 100%|██████████| 10/10 [00:00<00:00, 18.66it/s] 100%|██████████| 10/10 [00:00<00:00, 18.66it/s] frame_idx: 336 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 185 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 frame_idx: 336 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 185 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 34%|███▎ | 335/999 [05:35<12:26, 1.12s/it] 34%|███▎ | 336/999 [05:35<09:08, 1.21it/s] 0%| | 0/25 [00:00<?, ?it/s] 28%|██▊ | 7/25 [00:00<00:00, 67.90it/s] 56%|█████▌ | 14/25 [00:00<00:00, 68.39it/s] 88%|████████▊ | 22/25 [00:00<00:00, 70.36it/s] 100%|██████████| 25/25 [00:00<00:00, 70.36it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 74.01it/s] 64%|██████▍ | 16/25 [00:00<00:00, 74.20it/s] 96%|█████████▌| 24/25 [00:00<00:00, 74.48it/s] 100%|██████████| 25/25 [00:00<00:00, 74.36it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 18.82it/s] 40%|████ | 4/10 [00:00<00:00, 18.76it/s] 60%|██████ | 6/10 [00:00<00:00, 18.71it/s] 80%|████████ | 8/10 [00:00<00:00, 18.71it/s] 100%|██████████| 10/10 [00:00<00:00, 18.74it/s] 100%|██████████| 10/10 [00:00<00:00, 18.73it/s] frame_idx: 338 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 186 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 frame_idx: 338 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 186 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 34%|███▎ | 337/999 [05:37<12:23, 1.12s/it] 34%|███▍ | 338/999 [05:37<09:05, 1.21it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 73.16it/s] 64%|██████▍ | 16/25 [00:00<00:00, 70.44it/s] 96%|█████████▌| 24/25 [00:00<00:00, 69.72it/s] 100%|██████████| 25/25 [00:00<00:00, 70.12it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 70.95it/s] 64%|██████▍ | 16/25 [00:00<00:00, 71.13it/s] 96%|█████████▌| 24/25 [00:00<00:00, 71.09it/s] 100%|██████████| 25/25 [00:00<00:00, 71.21it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 18.86it/s] 40%|████ | 4/10 [00:00<00:00, 18.79it/s] 60%|██████ | 6/10 [00:00<00:00, 18.76it/s] 80%|████████ | 8/10 [00:00<00:00, 18.77it/s] 100%|██████████| 10/10 [00:00<00:00, 18.74it/s] 100%|██████████| 10/10 [00:00<00:00, 18.76it/s] frame_idx: 340 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 187 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 frame_idx: 340 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 187 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 34%|███▍ | 339/999 [05:39<12:20, 1.12s/it] 34%|███▍ | 340/999 [05:39<09:03, 1.21it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 74.32it/s] 64%|██████▍ | 16/25 [00:00<00:00, 71.98it/s] 96%|█████████▌| 24/25 [00:00<00:00, 71.55it/s] 100%|██████████| 25/25 [00:00<00:00, 72.01it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 75.50it/s] 64%|██████▍ | 16/25 [00:00<00:00, 75.27it/s] 96%|█████████▌| 24/25 [00:00<00:00, 75.04it/s] 100%|██████████| 25/25 [00:00<00:00, 75.15it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 18.81it/s] 40%|████ | 4/10 [00:00<00:00, 18.73it/s] 60%|██████ | 6/10 [00:00<00:00, 18.72it/s] 80%|████████ | 8/10 [00:00<00:00, 18.70it/s] 100%|██████████| 10/10 [00:00<00:00, 18.72it/s] 100%|██████████| 10/10 [00:00<00:00, 18.71it/s] frame_idx: 342 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 188 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 frame_idx: 342 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 188 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 34%|███▍ | 341/999 [05:41<12:11, 1.11s/it] 34%|███▍ | 342/999 [05:41<08:56, 1.22it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 74.10it/s] 64%|██████▍ | 16/25 [00:00<00:00, 74.38it/s] 96%|█████████▌| 24/25 [00:00<00:00, 72.19it/s] 100%|██████████| 25/25 [00:00<00:00, 72.78it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 70.95it/s] 64%|██████▍ | 16/25 [00:00<00:00, 69.62it/s] 92%|█████████▏| 23/25 [00:00<00:00, 69.65it/s] 100%|██████████| 25/25 [00:00<00:00, 70.06it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 18.80it/s] 40%|████ | 4/10 [00:00<00:00, 18.78it/s] 60%|██████ | 6/10 [00:00<00:00, 18.76it/s] 80%|████████ | 8/10 [00:00<00:00, 18.72it/s] 100%|██████████| 10/10 [00:00<00:00, 18.69it/s] 100%|██████████| 10/10 [00:00<00:00, 18.71it/s] frame_idx: 344 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 189 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 frame_idx: 344 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 189 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 34%|███▍ | 343/999 [05:43<12:11, 1.12s/it] 34%|███▍ | 344/999 [05:43<08:56, 1.22it/s] 0%| | 0/25 [00:00<?, ?it/s] 28%|██▊ | 7/25 [00:00<00:00, 69.12it/s] 60%|██████ | 15/25 [00:00<00:00, 70.68it/s] 92%|█████████▏| 23/25 [00:00<00:00, 72.01it/s] 100%|██████████| 25/25 [00:00<00:00, 71.06it/s] 0%| | 0/25 [00:00<?, ?it/s] 28%|██▊ | 7/25 [00:00<00:00, 69.35it/s] 56%|█████▌ | 14/25 [00:00<00:00, 69.12it/s] 88%|████████▊ | 22/25 [00:00<00:00, 71.06it/s] 100%|██████████| 25/25 [00:00<00:00, 70.40it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 18.84it/s] 40%|████ | 4/10 [00:00<00:00, 18.76it/s] 60%|██████ | 6/10 [00:00<00:00, 18.71it/s] 80%|████████ | 8/10 [00:00<00:00, 18.65it/s] 100%|██████████| 10/10 [00:00<00:00, 18.65it/s] 100%|██████████| 10/10 [00:00<00:00, 18.67it/s] frame_idx: 346 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 190 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 frame_idx: 346 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 190 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 35%|███▍ | 345/999 [05:45<12:10, 1.12s/it] 35%|███▍ | 346/999 [05:45<08:57, 1.22it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 73.93it/s] 64%|██████▍ | 16/25 [00:00<00:00, 74.43it/s] 96%|█████████▌| 24/25 [00:00<00:00, 74.22it/s] 100%|██████████| 25/25 [00:00<00:00, 74.05it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 74.89it/s] 64%|██████▍ | 16/25 [00:00<00:00, 74.99it/s] 96%|█████████▌| 24/25 [00:00<00:00, 75.01it/s] 100%|██████████| 25/25 [00:00<00:00, 75.02it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 18.85it/s] 40%|████ | 4/10 [00:00<00:00, 18.74it/s] 60%|██████ | 6/10 [00:00<00:00, 18.73it/s] 80%|████████ | 8/10 [00:00<00:00, 18.68it/s] 100%|██████████| 10/10 [00:00<00:00, 18.65it/s] 100%|██████████| 10/10 [00:00<00:00, 18.67it/s] frame_idx: 348 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 191 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 frame_idx: 348 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 191 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 35%|███▍ | 347/999 [05:47<12:07, 1.12s/it] 35%|███▍ | 348/999 [05:47<08:54, 1.22it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 73.89it/s] 64%|██████▍ | 16/25 [00:00<00:00, 74.53it/s] 96%|█████████▌| 24/25 [00:00<00:00, 73.39it/s] 100%|██████████| 25/25 [00:00<00:00, 73.65it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 70.82it/s] 64%|██████▍ | 16/25 [00:00<00:00, 73.32it/s] 96%|█████████▌| 24/25 [00:00<00:00, 73.09it/s] 100%|██████████| 25/25 [00:00<00:00, 72.97it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 18.80it/s] 40%|████ | 4/10 [00:00<00:00, 18.74it/s] 60%|██████ | 6/10 [00:00<00:00, 18.69it/s] 80%|████████ | 8/10 [00:00<00:00, 18.70it/s] 100%|██████████| 10/10 [00:00<00:00, 18.69it/s] 100%|██████████| 10/10 [00:00<00:00, 18.69it/s] frame_idx: 350 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 192 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 frame_idx: 350 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 192 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 35%|███▍ | 349/999 [05:49<12:03, 1.11s/it] 35%|███▌ | 350/999 [05:49<08:51, 1.22it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 73.81it/s] 64%|██████▍ | 16/25 [00:00<00:00, 74.42it/s] 96%|█████████▌| 24/25 [00:00<00:00, 74.42it/s] 100%|██████████| 25/25 [00:00<00:00, 74.37it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 72.07it/s] 64%|██████▍ | 16/25 [00:00<00:00, 70.29it/s] 96%|█████████▌| 24/25 [00:00<00:00, 72.35it/s] 100%|██████████| 25/25 [00:00<00:00, 72.07it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 18.87it/s] 40%|████ | 4/10 [00:00<00:00, 18.74it/s] 60%|██████ | 6/10 [00:00<00:00, 18.69it/s] 80%|████████ | 8/10 [00:00<00:00, 18.69it/s] 100%|██████████| 10/10 [00:00<00:00, 18.67it/s] 100%|██████████| 10/10 [00:00<00:00, 18.69it/s] frame_idx: 352 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 193 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 frame_idx: 352 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 193 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 35%|███▌ | 351/999 [05:51<12:03, 1.12s/it] 35%|███▌ | 352/999 [05:51<08:52, 1.22it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 74.26it/s] 64%|██████▍ | 16/25 [00:00<00:00, 74.34it/s] 96%|█████████▌| 24/25 [00:00<00:00, 74.36it/s] 100%|██████████| 25/25 [00:00<00:00, 74.34it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 75.01it/s] 64%|██████▍ | 16/25 [00:00<00:00, 72.59it/s] 96%|█████████▌| 24/25 [00:00<00:00, 73.79it/s] 100%|██████████| 25/25 [00:00<00:00, 73.73it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 18.87it/s] 40%|████ | 4/10 [00:00<00:00, 18.73it/s] 60%|██████ | 6/10 [00:00<00:00, 18.72it/s] 80%|████████ | 8/10 [00:00<00:00, 18.69it/s] 100%|██████████| 10/10 [00:00<00:00, 18.65it/s] 100%|██████████| 10/10 [00:00<00:00, 18.68it/s] frame_idx: 354 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 194 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 frame_idx: 354 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 194 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 35%|███▌ | 353/999 [05:53<11:58, 1.11s/it] 35%|███▌ | 354/999 [05:53<08:48, 1.22it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 73.36it/s] 64%|██████▍ | 16/25 [00:00<00:00, 72.45it/s] 96%|█████████▌| 24/25 [00:00<00:00, 72.62it/s] 100%|██████████| 25/25 [00:00<00:00, 72.53it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 72.84it/s] 64%|██████▍ | 16/25 [00:00<00:00, 72.96it/s] 96%|█████████▌| 24/25 [00:00<00:00, 72.45it/s] 100%|██████████| 25/25 [00:00<00:00, 72.64it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 18.88it/s] 40%|████ | 4/10 [00:00<00:00, 18.75it/s] 60%|██████ | 6/10 [00:00<00:00, 18.75it/s] 80%|████████ | 8/10 [00:00<00:00, 18.72it/s] 100%|██████████| 10/10 [00:00<00:00, 18.71it/s] 100%|██████████| 10/10 [00:00<00:00, 18.72it/s] frame_idx: 356 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 195 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 frame_idx: 356 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 195 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 36%|███▌ | 355/999 [05:54<11:57, 1.11s/it] 36%|███▌ | 356/999 [05:55<08:46, 1.22it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 71.50it/s] 64%|██████▍ | 16/25 [00:00<00:00, 72.17it/s] 96%|█████████▌| 24/25 [00:00<00:00, 70.45it/s] 100%|██████████| 25/25 [00:00<00:00, 70.95it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 71.93it/s] 64%|██████▍ | 16/25 [00:00<00:00, 70.27it/s] 96%|█████████▌| 24/25 [00:00<00:00, 69.60it/s] 100%|██████████| 25/25 [00:00<00:00, 69.85it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 18.77it/s] 40%|████ | 4/10 [00:00<00:00, 18.75it/s] 60%|██████ | 6/10 [00:00<00:00, 18.69it/s] 80%|████████ | 8/10 [00:00<00:00, 18.67it/s] 100%|██████████| 10/10 [00:00<00:00, 18.69it/s] 100%|██████████| 10/10 [00:00<00:00, 18.69it/s] frame_idx: 358 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 196 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 frame_idx: 358 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 196 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 36%|███▌ | 357/999 [05:56<12:05, 1.13s/it] 36%|███▌ | 358/999 [05:57<08:53, 1.20it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 73.12it/s] 64%|██████▍ | 16/25 [00:00<00:00, 72.02it/s] 96%|█████████▌| 24/25 [00:00<00:00, 72.34it/s] 100%|██████████| 25/25 [00:00<00:00, 71.87it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 74.24it/s] 64%|██████▍ | 16/25 [00:00<00:00, 74.38it/s] 96%|█████████▌| 24/25 [00:00<00:00, 72.93it/s] 100%|██████████| 25/25 [00:00<00:00, 72.94it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 18.89it/s] 40%|████ | 4/10 [00:00<00:00, 18.78it/s] 60%|██████ | 6/10 [00:00<00:00, 18.71it/s] 80%|████████ | 8/10 [00:00<00:00, 18.68it/s] 100%|██████████| 10/10 [00:00<00:00, 18.68it/s] 100%|██████████| 10/10 [00:00<00:00, 18.70it/s] frame_idx: 360 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 197 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 frame_idx: 360 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 197 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 36%|███▌ | 359/999 [05:58<11:59, 1.12s/it] 36%|███▌ | 360/999 [05:59<08:48, 1.21it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 73.98it/s] 64%|██████▍ | 16/25 [00:00<00:00, 74.27it/s] 96%|█████████▌| 24/25 [00:00<00:00, 73.88it/s] 100%|██████████| 25/25 [00:00<00:00, 73.88it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 74.86it/s] 64%|██████▍ | 16/25 [00:00<00:00, 74.76it/s] 96%|█████████▌| 24/25 [00:00<00:00, 74.75it/s] 100%|██████████| 25/25 [00:00<00:00, 74.68it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 18.81it/s] 40%|████ | 4/10 [00:00<00:00, 18.71it/s] 60%|██████ | 6/10 [00:00<00:00, 18.69it/s] 80%|████████ | 8/10 [00:00<00:00, 18.68it/s] 100%|██████████| 10/10 [00:00<00:00, 18.64it/s] 100%|██████████| 10/10 [00:00<00:00, 18.66it/s] frame_idx: 362 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 198 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 frame_idx: 362 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 198 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 36%|███▌ | 361/999 [06:00<11:51, 1.12s/it] 36%|███▌ | 362/999 [06:00<08:44, 1.22it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 72.68it/s] 64%|██████▍ | 16/25 [00:00<00:00, 74.11it/s] 96%|█████████▌| 24/25 [00:00<00:00, 74.46it/s] 100%|██████████| 25/25 [00:00<00:00, 74.21it/s] 0%| | 0/25 [00:00<?, ?it/s] 28%|██▊ | 7/25 [00:00<00:00, 69.02it/s] 56%|█████▌ | 14/25 [00:00<00:00, 69.21it/s] 88%|████████▊ | 22/25 [00:00<00:00, 71.04it/s] 100%|██████████| 25/25 [00:00<00:00, 70.95it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 18.81it/s] 40%|████ | 4/10 [00:00<00:00, 18.70it/s] 60%|██████ | 6/10 [00:00<00:00, 18.70it/s] 80%|████████ | 8/10 [00:00<00:00, 18.72it/s] 100%|██████████| 10/10 [00:00<00:00, 18.71it/s] 100%|██████████| 10/10 [00:00<00:00, 18.70it/s] frame_idx: 364 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 199 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 frame_idx: 364 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 199 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 36%|███▋ | 363/999 [06:02<11:49, 1.12s/it] 36%|███▋ | 364/999 [06:02<08:44, 1.21it/s] 0%| | 0/25 [00:00<?, ?it/s] 28%|██▊ | 7/25 [00:00<00:00, 67.11it/s] 56%|█████▌ | 14/25 [00:00<00:00, 68.29it/s] 88%|████████▊ | 22/25 [00:00<00:00, 71.32it/s] 100%|██████████| 25/25 [00:00<00:00, 70.68it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 74.83it/s] 64%|██████▍ | 16/25 [00:00<00:00, 74.50it/s] 96%|█████████▌| 24/25 [00:00<00:00, 74.65it/s] 100%|██████████| 25/25 [00:00<00:00, 74.63it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 18.62it/s] 40%|████ | 4/10 [00:00<00:00, 18.68it/s] 60%|██████ | 6/10 [00:00<00:00, 18.67it/s] 80%|████████ | 8/10 [00:00<00:00, 18.68it/s] 100%|██████████| 10/10 [00:00<00:00, 18.65it/s] 100%|██████████| 10/10 [00:00<00:00, 18.65it/s] frame_idx: 366 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 200 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 frame_idx: 366 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 200 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 37%|███▋ | 365/999 [06:04<11:48, 1.12s/it] 37%|███▋ | 366/999 [06:04<08:40, 1.22it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 71.37it/s] 64%|██████▍ | 16/25 [00:00<00:00, 72.64it/s] 96%|█████████▌| 24/25 [00:00<00:00, 72.56it/s] 100%|██████████| 25/25 [00:00<00:00, 72.12it/s] 0%| | 0/25 [00:00<?, ?it/s] 28%|██▊ | 7/25 [00:00<00:00, 69.48it/s] 56%|█████▌ | 14/25 [00:00<00:00, 69.53it/s] 84%|████████▍ | 21/25 [00:00<00:00, 69.38it/s] 100%|██████████| 25/25 [00:00<00:00, 70.18it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 18.80it/s] 40%|████ | 4/10 [00:00<00:00, 18.67it/s] 60%|██████ | 6/10 [00:00<00:00, 18.68it/s] 80%|████████ | 8/10 [00:00<00:00, 18.68it/s] 100%|██████████| 10/10 [00:00<00:00, 18.65it/s] 100%|██████████| 10/10 [00:00<00:00, 18.66it/s] frame_idx: 368 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 201 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 frame_idx: 368 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 201 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 37%|███▋ | 367/999 [06:06<11:48, 1.12s/it] 37%|███▋ | 368/999 [06:06<08:41, 1.21it/s] 0%| | 0/25 [00:00<?, ?it/s] 28%|██▊ | 7/25 [00:00<00:00, 68.22it/s] 60%|██████ | 15/25 [00:00<00:00, 71.89it/s] 92%|█████████▏| 23/25 [00:00<00:00, 73.48it/s] 100%|██████████| 25/25 [00:00<00:00, 72.64it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 74.40it/s] 64%|██████▍ | 16/25 [00:00<00:00, 73.02it/s] 96%|█████████▌| 24/25 [00:00<00:00, 73.84it/s] 100%|██████████| 25/25 [00:00<00:00, 73.54it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 18.84it/s] 40%|████ | 4/10 [00:00<00:00, 18.71it/s] 60%|██████ | 6/10 [00:00<00:00, 18.61it/s] 80%|████████ | 8/10 [00:00<00:00, 18.65it/s] 100%|██████████| 10/10 [00:00<00:00, 18.64it/s] 100%|██████████| 10/10 [00:00<00:00, 18.65it/s] frame_idx: 370 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 202 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 frame_idx: 370 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 202 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 37%|███▋ | 369/999 [06:08<11:44, 1.12s/it] 37%|███▋ | 370/999 [06:08<08:37, 1.21it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 70.72it/s] 64%|██████▍ | 16/25 [00:00<00:00, 70.50it/s] 96%|█████████▌| 24/25 [00:00<00:00, 72.54it/s] 100%|██████████| 25/25 [00:00<00:00, 72.10it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 74.64it/s] 64%|██████▍ | 16/25 [00:00<00:00, 74.72it/s] 96%|█████████▌| 24/25 [00:00<00:00, 74.76it/s] 100%|██████████| 25/25 [00:00<00:00, 74.75it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 18.79it/s] 40%|████ | 4/10 [00:00<00:00, 18.77it/s] 60%|██████ | 6/10 [00:00<00:00, 18.54it/s] 80%|████████ | 8/10 [00:00<00:00, 18.59it/s] 100%|██████████| 10/10 [00:00<00:00, 18.58it/s] 100%|██████████| 10/10 [00:00<00:00, 18.60it/s] frame_idx: 372 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 203 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 frame_idx: 372 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 203 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 37%|███▋ | 371/999 [06:10<11:42, 1.12s/it] 37%|███▋ | 372/999 [06:10<08:37, 1.21it/s] 0%| | 0/25 [00:00<?, ?it/s] 28%|██▊ | 7/25 [00:00<00:00, 67.57it/s] 56%|█████▌ | 14/25 [00:00<00:00, 68.55it/s] 88%|████████▊ | 22/25 [00:00<00:00, 71.57it/s] 100%|██████████| 25/25 [00:00<00:00, 71.08it/s] 0%| | 0/25 [00:00<?, ?it/s] 28%|██▊ | 7/25 [00:00<00:00, 68.25it/s] 60%|██████ | 15/25 [00:00<00:00, 70.32it/s] 92%|█████████▏| 23/25 [00:00<00:00, 69.73it/s] 100%|██████████| 25/25 [00:00<00:00, 69.38it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 18.74it/s] 40%|████ | 4/10 [00:00<00:00, 18.67it/s] 60%|██████ | 6/10 [00:00<00:00, 18.62it/s] 80%|████████ | 8/10 [00:00<00:00, 18.59it/s] 100%|██████████| 10/10 [00:00<00:00, 18.59it/s] 100%|██████████| 10/10 [00:00<00:00, 18.60it/s] frame_idx: 374 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 204 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 frame_idx: 374 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 204 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 37%|███▋ | 373/999 [06:12<11:45, 1.13s/it] 37%|███▋ | 374/999 [06:12<08:38, 1.20it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 73.25it/s] 64%|██████▍ | 16/25 [00:00<00:00, 68.88it/s] 96%|█████████▌| 24/25 [00:00<00:00, 70.03it/s] 100%|██████████| 25/25 [00:00<00:00, 69.79it/s] 0%| | 0/25 [00:00<?, ?it/s] 28%|██▊ | 7/25 [00:00<00:00, 69.95it/s] 56%|█████▌ | 14/25 [00:00<00:00, 69.77it/s] 88%|████████▊ | 22/25 [00:00<00:00, 70.17it/s] 100%|██████████| 25/25 [00:00<00:00, 70.18it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 18.70it/s] 40%|████ | 4/10 [00:00<00:00, 18.59it/s] 60%|██████ | 6/10 [00:00<00:00, 18.34it/s] 80%|████████ | 8/10 [00:00<00:00, 18.39it/s] 100%|██████████| 10/10 [00:00<00:00, 18.43it/s] 100%|██████████| 10/10 [00:00<00:00, 18.43it/s] frame_idx: 376 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 205 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 frame_idx: 376 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 205 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 38%|███▊ | 375/999 [06:14<11:50, 1.14s/it] 38%|███▊ | 376/999 [06:14<08:46, 1.18it/s] 0%| | 0/25 [00:00<?, ?it/s] 28%|██▊ | 7/25 [00:00<00:00, 65.52it/s] 56%|█████▌ | 14/25 [00:00<00:00, 67.78it/s] 84%|████████▍ | 21/25 [00:00<00:00, 68.41it/s] 100%|██████████| 25/25 [00:00<00:00, 68.84it/s] 0%| | 0/25 [00:00<?, ?it/s] 28%|██▊ | 7/25 [00:00<00:00, 68.92it/s] 56%|█████▌ | 14/25 [00:00<00:00, 64.30it/s] 84%|████████▍ | 21/25 [00:00<00:00, 65.22it/s] 100%|██████████| 25/25 [00:00<00:00, 65.09it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 18.67it/s] 40%|████ | 4/10 [00:00<00:00, 18.28it/s] 60%|██████ | 6/10 [00:00<00:00, 18.33it/s] 80%|████████ | 8/10 [00:00<00:00, 18.28it/s] 100%|██████████| 10/10 [00:00<00:00, 18.30it/s] 100%|██████████| 10/10 [00:00<00:00, 18.31it/s] frame_idx: 378 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 206 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 frame_idx: 378 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 206 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 38%|███▊ | 377/999 [06:16<12:12, 1.18s/it] 38%|███▊ | 378/999 [06:16<08:59, 1.15it/s] 0%| | 0/25 [00:00<?, ?it/s] 28%|██▊ | 7/25 [00:00<00:00, 64.72it/s] 56%|█████▌ | 14/25 [00:00<00:00, 65.53it/s] 88%|████████▊ | 22/25 [00:00<00:00, 68.55it/s] 100%|██████████| 25/25 [00:00<00:00, 68.24it/s] 0%| | 0/25 [00:00<?, ?it/s] 24%|██▍ | 6/25 [00:00<00:00, 57.15it/s] 52%|█████▏ | 13/25 [00:00<00:00, 62.10it/s] 80%|████████ | 20/25 [00:00<00:00, 64.13it/s] 100%|██████████| 25/25 [00:00<00:00, 64.45it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 18.69it/s] 40%|████ | 4/10 [00:00<00:00, 18.54it/s] 60%|██████ | 6/10 [00:00<00:00, 18.53it/s] 80%|████████ | 8/10 [00:00<00:00, 18.47it/s] 100%|██████████| 10/10 [00:00<00:00, 18.41it/s] 100%|██████████| 10/10 [00:00<00:00, 18.45it/s] frame_idx: 380 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 207 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 frame_idx: 380 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 207 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 38%|███▊ | 379/999 [06:18<12:11, 1.18s/it] 38%|███▊ | 380/999 [06:18<08:57, 1.15it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 73.18it/s] 64%|██████▍ | 16/25 [00:00<00:00, 74.20it/s] 96%|█████████▌| 24/25 [00:00<00:00, 74.57it/s] 100%|██████████| 25/25 [00:00<00:00, 74.35it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 72.22it/s] 64%|██████▍ | 16/25 [00:00<00:00, 73.28it/s] 96%|█████████▌| 24/25 [00:00<00:00, 73.54it/s] 100%|██████████| 25/25 [00:00<00:00, 73.37it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 18.72it/s] 40%|████ | 4/10 [00:00<00:00, 18.58it/s] 60%|██████ | 6/10 [00:00<00:00, 18.54it/s] 80%|████████ | 8/10 [00:00<00:00, 18.53it/s] 100%|██████████| 10/10 [00:00<00:00, 18.52it/s] 100%|██████████| 10/10 [00:00<00:00, 18.53it/s] frame_idx: 382 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 208 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 frame_idx: 382 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 208 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 38%|███▊ | 381/999 [06:20<11:50, 1.15s/it] 38%|███▊ | 382/999 [06:20<08:41, 1.18it/s] 0%| | 0/25 [00:00<?, ?it/s] 28%|██▊ | 7/25 [00:00<00:00, 68.09it/s] 60%|██████ | 15/25 [00:00<00:00, 69.21it/s] 88%|████████▊ | 22/25 [00:00<00:00, 69.50it/s] 100%|██████████| 25/25 [00:00<00:00, 69.42it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 72.89it/s] 64%|██████▍ | 16/25 [00:00<00:00, 71.16it/s] 96%|█████████▌| 24/25 [00:00<00:00, 72.43it/s] 100%|██████████| 25/25 [00:00<00:00, 72.28it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 18.76it/s] 40%|████ | 4/10 [00:00<00:00, 18.57it/s] 60%|██████ | 6/10 [00:00<00:00, 18.57it/s] 80%|████████ | 8/10 [00:00<00:00, 18.57it/s] 100%|██████████| 10/10 [00:00<00:00, 18.60it/s] 100%|██████████| 10/10 [00:00<00:00, 18.59it/s] frame_idx: 384 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 209 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 frame_idx: 384 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 209 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 38%|███▊ | 383/999 [06:22<11:42, 1.14s/it] 38%|███▊ | 384/999 [06:22<08:36, 1.19it/s] 0%| | 0/25 [00:00<?, ?it/s] 28%|██▊ | 7/25 [00:00<00:00, 66.27it/s] 56%|█████▌ | 14/25 [00:00<00:00, 68.00it/s] 84%|████████▍ | 21/25 [00:00<00:00, 68.61it/s] 100%|██████████| 25/25 [00:00<00:00, 68.49it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 72.37it/s] 64%|██████▍ | 16/25 [00:00<00:00, 72.11it/s] 96%|█████████▌| 24/25 [00:00<00:00, 73.15it/s] 100%|██████████| 25/25 [00:00<00:00, 72.85it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 18.69it/s] 40%|████ | 4/10 [00:00<00:00, 18.59it/s] 60%|██████ | 6/10 [00:00<00:00, 18.61it/s] 80%|████████ | 8/10 [00:00<00:00, 18.61it/s] 100%|██████████| 10/10 [00:00<00:00, 18.57it/s] 100%|██████████| 10/10 [00:00<00:00, 18.58it/s] frame_idx: 386 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 210 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 frame_idx: 386 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 210 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 39%|███▊ | 385/999 [06:24<11:39, 1.14s/it] 39%|███▊ | 386/999 [06:24<08:33, 1.19it/s] 0%| | 0/25 [00:00<?, ?it/s] 28%|██▊ | 7/25 [00:00<00:00, 67.25it/s] 56%|█████▌ | 14/25 [00:00<00:00, 68.41it/s] 84%|████████▍ | 21/25 [00:00<00:00, 68.43it/s] 100%|██████████| 25/25 [00:00<00:00, 68.78it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 74.35it/s] 64%|██████▍ | 16/25 [00:00<00:00, 71.72it/s] 96%|█████████▌| 24/25 [00:00<00:00, 73.11it/s] 100%|██████████| 25/25 [00:00<00:00, 72.80it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 15.45it/s] 40%|████ | 4/10 [00:00<00:00, 17.13it/s] 60%|██████ | 6/10 [00:00<00:00, 17.56it/s] 80%|████████ | 8/10 [00:00<00:00, 17.80it/s] 100%|██████████| 10/10 [00:00<00:00, 17.97it/s] 100%|██████████| 10/10 [00:00<00:00, 17.62it/s] frame_idx: 388 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 211 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 frame_idx: 388 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 211 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 39%|███▊ | 387/999 [06:26<12:08, 1.19s/it] 39%|███▉ | 388/999 [06:26<09:19, 1.09it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 73.67it/s] 64%|██████▍ | 16/25 [00:00<00:00, 69.15it/s] 96%|█████████▌| 24/25 [00:00<00:00, 71.58it/s] 100%|██████████| 25/25 [00:00<00:00, 71.41it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 74.77it/s] 64%|██████▍ | 16/25 [00:00<00:00, 73.22it/s] 96%|█████████▌| 24/25 [00:00<00:00, 71.60it/s] 100%|██████████| 25/25 [00:00<00:00, 72.01it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 18.83it/s] 40%|████ | 4/10 [00:00<00:00, 18.70it/s] 60%|██████ | 6/10 [00:00<00:00, 18.63it/s] 80%|████████ | 8/10 [00:00<00:00, 18.61it/s] 100%|██████████| 10/10 [00:00<00:00, 18.63it/s] 100%|██████████| 10/10 [00:00<00:00, 18.64it/s] frame_idx: 390 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 212 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 frame_idx: 390 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 212 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 39%|███▉ | 389/999 [06:28<12:43, 1.25s/it] 39%|███▉ | 390/999 [06:29<09:19, 1.09it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 74.10it/s] 64%|██████▍ | 16/25 [00:00<00:00, 74.26it/s] 96%|█████████▌| 24/25 [00:00<00:00, 71.88it/s] 100%|██████████| 25/25 [00:00<00:00, 72.43it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 72.30it/s] 64%|██████▍ | 16/25 [00:00<00:00, 73.16it/s] 96%|█████████▌| 24/25 [00:00<00:00, 71.71it/s] 100%|██████████| 25/25 [00:00<00:00, 71.55it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 18.80it/s] 40%|████ | 4/10 [00:00<00:00, 18.67it/s] 60%|██████ | 6/10 [00:00<00:00, 18.63it/s] 80%|████████ | 8/10 [00:00<00:00, 18.61it/s] 100%|██████████| 10/10 [00:00<00:00, 18.58it/s] 100%|██████████| 10/10 [00:00<00:00, 18.61it/s] frame_idx: 392 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 213 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 frame_idx: 392 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 213 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 39%|███▉ | 391/999 [06:30<12:03, 1.19s/it] 39%|███▉ | 392/999 [06:31<08:50, 1.14it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 73.43it/s] 64%|██████▍ | 16/25 [00:00<00:00, 73.65it/s] 96%|█████████▌| 24/25 [00:00<00:00, 74.21it/s] 100%|██████████| 25/25 [00:00<00:00, 73.93it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 74.80it/s] 64%|██████▍ | 16/25 [00:00<00:00, 74.72it/s] 96%|█████████▌| 24/25 [00:00<00:00, 71.18it/s] 100%|██████████| 25/25 [00:00<00:00, 71.94it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 18.73it/s] 40%|████ | 4/10 [00:00<00:00, 18.68it/s] 60%|██████ | 6/10 [00:00<00:00, 18.62it/s] 80%|████████ | 8/10 [00:00<00:00, 18.61it/s] 100%|██████████| 10/10 [00:00<00:00, 18.60it/s] 100%|██████████| 10/10 [00:00<00:00, 18.61it/s] frame_idx: 394 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 214 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 frame_idx: 394 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 214 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 39%|███▉ | 393/999 [06:32<11:40, 1.16s/it] 39%|███▉ | 394/999 [06:33<08:35, 1.17it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 74.65it/s] 64%|██████▍ | 16/25 [00:00<00:00, 74.80it/s] 96%|█████████▌| 24/25 [00:00<00:00, 74.87it/s] 100%|██████████| 25/25 [00:00<00:00, 74.71it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 74.41it/s] 64%|██████▍ | 16/25 [00:00<00:00, 74.72it/s] 96%|█████████▌| 24/25 [00:00<00:00, 72.80it/s] 100%|██████████| 25/25 [00:00<00:00, 73.12it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 18.86it/s] 40%|████ | 4/10 [00:00<00:00, 18.69it/s] 60%|██████ | 6/10 [00:00<00:00, 18.68it/s] 80%|████████ | 8/10 [00:00<00:00, 18.64it/s] 100%|██████████| 10/10 [00:00<00:00, 18.64it/s] 100%|██████████| 10/10 [00:00<00:00, 18.66it/s] frame_idx: 396 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 215 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 frame_idx: 396 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 215 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 40%|███▉ | 395/999 [06:34<11:26, 1.14s/it] 40%|███▉ | 396/999 [06:35<08:25, 1.19it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 73.69it/s] 64%|██████▍ | 16/25 [00:00<00:00, 74.06it/s] 96%|█████████▌| 24/25 [00:00<00:00, 74.56it/s] 100%|██████████| 25/25 [00:00<00:00, 74.36it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 72.91it/s] 64%|██████▍ | 16/25 [00:00<00:00, 73.14it/s] 96%|█████████▌| 24/25 [00:00<00:00, 71.39it/s] 100%|██████████| 25/25 [00:00<00:00, 71.83it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 18.87it/s] 40%|████ | 4/10 [00:00<00:00, 18.75it/s] 60%|██████ | 6/10 [00:00<00:00, 18.69it/s] 80%|████████ | 8/10 [00:00<00:00, 18.65it/s] 100%|██████████| 10/10 [00:00<00:00, 18.67it/s] 100%|██████████| 10/10 [00:00<00:00, 18.68it/s] frame_idx: 398 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 216 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 frame_idx: 398 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 216 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 40%|███▉ | 397/999 [06:36<11:19, 1.13s/it] 40%|███▉ | 398/999 [06:36<08:19, 1.20it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 73.50it/s] 64%|██████▍ | 16/25 [00:00<00:00, 71.56it/s] 96%|█████████▌| 24/25 [00:00<00:00, 73.15it/s] 100%|██████████| 25/25 [00:00<00:00, 73.00it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 74.42it/s] 64%|██████▍ | 16/25 [00:00<00:00, 73.98it/s] 96%|█████████▌| 24/25 [00:00<00:00, 74.52it/s] 100%|██████████| 25/25 [00:00<00:00, 74.22it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 18.12it/s] 40%|████ | 4/10 [00:00<00:00, 18.48it/s] 60%|██████ | 6/10 [00:00<00:00, 18.55it/s] 80%|████████ | 8/10 [00:00<00:00, 18.59it/s] 100%|██████████| 10/10 [00:00<00:00, 18.65it/s] 100%|██████████| 10/10 [00:00<00:00, 18.57it/s] frame_idx: 400 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 217 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 frame_idx: 400 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 217 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 40%|███▉ | 399/999 [06:38<11:12, 1.12s/it] 40%|████ | 400/999 [06:38<08:13, 1.21it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 73.23it/s] 64%|██████▍ | 16/25 [00:00<00:00, 72.93it/s] 96%|█████████▌| 24/25 [00:00<00:00, 72.99it/s] 100%|██████████| 25/25 [00:00<00:00, 72.90it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 75.10it/s] 64%|██████▍ | 16/25 [00:00<00:00, 74.83it/s] 96%|█████████▌| 24/25 [00:00<00:00, 74.96it/s] 100%|██████████| 25/25 [00:00<00:00, 74.96it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 18.78it/s] 40%|████ | 4/10 [00:00<00:00, 18.72it/s] 60%|██████ | 6/10 [00:00<00:00, 18.68it/s] 80%|████████ | 8/10 [00:00<00:00, 18.66it/s] 100%|██████████| 10/10 [00:00<00:00, 18.68it/s] 100%|██████████| 10/10 [00:00<00:00, 18.68it/s] frame_idx: 402 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 218 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 frame_idx: 402 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 218 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 40%|████ | 401/999 [06:40<11:05, 1.11s/it] 40%|████ | 402/999 [06:40<08:07, 1.22it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 70.87it/s] 64%|██████▍ | 16/25 [00:00<00:00, 73.42it/s] 96%|█████████▌| 24/25 [00:00<00:00, 74.23it/s] 100%|██████████| 25/25 [00:00<00:00, 73.82it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 75.18it/s] 64%|██████▍ | 16/25 [00:00<00:00, 75.34it/s] 96%|█████████▌| 24/25 [00:00<00:00, 75.22it/s] 100%|██████████| 25/25 [00:00<00:00, 75.18it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 18.83it/s] 40%|████ | 4/10 [00:00<00:00, 18.73it/s] 60%|██████ | 6/10 [00:00<00:00, 18.72it/s] 80%|████████ | 8/10 [00:00<00:00, 18.66it/s] 100%|██████████| 10/10 [00:00<00:00, 18.66it/s] 100%|██████████| 10/10 [00:00<00:00, 18.68it/s] frame_idx: 404 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 219 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 frame_idx: 404 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 219 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 40%|████ | 403/999 [06:42<11:01, 1.11s/it] 40%|████ | 404/999 [06:42<08:05, 1.23it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 70.04it/s] 64%|██████▍ | 16/25 [00:00<00:00, 69.58it/s] 96%|█████████▌| 24/25 [00:00<00:00, 71.71it/s] 100%|██████████| 25/25 [00:00<00:00, 71.32it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 75.32it/s] 64%|██████▍ | 16/25 [00:00<00:00, 74.94it/s] 96%|█████████▌| 24/25 [00:00<00:00, 74.96it/s] 100%|██████████| 25/25 [00:00<00:00, 74.72it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 18.86it/s] 40%|████ | 4/10 [00:00<00:00, 18.78it/s] 60%|██████ | 6/10 [00:00<00:00, 18.73it/s] 80%|████████ | 8/10 [00:00<00:00, 18.71it/s] 100%|██████████| 10/10 [00:00<00:00, 18.70it/s] 100%|██████████| 10/10 [00:00<00:00, 18.71it/s] frame_idx: 406 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 220 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 frame_idx: 406 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 220 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 41%|████ | 405/999 [06:44<10:59, 1.11s/it] 41%|████ | 406/999 [06:44<08:03, 1.23it/s] 0%| | 0/25 [00:00<?, ?it/s] 28%|██▊ | 7/25 [00:00<00:00, 69.77it/s] 56%|█████▌ | 14/25 [00:00<00:00, 67.69it/s] 84%|████████▍ | 21/25 [00:00<00:00, 68.56it/s] 100%|██████████| 25/25 [00:00<00:00, 68.79it/s] 0%| | 0/25 [00:00<?, ?it/s] 28%|██▊ | 7/25 [00:00<00:00, 69.80it/s] 60%|██████ | 15/25 [00:00<00:00, 70.02it/s] 92%|█████████▏| 23/25 [00:00<00:00, 71.02it/s] 100%|██████████| 25/25 [00:00<00:00, 71.07it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 18.82it/s] 40%|████ | 4/10 [00:00<00:00, 18.74it/s] 60%|██████ | 6/10 [00:00<00:00, 18.66it/s] 80%|████████ | 8/10 [00:00<00:00, 18.64it/s] 100%|██████████| 10/10 [00:00<00:00, 18.59it/s] 100%|██████████| 10/10 [00:00<00:00, 18.63it/s] frame_idx: 408 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 221 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 frame_idx: 408 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 221 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 41%|████ | 407/999 [06:46<11:03, 1.12s/it] 41%|████ | 408/999 [06:46<08:07, 1.21it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 71.77it/s] 64%|██████▍ | 16/25 [00:00<00:00, 68.55it/s] 92%|█████████▏| 23/25 [00:00<00:00, 68.91it/s] 100%|██████████| 25/25 [00:00<00:00, 68.87it/s] 0%| | 0/25 [00:00<?, ?it/s] 28%|██▊ | 7/25 [00:00<00:00, 69.57it/s] 60%|██████ | 15/25 [00:00<00:00, 71.08it/s] 92%|█████████▏| 23/25 [00:00<00:00, 70.67it/s] 100%|██████████| 25/25 [00:00<00:00, 70.90it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 18.89it/s] 40%|████ | 4/10 [00:00<00:00, 18.70it/s] 60%|██████ | 6/10 [00:00<00:00, 18.66it/s] 80%|████████ | 8/10 [00:00<00:00, 18.63it/s] 100%|██████████| 10/10 [00:00<00:00, 18.63it/s] 100%|██████████| 10/10 [00:00<00:00, 18.65it/s] frame_idx: 410 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 222 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 frame_idx: 410 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 222 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 41%|████ | 409/999 [06:48<11:03, 1.13s/it] 41%|████ | 410/999 [06:48<08:07, 1.21it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 73.69it/s] 64%|██████▍ | 16/25 [00:00<00:00, 73.19it/s] 96%|█████████▌| 24/25 [00:00<00:00, 71.03it/s] 100%|██████████| 25/25 [00:00<00:00, 71.46it/s] 0%| | 0/25 [00:00<?, ?it/s] 28%|██▊ | 7/25 [00:00<00:00, 68.81it/s] 56%|█████▌ | 14/25 [00:00<00:00, 68.98it/s] 84%|████████▍ | 21/25 [00:00<00:00, 69.03it/s] 100%|██████████| 25/25 [00:00<00:00, 69.75it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 18.84it/s] 40%|████ | 4/10 [00:00<00:00, 18.72it/s] 60%|██████ | 6/10 [00:00<00:00, 18.66it/s] 80%|████████ | 8/10 [00:00<00:00, 18.63it/s] 100%|██████████| 10/10 [00:00<00:00, 18.62it/s] 100%|██████████| 10/10 [00:00<00:00, 18.64it/s] frame_idx: 412 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 223 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 frame_idx: 412 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 223 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 41%|████ | 411/999 [06:50<11:03, 1.13s/it] 41%|████ | 412/999 [06:50<08:07, 1.20it/s] 0%| | 0/25 [00:00<?, ?it/s] 28%|██▊ | 7/25 [00:00<00:00, 67.80it/s] 60%|██████ | 15/25 [00:00<00:00, 69.40it/s] 88%|████████▊ | 22/25 [00:00<00:00, 68.70it/s] 100%|██████████| 25/25 [00:00<00:00, 68.76it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 75.10it/s] 64%|██████▍ | 16/25 [00:00<00:00, 71.03it/s] 96%|█████████▌| 24/25 [00:00<00:00, 71.77it/s] 100%|██████████| 25/25 [00:00<00:00, 72.02it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 18.81it/s] 40%|████ | 4/10 [00:00<00:00, 18.66it/s] 60%|██████ | 6/10 [00:00<00:00, 18.65it/s] 80%|████████ | 8/10 [00:00<00:00, 18.66it/s] 100%|██████████| 10/10 [00:00<00:00, 18.66it/s] 100%|██████████| 10/10 [00:00<00:00, 18.66it/s] frame_idx: 414 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 224 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 frame_idx: 414 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 224 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 41%|████▏ | 413/999 [06:52<11:00, 1.13s/it] 41%|████▏ | 414/999 [06:52<08:05, 1.21it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 74.22it/s] 64%|██████▍ | 16/25 [00:00<00:00, 74.40it/s] 96%|█████████▌| 24/25 [00:00<00:00, 72.65it/s] 100%|██████████| 25/25 [00:00<00:00, 72.87it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 75.05it/s] 64%|██████▍ | 16/25 [00:00<00:00, 74.92it/s] 96%|█████████▌| 24/25 [00:00<00:00, 74.80it/s] 100%|██████████| 25/25 [00:00<00:00, 74.78it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 18.85it/s] 40%|████ | 4/10 [00:00<00:00, 18.70it/s] 60%|██████ | 6/10 [00:00<00:00, 18.69it/s] 80%|████████ | 8/10 [00:00<00:00, 18.70it/s] 100%|██████████| 10/10 [00:00<00:00, 18.64it/s] 100%|██████████| 10/10 [00:00<00:00, 18.67it/s] frame_idx: 416 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 225 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 frame_idx: 416 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 225 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 42%|████▏ | 415/999 [06:54<10:52, 1.12s/it] 42%|████▏ | 416/999 [06:54<07:59, 1.22it/s] 0%| | 0/25 [00:00<?, ?it/s] 28%|██▊ | 7/25 [00:00<00:00, 67.60it/s] 60%|██████ | 15/25 [00:00<00:00, 70.08it/s] 92%|█████████▏| 23/25 [00:00<00:00, 69.74it/s] 100%|██████████| 25/25 [00:00<00:00, 69.28it/s] 0%| | 0/25 [00:00<?, ?it/s] 28%|██▊ | 7/25 [00:00<00:00, 69.56it/s] 60%|██████ | 15/25 [00:00<00:00, 70.31it/s] 92%|█████████▏| 23/25 [00:00<00:00, 72.36it/s] 100%|██████████| 25/25 [00:00<00:00, 71.89it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 18.81it/s] 40%|████ | 4/10 [00:00<00:00, 18.74it/s] 60%|██████ | 6/10 [00:00<00:00, 18.72it/s] 80%|████████ | 8/10 [00:00<00:00, 18.70it/s] 100%|██████████| 10/10 [00:00<00:00, 18.71it/s] 100%|██████████| 10/10 [00:00<00:00, 18.71it/s] frame_idx: 418 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 226 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 frame_idx: 418 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 226 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 42%|████▏ | 417/999 [06:56<10:53, 1.12s/it] 42%|████▏ | 418/999 [06:56<07:59, 1.21it/s] 0%| | 0/25 [00:00<?, ?it/s] 28%|██▊ | 7/25 [00:00<00:00, 66.55it/s] 56%|█████▌ | 14/25 [00:00<00:00, 67.82it/s] 88%|████████▊ | 22/25 [00:00<00:00, 71.11it/s] 100%|██████████| 25/25 [00:00<00:00, 70.72it/s] 0%| | 0/25 [00:00<?, ?it/s] 28%|██▊ | 7/25 [00:00<00:00, 69.09it/s] 60%|██████ | 15/25 [00:00<00:00, 72.18it/s] 92%|█████████▏| 23/25 [00:00<00:00, 73.48it/s] 100%|██████████| 25/25 [00:00<00:00, 72.18it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 18.88it/s] 40%|████ | 4/10 [00:00<00:00, 18.77it/s] 60%|██████ | 6/10 [00:00<00:00, 18.68it/s] 80%|████████ | 8/10 [00:00<00:00, 18.66it/s] 100%|██████████| 10/10 [00:00<00:00, 18.63it/s] 100%|██████████| 10/10 [00:00<00:00, 18.66it/s] frame_idx: 420 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 227 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 frame_idx: 420 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 227 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 42%|████▏ | 419/999 [06:58<10:50, 1.12s/it] 42%|████▏ | 420/999 [06:58<07:58, 1.21it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 74.05it/s] 64%|██████▍ | 16/25 [00:00<00:00, 74.51it/s] 96%|█████████▌| 24/25 [00:00<00:00, 74.60it/s] 100%|██████████| 25/25 [00:00<00:00, 74.48it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 70.34it/s] 64%|██████▍ | 16/25 [00:00<00:00, 71.43it/s] 96%|█████████▌| 24/25 [00:00<00:00, 70.69it/s] 100%|██████████| 25/25 [00:00<00:00, 70.68it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 18.80it/s] 40%|████ | 4/10 [00:00<00:00, 18.75it/s] 60%|██████ | 6/10 [00:00<00:00, 18.68it/s] 80%|████████ | 8/10 [00:00<00:00, 18.67it/s] 100%|██████████| 10/10 [00:00<00:00, 18.69it/s] 100%|██████████| 10/10 [00:00<00:00, 18.69it/s] frame_idx: 422 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 228 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 frame_idx: 422 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 228 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 42%|████▏ | 421/999 [07:00<10:48, 1.12s/it] 42%|████▏ | 422/999 [07:00<07:58, 1.21it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 74.08it/s] 64%|██████▍ | 16/25 [00:00<00:00, 74.33it/s] 96%|█████████▌| 24/25 [00:00<00:00, 71.42it/s] 100%|██████████| 25/25 [00:00<00:00, 71.95it/s] 0%| | 0/25 [00:00<?, ?it/s] 28%|██▊ | 7/25 [00:00<00:00, 68.58it/s] 56%|█████▌ | 14/25 [00:00<00:00, 68.50it/s] 84%|████████▍ | 21/25 [00:00<00:00, 68.53it/s] 100%|██████████| 25/25 [00:00<00:00, 68.41it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 18.83it/s] 40%|████ | 4/10 [00:00<00:00, 18.71it/s] 60%|██████ | 6/10 [00:00<00:00, 18.68it/s] 80%|████████ | 8/10 [00:00<00:00, 18.65it/s] 100%|██████████| 10/10 [00:00<00:00, 18.64it/s] 100%|██████████| 10/10 [00:00<00:00, 18.66it/s] frame_idx: 424 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 229 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 frame_idx: 424 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 229 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 42%|████▏ | 423/999 [07:02<10:53, 1.13s/it] 42%|████▏ | 424/999 [07:02<07:59, 1.20it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 74.29it/s] 64%|██████▍ | 16/25 [00:00<00:00, 74.44it/s] 96%|█████████▌| 24/25 [00:00<00:00, 74.21it/s] 100%|██████████| 25/25 [00:00<00:00, 74.25it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 74.89it/s] 64%|██████▍ | 16/25 [00:00<00:00, 72.18it/s] 96%|█████████▌| 24/25 [00:00<00:00, 70.80it/s] 100%|██████████| 25/25 [00:00<00:00, 71.35it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 18.85it/s] 40%|████ | 4/10 [00:00<00:00, 18.77it/s] 60%|██████ | 6/10 [00:00<00:00, 18.74it/s] 80%|████████ | 8/10 [00:00<00:00, 18.73it/s] 100%|██████████| 10/10 [00:00<00:00, 18.69it/s] 100%|██████████| 10/10 [00:00<00:00, 18.71it/s] frame_idx: 426 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 230 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 frame_idx: 426 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 230 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 43%|████▎ | 425/999 [07:04<10:44, 1.12s/it] 43%|████▎ | 426/999 [07:04<07:54, 1.21it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 73.85it/s] 64%|██████▍ | 16/25 [00:00<00:00, 74.26it/s] 96%|█████████▌| 24/25 [00:00<00:00, 74.54it/s] 100%|██████████| 25/25 [00:00<00:00, 74.42it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 74.64it/s] 64%|██████▍ | 16/25 [00:00<00:00, 73.47it/s] 96%|█████████▌| 24/25 [00:00<00:00, 73.22it/s] 100%|██████████| 25/25 [00:00<00:00, 73.46it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 18.80it/s] 40%|████ | 4/10 [00:00<00:00, 18.74it/s] 60%|██████ | 6/10 [00:00<00:00, 18.69it/s] 80%|████████ | 8/10 [00:00<00:00, 18.67it/s] 100%|██████████| 10/10 [00:00<00:00, 18.69it/s] 100%|██████████| 10/10 [00:00<00:00, 18.69it/s] frame_idx: 428 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 231 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 frame_idx: 428 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 231 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 43%|████▎ | 427/999 [07:05<10:39, 1.12s/it] 43%|████▎ | 428/999 [07:06<07:50, 1.21it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 74.72it/s] 64%|██████▍ | 16/25 [00:00<00:00, 72.78it/s] 96%|█████████▌| 24/25 [00:00<00:00, 72.40it/s] 100%|██████████| 25/25 [00:00<00:00, 72.53it/s] 0%| | 0/25 [00:00<?, ?it/s] 28%|██▊ | 7/25 [00:00<00:00, 69.53it/s] 56%|█████▌ | 14/25 [00:00<00:00, 69.69it/s] 84%|████████▍ | 21/25 [00:00<00:00, 69.55it/s] 100%|██████████| 25/25 [00:00<00:00, 69.37it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 18.85it/s] 40%|████ | 4/10 [00:00<00:00, 18.74it/s] 60%|██████ | 6/10 [00:00<00:00, 18.69it/s] 80%|████████ | 8/10 [00:00<00:00, 18.70it/s] 100%|██████████| 10/10 [00:00<00:00, 18.68it/s] 100%|██████████| 10/10 [00:00<00:00, 18.69it/s] frame_idx: 430 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 232 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 frame_idx: 430 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 232 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 43%|████▎ | 429/999 [07:07<10:42, 1.13s/it] 43%|████▎ | 430/999 [07:08<07:51, 1.21it/s] 0%| | 0/25 [00:00<?, ?it/s] 28%|██▊ | 7/25 [00:00<00:00, 68.41it/s] 60%|██████ | 15/25 [00:00<00:00, 72.26it/s] 92%|█████████▏| 23/25 [00:00<00:00, 73.64it/s] 100%|██████████| 25/25 [00:00<00:00, 73.08it/s] 0%| | 0/25 [00:00<?, ?it/s] 28%|██▊ | 7/25 [00:00<00:00, 69.76it/s] 60%|██████ | 15/25 [00:00<00:00, 70.89it/s] 92%|█████████▏| 23/25 [00:00<00:00, 70.83it/s] 100%|██████████| 25/25 [00:00<00:00, 70.63it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 18.84it/s] 40%|████ | 4/10 [00:00<00:00, 18.75it/s] 60%|██████ | 6/10 [00:00<00:00, 18.72it/s] 80%|████████ | 8/10 [00:00<00:00, 18.70it/s] 100%|██████████| 10/10 [00:00<00:00, 18.70it/s] 100%|██████████| 10/10 [00:00<00:00, 18.71it/s] frame_idx: 432 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 233 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 frame_idx: 432 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 233 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 43%|████▎ | 431/999 [07:09<10:38, 1.12s/it] 43%|████▎ | 432/999 [07:10<07:50, 1.20it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 74.29it/s] 64%|██████▍ | 16/25 [00:00<00:00, 74.51it/s] 96%|█████████▌| 24/25 [00:00<00:00, 74.53it/s] 100%|██████████| 25/25 [00:00<00:00, 74.44it/s] 0%| | 0/25 [00:00<?, ?it/s] 28%|██▊ | 7/25 [00:00<00:00, 68.93it/s] 60%|██████ | 15/25 [00:00<00:00, 69.65it/s] 92%|█████████▏| 23/25 [00:00<00:00, 70.63it/s] 100%|██████████| 25/25 [00:00<00:00, 70.11it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 18.82it/s] 40%|████ | 4/10 [00:00<00:00, 18.70it/s] 60%|██████ | 6/10 [00:00<00:00, 18.66it/s] 80%|████████ | 8/10 [00:00<00:00, 18.66it/s] 100%|██████████| 10/10 [00:00<00:00, 18.66it/s] 100%|██████████| 10/10 [00:00<00:00, 18.66it/s] frame_idx: 434 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 234 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 frame_idx: 434 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 234 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 43%|████▎ | 433/999 [07:11<10:36, 1.12s/it] 43%|████▎ | 434/999 [07:11<07:47, 1.21it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 74.35it/s] 64%|██████▍ | 16/25 [00:00<00:00, 74.26it/s] 96%|█████████▌| 24/25 [00:00<00:00, 71.82it/s] 100%|██████████| 25/25 [00:00<00:00, 72.32it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 70.68it/s] 64%|██████▍ | 16/25 [00:00<00:00, 69.96it/s] 96%|█████████▌| 24/25 [00:00<00:00, 70.79it/s] 100%|██████████| 25/25 [00:00<00:00, 70.49it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 18.86it/s] 40%|████ | 4/10 [00:00<00:00, 18.77it/s] 60%|██████ | 6/10 [00:00<00:00, 18.70it/s] 80%|████████ | 8/10 [00:00<00:00, 18.70it/s] 100%|██████████| 10/10 [00:00<00:00, 18.70it/s] 100%|██████████| 10/10 [00:00<00:00, 18.71it/s] frame_idx: 436 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 235 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 frame_idx: 436 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 235 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 44%|████▎ | 435/999 [07:13<10:34, 1.12s/it] 44%|████▎ | 436/999 [07:13<07:46, 1.21it/s] 0%| | 0/25 [00:00<?, ?it/s] 28%|██▊ | 7/25 [00:00<00:00, 69.49it/s] 60%|██████ | 15/25 [00:00<00:00, 72.11it/s] 92%|█████████▏| 23/25 [00:00<00:00, 70.67it/s] 100%|██████████| 25/25 [00:00<00:00, 70.61it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 72.74it/s] 64%|██████▍ | 16/25 [00:00<00:00, 72.36it/s] 96%|█████████▌| 24/25 [00:00<00:00, 71.14it/s] 100%|██████████| 25/25 [00:00<00:00, 71.62it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 18.82it/s] 40%|████ | 4/10 [00:00<00:00, 18.71it/s] 60%|██████ | 6/10 [00:00<00:00, 18.68it/s] 80%|████████ | 8/10 [00:00<00:00, 18.68it/s] 100%|██████████| 10/10 [00:00<00:00, 18.65it/s] 100%|██████████| 10/10 [00:00<00:00, 18.67it/s] frame_idx: 438 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 236 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 frame_idx: 438 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 236 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 44%|████▎ | 437/999 [07:15<10:32, 1.13s/it] 44%|████▍ | 438/999 [07:15<07:45, 1.21it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 74.50it/s] 64%|██████▍ | 16/25 [00:00<00:00, 74.82it/s] 96%|█████████▌| 24/25 [00:00<00:00, 74.84it/s] 100%|██████████| 25/25 [00:00<00:00, 74.40it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 71.86it/s] 64%|██████▍ | 16/25 [00:00<00:00, 71.76it/s] 96%|█████████▌| 24/25 [00:00<00:00, 69.37it/s] 100%|██████████| 25/25 [00:00<00:00, 69.99it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 18.86it/s] 40%|████ | 4/10 [00:00<00:00, 18.75it/s] 60%|██████ | 6/10 [00:00<00:00, 18.73it/s] 80%|████████ | 8/10 [00:00<00:00, 18.75it/s] 100%|██████████| 10/10 [00:00<00:00, 18.71it/s] 100%|██████████| 10/10 [00:00<00:00, 18.72it/s] frame_idx: 440 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 237 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 frame_idx: 440 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 237 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 44%|████▍ | 439/999 [07:17<10:31, 1.13s/it] 44%|████▍ | 440/999 [07:17<07:43, 1.21it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 73.79it/s] 64%|██████▍ | 16/25 [00:00<00:00, 74.27it/s] 96%|█████████▌| 24/25 [00:00<00:00, 73.61it/s] 100%|██████████| 25/25 [00:00<00:00, 73.61it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 71.31it/s] 64%|██████▍ | 16/25 [00:00<00:00, 69.09it/s] 92%|█████████▏| 23/25 [00:00<00:00, 68.97it/s] 100%|██████████| 25/25 [00:00<00:00, 69.19it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 18.81it/s] 40%|████ | 4/10 [00:00<00:00, 18.70it/s] 60%|██████ | 6/10 [00:00<00:00, 18.69it/s] 80%|████████ | 8/10 [00:00<00:00, 18.69it/s] 100%|██████████| 10/10 [00:00<00:00, 18.67it/s] 100%|██████████| 10/10 [00:00<00:00, 18.68it/s] frame_idx: 442 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 238 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 frame_idx: 442 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 238 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 44%|████▍ | 441/999 [07:19<10:29, 1.13s/it] 44%|████▍ | 442/999 [07:19<07:42, 1.21it/s] 0%| | 0/25 [00:00<?, ?it/s] 28%|██▊ | 7/25 [00:00<00:00, 67.71it/s] 60%|██████ | 15/25 [00:00<00:00, 71.69it/s] 92%|█████████▏| 23/25 [00:00<00:00, 73.17it/s] 100%|██████████| 25/25 [00:00<00:00, 72.53it/s] 0%| | 0/25 [00:00<?, ?it/s] 28%|██▊ | 7/25 [00:00<00:00, 68.95it/s] 60%|██████ | 15/25 [00:00<00:00, 70.62it/s] 92%|█████████▏| 23/25 [00:00<00:00, 69.60it/s] 100%|██████████| 25/25 [00:00<00:00, 69.62it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 18.86it/s] 40%|████ | 4/10 [00:00<00:00, 18.53it/s] 60%|██████ | 6/10 [00:00<00:00, 18.55it/s] 80%|████████ | 8/10 [00:00<00:00, 18.57it/s] 100%|██████████| 10/10 [00:00<00:00, 18.62it/s] 100%|██████████| 10/10 [00:00<00:00, 18.60it/s] frame_idx: 444 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 239 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 frame_idx: 444 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 239 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 44%|████▍ | 443/999 [07:21<10:26, 1.13s/it] 44%|████▍ | 444/999 [07:21<07:39, 1.21it/s] 0%| | 0/25 [00:00<?, ?it/s] 28%|██▊ | 7/25 [00:00<00:00, 69.90it/s] 60%|██████ | 15/25 [00:00<00:00, 70.38it/s] 92%|█████████▏| 23/25 [00:00<00:00, 72.32it/s] 100%|██████████| 25/25 [00:00<00:00, 71.40it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 72.65it/s] 64%|██████▍ | 16/25 [00:00<00:00, 73.63it/s] 96%|█████████▌| 24/25 [00:00<00:00, 74.03it/s] 100%|██████████| 25/25 [00:00<00:00, 73.80it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 18.81it/s] 40%|████ | 4/10 [00:00<00:00, 18.58it/s] 60%|██████ | 6/10 [00:00<00:00, 18.62it/s] 80%|████████ | 8/10 [00:00<00:00, 18.62it/s] 100%|██████████| 10/10 [00:00<00:00, 18.61it/s] 100%|██████████| 10/10 [00:00<00:00, 18.62it/s] frame_idx: 446 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 240 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 frame_idx: 446 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 240 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 45%|████▍ | 445/999 [07:23<10:24, 1.13s/it] 45%|████▍ | 446/999 [07:23<07:40, 1.20it/s] 0%| | 0/25 [00:00<?, ?it/s] 28%|██▊ | 7/25 [00:00<00:00, 68.96it/s] 56%|█████▌ | 14/25 [00:00<00:00, 68.40it/s] 84%|████████▍ | 21/25 [00:00<00:00, 67.79it/s] 100%|██████████| 25/25 [00:00<00:00, 69.00it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 75.07it/s] 64%|██████▍ | 16/25 [00:00<00:00, 74.79it/s] 96%|█████████▌| 24/25 [00:00<00:00, 74.61it/s] 100%|██████████| 25/25 [00:00<00:00, 74.10it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 18.86it/s] 40%|████ | 4/10 [00:00<00:00, 18.74it/s] 60%|██████ | 6/10 [00:00<00:00, 18.68it/s] 80%|████████ | 8/10 [00:00<00:00, 18.67it/s] 100%|██████████| 10/10 [00:00<00:00, 18.68it/s] 100%|██████████| 10/10 [00:00<00:00, 18.69it/s] frame_idx: 448 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 241 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 frame_idx: 448 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 241 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 45%|████▍ | 447/999 [07:25<10:22, 1.13s/it] 45%|████▍ | 448/999 [07:25<07:37, 1.20it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 72.09it/s] 64%|██████▍ | 16/25 [00:00<00:00, 69.97it/s] 96%|█████████▌| 24/25 [00:00<00:00, 68.27it/s] 100%|██████████| 25/25 [00:00<00:00, 68.90it/s] 0%| | 0/25 [00:00<?, ?it/s] 28%|██▊ | 7/25 [00:00<00:00, 68.50it/s] 56%|█████▌ | 14/25 [00:00<00:00, 68.14it/s] 84%|████████▍ | 21/25 [00:00<00:00, 68.15it/s] 100%|██████████| 25/25 [00:00<00:00, 68.97it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 18.85it/s] 40%|████ | 4/10 [00:00<00:00, 18.73it/s] 60%|██████ | 6/10 [00:00<00:00, 18.69it/s] 80%|████████ | 8/10 [00:00<00:00, 18.65it/s] 100%|██████████| 10/10 [00:00<00:00, 18.68it/s] 100%|██████████| 10/10 [00:00<00:00, 18.68it/s] frame_idx: 450 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 242 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 frame_idx: 450 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 242 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 45%|████▍ | 449/999 [07:27<10:23, 1.13s/it] 45%|████▌ | 450/999 [07:27<07:38, 1.20it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 70.09it/s] 64%|██████▍ | 16/25 [00:00<00:00, 69.30it/s] 92%|█████████▏| 23/25 [00:00<00:00, 68.77it/s] 100%|██████████| 25/25 [00:00<00:00, 68.96it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 71.62it/s] 64%|██████▍ | 16/25 [00:00<00:00, 73.41it/s] 96%|█████████▌| 24/25 [00:00<00:00, 73.78it/s] 100%|██████████| 25/25 [00:00<00:00, 73.04it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 18.87it/s] 40%|████ | 4/10 [00:00<00:00, 18.73it/s] 60%|██████ | 6/10 [00:00<00:00, 18.70it/s] 80%|████████ | 8/10 [00:00<00:00, 18.68it/s] 100%|██████████| 10/10 [00:00<00:00, 18.68it/s] 100%|██████████| 10/10 [00:00<00:00, 18.70it/s] frame_idx: 452 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 243 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 frame_idx: 452 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 243 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 45%|████▌ | 451/999 [07:29<10:19, 1.13s/it] 45%|████▌ | 452/999 [07:29<07:35, 1.20it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 73.81it/s] 64%|██████▍ | 16/25 [00:00<00:00, 70.76it/s] 96%|█████████▌| 24/25 [00:00<00:00, 71.19it/s] 100%|██████████| 25/25 [00:00<00:00, 71.05it/s] 0%| | 0/25 [00:00<?, ?it/s] 28%|██▊ | 7/25 [00:00<00:00, 68.19it/s] 56%|█████▌ | 14/25 [00:00<00:00, 69.18it/s] 88%|████████▊ | 22/25 [00:00<00:00, 71.61it/s] 100%|██████████| 25/25 [00:00<00:00, 71.23it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 18.83it/s] 40%|████ | 4/10 [00:00<00:00, 18.75it/s] 60%|██████ | 6/10 [00:00<00:00, 18.70it/s] 80%|████████ | 8/10 [00:00<00:00, 18.70it/s] 100%|██████████| 10/10 [00:00<00:00, 18.69it/s] 100%|██████████| 10/10 [00:00<00:00, 18.70it/s] frame_idx: 454 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 244 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 frame_idx: 454 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 244 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 45%|████▌ | 453/999 [07:31<10:16, 1.13s/it] 45%|████▌ | 454/999 [07:31<07:33, 1.20it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 72.78it/s] 64%|██████▍ | 16/25 [00:00<00:00, 71.72it/s] 96%|█████████▌| 24/25 [00:00<00:00, 69.03it/s] 100%|██████████| 25/25 [00:00<00:00, 69.95it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 72.57it/s] 64%|██████▍ | 16/25 [00:00<00:00, 73.72it/s] 96%|█████████▌| 24/25 [00:00<00:00, 74.01it/s] 100%|██████████| 25/25 [00:00<00:00, 73.47it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 18.83it/s] 40%|████ | 4/10 [00:00<00:00, 18.69it/s] 60%|██████ | 6/10 [00:00<00:00, 18.66it/s] 80%|████████ | 8/10 [00:00<00:00, 18.68it/s] 100%|██████████| 10/10 [00:00<00:00, 18.64it/s] 100%|██████████| 10/10 [00:00<00:00, 18.66it/s] frame_idx: 456 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 245 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 frame_idx: 456 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 245 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 46%|████▌ | 455/999 [07:33<10:13, 1.13s/it] 46%|████▌ | 456/999 [07:33<07:30, 1.21it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 74.13it/s] 64%|██████▍ | 16/25 [00:00<00:00, 74.53it/s] 96%|█████████▌| 24/25 [00:00<00:00, 71.92it/s] 100%|██████████| 25/25 [00:00<00:00, 72.04it/s] 0%| | 0/25 [00:00<?, ?it/s] 28%|██▊ | 7/25 [00:00<00:00, 68.42it/s] 56%|█████▌ | 14/25 [00:00<00:00, 68.31it/s] 88%|████████▊ | 22/25 [00:00<00:00, 70.92it/s] 100%|██████████| 25/25 [00:00<00:00, 70.02it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 18.84it/s] 40%|████ | 4/10 [00:00<00:00, 18.72it/s] 60%|██████ | 6/10 [00:00<00:00, 18.67it/s] 80%|████████ | 8/10 [00:00<00:00, 18.62it/s] 100%|██████████| 10/10 [00:00<00:00, 18.59it/s] 100%|██████████| 10/10 [00:00<00:00, 18.63it/s] frame_idx: 458 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 246 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 frame_idx: 458 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 246 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 46%|████▌ | 457/999 [07:35<10:10, 1.13s/it] 46%|████▌ | 458/999 [07:35<07:29, 1.20it/s] 0%| | 0/25 [00:00<?, ?it/s] 28%|██▊ | 7/25 [00:00<00:00, 68.95it/s] 56%|█████▌ | 14/25 [00:00<00:00, 68.78it/s] 84%|████████▍ | 21/25 [00:00<00:00, 66.71it/s] 100%|██████████| 25/25 [00:00<00:00, 67.52it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 75.03it/s] 64%|██████▍ | 16/25 [00:00<00:00, 74.83it/s] 96%|█████████▌| 24/25 [00:00<00:00, 74.75it/s] 100%|██████████| 25/25 [00:00<00:00, 74.29it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 18.89it/s] 40%|████ | 4/10 [00:00<00:00, 18.67it/s] 60%|██████ | 6/10 [00:00<00:00, 18.59it/s] 80%|████████ | 8/10 [00:00<00:00, 18.58it/s] 100%|██████████| 10/10 [00:00<00:00, 18.60it/s] 100%|██████████| 10/10 [00:00<00:00, 18.61it/s] frame_idx: 460 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 247 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 frame_idx: 460 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 247 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 46%|████▌ | 459/999 [07:37<10:09, 1.13s/it] 46%|████▌ | 460/999 [07:37<07:27, 1.20it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 74.63it/s] 64%|██████▍ | 16/25 [00:00<00:00, 74.28it/s] 96%|█████████▌| 24/25 [00:00<00:00, 74.00it/s] 100%|██████████| 25/25 [00:00<00:00, 73.90it/s] 0%| | 0/25 [00:00<?, ?it/s] 28%|██▊ | 7/25 [00:00<00:00, 68.91it/s] 60%|██████ | 15/25 [00:00<00:00, 72.12it/s] 92%|█████████▏| 23/25 [00:00<00:00, 71.79it/s] 100%|██████████| 25/25 [00:00<00:00, 71.85it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 18.85it/s] 40%|████ | 4/10 [00:00<00:00, 18.77it/s] 60%|██████ | 6/10 [00:00<00:00, 18.72it/s] 80%|████████ | 8/10 [00:00<00:00, 18.72it/s] 100%|██████████| 10/10 [00:00<00:00, 18.69it/s] 100%|██████████| 10/10 [00:00<00:00, 18.71it/s] frame_idx: 462 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 248 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 frame_idx: 462 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 248 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 46%|████▌ | 461/999 [07:39<10:02, 1.12s/it] 46%|████▌ | 462/999 [07:39<07:22, 1.21it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 74.34it/s] 64%|██████▍ | 16/25 [00:00<00:00, 70.61it/s] 96%|█████████▌| 24/25 [00:00<00:00, 70.71it/s] 100%|██████████| 25/25 [00:00<00:00, 71.15it/s] 0%| | 0/25 [00:00<?, ?it/s] 28%|██▊ | 7/25 [00:00<00:00, 68.34it/s] 60%|██████ | 15/25 [00:00<00:00, 70.32it/s] 92%|█████████▏| 23/25 [00:00<00:00, 72.13it/s] 100%|██████████| 25/25 [00:00<00:00, 71.48it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 18.91it/s] 40%|████ | 4/10 [00:00<00:00, 18.73it/s] 60%|██████ | 6/10 [00:00<00:00, 18.72it/s] 80%|████████ | 8/10 [00:00<00:00, 18.68it/s] 100%|██████████| 10/10 [00:00<00:00, 18.68it/s] 100%|██████████| 10/10 [00:00<00:00, 18.70it/s] frame_idx: 464 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 249 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 frame_idx: 464 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 249 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 46%|████▋ | 463/999 [07:41<10:01, 1.12s/it] 46%|████▋ | 464/999 [07:41<07:22, 1.21it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 71.62it/s] 64%|██████▍ | 16/25 [00:00<00:00, 73.74it/s] 96%|█████████▌| 24/25 [00:00<00:00, 74.06it/s] 100%|██████████| 25/25 [00:00<00:00, 73.39it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 71.00it/s] 64%|██████▍ | 16/25 [00:00<00:00, 70.70it/s] 96%|█████████▌| 24/25 [00:00<00:00, 72.19it/s] 100%|██████████| 25/25 [00:00<00:00, 71.70it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 18.85it/s] 40%|████ | 4/10 [00:00<00:00, 18.75it/s] 60%|██████ | 6/10 [00:00<00:00, 18.70it/s] 80%|████████ | 8/10 [00:00<00:00, 18.69it/s] 100%|██████████| 10/10 [00:00<00:00, 18.68it/s] 100%|██████████| 10/10 [00:00<00:00, 18.69it/s] frame_idx: 466 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 250 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 frame_idx: 466 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 250 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 47%|████▋ | 465/999 [07:43<09:57, 1.12s/it] 47%|████▋ | 466/999 [07:43<07:19, 1.21it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 74.10it/s] 64%|██████▍ | 16/25 [00:00<00:00, 74.57it/s] 96%|█████████▌| 24/25 [00:00<00:00, 74.33it/s] 100%|██████████| 25/25 [00:00<00:00, 74.33it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 74.61it/s] 64%|██████▍ | 16/25 [00:00<00:00, 73.59it/s] 96%|█████████▌| 24/25 [00:00<00:00, 74.04it/s] 100%|██████████| 25/25 [00:00<00:00, 74.05it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 18.83it/s] 40%|████ | 4/10 [00:00<00:00, 18.73it/s] 60%|██████ | 6/10 [00:00<00:00, 18.65it/s] 80%|████████ | 8/10 [00:00<00:00, 18.67it/s] 100%|██████████| 10/10 [00:00<00:00, 18.68it/s] 100%|██████████| 10/10 [00:00<00:00, 18.68it/s] frame_idx: 468 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 251 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 frame_idx: 468 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 251 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 47%|████▋ | 467/999 [07:45<09:54, 1.12s/it] 47%|████▋ | 468/999 [07:45<07:16, 1.22it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 71.44it/s] 64%|██████▍ | 16/25 [00:00<00:00, 71.28it/s] 96%|█████████▌| 24/25 [00:00<00:00, 72.10it/s] 100%|██████████| 25/25 [00:00<00:00, 71.96it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 74.67it/s] 64%|██████▍ | 16/25 [00:00<00:00, 72.30it/s] 96%|█████████▌| 24/25 [00:00<00:00, 73.00it/s] 100%|██████████| 25/25 [00:00<00:00, 73.09it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 18.76it/s] 40%|████ | 4/10 [00:00<00:00, 18.71it/s] 60%|██████ | 6/10 [00:00<00:00, 18.68it/s] 80%|████████ | 8/10 [00:00<00:00, 18.66it/s] 100%|██████████| 10/10 [00:00<00:00, 18.67it/s] 100%|██████████| 10/10 [00:00<00:00, 18.67it/s] frame_idx: 470 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 252 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 frame_idx: 470 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 252 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 47%|████▋ | 469/999 [07:47<09:50, 1.11s/it] 47%|████▋ | 470/999 [07:47<07:13, 1.22it/s] 0%| | 0/25 [00:00<?, ?it/s] 28%|██▊ | 7/25 [00:00<00:00, 67.90it/s] 60%|██████ | 15/25 [00:00<00:00, 70.92it/s] 92%|█████████▏| 23/25 [00:00<00:00, 72.67it/s] 100%|██████████| 25/25 [00:00<00:00, 72.09it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 74.90it/s] 64%|██████▍ | 16/25 [00:00<00:00, 74.61it/s] 96%|█████████▌| 24/25 [00:00<00:00, 71.75it/s] 100%|██████████| 25/25 [00:00<00:00, 72.34it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 18.85it/s] 40%|████ | 4/10 [00:00<00:00, 18.69it/s] 60%|██████ | 6/10 [00:00<00:00, 18.70it/s] 80%|████████ | 8/10 [00:00<00:00, 18.68it/s] 100%|██████████| 10/10 [00:00<00:00, 18.68it/s] 100%|██████████| 10/10 [00:00<00:00, 18.69it/s] frame_idx: 472 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 253 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 frame_idx: 472 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 253 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 47%|████▋ | 471/999 [07:48<09:49, 1.12s/it] 47%|████▋ | 472/999 [07:49<07:13, 1.22it/s] 0%| | 0/25 [00:00<?, ?it/s] 28%|██▊ | 7/25 [00:00<00:00, 67.92it/s] 56%|█████▌ | 14/25 [00:00<00:00, 68.44it/s] 84%|████████▍ | 21/25 [00:00<00:00, 68.46it/s] 100%|██████████| 25/25 [00:00<00:00, 69.14it/s] 0%| | 0/25 [00:00<?, ?it/s] 28%|██▊ | 7/25 [00:00<00:00, 68.57it/s] 60%|██████ | 15/25 [00:00<00:00, 72.28it/s] 92%|█████████▏| 23/25 [00:00<00:00, 71.53it/s] 100%|██████████| 25/25 [00:00<00:00, 71.02it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 18.84it/s] 40%|████ | 4/10 [00:00<00:00, 18.76it/s] 60%|██████ | 6/10 [00:00<00:00, 18.68it/s] 80%|████████ | 8/10 [00:00<00:00, 18.69it/s] 100%|██████████| 10/10 [00:00<00:00, 18.69it/s] 100%|██████████| 10/10 [00:00<00:00, 18.70it/s] frame_idx: 474 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 254 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 frame_idx: 474 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 254 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 47%|████▋ | 473/999 [07:50<09:50, 1.12s/it] 47%|████▋ | 474/999 [07:51<07:13, 1.21it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 74.37it/s] 64%|██████▍ | 16/25 [00:00<00:00, 74.73it/s] 96%|█████████▌| 24/25 [00:00<00:00, 74.88it/s] 100%|██████████| 25/25 [00:00<00:00, 74.80it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 74.95it/s] 64%|██████▍ | 16/25 [00:00<00:00, 74.56it/s] 96%|█████████▌| 24/25 [00:00<00:00, 74.74it/s] 100%|██████████| 25/25 [00:00<00:00, 73.53it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 18.86it/s] 40%|████ | 4/10 [00:00<00:00, 18.74it/s] 60%|██████ | 6/10 [00:00<00:00, 18.74it/s] 80%|████████ | 8/10 [00:00<00:00, 18.72it/s] 100%|██████████| 10/10 [00:00<00:00, 18.68it/s] 100%|██████████| 10/10 [00:00<00:00, 18.70it/s] frame_idx: 476 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 255 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 frame_idx: 476 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 255 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 48%|████▊ | 475/999 [07:52<09:44, 1.12s/it] 48%|████▊ | 476/999 [07:52<07:09, 1.22it/s] 0%| | 0/25 [00:00<?, ?it/s] 28%|██▊ | 7/25 [00:00<00:00, 69.05it/s] 56%|█████▌ | 14/25 [00:00<00:00, 68.85it/s] 88%|████████▊ | 22/25 [00:00<00:00, 70.00it/s] 100%|██████████| 25/25 [00:00<00:00, 69.71it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 72.30it/s] 64%|██████▍ | 16/25 [00:00<00:00, 73.34it/s] 96%|█████████▌| 24/25 [00:00<00:00, 73.83it/s] 100%|██████████| 25/25 [00:00<00:00, 73.57it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 18.84it/s] 40%|████ | 4/10 [00:00<00:00, 18.73it/s] 60%|██████ | 6/10 [00:00<00:00, 18.71it/s] 80%|████████ | 8/10 [00:00<00:00, 18.71it/s] 100%|██████████| 10/10 [00:00<00:00, 18.66it/s] 100%|██████████| 10/10 [00:00<00:00, 18.69it/s] frame_idx: 478 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 256 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 frame_idx: 478 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 256 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 48%|████▊ | 477/999 [07:54<09:42, 1.12s/it] 48%|████▊ | 478/999 [07:54<07:07, 1.22it/s] 0%| | 0/25 [00:00<?, ?it/s] 28%|██▊ | 7/25 [00:00<00:00, 68.72it/s] 60%|██████ | 15/25 [00:00<00:00, 71.18it/s] 92%|█████████▏| 23/25 [00:00<00:00, 72.29it/s] 100%|██████████| 25/25 [00:00<00:00, 72.00it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 74.54it/s] 64%|██████▍ | 16/25 [00:00<00:00, 74.74it/s] 96%|█████████▌| 24/25 [00:00<00:00, 74.60it/s] 100%|██████████| 25/25 [00:00<00:00, 74.62it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 18.84it/s] 40%|████ | 4/10 [00:00<00:00, 18.74it/s] 60%|██████ | 6/10 [00:00<00:00, 18.72it/s] 80%|████████ | 8/10 [00:00<00:00, 18.70it/s] 100%|██████████| 10/10 [00:00<00:00, 18.69it/s] 100%|██████████| 10/10 [00:00<00:00, 18.70it/s] frame_idx: 480 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 257 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 frame_idx: 480 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 257 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 48%|████▊ | 479/999 [07:56<09:36, 1.11s/it] 48%|████▊ | 480/999 [07:56<07:03, 1.23it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 72.66it/s] 64%|██████▍ | 16/25 [00:00<00:00, 71.34it/s] 96%|█████████▌| 24/25 [00:00<00:00, 70.77it/s] 100%|██████████| 25/25 [00:00<00:00, 71.19it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 75.32it/s] 64%|██████▍ | 16/25 [00:00<00:00, 75.23it/s] 96%|█████████▌| 24/25 [00:00<00:00, 74.97it/s] 100%|██████████| 25/25 [00:00<00:00, 75.03it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 18.90it/s] 40%|████ | 4/10 [00:00<00:00, 18.68it/s] 60%|██████ | 6/10 [00:00<00:00, 18.67it/s] 80%|████████ | 8/10 [00:00<00:00, 18.67it/s] 100%|██████████| 10/10 [00:00<00:00, 18.66it/s] 100%|██████████| 10/10 [00:00<00:00, 18.67it/s] frame_idx: 482 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 258 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 frame_idx: 482 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 258 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 48%|████▊ | 481/999 [07:58<09:35, 1.11s/it] 48%|████▊ | 482/999 [07:58<07:02, 1.22it/s] 0%| | 0/25 [00:00<?, ?it/s] 28%|██▊ | 7/25 [00:00<00:00, 67.94it/s] 60%|██████ | 15/25 [00:00<00:00, 70.67it/s] 92%|█████████▏| 23/25 [00:00<00:00, 72.75it/s] 100%|██████████| 25/25 [00:00<00:00, 71.64it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 74.88it/s] 64%|██████▍ | 16/25 [00:00<00:00, 72.35it/s] 96%|█████████▌| 24/25 [00:00<00:00, 71.57it/s] 100%|██████████| 25/25 [00:00<00:00, 71.96it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 18.83it/s] 40%|████ | 4/10 [00:00<00:00, 18.72it/s] 60%|██████ | 6/10 [00:00<00:00, 18.73it/s] 80%|████████ | 8/10 [00:00<00:00, 18.69it/s] 100%|██████████| 10/10 [00:00<00:00, 18.69it/s] 100%|██████████| 10/10 [00:00<00:00, 18.70it/s] frame_idx: 484 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 259 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 frame_idx: 484 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 259 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 48%|████▊ | 483/999 [08:00<09:34, 1.11s/it] 48%|████▊ | 484/999 [08:00<07:01, 1.22it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 72.23it/s] 64%|██████▍ | 16/25 [00:00<00:00, 72.61it/s] 96%|█████████▌| 24/25 [00:00<00:00, 73.90it/s] 100%|██████████| 25/25 [00:00<00:00, 73.55it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 75.49it/s] 64%|██████▍ | 16/25 [00:00<00:00, 75.04it/s] 96%|█████████▌| 24/25 [00:00<00:00, 74.96it/s] 100%|██████████| 25/25 [00:00<00:00, 74.68it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 18.87it/s] 40%|████ | 4/10 [00:00<00:00, 18.74it/s] 60%|██████ | 6/10 [00:00<00:00, 18.66it/s] 80%|████████ | 8/10 [00:00<00:00, 18.66it/s] 100%|██████████| 10/10 [00:00<00:00, 18.67it/s] 100%|██████████| 10/10 [00:00<00:00, 18.68it/s] frame_idx: 486 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 260 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 frame_idx: 486 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 260 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 49%|████▊ | 485/999 [08:02<09:29, 1.11s/it] 49%|████▊ | 486/999 [08:02<06:57, 1.23it/s] 0%| | 0/25 [00:00<?, ?it/s] 28%|██▊ | 7/25 [00:00<00:00, 67.43it/s] 56%|█████▌ | 14/25 [00:00<00:00, 67.98it/s] 84%|████████▍ | 21/25 [00:00<00:00, 68.44it/s] 100%|██████████| 25/25 [00:00<00:00, 68.27it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 73.91it/s] 64%|██████▍ | 16/25 [00:00<00:00, 70.75it/s] 96%|█████████▌| 24/25 [00:00<00:00, 69.70it/s] 100%|██████████| 25/25 [00:00<00:00, 70.21it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 18.85it/s] 40%|████ | 4/10 [00:00<00:00, 18.77it/s] 60%|██████ | 6/10 [00:00<00:00, 18.71it/s] 80%|████████ | 8/10 [00:00<00:00, 18.66it/s] 100%|██████████| 10/10 [00:00<00:00, 18.65it/s] 100%|██████████| 10/10 [00:00<00:00, 18.67it/s] frame_idx: 488 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 261 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 frame_idx: 488 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 261 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 49%|████▊ | 487/999 [08:04<09:32, 1.12s/it] 49%|████▉ | 488/999 [08:04<07:00, 1.22it/s] 0%| | 0/25 [00:00<?, ?it/s] 28%|██▊ | 7/25 [00:00<00:00, 67.77it/s] 56%|█████▌ | 14/25 [00:00<00:00, 68.02it/s] 88%|████████▊ | 22/25 [00:00<00:00, 69.68it/s] 100%|██████████| 25/25 [00:00<00:00, 69.78it/s] 0%| | 0/25 [00:00<?, ?it/s] 28%|██▊ | 7/25 [00:00<00:00, 68.55it/s] 60%|██████ | 15/25 [00:00<00:00, 70.48it/s] 92%|█████████▏| 23/25 [00:00<00:00, 72.55it/s] 100%|██████████| 25/25 [00:00<00:00, 72.00it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 18.38it/s] 40%|████ | 4/10 [00:00<00:00, 18.54it/s] 60%|██████ | 6/10 [00:00<00:00, 18.60it/s] 80%|████████ | 8/10 [00:00<00:00, 18.55it/s] 100%|██████████| 10/10 [00:00<00:00, 18.58it/s] 100%|██████████| 10/10 [00:00<00:00, 18.55it/s] frame_idx: 490 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 262 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 frame_idx: 490 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 262 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 49%|████▉ | 489/999 [08:06<10:02, 1.18s/it] 49%|████▉ | 490/999 [08:06<07:36, 1.12it/s] 0%| | 0/25 [00:00<?, ?it/s] 24%|██▍ | 6/25 [00:00<00:00, 57.46it/s] 56%|█████▌ | 14/25 [00:00<00:00, 68.14it/s] 88%|████████▊ | 22/25 [00:00<00:00, 71.57it/s] 100%|██████████| 25/25 [00:00<00:00, 70.14it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 75.51it/s] 64%|██████▍ | 16/25 [00:00<00:00, 75.40it/s] 96%|█████████▌| 24/25 [00:00<00:00, 74.18it/s] 100%|██████████| 25/25 [00:00<00:00, 74.39it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 18.80it/s] 40%|████ | 4/10 [00:00<00:00, 18.74it/s] 60%|██████ | 6/10 [00:00<00:00, 18.75it/s] 80%|████████ | 8/10 [00:00<00:00, 18.71it/s] 100%|██████████| 10/10 [00:00<00:00, 18.70it/s] 100%|██████████| 10/10 [00:00<00:00, 18.71it/s] frame_idx: 492 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 263 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 frame_idx: 492 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 263 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 49%|████▉ | 491/999 [08:08<10:21, 1.22s/it] 49%|████▉ | 492/999 [08:08<07:33, 1.12it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 74.37it/s] 64%|██████▍ | 16/25 [00:00<00:00, 72.37it/s] 96%|█████████▌| 24/25 [00:00<00:00, 73.76it/s] 100%|██████████| 25/25 [00:00<00:00, 73.44it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 74.13it/s] 64%|██████▍ | 16/25 [00:00<00:00, 74.60it/s] 96%|█████████▌| 24/25 [00:00<00:00, 74.88it/s] 100%|██████████| 25/25 [00:00<00:00, 74.59it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 18.84it/s] 40%|████ | 4/10 [00:00<00:00, 18.78it/s] 60%|██████ | 6/10 [00:00<00:00, 18.74it/s] 80%|████████ | 8/10 [00:00<00:00, 18.72it/s] 100%|██████████| 10/10 [00:00<00:00, 18.67it/s] 100%|██████████| 10/10 [00:00<00:00, 18.70it/s] frame_idx: 494 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 264 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 frame_idx: 494 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 264 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 49%|████▉ | 493/999 [08:10<09:48, 1.16s/it] 49%|████▉ | 494/999 [08:10<07:10, 1.17it/s] 0%| | 0/25 [00:00<?, ?it/s] 28%|██▊ | 7/25 [00:00<00:00, 68.16it/s] 56%|█████▌ | 14/25 [00:00<00:00, 68.57it/s] 84%|████████▍ | 21/25 [00:00<00:00, 69.02it/s] 100%|██████████| 25/25 [00:00<00:00, 69.05it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 72.58it/s] 64%|██████▍ | 16/25 [00:00<00:00, 70.65it/s] 96%|█████████▌| 24/25 [00:00<00:00, 71.50it/s] 100%|██████████| 25/25 [00:00<00:00, 71.61it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 18.80it/s] 40%|████ | 4/10 [00:00<00:00, 18.74it/s] 60%|██████ | 6/10 [00:00<00:00, 18.72it/s] 80%|████████ | 8/10 [00:00<00:00, 18.72it/s] 100%|██████████| 10/10 [00:00<00:00, 18.72it/s] 100%|██████████| 10/10 [00:00<00:00, 18.72it/s] frame_idx: 496 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 265 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 frame_idx: 496 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 265 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 50%|████▉ | 495/999 [08:12<09:36, 1.14s/it] 50%|████▉ | 496/999 [08:12<07:02, 1.19it/s] 0%| | 0/25 [00:00<?, ?it/s] 28%|██▊ | 7/25 [00:00<00:00, 65.59it/s] 60%|██████ | 15/25 [00:00<00:00, 70.02it/s] 92%|█████████▏| 23/25 [00:00<00:00, 72.37it/s] 100%|██████████| 25/25 [00:00<00:00, 71.61it/s] 0%| | 0/25 [00:00<?, ?it/s] 28%|██▊ | 7/25 [00:00<00:00, 69.69it/s] 60%|██████ | 15/25 [00:00<00:00, 71.81it/s] 92%|█████████▏| 23/25 [00:00<00:00, 70.98it/s] 100%|██████████| 25/25 [00:00<00:00, 70.92it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 18.74it/s] 40%|████ | 4/10 [00:00<00:00, 18.73it/s] 60%|██████ | 6/10 [00:00<00:00, 18.69it/s] 80%|████████ | 8/10 [00:00<00:00, 18.69it/s] 100%|██████████| 10/10 [00:00<00:00, 18.70it/s] 100%|██████████| 10/10 [00:00<00:00, 18.70it/s] frame_idx: 498 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 266 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 frame_idx: 498 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 266 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 50%|████▉ | 497/999 [08:14<09:26, 1.13s/it] 50%|████▉ | 498/999 [08:14<06:55, 1.21it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 70.77it/s] 64%|██████▍ | 16/25 [00:00<00:00, 70.31it/s] 96%|█████████▌| 24/25 [00:00<00:00, 71.25it/s] 100%|██████████| 25/25 [00:00<00:00, 71.00it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 75.40it/s] 64%|██████▍ | 16/25 [00:00<00:00, 74.13it/s] 96%|█████████▌| 24/25 [00:00<00:00, 73.02it/s] 100%|██████████| 25/25 [00:00<00:00, 73.27it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 18.84it/s] 40%|████ | 4/10 [00:00<00:00, 18.74it/s] 60%|██████ | 6/10 [00:00<00:00, 18.52it/s] 80%|████████ | 8/10 [00:00<00:00, 18.57it/s] 100%|██████████| 10/10 [00:00<00:00, 18.60it/s] 100%|██████████| 10/10 [00:00<00:00, 18.60it/s] frame_idx: 500 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 267 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 frame_idx: 500 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 267 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 50%|████▉ | 499/999 [08:16<09:21, 1.12s/it] 50%|█████ | 500/999 [08:16<06:51, 1.21it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 70.02it/s] 64%|██████▍ | 16/25 [00:00<00:00, 68.94it/s] 96%|█████████▌| 24/25 [00:00<00:00, 71.66it/s] 100%|██████████| 25/25 [00:00<00:00, 71.18it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 75.60it/s] 64%|██████▍ | 16/25 [00:00<00:00, 75.38it/s] 96%|█████████▌| 24/25 [00:00<00:00, 75.33it/s] 100%|██████████| 25/25 [00:00<00:00, 75.37it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 18.81it/s] 40%|████ | 4/10 [00:00<00:00, 18.76it/s] 60%|██████ | 6/10 [00:00<00:00, 18.71it/s] 80%|████████ | 8/10 [00:00<00:00, 18.65it/s] 100%|██████████| 10/10 [00:00<00:00, 18.65it/s] 100%|██████████| 10/10 [00:00<00:00, 18.67it/s] frame_idx: 502 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 268 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 frame_idx: 502 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 268 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 50%|█████ | 501/999 [08:18<09:12, 1.11s/it] 50%|█████ | 502/999 [08:18<06:45, 1.22it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 74.10it/s] 64%|██████▍ | 16/25 [00:00<00:00, 73.75it/s] 96%|█████████▌| 24/25 [00:00<00:00, 71.88it/s] 100%|██████████| 25/25 [00:00<00:00, 72.42it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 74.85it/s] 64%|██████▍ | 16/25 [00:00<00:00, 75.06it/s] 96%|█████████▌| 24/25 [00:00<00:00, 75.08it/s] 100%|██████████| 25/25 [00:00<00:00, 74.99it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 18.85it/s] 40%|████ | 4/10 [00:00<00:00, 18.73it/s] 60%|██████ | 6/10 [00:00<00:00, 18.67it/s] 80%|████████ | 8/10 [00:00<00:00, 18.66it/s] 100%|██████████| 10/10 [00:00<00:00, 18.63it/s] 100%|██████████| 10/10 [00:00<00:00, 18.66it/s] frame_idx: 504 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 269 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 frame_idx: 504 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 269 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 50%|█████ | 503/999 [08:20<09:12, 1.11s/it] 50%|█████ | 504/999 [08:20<06:45, 1.22it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 72.65it/s] 64%|██████▍ | 16/25 [00:00<00:00, 73.90it/s] 96%|█████████▌| 24/25 [00:00<00:00, 71.37it/s] 100%|██████████| 25/25 [00:00<00:00, 71.79it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 75.51it/s] 64%|██████▍ | 16/25 [00:00<00:00, 75.21it/s] 96%|█████████▌| 24/25 [00:00<00:00, 74.51it/s] 100%|██████████| 25/25 [00:00<00:00, 74.63it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 18.78it/s] 40%|████ | 4/10 [00:00<00:00, 18.73it/s] 60%|██████ | 6/10 [00:00<00:00, 18.67it/s] 80%|████████ | 8/10 [00:00<00:00, 18.62it/s] 100%|██████████| 10/10 [00:00<00:00, 18.60it/s] 100%|██████████| 10/10 [00:00<00:00, 18.62it/s] frame_idx: 506 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 270 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 frame_idx: 506 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 270 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 51%|█████ | 505/999 [08:22<09:08, 1.11s/it] 51%|█████ | 506/999 [08:22<06:42, 1.23it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 74.55it/s] 64%|██████▍ | 16/25 [00:00<00:00, 75.06it/s] 96%|█████████▌| 24/25 [00:00<00:00, 72.80it/s] 100%|██████████| 25/25 [00:00<00:00, 72.31it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 70.43it/s] 64%|██████▍ | 16/25 [00:00<00:00, 72.64it/s] 96%|█████████▌| 24/25 [00:00<00:00, 73.71it/s] 100%|██████████| 25/25 [00:00<00:00, 73.20it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 18.84it/s] 40%|████ | 4/10 [00:00<00:00, 18.75it/s] 60%|██████ | 6/10 [00:00<00:00, 18.76it/s] 80%|████████ | 8/10 [00:00<00:00, 18.69it/s] 100%|██████████| 10/10 [00:00<00:00, 18.69it/s] 100%|██████████| 10/10 [00:00<00:00, 18.70it/s] frame_idx: 508 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 271 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 frame_idx: 508 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 271 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 51%|█████ | 507/999 [08:24<09:06, 1.11s/it] 51%|█████ | 508/999 [08:24<06:40, 1.23it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 74.54it/s] 64%|██████▍ | 16/25 [00:00<00:00, 74.80it/s] 96%|█████████▌| 24/25 [00:00<00:00, 74.68it/s] 100%|██████████| 25/25 [00:00<00:00, 74.71it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 71.38it/s] 64%|██████▍ | 16/25 [00:00<00:00, 73.45it/s] 96%|█████████▌| 24/25 [00:00<00:00, 74.33it/s] 100%|██████████| 25/25 [00:00<00:00, 73.95it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 18.88it/s] 40%|████ | 4/10 [00:00<00:00, 18.78it/s] 60%|██████ | 6/10 [00:00<00:00, 18.71it/s] 80%|████████ | 8/10 [00:00<00:00, 18.66it/s] 100%|██████████| 10/10 [00:00<00:00, 18.65it/s] 100%|██████████| 10/10 [00:00<00:00, 18.68it/s] frame_idx: 510 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 272 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 frame_idx: 510 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 272 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 51%|█████ | 509/999 [08:26<09:04, 1.11s/it] 51%|█████ | 510/999 [08:26<06:39, 1.22it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 71.20it/s] 64%|██████▍ | 16/25 [00:00<00:00, 72.08it/s] 96%|█████████▌| 24/25 [00:00<00:00, 73.67it/s] 100%|██████████| 25/25 [00:00<00:00, 73.24it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 71.25it/s] 64%|██████▍ | 16/25 [00:00<00:00, 70.59it/s] 96%|█████████▌| 24/25 [00:00<00:00, 72.63it/s] 100%|██████████| 25/25 [00:00<00:00, 72.24it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 18.90it/s] 40%|████ | 4/10 [00:00<00:00, 18.84it/s] 60%|██████ | 6/10 [00:00<00:00, 18.78it/s] 80%|████████ | 8/10 [00:00<00:00, 18.75it/s] 100%|██████████| 10/10 [00:00<00:00, 18.77it/s] 100%|██████████| 10/10 [00:00<00:00, 18.77it/s] frame_idx: 512 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 273 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 frame_idx: 512 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 273 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 51%|█████ | 511/999 [08:28<09:02, 1.11s/it] 51%|█████▏ | 512/999 [08:28<06:38, 1.22it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 73.49it/s] 64%|██████▍ | 16/25 [00:00<00:00, 73.98it/s] 96%|█████████▌| 24/25 [00:00<00:00, 72.29it/s] 100%|██████████| 25/25 [00:00<00:00, 72.23it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 73.64it/s] 64%|██████▍ | 16/25 [00:00<00:00, 70.99it/s] 96%|█████████▌| 24/25 [00:00<00:00, 70.73it/s] 100%|██████████| 25/25 [00:00<00:00, 70.97it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 18.84it/s] 40%|████ | 4/10 [00:00<00:00, 18.75it/s] 60%|██████ | 6/10 [00:00<00:00, 18.69it/s] 80%|████████ | 8/10 [00:00<00:00, 18.68it/s] 100%|██████████| 10/10 [00:00<00:00, 18.66it/s] 100%|██████████| 10/10 [00:00<00:00, 18.68it/s] frame_idx: 514 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 274 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 frame_idx: 514 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 274 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 51%|█████▏ | 513/999 [08:30<09:04, 1.12s/it] 51%|█████▏ | 514/999 [08:30<06:38, 1.22it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 74.54it/s] 64%|██████▍ | 16/25 [00:00<00:00, 75.17it/s] 96%|█████████▌| 24/25 [00:00<00:00, 74.15it/s] 100%|██████████| 25/25 [00:00<00:00, 74.30it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 71.51it/s] 64%|██████▍ | 16/25 [00:00<00:00, 68.29it/s] 96%|█████████▌| 24/25 [00:00<00:00, 69.99it/s] 100%|██████████| 25/25 [00:00<00:00, 69.99it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 18.79it/s] 40%|████ | 4/10 [00:00<00:00, 18.78it/s] 60%|██████ | 6/10 [00:00<00:00, 18.74it/s] 80%|████████ | 8/10 [00:00<00:00, 18.74it/s] 100%|██████████| 10/10 [00:00<00:00, 18.74it/s] 100%|██████████| 10/10 [00:00<00:00, 18.74it/s] frame_idx: 516 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 275 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 frame_idx: 516 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 275 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 52%|█████▏ | 515/999 [08:31<09:01, 1.12s/it] 52%|█████▏ | 516/999 [08:32<06:37, 1.22it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 74.77it/s] 64%|██████▍ | 16/25 [00:00<00:00, 75.09it/s] 96%|█████████▌| 24/25 [00:00<00:00, 75.31it/s] 100%|██████████| 25/25 [00:00<00:00, 75.16it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 75.18it/s] 64%|██████▍ | 16/25 [00:00<00:00, 75.15it/s] 96%|█████████▌| 24/25 [00:00<00:00, 73.96it/s] 100%|██████████| 25/25 [00:00<00:00, 74.12it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 18.89it/s] 40%|████ | 4/10 [00:00<00:00, 18.71it/s] 60%|██████ | 6/10 [00:00<00:00, 18.70it/s] 80%|████████ | 8/10 [00:00<00:00, 18.68it/s] 100%|██████████| 10/10 [00:00<00:00, 18.68it/s] 100%|██████████| 10/10 [00:00<00:00, 18.70it/s] frame_idx: 518 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 276 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 frame_idx: 518 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 276 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 52%|█████▏ | 517/999 [08:33<08:54, 1.11s/it] 52%|█████▏ | 518/999 [08:34<06:31, 1.23it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 72.96it/s] 64%|██████▍ | 16/25 [00:00<00:00, 71.77it/s] 96%|█████████▌| 24/25 [00:00<00:00, 72.56it/s] 100%|██████████| 25/25 [00:00<00:00, 72.49it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 74.41it/s] 64%|██████▍ | 16/25 [00:00<00:00, 74.27it/s] 96%|█████████▌| 24/25 [00:00<00:00, 74.51it/s] 100%|██████████| 25/25 [00:00<00:00, 74.36it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 18.83it/s] 40%|████ | 4/10 [00:00<00:00, 18.78it/s] 60%|██████ | 6/10 [00:00<00:00, 18.73it/s] 80%|████████ | 8/10 [00:00<00:00, 18.70it/s] 100%|██████████| 10/10 [00:00<00:00, 18.72it/s] 100%|██████████| 10/10 [00:00<00:00, 18.72it/s] frame_idx: 520 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 277 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 frame_idx: 520 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 277 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 52%|█████▏ | 519/999 [08:35<08:51, 1.11s/it] 52%|█████▏ | 520/999 [08:35<06:32, 1.22it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 74.49it/s] 64%|██████▍ | 16/25 [00:00<00:00, 75.05it/s] 96%|█████████▌| 24/25 [00:00<00:00, 75.09it/s] 100%|██████████| 25/25 [00:00<00:00, 74.98it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 74.97it/s] 64%|██████▍ | 16/25 [00:00<00:00, 74.72it/s] 96%|█████████▌| 24/25 [00:00<00:00, 72.65it/s] 100%|██████████| 25/25 [00:00<00:00, 73.03it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 18.87it/s] 40%|████ | 4/10 [00:00<00:00, 18.75it/s] 60%|██████ | 6/10 [00:00<00:00, 18.74it/s] 80%|████████ | 8/10 [00:00<00:00, 18.75it/s] 100%|██████████| 10/10 [00:00<00:00, 18.71it/s] 100%|██████████| 10/10 [00:00<00:00, 18.73it/s] frame_idx: 522 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 278 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 frame_idx: 522 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 278 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 52%|█████▏ | 521/999 [08:37<08:50, 1.11s/it] 52%|█████▏ | 522/999 [08:37<06:30, 1.22it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 71.37it/s] 64%|██████▍ | 16/25 [00:00<00:00, 73.48it/s] 96%|█████████▌| 24/25 [00:00<00:00, 71.33it/s] 100%|██████████| 25/25 [00:00<00:00, 71.55it/s] 0%| | 0/25 [00:00<?, ?it/s] 28%|██▊ | 7/25 [00:00<00:00, 69.59it/s] 60%|██████ | 15/25 [00:00<00:00, 72.63it/s] 92%|█████████▏| 23/25 [00:00<00:00, 73.45it/s] 100%|██████████| 25/25 [00:00<00:00, 73.05it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 18.76it/s] 40%|████ | 4/10 [00:00<00:00, 18.70it/s] 60%|██████ | 6/10 [00:00<00:00, 18.64it/s] 80%|████████ | 8/10 [00:00<00:00, 18.66it/s] 100%|██████████| 10/10 [00:00<00:00, 18.64it/s] 100%|██████████| 10/10 [00:00<00:00, 18.65it/s] frame_idx: 524 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 279 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 frame_idx: 524 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 279 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 52%|█████▏ | 523/999 [08:39<08:52, 1.12s/it] 52%|█████▏ | 524/999 [08:39<06:30, 1.22it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 73.75it/s] 64%|██████▍ | 16/25 [00:00<00:00, 72.97it/s] 96%|█████████▌| 24/25 [00:00<00:00, 71.41it/s] 100%|██████████| 25/25 [00:00<00:00, 71.48it/s] 0%| | 0/25 [00:00<?, ?it/s] 28%|██▊ | 7/25 [00:00<00:00, 69.82it/s] 56%|█████▌ | 14/25 [00:00<00:00, 69.67it/s] 84%|████████▍ | 21/25 [00:00<00:00, 69.71it/s] 100%|██████████| 25/25 [00:00<00:00, 69.72it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 18.79it/s] 40%|████ | 4/10 [00:00<00:00, 18.64it/s] 60%|██████ | 6/10 [00:00<00:00, 18.65it/s] 80%|████████ | 8/10 [00:00<00:00, 18.65it/s] 100%|██████████| 10/10 [00:00<00:00, 18.64it/s] 100%|██████████| 10/10 [00:00<00:00, 18.65it/s] frame_idx: 526 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 280 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 frame_idx: 526 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 280 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 53%|█████▎ | 525/999 [08:41<08:53, 1.13s/it] 53%|█████▎ | 526/999 [08:41<06:32, 1.21it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 71.45it/s] 64%|██████▍ | 16/25 [00:00<00:00, 70.51it/s] 96%|█████████▌| 24/25 [00:00<00:00, 69.81it/s] 100%|██████████| 25/25 [00:00<00:00, 70.03it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 70.12it/s] 64%|██████▍ | 16/25 [00:00<00:00, 72.31it/s] 96%|█████████▌| 24/25 [00:00<00:00, 71.58it/s] 100%|██████████| 25/25 [00:00<00:00, 71.10it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 18.81it/s] 40%|████ | 4/10 [00:00<00:00, 18.66it/s] 60%|██████ | 6/10 [00:00<00:00, 18.66it/s] 80%|████████ | 8/10 [00:00<00:00, 18.65it/s] 100%|██████████| 10/10 [00:00<00:00, 18.68it/s] 100%|██████████| 10/10 [00:00<00:00, 18.67it/s] frame_idx: 528 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 281 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 frame_idx: 528 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 281 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 53%|█████▎ | 527/999 [08:43<08:53, 1.13s/it] 53%|█████▎ | 528/999 [08:43<06:31, 1.20it/s] 0%| | 0/25 [00:00<?, ?it/s] 28%|██▊ | 7/25 [00:00<00:00, 69.54it/s] 60%|██████ | 15/25 [00:00<00:00, 71.05it/s] 92%|█████████▏| 23/25 [00:00<00:00, 72.39it/s] 100%|██████████| 25/25 [00:00<00:00, 71.44it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 71.26it/s] 64%|██████▍ | 16/25 [00:00<00:00, 73.31it/s] 96%|█████████▌| 24/25 [00:00<00:00, 74.07it/s] 100%|██████████| 25/25 [00:00<00:00, 73.49it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 18.84it/s] 40%|████ | 4/10 [00:00<00:00, 18.67it/s] 60%|██████ | 6/10 [00:00<00:00, 18.68it/s] 80%|████████ | 8/10 [00:00<00:00, 18.66it/s] 100%|██████████| 10/10 [00:00<00:00, 18.64it/s] 100%|██████████| 10/10 [00:00<00:00, 18.66it/s] frame_idx: 530 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 282 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 frame_idx: 530 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 282 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 53%|█████▎ | 529/999 [08:45<08:50, 1.13s/it] 53%|█████▎ | 530/999 [08:45<06:29, 1.20it/s] 0%| | 0/25 [00:00<?, ?it/s] 28%|██▊ | 7/25 [00:00<00:00, 69.75it/s] 56%|█████▌ | 14/25 [00:00<00:00, 69.68it/s] 84%|████████▍ | 21/25 [00:00<00:00, 69.34it/s] 100%|██████████| 25/25 [00:00<00:00, 69.89it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 72.91it/s] 64%|██████▍ | 16/25 [00:00<00:00, 72.16it/s] 96%|█████████▌| 24/25 [00:00<00:00, 71.65it/s] 100%|██████████| 25/25 [00:00<00:00, 71.47it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 18.87it/s] 40%|████ | 4/10 [00:00<00:00, 18.72it/s] 60%|██████ | 6/10 [00:00<00:00, 18.67it/s] 80%|████████ | 8/10 [00:00<00:00, 18.63it/s] 100%|██████████| 10/10 [00:00<00:00, 18.67it/s] 100%|██████████| 10/10 [00:00<00:00, 18.67it/s] frame_idx: 532 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 283 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 frame_idx: 532 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 283 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 53%|█████▎ | 531/999 [08:47<08:48, 1.13s/it] 53%|█████▎ | 532/999 [08:47<06:27, 1.21it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 70.24it/s] 64%|██████▍ | 16/25 [00:00<00:00, 70.19it/s] 96%|█████████▌| 24/25 [00:00<00:00, 70.20it/s] 100%|██████████| 25/25 [00:00<00:00, 69.90it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 71.01it/s] 64%|██████▍ | 16/25 [00:00<00:00, 73.21it/s] 96%|█████████▌| 24/25 [00:00<00:00, 73.93it/s] 100%|██████████| 25/25 [00:00<00:00, 73.51it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 18.85it/s] 40%|████ | 4/10 [00:00<00:00, 18.72it/s] 60%|██████ | 6/10 [00:00<00:00, 18.68it/s] 80%|████████ | 8/10 [00:00<00:00, 18.65it/s] 100%|██████████| 10/10 [00:00<00:00, 18.67it/s] 100%|██████████| 10/10 [00:00<00:00, 18.68it/s] frame_idx: 534 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 284 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 frame_idx: 534 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 284 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 53%|█████▎ | 533/999 [08:49<08:43, 1.12s/it] 53%|█████▎ | 534/999 [08:49<06:25, 1.21it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 74.41it/s] 64%|██████▍ | 16/25 [00:00<00:00, 71.50it/s] 96%|█████████▌| 24/25 [00:00<00:00, 70.43it/s] 100%|██████████| 25/25 [00:00<00:00, 70.79it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 70.27it/s] 64%|██████▍ | 16/25 [00:00<00:00, 71.37it/s] 96%|█████████▌| 24/25 [00:00<00:00, 71.61it/s] 100%|██████████| 25/25 [00:00<00:00, 71.10it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 18.76it/s] 40%|████ | 4/10 [00:00<00:00, 18.69it/s] 60%|██████ | 6/10 [00:00<00:00, 18.63it/s] 80%|████████ | 8/10 [00:00<00:00, 18.62it/s] 100%|██████████| 10/10 [00:00<00:00, 18.62it/s] 100%|██████████| 10/10 [00:00<00:00, 18.63it/s] frame_idx: 536 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 285 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 frame_idx: 536 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 285 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 54%|█████▎ | 535/999 [08:51<08:42, 1.13s/it] 54%|█████▎ | 536/999 [08:51<06:23, 1.21it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 73.17it/s] 64%|██████▍ | 16/25 [00:00<00:00, 70.22it/s] 96%|█████████▌| 24/25 [00:00<00:00, 70.99it/s] 100%|██████████| 25/25 [00:00<00:00, 70.71it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 73.27it/s] 64%|██████▍ | 16/25 [00:00<00:00, 74.29it/s] 96%|█████████▌| 24/25 [00:00<00:00, 74.69it/s] 100%|██████████| 25/25 [00:00<00:00, 74.44it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 18.82it/s] 40%|████ | 4/10 [00:00<00:00, 18.76it/s] 60%|██████ | 6/10 [00:00<00:00, 18.72it/s] 80%|████████ | 8/10 [00:00<00:00, 18.67it/s] 100%|██████████| 10/10 [00:00<00:00, 18.66it/s] 100%|██████████| 10/10 [00:00<00:00, 18.69it/s] frame_idx: 538 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 286 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 frame_idx: 538 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 286 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 54%|█████▍ | 537/999 [08:53<08:37, 1.12s/it] 54%|█████▍ | 538/999 [08:53<06:20, 1.21it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 74.36it/s] 64%|██████▍ | 16/25 [00:00<00:00, 74.49it/s] 96%|█████████▌| 24/25 [00:00<00:00, 73.32it/s] 100%|██████████| 25/25 [00:00<00:00, 73.39it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 75.11it/s] 64%|██████▍ | 16/25 [00:00<00:00, 75.12it/s] 96%|█████████▌| 24/25 [00:00<00:00, 75.06it/s] 100%|██████████| 25/25 [00:00<00:00, 74.96it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 18.87it/s] 40%|████ | 4/10 [00:00<00:00, 18.74it/s] 60%|██████ | 6/10 [00:00<00:00, 18.69it/s] 80%|████████ | 8/10 [00:00<00:00, 18.67it/s] 100%|██████████| 10/10 [00:00<00:00, 18.67it/s] 100%|██████████| 10/10 [00:00<00:00, 18.68it/s] frame_idx: 540 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 287 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 frame_idx: 540 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 287 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 54%|█████▍ | 539/999 [08:55<08:32, 1.11s/it] 54%|█████▍ | 540/999 [08:55<06:16, 1.22it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 73.25it/s] 64%|██████▍ | 16/25 [00:00<00:00, 74.40it/s] 96%|█████████▌| 24/25 [00:00<00:00, 74.55it/s] 100%|██████████| 25/25 [00:00<00:00, 74.33it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 69.99it/s] 60%|██████ | 15/25 [00:00<00:00, 68.10it/s] 88%|████████▊ | 22/25 [00:00<00:00, 67.94it/s] 100%|██████████| 25/25 [00:00<00:00, 68.16it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 18.51it/s] 40%|████ | 4/10 [00:00<00:00, 18.42it/s] 60%|██████ | 6/10 [00:00<00:00, 18.40it/s] 80%|████████ | 8/10 [00:00<00:00, 18.37it/s] 100%|██████████| 10/10 [00:00<00:00, 18.31it/s] 100%|██████████| 10/10 [00:00<00:00, 18.34it/s] frame_idx: 542 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 288 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 frame_idx: 542 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 288 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 54%|█████▍ | 541/999 [08:57<08:36, 1.13s/it] 54%|█████▍ | 542/999 [08:57<06:19, 1.20it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 74.22it/s] 64%|██████▍ | 16/25 [00:00<00:00, 74.82it/s] 96%|█████████▌| 24/25 [00:00<00:00, 75.00it/s] 100%|██████████| 25/25 [00:00<00:00, 74.89it/s] 0%| | 0/25 [00:00<?, ?it/s] 28%|██▊ | 7/25 [00:00<00:00, 69.45it/s] 60%|██████ | 15/25 [00:00<00:00, 72.84it/s] 92%|█████████▏| 23/25 [00:00<00:00, 73.97it/s] 100%|██████████| 25/25 [00:00<00:00, 73.47it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 18.87it/s] 40%|████ | 4/10 [00:00<00:00, 18.76it/s] 60%|██████ | 6/10 [00:00<00:00, 18.70it/s] 80%|████████ | 8/10 [00:00<00:00, 18.67it/s] 100%|██████████| 10/10 [00:00<00:00, 18.64it/s] 100%|██████████| 10/10 [00:00<00:00, 18.66it/s] frame_idx: 544 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 289 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 frame_idx: 544 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 289 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 54%|█████▍ | 543/999 [08:59<08:29, 1.12s/it] 54%|█████▍ | 544/999 [08:59<06:14, 1.22it/s] 0%| | 0/25 [00:00<?, ?it/s] 28%|██▊ | 7/25 [00:00<00:00, 68.91it/s] 60%|██████ | 15/25 [00:00<00:00, 71.83it/s] 92%|█████████▏| 23/25 [00:00<00:00, 73.28it/s] 100%|██████████| 25/25 [00:00<00:00, 72.71it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 70.27it/s] 64%|██████▍ | 16/25 [00:00<00:00, 72.89it/s] 96%|█████████▌| 24/25 [00:00<00:00, 72.19it/s] 100%|██████████| 25/25 [00:00<00:00, 72.10it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 18.85it/s] 40%|████ | 4/10 [00:00<00:00, 18.76it/s] 60%|██████ | 6/10 [00:00<00:00, 18.69it/s] 80%|████████ | 8/10 [00:00<00:00, 18.67it/s] 100%|██████████| 10/10 [00:00<00:00, 18.65it/s] 100%|██████████| 10/10 [00:00<00:00, 18.67it/s] frame_idx: 546 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 290 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 frame_idx: 546 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 290 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 55%|█████▍ | 545/999 [09:01<08:26, 1.12s/it] 55%|█████▍ | 546/999 [09:01<06:12, 1.22it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 74.15it/s] 64%|██████▍ | 16/25 [00:00<00:00, 74.71it/s] 96%|█████████▌| 24/25 [00:00<00:00, 72.29it/s] 100%|██████████| 25/25 [00:00<00:00, 72.62it/s] 0%| | 0/25 [00:00<?, ?it/s] 28%|██▊ | 7/25 [00:00<00:00, 66.48it/s] 60%|██████ | 15/25 [00:00<00:00, 68.90it/s] 92%|█████████▏| 23/25 [00:00<00:00, 69.71it/s] 100%|██████████| 25/25 [00:00<00:00, 69.45it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 18.84it/s] 40%|████ | 4/10 [00:00<00:00, 18.78it/s] 60%|██████ | 6/10 [00:00<00:00, 18.70it/s] 80%|████████ | 8/10 [00:00<00:00, 18.67it/s] 100%|██████████| 10/10 [00:00<00:00, 18.65it/s] 100%|██████████| 10/10 [00:00<00:00, 18.68it/s] frame_idx: 548 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 291 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 frame_idx: 548 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 291 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 55%|█████▍ | 547/999 [09:03<08:27, 1.12s/it] 55%|█████▍ | 548/999 [09:03<06:13, 1.21it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 73.65it/s] 64%|██████▍ | 16/25 [00:00<00:00, 74.67it/s] 96%|█████████▌| 24/25 [00:00<00:00, 74.93it/s] 100%|██████████| 25/25 [00:00<00:00, 74.78it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 75.44it/s] 64%|██████▍ | 16/25 [00:00<00:00, 73.42it/s] 96%|█████████▌| 24/25 [00:00<00:00, 74.13it/s] 100%|██████████| 25/25 [00:00<00:00, 74.05it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 18.79it/s] 40%|████ | 4/10 [00:00<00:00, 18.74it/s] 60%|██████ | 6/10 [00:00<00:00, 18.69it/s] 80%|████████ | 8/10 [00:00<00:00, 18.69it/s] 100%|██████████| 10/10 [00:00<00:00, 18.69it/s] 100%|██████████| 10/10 [00:00<00:00, 18.69it/s] frame_idx: 550 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 292 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 frame_idx: 550 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 292 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 55%|█████▍ | 549/999 [09:05<08:20, 1.11s/it] 55%|█████▌ | 550/999 [09:05<06:08, 1.22it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 74.68it/s] 64%|██████▍ | 16/25 [00:00<00:00, 74.61it/s] 96%|█████████▌| 24/25 [00:00<00:00, 74.74it/s] 100%|██████████| 25/25 [00:00<00:00, 74.47it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 72.55it/s] 64%|██████▍ | 16/25 [00:00<00:00, 73.81it/s] 96%|█████████▌| 24/25 [00:00<00:00, 72.15it/s] 100%|██████████| 25/25 [00:00<00:00, 72.34it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 18.91it/s] 40%|████ | 4/10 [00:00<00:00, 18.78it/s] 60%|██████ | 6/10 [00:00<00:00, 18.72it/s] 80%|████████ | 8/10 [00:00<00:00, 18.73it/s] 100%|██████████| 10/10 [00:00<00:00, 18.70it/s] 100%|██████████| 10/10 [00:00<00:00, 18.72it/s] frame_idx: 552 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 293 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 frame_idx: 552 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 293 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 55%|█████▌ | 551/999 [09:06<08:18, 1.11s/it] 55%|█████▌ | 552/999 [09:07<06:06, 1.22it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 73.88it/s] 64%|██████▍ | 16/25 [00:00<00:00, 74.75it/s] 96%|█████████▌| 24/25 [00:00<00:00, 73.02it/s] 100%|██████████| 25/25 [00:00<00:00, 73.23it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 74.17it/s] 64%|██████▍ | 16/25 [00:00<00:00, 74.70it/s] 96%|█████████▌| 24/25 [00:00<00:00, 73.99it/s] 100%|██████████| 25/25 [00:00<00:00, 73.95it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 18.87it/s] 40%|████ | 4/10 [00:00<00:00, 18.80it/s] 60%|██████ | 6/10 [00:00<00:00, 18.78it/s] 80%|████████ | 8/10 [00:00<00:00, 18.73it/s] 100%|██████████| 10/10 [00:00<00:00, 18.69it/s] 100%|██████████| 10/10 [00:00<00:00, 18.72it/s] frame_idx: 554 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 294 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 frame_idx: 554 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 294 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 55%|█████▌ | 553/999 [09:08<08:14, 1.11s/it] 55%|█████▌ | 554/999 [09:09<06:04, 1.22it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 74.61it/s] 64%|██████▍ | 16/25 [00:00<00:00, 71.93it/s] 96%|█████████▌| 24/25 [00:00<00:00, 70.90it/s] 100%|██████████| 25/25 [00:00<00:00, 71.36it/s] 0%| | 0/25 [00:00<?, ?it/s] 28%|██▊ | 7/25 [00:00<00:00, 69.74it/s] 60%|██████ | 15/25 [00:00<00:00, 71.57it/s] 92%|█████████▏| 23/25 [00:00<00:00, 72.47it/s] 100%|██████████| 25/25 [00:00<00:00, 71.28it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 18.84it/s] 40%|████ | 4/10 [00:00<00:00, 18.78it/s] 60%|██████ | 6/10 [00:00<00:00, 18.73it/s] 80%|████████ | 8/10 [00:00<00:00, 18.70it/s] 100%|██████████| 10/10 [00:00<00:00, 18.72it/s] 100%|██████████| 10/10 [00:00<00:00, 18.73it/s] frame_idx: 556 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 295 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 frame_idx: 556 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 295 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 56%|█████▌ | 555/999 [09:10<08:17, 1.12s/it] 56%|█████▌ | 556/999 [09:10<06:06, 1.21it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 74.48it/s] 64%|██████▍ | 16/25 [00:00<00:00, 74.88it/s] 96%|█████████▌| 24/25 [00:00<00:00, 75.18it/s] 100%|██████████| 25/25 [00:00<00:00, 75.03it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 75.02it/s] 64%|██████▍ | 16/25 [00:00<00:00, 75.37it/s] 96%|█████████▌| 24/25 [00:00<00:00, 74.64it/s] 100%|██████████| 25/25 [00:00<00:00, 74.63it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 18.83it/s] 40%|████ | 4/10 [00:00<00:00, 18.75it/s] 60%|██████ | 6/10 [00:00<00:00, 18.70it/s] 80%|████████ | 8/10 [00:00<00:00, 18.72it/s] 100%|██████████| 10/10 [00:00<00:00, 18.71it/s] 100%|██████████| 10/10 [00:00<00:00, 18.71it/s] frame_idx: 558 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 296 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 frame_idx: 558 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 296 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 56%|█████▌ | 557/999 [09:12<08:12, 1.11s/it] 56%|█████▌ | 558/999 [09:12<06:02, 1.22it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 74.57it/s] 64%|██████▍ | 16/25 [00:00<00:00, 75.11it/s] 96%|█████████▌| 24/25 [00:00<00:00, 75.08it/s] 100%|██████████| 25/25 [00:00<00:00, 75.04it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 74.50it/s] 64%|██████▍ | 16/25 [00:00<00:00, 73.10it/s] 96%|█████████▌| 24/25 [00:00<00:00, 73.78it/s] 100%|██████████| 25/25 [00:00<00:00, 73.65it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 18.73it/s] 40%|████ | 4/10 [00:00<00:00, 18.65it/s] 60%|██████ | 6/10 [00:00<00:00, 18.67it/s] 80%|████████ | 8/10 [00:00<00:00, 18.70it/s] 100%|██████████| 10/10 [00:00<00:00, 18.68it/s] 100%|██████████| 10/10 [00:00<00:00, 18.68it/s] frame_idx: 560 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 297 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 frame_idx: 560 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 297 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 56%|█████▌ | 559/999 [09:14<08:10, 1.11s/it] 56%|█████▌ | 560/999 [09:14<06:00, 1.22it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 70.99it/s] 64%|██████▍ | 16/25 [00:00<00:00, 73.79it/s] 96%|█████████▌| 24/25 [00:00<00:00, 74.64it/s] 100%|██████████| 25/25 [00:00<00:00, 74.11it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 75.14it/s] 64%|██████▍ | 16/25 [00:00<00:00, 74.92it/s] 96%|█████████▌| 24/25 [00:00<00:00, 72.76it/s] 100%|██████████| 25/25 [00:00<00:00, 73.43it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 18.87it/s] 40%|████ | 4/10 [00:00<00:00, 18.75it/s] 60%|██████ | 6/10 [00:00<00:00, 18.69it/s] 80%|████████ | 8/10 [00:00<00:00, 18.68it/s] 100%|██████████| 10/10 [00:00<00:00, 18.68it/s] 100%|██████████| 10/10 [00:00<00:00, 18.69it/s] frame_idx: 562 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 298 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 frame_idx: 562 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 298 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 56%|█████▌ | 561/999 [09:16<08:06, 1.11s/it] 56%|█████▋ | 562/999 [09:16<05:57, 1.22it/s] 0%| | 0/25 [00:00<?, ?it/s] 28%|██▊ | 7/25 [00:00<00:00, 69.22it/s] 60%|██████ | 15/25 [00:00<00:00, 69.87it/s] 92%|█████████▏| 23/25 [00:00<00:00, 70.33it/s] 100%|██████████| 25/25 [00:00<00:00, 70.12it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 75.82it/s] 64%|██████▍ | 16/25 [00:00<00:00, 72.61it/s] 96%|█████████▌| 24/25 [00:00<00:00, 71.46it/s] 100%|██████████| 25/25 [00:00<00:00, 71.99it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 18.82it/s] 40%|████ | 4/10 [00:00<00:00, 18.45it/s] 60%|██████ | 6/10 [00:00<00:00, 18.54it/s] 80%|████████ | 8/10 [00:00<00:00, 18.61it/s] 100%|██████████| 10/10 [00:00<00:00, 18.60it/s] 100%|██████████| 10/10 [00:00<00:00, 18.58it/s] frame_idx: 564 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 299 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 frame_idx: 564 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 299 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 56%|█████▋ | 563/999 [09:18<08:08, 1.12s/it] 56%|█████▋ | 564/999 [09:18<05:58, 1.21it/s] 0%| | 0/25 [00:00<?, ?it/s] 28%|██▊ | 7/25 [00:00<00:00, 65.29it/s] 60%|██████ | 15/25 [00:00<00:00, 68.59it/s] 88%|████████▊ | 22/25 [00:00<00:00, 68.68it/s] 100%|██████████| 25/25 [00:00<00:00, 68.56it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 74.02it/s] 64%|██████▍ | 16/25 [00:00<00:00, 73.92it/s] 96%|█████████▌| 24/25 [00:00<00:00, 71.66it/s] 100%|██████████| 25/25 [00:00<00:00, 71.96it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 18.88it/s] 40%|████ | 4/10 [00:00<00:00, 18.73it/s] 60%|██████ | 6/10 [00:00<00:00, 18.70it/s] 80%|████████ | 8/10 [00:00<00:00, 18.66it/s] 100%|██████████| 10/10 [00:00<00:00, 18.64it/s] 100%|██████████| 10/10 [00:00<00:00, 18.67it/s] frame_idx: 566 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 300 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 frame_idx: 566 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 300 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 57%|█████▋ | 565/999 [09:20<08:08, 1.12s/it] 57%|█████▋ | 566/999 [09:20<05:59, 1.21it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 72.01it/s] 64%|██████▍ | 16/25 [00:00<00:00, 70.99it/s] 96%|█████████▌| 24/25 [00:00<00:00, 72.96it/s] 100%|██████████| 25/25 [00:00<00:00, 72.62it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 75.76it/s] 64%|██████▍ | 16/25 [00:00<00:00, 75.52it/s] 96%|█████████▌| 24/25 [00:00<00:00, 75.58it/s] 100%|██████████| 25/25 [00:00<00:00, 75.53it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 18.83it/s] 40%|████ | 4/10 [00:00<00:00, 18.68it/s] 60%|██████ | 6/10 [00:00<00:00, 18.68it/s] 80%|████████ | 8/10 [00:00<00:00, 18.68it/s] 100%|██████████| 10/10 [00:00<00:00, 18.67it/s] 100%|██████████| 10/10 [00:00<00:00, 18.68it/s] frame_idx: 568 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 301 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 frame_idx: 568 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 301 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 57%|█████▋ | 567/999 [09:22<08:03, 1.12s/it] 57%|█████▋ | 568/999 [09:22<05:56, 1.21it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 73.61it/s] 64%|██████▍ | 16/25 [00:00<00:00, 69.31it/s] 92%|█████████▏| 23/25 [00:00<00:00, 69.15it/s] 100%|██████████| 25/25 [00:00<00:00, 69.65it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 74.63it/s] 64%|██████▍ | 16/25 [00:00<00:00, 73.93it/s] 96%|█████████▌| 24/25 [00:00<00:00, 71.89it/s] 100%|██████████| 25/25 [00:00<00:00, 72.08it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 18.86it/s] 40%|████ | 4/10 [00:00<00:00, 18.73it/s] 60%|██████ | 6/10 [00:00<00:00, 18.68it/s] 80%|████████ | 8/10 [00:00<00:00, 18.70it/s] 100%|██████████| 10/10 [00:00<00:00, 18.69it/s] 100%|██████████| 10/10 [00:00<00:00, 18.69it/s] frame_idx: 570 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 302 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 frame_idx: 570 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 302 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 57%|█████▋ | 569/999 [09:24<08:04, 1.13s/it] 57%|█████▋ | 570/999 [09:24<05:54, 1.21it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 74.23it/s] 64%|██████▍ | 16/25 [00:00<00:00, 72.49it/s] 96%|█████████▌| 24/25 [00:00<00:00, 71.42it/s] 100%|██████████| 25/25 [00:00<00:00, 71.96it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 75.61it/s] 64%|██████▍ | 16/25 [00:00<00:00, 75.27it/s] 96%|█████████▌| 24/25 [00:00<00:00, 75.24it/s] 100%|██████████| 25/25 [00:00<00:00, 75.27it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 18.86it/s] 40%|████ | 4/10 [00:00<00:00, 18.71it/s] 60%|██████ | 6/10 [00:00<00:00, 18.71it/s] 80%|████████ | 8/10 [00:00<00:00, 18.67it/s] 100%|██████████| 10/10 [00:00<00:00, 18.68it/s] 100%|██████████| 10/10 [00:00<00:00, 18.69it/s] frame_idx: 572 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 303 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 frame_idx: 572 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 303 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 57%|█████▋ | 571/999 [09:26<07:59, 1.12s/it] 57%|█████▋ | 572/999 [09:26<05:51, 1.21it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 69.31it/s] 64%|██████▍ | 16/25 [00:00<00:00, 71.09it/s] 96%|█████████▌| 24/25 [00:00<00:00, 69.16it/s] 100%|██████████| 25/25 [00:00<00:00, 69.49it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 73.53it/s] 64%|██████▍ | 16/25 [00:00<00:00, 71.43it/s] 96%|█████████▌| 24/25 [00:00<00:00, 71.82it/s] 100%|██████████| 25/25 [00:00<00:00, 72.04it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 18.79it/s] 40%|████ | 4/10 [00:00<00:00, 18.72it/s] 60%|██████ | 6/10 [00:00<00:00, 18.73it/s] 80%|████████ | 8/10 [00:00<00:00, 18.71it/s] 100%|██████████| 10/10 [00:00<00:00, 18.68it/s] 100%|██████████| 10/10 [00:00<00:00, 18.70it/s] frame_idx: 574 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 304 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 frame_idx: 574 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 304 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 57%|█████▋ | 573/999 [09:28<07:59, 1.13s/it] 57%|█████▋ | 574/999 [09:28<05:51, 1.21it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 73.36it/s] 64%|██████▍ | 16/25 [00:00<00:00, 74.41it/s] 96%|█████████▌| 24/25 [00:00<00:00, 71.71it/s] 100%|██████████| 25/25 [00:00<00:00, 72.25it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 70.87it/s] 64%|██████▍ | 16/25 [00:00<00:00, 73.24it/s] 96%|█████████▌| 24/25 [00:00<00:00, 74.06it/s] 100%|██████████| 25/25 [00:00<00:00, 73.62it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 18.86it/s] 40%|████ | 4/10 [00:00<00:00, 18.72it/s] 60%|██████ | 6/10 [00:00<00:00, 18.72it/s] 80%|████████ | 8/10 [00:00<00:00, 18.74it/s] 100%|██████████| 10/10 [00:00<00:00, 18.70it/s] 100%|██████████| 10/10 [00:00<00:00, 18.71it/s] frame_idx: 576 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 305 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 frame_idx: 576 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 305 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 58%|█████▊ | 575/999 [09:30<07:54, 1.12s/it] 58%|█████▊ | 576/999 [09:30<05:47, 1.22it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 74.46it/s] 64%|██████▍ | 16/25 [00:00<00:00, 74.09it/s] 96%|█████████▌| 24/25 [00:00<00:00, 72.54it/s] 100%|██████████| 25/25 [00:00<00:00, 72.88it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 73.09it/s] 64%|██████▍ | 16/25 [00:00<00:00, 74.44it/s] 96%|█████████▌| 24/25 [00:00<00:00, 74.94it/s] 100%|██████████| 25/25 [00:00<00:00, 74.69it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 18.89it/s] 40%|████ | 4/10 [00:00<00:00, 18.73it/s] 60%|██████ | 6/10 [00:00<00:00, 18.71it/s] 80%|████████ | 8/10 [00:00<00:00, 18.72it/s] 100%|██████████| 10/10 [00:00<00:00, 18.69it/s] 100%|██████████| 10/10 [00:00<00:00, 18.70it/s] frame_idx: 578 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 306 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 frame_idx: 578 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 306 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 58%|█████▊ | 577/999 [09:32<07:49, 1.11s/it] 58%|█████▊ | 578/999 [09:32<05:44, 1.22it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 74.24it/s] 64%|██████▍ | 16/25 [00:00<00:00, 74.63it/s] 96%|█████████▌| 24/25 [00:00<00:00, 74.82it/s] 100%|██████████| 25/25 [00:00<00:00, 74.64it/s] 0%| | 0/25 [00:00<?, ?it/s] 28%|██▊ | 7/25 [00:00<00:00, 68.21it/s] 60%|██████ | 15/25 [00:00<00:00, 70.72it/s] 92%|█████████▏| 23/25 [00:00<00:00, 72.38it/s] 100%|██████████| 25/25 [00:00<00:00, 71.90it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 18.80it/s] 40%|████ | 4/10 [00:00<00:00, 18.75it/s] 60%|██████ | 6/10 [00:00<00:00, 18.73it/s] 80%|████████ | 8/10 [00:00<00:00, 18.69it/s] 100%|██████████| 10/10 [00:00<00:00, 18.66it/s] 100%|██████████| 10/10 [00:00<00:00, 18.68it/s] frame_idx: 580 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 307 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 frame_idx: 580 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 307 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 58%|█████▊ | 579/999 [09:34<07:46, 1.11s/it] 58%|█████▊ | 580/999 [09:34<05:42, 1.22it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 74.28it/s] 64%|██████▍ | 16/25 [00:00<00:00, 74.22it/s] 96%|█████████▌| 24/25 [00:00<00:00, 74.38it/s] 100%|██████████| 25/25 [00:00<00:00, 73.94it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 74.22it/s] 64%|██████▍ | 16/25 [00:00<00:00, 71.86it/s] 96%|█████████▌| 24/25 [00:00<00:00, 71.07it/s] 100%|██████████| 25/25 [00:00<00:00, 71.51it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 18.79it/s] 40%|████ | 4/10 [00:00<00:00, 18.65it/s] 60%|██████ | 6/10 [00:00<00:00, 18.65it/s] 80%|████████ | 8/10 [00:00<00:00, 18.67it/s] 100%|██████████| 10/10 [00:00<00:00, 18.67it/s] 100%|██████████| 10/10 [00:00<00:00, 18.67it/s] frame_idx: 582 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 308 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 frame_idx: 582 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 308 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 58%|█████▊ | 581/999 [09:36<07:47, 1.12s/it] 58%|█████▊ | 582/999 [09:36<05:43, 1.21it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 73.78it/s] 64%|██████▍ | 16/25 [00:00<00:00, 74.32it/s] 96%|█████████▌| 24/25 [00:00<00:00, 72.96it/s] 100%|██████████| 25/25 [00:00<00:00, 73.27it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 75.31it/s] 64%|██████▍ | 16/25 [00:00<00:00, 71.21it/s] 96%|█████████▌| 24/25 [00:00<00:00, 71.07it/s] 100%|██████████| 25/25 [00:00<00:00, 71.12it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 18.92it/s] 40%|████ | 4/10 [00:00<00:00, 18.76it/s] 60%|██████ | 6/10 [00:00<00:00, 18.74it/s] 80%|████████ | 8/10 [00:00<00:00, 18.69it/s] 100%|██████████| 10/10 [00:00<00:00, 18.68it/s] 100%|██████████| 10/10 [00:00<00:00, 18.70it/s] frame_idx: 584 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 309 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 frame_idx: 584 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 309 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 58%|█████▊ | 583/999 [09:38<07:45, 1.12s/it] 58%|█████▊ | 584/999 [09:38<05:41, 1.21it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 74.51it/s] 64%|██████▍ | 16/25 [00:00<00:00, 74.58it/s] 96%|█████████▌| 24/25 [00:00<00:00, 74.82it/s] 100%|██████████| 25/25 [00:00<00:00, 74.70it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 74.77it/s] 64%|██████▍ | 16/25 [00:00<00:00, 71.91it/s] 96%|█████████▌| 24/25 [00:00<00:00, 71.28it/s] 100%|██████████| 25/25 [00:00<00:00, 71.68it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 18.84it/s] 40%|████ | 4/10 [00:00<00:00, 18.75it/s] 60%|██████ | 6/10 [00:00<00:00, 18.76it/s] 80%|████████ | 8/10 [00:00<00:00, 18.74it/s] 100%|██████████| 10/10 [00:00<00:00, 18.69it/s] 100%|██████████| 10/10 [00:00<00:00, 18.72it/s] frame_idx: 586 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 310 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 frame_idx: 586 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 310 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 59%|█████▊ | 585/999 [09:39<07:43, 1.12s/it] 59%|█████▊ | 586/999 [09:40<05:40, 1.21it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 74.46it/s] 64%|██████▍ | 16/25 [00:00<00:00, 72.76it/s] 96%|█████████▌| 24/25 [00:00<00:00, 73.77it/s] 100%|██████████| 25/25 [00:00<00:00, 73.54it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 74.91it/s] 64%|██████▍ | 16/25 [00:00<00:00, 73.97it/s] 96%|█████████▌| 24/25 [00:00<00:00, 73.16it/s] 100%|██████████| 25/25 [00:00<00:00, 73.37it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 18.82it/s] 40%|████ | 4/10 [00:00<00:00, 18.75it/s] 60%|██████ | 6/10 [00:00<00:00, 18.72it/s] 80%|████████ | 8/10 [00:00<00:00, 18.68it/s] 100%|██████████| 10/10 [00:00<00:00, 18.67it/s] 100%|██████████| 10/10 [00:00<00:00, 18.69it/s] frame_idx: 588 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 311 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 frame_idx: 588 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 311 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 59%|█████▉ | 587/999 [09:41<07:39, 1.12s/it] 59%|█████▉ | 588/999 [09:42<05:38, 1.22it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 73.45it/s] 64%|██████▍ | 16/25 [00:00<00:00, 74.29it/s] 96%|█████████▌| 24/25 [00:00<00:00, 72.85it/s] 100%|██████████| 25/25 [00:00<00:00, 72.95it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 75.04it/s] 64%|██████▍ | 16/25 [00:00<00:00, 75.00it/s] 96%|█████████▌| 24/25 [00:00<00:00, 71.99it/s] 100%|██████████| 25/25 [00:00<00:00, 72.22it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 18.85it/s] 40%|████ | 4/10 [00:00<00:00, 18.74it/s] 60%|██████ | 6/10 [00:00<00:00, 18.72it/s] 80%|████████ | 8/10 [00:00<00:00, 18.71it/s] 100%|██████████| 10/10 [00:00<00:00, 18.65it/s] 100%|██████████| 10/10 [00:00<00:00, 18.69it/s] frame_idx: 590 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 312 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 frame_idx: 590 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 312 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 59%|█████▉ | 589/999 [09:43<07:37, 1.12s/it] 59%|█████▉ | 590/999 [09:43<05:36, 1.22it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 72.94it/s] 64%|██████▍ | 16/25 [00:00<00:00, 71.31it/s] 96%|█████████▌| 24/25 [00:00<00:00, 70.68it/s] 100%|██████████| 25/25 [00:00<00:00, 70.92it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 73.79it/s] 64%|██████▍ | 16/25 [00:00<00:00, 74.35it/s] 96%|█████████▌| 24/25 [00:00<00:00, 74.54it/s] 100%|██████████| 25/25 [00:00<00:00, 74.42it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 18.74it/s] 40%|████ | 4/10 [00:00<00:00, 18.76it/s] 60%|██████ | 6/10 [00:00<00:00, 18.71it/s] 80%|████████ | 8/10 [00:00<00:00, 18.69it/s] 100%|██████████| 10/10 [00:00<00:00, 18.72it/s] 100%|██████████| 10/10 [00:00<00:00, 18.71it/s] frame_idx: 592 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 313 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 frame_idx: 592 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 313 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 59%|█████▉ | 591/999 [09:46<08:07, 1.19s/it] 59%|█████▉ | 592/999 [09:46<06:10, 1.10it/s] 0%| | 0/25 [00:00<?, ?it/s] 28%|██▊ | 7/25 [00:00<00:00, 64.28it/s] 60%|██████ | 15/25 [00:00<00:00, 69.20it/s] 92%|█████████▏| 23/25 [00:00<00:00, 70.38it/s] 100%|██████████| 25/25 [00:00<00:00, 69.54it/s] 0%| | 0/25 [00:00<?, ?it/s] 28%|██▊ | 7/25 [00:00<00:00, 69.58it/s] 60%|██████ | 15/25 [00:00<00:00, 69.42it/s] 92%|█████████▏| 23/25 [00:00<00:00, 71.87it/s] 100%|██████████| 25/25 [00:00<00:00, 71.53it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 18.90it/s] 40%|████ | 4/10 [00:00<00:00, 18.80it/s] 60%|██████ | 6/10 [00:00<00:00, 18.76it/s] 80%|████████ | 8/10 [00:00<00:00, 18.74it/s] 100%|██████████| 10/10 [00:00<00:00, 18.73it/s] 100%|██████████| 10/10 [00:00<00:00, 18.75it/s] frame_idx: 594 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 314 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 frame_idx: 594 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 314 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 59%|█████▉ | 593/999 [09:48<08:16, 1.22s/it] 59%|█████▉ | 594/999 [09:48<06:02, 1.12it/s] 0%| | 0/25 [00:00<?, ?it/s] 28%|██▊ | 7/25 [00:00<00:00, 68.80it/s] 60%|██████ | 15/25 [00:00<00:00, 70.92it/s] 92%|█████████▏| 23/25 [00:00<00:00, 70.07it/s] 100%|██████████| 25/25 [00:00<00:00, 69.99it/s] 0%| | 0/25 [00:00<?, ?it/s] 28%|██▊ | 7/25 [00:00<00:00, 69.49it/s] 56%|█████▌ | 14/25 [00:00<00:00, 69.62it/s] 88%|████████▊ | 22/25 [00:00<00:00, 71.84it/s] 100%|██████████| 25/25 [00:00<00:00, 70.99it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 18.80it/s] 40%|████ | 4/10 [00:00<00:00, 18.79it/s] 60%|██████ | 6/10 [00:00<00:00, 18.74it/s] 80%|████████ | 8/10 [00:00<00:00, 18.72it/s] 100%|██████████| 10/10 [00:00<00:00, 18.72it/s] 100%|██████████| 10/10 [00:00<00:00, 18.73it/s] frame_idx: 596 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 315 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 frame_idx: 596 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 315 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 60%|█████▉ | 595/999 [09:50<07:55, 1.18s/it] 60%|█████▉ | 596/999 [09:50<05:48, 1.16it/s] 0%| | 0/25 [00:00<?, ?it/s] 28%|██▊ | 7/25 [00:00<00:00, 68.65it/s] 60%|██████ | 15/25 [00:00<00:00, 72.11it/s] 92%|█████████▏| 23/25 [00:00<00:00, 73.38it/s] 100%|██████████| 25/25 [00:00<00:00, 72.41it/s] 0%| | 0/25 [00:00<?, ?it/s] 28%|██▊ | 7/25 [00:00<00:00, 66.90it/s] 56%|█████▌ | 14/25 [00:00<00:00, 68.51it/s] 84%|████████▍ | 21/25 [00:00<00:00, 69.07it/s] 100%|██████████| 25/25 [00:00<00:00, 68.98it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 18.87it/s] 40%|████ | 4/10 [00:00<00:00, 18.77it/s] 60%|██████ | 6/10 [00:00<00:00, 18.73it/s] 80%|████████ | 8/10 [00:00<00:00, 18.70it/s] 100%|██████████| 10/10 [00:00<00:00, 18.69it/s] 100%|██████████| 10/10 [00:00<00:00, 18.70it/s] frame_idx: 598 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 316 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 frame_idx: 598 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 316 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 60%|█████▉ | 597/999 [09:52<07:44, 1.16s/it] 60%|█████▉ | 598/999 [09:52<05:40, 1.18it/s] 0%| | 0/25 [00:00<?, ?it/s] 28%|██▊ | 7/25 [00:00<00:00, 68.36it/s] 56%|█████▌ | 14/25 [00:00<00:00, 69.31it/s] 84%|████████▍ | 21/25 [00:00<00:00, 69.58it/s] 100%|██████████| 25/25 [00:00<00:00, 70.22it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 70.89it/s] 64%|██████▍ | 16/25 [00:00<00:00, 71.68it/s] 96%|█████████▌| 24/25 [00:00<00:00, 72.84it/s] 100%|██████████| 25/25 [00:00<00:00, 72.50it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 18.85it/s] 40%|████ | 4/10 [00:00<00:00, 18.70it/s] 60%|██████ | 6/10 [00:00<00:00, 18.70it/s] 80%|████████ | 8/10 [00:00<00:00, 18.69it/s] 100%|██████████| 10/10 [00:00<00:00, 18.69it/s] 100%|██████████| 10/10 [00:00<00:00, 18.69it/s] frame_idx: 600 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 317 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 frame_idx: 600 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 317 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 60%|█████▉ | 599/999 [09:54<07:34, 1.14s/it] 60%|██████ | 600/999 [09:54<05:32, 1.20it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 73.86it/s] 64%|██████▍ | 16/25 [00:00<00:00, 70.93it/s] 96%|█████████▌| 24/25 [00:00<00:00, 71.74it/s] 100%|██████████| 25/25 [00:00<00:00, 71.70it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 74.81it/s] 64%|██████▍ | 16/25 [00:00<00:00, 68.72it/s] 92%|█████████▏| 23/25 [00:00<00:00, 67.72it/s] 100%|██████████| 25/25 [00:00<00:00, 68.46it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 18.80it/s] 40%|████ | 4/10 [00:00<00:00, 18.74it/s] 60%|██████ | 6/10 [00:00<00:00, 18.74it/s] 80%|████████ | 8/10 [00:00<00:00, 18.71it/s] 100%|██████████| 10/10 [00:00<00:00, 18.67it/s] 100%|██████████| 10/10 [00:00<00:00, 18.69it/s] frame_idx: 602 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 318 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 frame_idx: 602 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 318 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 60%|██████ | 601/999 [09:56<07:28, 1.13s/it] 60%|██████ | 602/999 [09:56<05:28, 1.21it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 73.82it/s] 64%|██████▍ | 16/25 [00:00<00:00, 74.47it/s] 96%|█████████▌| 24/25 [00:00<00:00, 73.34it/s] 100%|██████████| 25/25 [00:00<00:00, 73.63it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 74.46it/s] 64%|██████▍ | 16/25 [00:00<00:00, 73.86it/s] 96%|█████████▌| 24/25 [00:00<00:00, 71.79it/s] 100%|██████████| 25/25 [00:00<00:00, 72.24it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 18.85it/s] 40%|████ | 4/10 [00:00<00:00, 18.79it/s] 60%|██████ | 6/10 [00:00<00:00, 18.75it/s] 80%|████████ | 8/10 [00:00<00:00, 18.75it/s] 100%|██████████| 10/10 [00:00<00:00, 18.76it/s] 100%|██████████| 10/10 [00:00<00:00, 18.76it/s] frame_idx: 604 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 319 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 frame_idx: 604 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 319 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 60%|██████ | 603/999 [09:57<07:23, 1.12s/it] 60%|██████ | 604/999 [09:58<05:25, 1.21it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 74.32it/s] 64%|██████▍ | 16/25 [00:00<00:00, 74.62it/s] 96%|█████████▌| 24/25 [00:00<00:00, 74.84it/s] 100%|██████████| 25/25 [00:00<00:00, 74.70it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 74.50it/s] 64%|██████▍ | 16/25 [00:00<00:00, 74.56it/s] 96%|█████████▌| 24/25 [00:00<00:00, 71.07it/s] 100%|██████████| 25/25 [00:00<00:00, 71.85it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 18.88it/s] 40%|████ | 4/10 [00:00<00:00, 18.70it/s] 60%|██████ | 6/10 [00:00<00:00, 18.68it/s] 80%|████████ | 8/10 [00:00<00:00, 18.65it/s] 100%|██████████| 10/10 [00:00<00:00, 18.64it/s] 100%|██████████| 10/10 [00:00<00:00, 18.67it/s] frame_idx: 606 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 320 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 frame_idx: 606 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 320 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 61%|██████ | 605/999 [09:59<07:19, 1.12s/it] 61%|██████ | 606/999 [10:00<05:23, 1.21it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 72.81it/s] 64%|██████▍ | 16/25 [00:00<00:00, 73.87it/s] 96%|█████████▌| 24/25 [00:00<00:00, 74.14it/s] 100%|██████████| 25/25 [00:00<00:00, 73.93it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 74.46it/s] 64%|██████▍ | 16/25 [00:00<00:00, 74.27it/s] 96%|█████████▌| 24/25 [00:00<00:00, 71.18it/s] 100%|██████████| 25/25 [00:00<00:00, 71.84it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 18.79it/s] 40%|████ | 4/10 [00:00<00:00, 18.69it/s] 60%|██████ | 6/10 [00:00<00:00, 18.64it/s] 80%|████████ | 8/10 [00:00<00:00, 18.64it/s] 100%|██████████| 10/10 [00:00<00:00, 18.66it/s] 100%|██████████| 10/10 [00:00<00:00, 18.66it/s] frame_idx: 608 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 321 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 frame_idx: 608 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 321 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 61%|██████ | 607/999 [10:01<07:18, 1.12s/it] 61%|██████ | 608/999 [10:01<05:21, 1.22it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 73.93it/s] 64%|██████▍ | 16/25 [00:00<00:00, 74.27it/s] 96%|█████████▌| 24/25 [00:00<00:00, 74.54it/s] 100%|██████████| 25/25 [00:00<00:00, 74.37it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 71.60it/s] 64%|██████▍ | 16/25 [00:00<00:00, 72.64it/s] 96%|█████████▌| 24/25 [00:00<00:00, 70.98it/s] 100%|██████████| 25/25 [00:00<00:00, 71.04it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 18.76it/s] 40%|████ | 4/10 [00:00<00:00, 18.77it/s] 60%|██████ | 6/10 [00:00<00:00, 18.73it/s] 80%|████████ | 8/10 [00:00<00:00, 18.69it/s] 100%|██████████| 10/10 [00:00<00:00, 18.69it/s] 100%|██████████| 10/10 [00:00<00:00, 18.70it/s] frame_idx: 610 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 322 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 frame_idx: 610 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 322 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 61%|██████ | 609/999 [10:03<07:18, 1.12s/it] 61%|██████ | 610/999 [10:03<05:21, 1.21it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 73.40it/s] 64%|██████▍ | 16/25 [00:00<00:00, 74.33it/s] 96%|█████████▌| 24/25 [00:00<00:00, 74.55it/s] 100%|██████████| 25/25 [00:00<00:00, 74.37it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 74.84it/s] 64%|██████▍ | 16/25 [00:00<00:00, 74.82it/s] 96%|█████████▌| 24/25 [00:00<00:00, 74.70it/s] 100%|██████████| 25/25 [00:00<00:00, 74.69it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 18.81it/s] 40%|████ | 4/10 [00:00<00:00, 18.77it/s] 60%|██████ | 6/10 [00:00<00:00, 18.75it/s] 80%|████████ | 8/10 [00:00<00:00, 18.73it/s] 100%|██████████| 10/10 [00:00<00:00, 18.74it/s] 100%|██████████| 10/10 [00:00<00:00, 18.74it/s] frame_idx: 612 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 323 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 frame_idx: 612 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 323 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 61%|██████ | 611/999 [10:05<07:12, 1.11s/it] 61%|██████▏ | 612/999 [10:05<05:17, 1.22it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 73.12it/s] 64%|██████▍ | 16/25 [00:00<00:00, 71.35it/s] 96%|█████████▌| 24/25 [00:00<00:00, 70.29it/s] 100%|██████████| 25/25 [00:00<00:00, 70.85it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 74.74it/s] 64%|██████▍ | 16/25 [00:00<00:00, 73.09it/s] 96%|█████████▌| 24/25 [00:00<00:00, 74.01it/s] 100%|██████████| 25/25 [00:00<00:00, 73.72it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 18.76it/s] 40%|████ | 4/10 [00:00<00:00, 18.72it/s] 60%|██████ | 6/10 [00:00<00:00, 18.75it/s] 80%|████████ | 8/10 [00:00<00:00, 18.74it/s] 100%|██████████| 10/10 [00:00<00:00, 18.72it/s] 100%|██████████| 10/10 [00:00<00:00, 18.72it/s] frame_idx: 614 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 324 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 frame_idx: 614 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 324 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 61%|██████▏ | 613/999 [10:07<07:11, 1.12s/it] 61%|██████▏ | 614/999 [10:07<05:16, 1.22it/s] 0%| | 0/25 [00:00<?, ?it/s] 28%|██▊ | 7/25 [00:00<00:00, 69.06it/s] 60%|██████ | 15/25 [00:00<00:00, 72.06it/s] 92%|█████████▏| 23/25 [00:00<00:00, 73.22it/s] 100%|██████████| 25/25 [00:00<00:00, 72.85it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 74.72it/s] 64%|██████▍ | 16/25 [00:00<00:00, 73.27it/s] 96%|█████████▌| 24/25 [00:00<00:00, 72.40it/s] 100%|██████████| 25/25 [00:00<00:00, 72.82it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 18.80it/s] 40%|████ | 4/10 [00:00<00:00, 18.74it/s] 60%|██████ | 6/10 [00:00<00:00, 18.70it/s] 80%|████████ | 8/10 [00:00<00:00, 18.69it/s] 100%|██████████| 10/10 [00:00<00:00, 18.72it/s] 100%|██████████| 10/10 [00:00<00:00, 18.71it/s] frame_idx: 616 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 325 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 frame_idx: 616 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 325 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 62%|██████▏ | 615/999 [10:09<07:07, 1.11s/it] 62%|██████▏ | 616/999 [10:09<05:13, 1.22it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 70.95it/s] 64%|██████▍ | 16/25 [00:00<00:00, 73.20it/s] 96%|█████████▌| 24/25 [00:00<00:00, 73.94it/s] 100%|██████████| 25/25 [00:00<00:00, 73.56it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 74.54it/s] 64%|██████▍ | 16/25 [00:00<00:00, 74.66it/s] 96%|█████████▌| 24/25 [00:00<00:00, 74.50it/s] 100%|██████████| 25/25 [00:00<00:00, 74.51it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 18.83it/s] 40%|████ | 4/10 [00:00<00:00, 18.76it/s] 60%|██████ | 6/10 [00:00<00:00, 18.69it/s] 80%|████████ | 8/10 [00:00<00:00, 18.69it/s] 100%|██████████| 10/10 [00:00<00:00, 18.65it/s] 100%|██████████| 10/10 [00:00<00:00, 18.68it/s] frame_idx: 618 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 326 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 frame_idx: 618 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 326 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 62%|██████▏ | 617/999 [10:11<07:04, 1.11s/it] 62%|██████▏ | 618/999 [10:11<05:11, 1.22it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 73.26it/s] 64%|██████▍ | 16/25 [00:00<00:00, 70.99it/s] 96%|█████████▌| 24/25 [00:00<00:00, 69.82it/s] 100%|██████████| 25/25 [00:00<00:00, 70.25it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 74.63it/s] 64%|██████▍ | 16/25 [00:00<00:00, 73.43it/s] 96%|█████████▌| 24/25 [00:00<00:00, 73.09it/s] 100%|██████████| 25/25 [00:00<00:00, 72.81it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 18.90it/s] 40%|████ | 4/10 [00:00<00:00, 18.74it/s] 60%|██████ | 6/10 [00:00<00:00, 18.69it/s] 80%|████████ | 8/10 [00:00<00:00, 18.69it/s] 100%|██████████| 10/10 [00:00<00:00, 18.65it/s] 100%|██████████| 10/10 [00:00<00:00, 18.68it/s] frame_idx: 620 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 327 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 frame_idx: 620 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 327 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 62%|██████▏ | 619/999 [10:13<07:03, 1.12s/it] 62%|██████▏ | 620/999 [10:13<05:11, 1.22it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 73.47it/s] 64%|██████▍ | 16/25 [00:00<00:00, 70.54it/s] 96%|█████████▌| 24/25 [00:00<00:00, 70.62it/s] 100%|██████████| 25/25 [00:00<00:00, 70.62it/s] 0%| | 0/25 [00:00<?, ?it/s] 28%|██▊ | 7/25 [00:00<00:00, 69.08it/s] 56%|█████▌ | 14/25 [00:00<00:00, 68.95it/s] 88%|████████▊ | 22/25 [00:00<00:00, 71.22it/s] 100%|██████████| 25/25 [00:00<00:00, 70.65it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 18.78it/s] 40%|████ | 4/10 [00:00<00:00, 18.69it/s] 60%|██████ | 6/10 [00:00<00:00, 18.69it/s] 80%|████████ | 8/10 [00:00<00:00, 18.69it/s] 100%|██████████| 10/10 [00:00<00:00, 18.65it/s] 100%|██████████| 10/10 [00:00<00:00, 18.67it/s] frame_idx: 622 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 328 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 frame_idx: 622 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 328 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 62%|██████▏ | 621/999 [10:15<07:04, 1.12s/it] 62%|██████▏ | 622/999 [10:15<05:11, 1.21it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 74.06it/s] 64%|██████▍ | 16/25 [00:00<00:00, 70.97it/s] 96%|█████████▌| 24/25 [00:00<00:00, 70.31it/s] 100%|██████████| 25/25 [00:00<00:00, 70.93it/s] 0%| | 0/25 [00:00<?, ?it/s] 28%|██▊ | 7/25 [00:00<00:00, 69.48it/s] 56%|█████▌ | 14/25 [00:00<00:00, 69.48it/s] 88%|████████▊ | 22/25 [00:00<00:00, 70.65it/s] 100%|██████████| 25/25 [00:00<00:00, 70.86it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 18.86it/s] 40%|████ | 4/10 [00:00<00:00, 18.53it/s] 60%|██████ | 6/10 [00:00<00:00, 18.61it/s] 80%|████████ | 8/10 [00:00<00:00, 18.65it/s] 100%|██████████| 10/10 [00:00<00:00, 18.67it/s] 100%|██████████| 10/10 [00:00<00:00, 18.65it/s] frame_idx: 624 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 329 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 frame_idx: 624 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 329 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 62%|██████▏ | 623/999 [10:17<07:03, 1.13s/it] 62%|██████▏ | 624/999 [10:17<05:10, 1.21it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 72.26it/s] 64%|██████▍ | 16/25 [00:00<00:00, 73.04it/s] 96%|█████████▌| 24/25 [00:00<00:00, 71.26it/s] 100%|██████████| 25/25 [00:00<00:00, 71.52it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 71.38it/s] 64%|██████▍ | 16/25 [00:00<00:00, 73.38it/s] 96%|█████████▌| 24/25 [00:00<00:00, 73.90it/s] 100%|██████████| 25/25 [00:00<00:00, 73.59it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 18.84it/s] 40%|████ | 4/10 [00:00<00:00, 18.76it/s] 60%|██████ | 6/10 [00:00<00:00, 18.68it/s] 80%|████████ | 8/10 [00:00<00:00, 18.68it/s] 100%|██████████| 10/10 [00:00<00:00, 18.66it/s] 100%|██████████| 10/10 [00:00<00:00, 18.68it/s] frame_idx: 626 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 330 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 frame_idx: 626 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 330 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 63%|██████▎ | 625/999 [10:19<06:58, 1.12s/it] 63%|██████▎ | 626/999 [10:19<05:07, 1.21it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 73.50it/s] 64%|██████▍ | 16/25 [00:00<00:00, 74.18it/s] 96%|█████████▌| 24/25 [00:00<00:00, 73.56it/s] 100%|██████████| 25/25 [00:00<00:00, 73.44it/s] 0%| | 0/25 [00:00<?, ?it/s] 28%|██▊ | 7/25 [00:00<00:00, 69.14it/s] 56%|█████▌ | 14/25 [00:00<00:00, 68.99it/s] 88%|████████▊ | 22/25 [00:00<00:00, 69.87it/s] 100%|██████████| 25/25 [00:00<00:00, 70.26it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 18.84it/s] 40%|████ | 4/10 [00:00<00:00, 18.78it/s] 60%|██████ | 6/10 [00:00<00:00, 18.76it/s] 80%|████████ | 8/10 [00:00<00:00, 18.73it/s] 100%|██████████| 10/10 [00:00<00:00, 18.68it/s] 100%|██████████| 10/10 [00:00<00:00, 18.71it/s] frame_idx: 628 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 331 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 frame_idx: 628 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 331 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 63%|██████▎ | 627/999 [10:21<06:57, 1.12s/it] 63%|██████▎ | 628/999 [10:21<05:06, 1.21it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 74.04it/s] 64%|██████▍ | 16/25 [00:00<00:00, 74.35it/s] 96%|█████████▌| 24/25 [00:00<00:00, 74.40it/s] 100%|██████████| 25/25 [00:00<00:00, 73.96it/s] 0%| | 0/25 [00:00<?, ?it/s] 28%|██▊ | 7/25 [00:00<00:00, 69.25it/s] 56%|█████▌ | 14/25 [00:00<00:00, 69.43it/s] 88%|████████▊ | 22/25 [00:00<00:00, 72.12it/s] 100%|██████████| 25/25 [00:00<00:00, 71.10it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 18.81it/s] 40%|████ | 4/10 [00:00<00:00, 18.76it/s] 60%|██████ | 6/10 [00:00<00:00, 18.70it/s] 80%|████████ | 8/10 [00:00<00:00, 18.69it/s] 100%|██████████| 10/10 [00:00<00:00, 18.63it/s] 100%|██████████| 10/10 [00:00<00:00, 18.66it/s] frame_idx: 630 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 332 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 frame_idx: 630 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 332 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 63%|██████▎ | 629/999 [10:23<06:55, 1.12s/it] 63%|██████▎ | 630/999 [10:23<05:05, 1.21it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 74.29it/s] 64%|██████▍ | 16/25 [00:00<00:00, 74.08it/s] 96%|█████████▌| 24/25 [00:00<00:00, 72.22it/s] 100%|██████████| 25/25 [00:00<00:00, 72.30it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 72.68it/s] 64%|██████▍ | 16/25 [00:00<00:00, 73.88it/s] 96%|█████████▌| 24/25 [00:00<00:00, 74.21it/s] 100%|██████████| 25/25 [00:00<00:00, 73.89it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 18.87it/s] 40%|████ | 4/10 [00:00<00:00, 18.73it/s] 60%|██████ | 6/10 [00:00<00:00, 18.70it/s] 80%|████████ | 8/10 [00:00<00:00, 18.67it/s] 100%|██████████| 10/10 [00:00<00:00, 18.66it/s] 100%|██████████| 10/10 [00:00<00:00, 18.68it/s] frame_idx: 632 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 333 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 frame_idx: 632 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 333 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 63%|██████▎ | 631/999 [10:25<06:53, 1.12s/it] 63%|██████▎ | 632/999 [10:25<05:03, 1.21it/s] 0%| | 0/25 [00:00<?, ?it/s] 28%|██▊ | 7/25 [00:00<00:00, 69.28it/s] 60%|██████ | 15/25 [00:00<00:00, 70.08it/s] 92%|█████████▏| 23/25 [00:00<00:00, 69.60it/s] 100%|██████████| 25/25 [00:00<00:00, 69.97it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 72.33it/s] 64%|██████▍ | 16/25 [00:00<00:00, 72.78it/s] 96%|█████████▌| 24/25 [00:00<00:00, 72.24it/s] 100%|██████████| 25/25 [00:00<00:00, 71.94it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 18.84it/s] 40%|████ | 4/10 [00:00<00:00, 18.75it/s] 60%|██████ | 6/10 [00:00<00:00, 18.69it/s] 80%|████████ | 8/10 [00:00<00:00, 18.64it/s] 100%|██████████| 10/10 [00:00<00:00, 18.63it/s] 100%|██████████| 10/10 [00:00<00:00, 18.66it/s] frame_idx: 634 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 334 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 frame_idx: 634 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 334 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 63%|██████▎ | 633/999 [10:27<06:51, 1.13s/it] 63%|██████▎ | 634/999 [10:27<05:02, 1.21it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 73.30it/s] 64%|██████▍ | 16/25 [00:00<00:00, 74.20it/s] 96%|█████████▌| 24/25 [00:00<00:00, 74.44it/s] 100%|██████████| 25/25 [00:00<00:00, 74.26it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 73.00it/s] 64%|██████▍ | 16/25 [00:00<00:00, 73.08it/s] 96%|█████████▌| 24/25 [00:00<00:00, 73.66it/s] 100%|██████████| 25/25 [00:00<00:00, 73.17it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 18.82it/s] 40%|████ | 4/10 [00:00<00:00, 18.75it/s] 60%|██████ | 6/10 [00:00<00:00, 18.71it/s] 80%|████████ | 8/10 [00:00<00:00, 18.69it/s] 100%|██████████| 10/10 [00:00<00:00, 18.68it/s] 100%|██████████| 10/10 [00:00<00:00, 18.70it/s] frame_idx: 636 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 335 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 frame_idx: 636 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 335 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 64%|██████▎ | 635/999 [10:29<06:47, 1.12s/it] 64%|██████▎ | 636/999 [10:29<04:59, 1.21it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 74.31it/s] 64%|██████▍ | 16/25 [00:00<00:00, 74.65it/s] 96%|█████████▌| 24/25 [00:00<00:00, 74.25it/s] 100%|██████████| 25/25 [00:00<00:00, 74.27it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 73.15it/s] 64%|██████▍ | 16/25 [00:00<00:00, 72.39it/s] 96%|█████████▌| 24/25 [00:00<00:00, 73.20it/s] 100%|██████████| 25/25 [00:00<00:00, 73.09it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 18.81it/s] 40%|████ | 4/10 [00:00<00:00, 18.73it/s] 60%|██████ | 6/10 [00:00<00:00, 18.70it/s] 80%|████████ | 8/10 [00:00<00:00, 18.68it/s] 100%|██████████| 10/10 [00:00<00:00, 18.69it/s] 100%|██████████| 10/10 [00:00<00:00, 18.69it/s] frame_idx: 638 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 336 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 frame_idx: 638 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 336 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 64%|██████▍ | 637/999 [10:31<06:43, 1.12s/it] 64%|██████▍ | 638/999 [10:31<04:56, 1.22it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 70.58it/s] 64%|██████▍ | 16/25 [00:00<00:00, 72.96it/s] 96%|█████████▌| 24/25 [00:00<00:00, 73.98it/s] 100%|██████████| 25/25 [00:00<00:00, 73.49it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 74.98it/s] 64%|██████▍ | 16/25 [00:00<00:00, 74.40it/s] 96%|█████████▌| 24/25 [00:00<00:00, 73.08it/s] 100%|██████████| 25/25 [00:00<00:00, 73.48it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 18.84it/s] 40%|████ | 4/10 [00:00<00:00, 18.69it/s] 60%|██████ | 6/10 [00:00<00:00, 18.62it/s] 80%|████████ | 8/10 [00:00<00:00, 18.62it/s] 100%|██████████| 10/10 [00:00<00:00, 18.64it/s] 100%|██████████| 10/10 [00:00<00:00, 18.65it/s] frame_idx: 640 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 337 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 frame_idx: 640 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 337 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 64%|██████▍ | 639/999 [10:32<06:41, 1.11s/it] 64%|██████▍ | 640/999 [10:33<04:54, 1.22it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 74.32it/s] 64%|██████▍ | 16/25 [00:00<00:00, 74.73it/s] 96%|█████████▌| 24/25 [00:00<00:00, 73.57it/s] 100%|██████████| 25/25 [00:00<00:00, 73.62it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 71.88it/s] 64%|██████▍ | 16/25 [00:00<00:00, 70.21it/s] 96%|█████████▌| 24/25 [00:00<00:00, 69.45it/s] 100%|██████████| 25/25 [00:00<00:00, 69.82it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 18.88it/s] 40%|████ | 4/10 [00:00<00:00, 18.74it/s] 60%|██████ | 6/10 [00:00<00:00, 18.68it/s] 80%|████████ | 8/10 [00:00<00:00, 18.67it/s] 100%|██████████| 10/10 [00:00<00:00, 18.67it/s] 100%|██████████| 10/10 [00:00<00:00, 18.68it/s] frame_idx: 642 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 338 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 frame_idx: 642 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 338 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 64%|██████▍ | 641/999 [10:34<06:40, 1.12s/it] 64%|██████▍ | 642/999 [10:35<04:53, 1.22it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 74.22it/s] 64%|██████▍ | 16/25 [00:00<00:00, 71.28it/s] 96%|█████████▌| 24/25 [00:00<00:00, 72.07it/s] 100%|██████████| 25/25 [00:00<00:00, 72.03it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 74.94it/s] 64%|██████▍ | 16/25 [00:00<00:00, 72.98it/s] 96%|█████████▌| 24/25 [00:00<00:00, 72.44it/s] 100%|██████████| 25/25 [00:00<00:00, 72.48it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 18.87it/s] 40%|████ | 4/10 [00:00<00:00, 18.76it/s] 60%|██████ | 6/10 [00:00<00:00, 18.72it/s] 80%|████████ | 8/10 [00:00<00:00, 18.72it/s] 100%|██████████| 10/10 [00:00<00:00, 18.69it/s] 100%|██████████| 10/10 [00:00<00:00, 18.71it/s] frame_idx: 644 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 339 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 frame_idx: 644 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 339 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 64%|██████▍ | 643/999 [10:36<06:38, 1.12s/it] 64%|██████▍ | 644/999 [10:36<04:52, 1.21it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 74.55it/s] 64%|██████▍ | 16/25 [00:00<00:00, 74.86it/s] 96%|█████████▌| 24/25 [00:00<00:00, 75.01it/s] 100%|██████████| 25/25 [00:00<00:00, 74.87it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 70.82it/s] 64%|██████▍ | 16/25 [00:00<00:00, 73.22it/s] 96%|█████████▌| 24/25 [00:00<00:00, 74.09it/s] 100%|██████████| 25/25 [00:00<00:00, 73.62it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 18.75it/s] 40%|████ | 4/10 [00:00<00:00, 18.67it/s] 60%|██████ | 6/10 [00:00<00:00, 18.66it/s] 80%|████████ | 8/10 [00:00<00:00, 18.65it/s] 100%|██████████| 10/10 [00:00<00:00, 18.64it/s] 100%|██████████| 10/10 [00:00<00:00, 18.65it/s] frame_idx: 646 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 340 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 frame_idx: 646 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 340 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 65%|██████▍ | 645/999 [10:38<06:34, 1.11s/it] 65%|██████▍ | 646/999 [10:38<04:51, 1.21it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 73.93it/s] 64%|██████▍ | 16/25 [00:00<00:00, 74.65it/s] 96%|█████████▌| 24/25 [00:00<00:00, 72.65it/s] 100%|██████████| 25/25 [00:00<00:00, 72.92it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 72.35it/s] 64%|██████▍ | 16/25 [00:00<00:00, 73.63it/s] 96%|█████████▌| 24/25 [00:00<00:00, 73.97it/s] 100%|██████████| 25/25 [00:00<00:00, 73.69it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 18.76it/s] 40%|████ | 4/10 [00:00<00:00, 18.68it/s] 60%|██████ | 6/10 [00:00<00:00, 18.70it/s] 80%|████████ | 8/10 [00:00<00:00, 18.68it/s] 100%|██████████| 10/10 [00:00<00:00, 18.66it/s] 100%|██████████| 10/10 [00:00<00:00, 18.67it/s] frame_idx: 648 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 341 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 frame_idx: 648 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 341 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 65%|██████▍ | 647/999 [10:40<06:34, 1.12s/it] 65%|██████▍ | 648/999 [10:40<04:49, 1.21it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 74.45it/s] 64%|██████▍ | 16/25 [00:00<00:00, 74.82it/s] 96%|█████████▌| 24/25 [00:00<00:00, 75.07it/s] 100%|██████████| 25/25 [00:00<00:00, 74.99it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 74.79it/s] 64%|██████▍ | 16/25 [00:00<00:00, 74.89it/s] 96%|█████████▌| 24/25 [00:00<00:00, 74.90it/s] 100%|██████████| 25/25 [00:00<00:00, 74.89it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 18.84it/s] 40%|████ | 4/10 [00:00<00:00, 18.74it/s] 60%|██████ | 6/10 [00:00<00:00, 18.72it/s] 80%|████████ | 8/10 [00:00<00:00, 18.68it/s] 100%|██████████| 10/10 [00:00<00:00, 18.68it/s] 100%|██████████| 10/10 [00:00<00:00, 18.69it/s] frame_idx: 650 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 342 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 frame_idx: 650 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 342 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 65%|██████▍ | 649/999 [10:42<06:29, 1.11s/it] 65%|██████▌ | 650/999 [10:42<04:46, 1.22it/s] 0%| | 0/25 [00:00<?, ?it/s] 28%|██▊ | 7/25 [00:00<00:00, 69.32it/s] 60%|██████ | 15/25 [00:00<00:00, 72.77it/s] 92%|█████████▏| 23/25 [00:00<00:00, 73.85it/s] 100%|██████████| 25/25 [00:00<00:00, 73.34it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 70.47it/s] 64%|██████▍ | 16/25 [00:00<00:00, 72.70it/s] 96%|█████████▌| 24/25 [00:00<00:00, 71.76it/s] 100%|██████████| 25/25 [00:00<00:00, 71.86it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 18.91it/s] 40%|████ | 4/10 [00:00<00:00, 18.77it/s] 60%|██████ | 6/10 [00:00<00:00, 18.73it/s] 80%|████████ | 8/10 [00:00<00:00, 18.70it/s] 100%|██████████| 10/10 [00:00<00:00, 18.69it/s] 100%|██████████| 10/10 [00:00<00:00, 18.71it/s] frame_idx: 652 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 343 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 frame_idx: 652 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 343 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 65%|██████▌ | 651/999 [10:44<06:29, 1.12s/it] 65%|██████▌ | 652/999 [10:44<04:46, 1.21it/s] 0%| | 0/25 [00:00<?, ?it/s] 28%|██▊ | 7/25 [00:00<00:00, 69.96it/s] 60%|██████ | 15/25 [00:00<00:00, 70.97it/s] 92%|█████████▏| 23/25 [00:00<00:00, 70.72it/s] 100%|██████████| 25/25 [00:00<00:00, 70.97it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 75.26it/s] 64%|██████▍ | 16/25 [00:00<00:00, 74.48it/s] 96%|█████████▌| 24/25 [00:00<00:00, 74.47it/s] 100%|██████████| 25/25 [00:00<00:00, 74.38it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 18.83it/s] 40%|████ | 4/10 [00:00<00:00, 18.78it/s] 60%|██████ | 6/10 [00:00<00:00, 18.71it/s] 80%|████████ | 8/10 [00:00<00:00, 18.72it/s] 100%|██████████| 10/10 [00:00<00:00, 18.70it/s] 100%|██████████| 10/10 [00:00<00:00, 18.71it/s] frame_idx: 654 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 344 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 frame_idx: 654 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 344 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 65%|██████▌ | 653/999 [10:46<06:26, 1.12s/it] 65%|██████▌ | 654/999 [10:46<04:43, 1.22it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 71.71it/s] 64%|██████▍ | 16/25 [00:00<00:00, 70.98it/s] 96%|█████████▌| 24/25 [00:00<00:00, 70.56it/s] 100%|██████████| 25/25 [00:00<00:00, 70.36it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 74.74it/s] 64%|██████▍ | 16/25 [00:00<00:00, 74.97it/s] 96%|█████████▌| 24/25 [00:00<00:00, 74.92it/s] 100%|██████████| 25/25 [00:00<00:00, 74.83it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 18.85it/s] 40%|████ | 4/10 [00:00<00:00, 18.74it/s] 60%|██████ | 6/10 [00:00<00:00, 18.69it/s] 80%|████████ | 8/10 [00:00<00:00, 18.67it/s] 100%|██████████| 10/10 [00:00<00:00, 18.67it/s] 100%|██████████| 10/10 [00:00<00:00, 18.69it/s] frame_idx: 656 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 345 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 frame_idx: 656 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 345 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 66%|██████▌ | 655/999 [10:48<06:24, 1.12s/it] 66%|██████▌ | 656/999 [10:48<04:42, 1.21it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 73.71it/s] 64%|██████▍ | 16/25 [00:00<00:00, 72.03it/s] 96%|█████████▌| 24/25 [00:00<00:00, 70.50it/s] 100%|██████████| 25/25 [00:00<00:00, 70.97it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 73.22it/s] 64%|██████▍ | 16/25 [00:00<00:00, 72.87it/s] 96%|█████████▌| 24/25 [00:00<00:00, 73.29it/s] 100%|██████████| 25/25 [00:00<00:00, 72.74it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 18.86it/s] 40%|████ | 4/10 [00:00<00:00, 18.74it/s] 60%|██████ | 6/10 [00:00<00:00, 18.72it/s] 80%|████████ | 8/10 [00:00<00:00, 18.68it/s] 100%|██████████| 10/10 [00:00<00:00, 18.69it/s] 100%|██████████| 10/10 [00:00<00:00, 18.70it/s] frame_idx: 658 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 346 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 frame_idx: 658 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 346 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 66%|██████▌ | 657/999 [10:50<06:22, 1.12s/it] 66%|██████▌ | 658/999 [10:50<04:40, 1.21it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 73.50it/s] 64%|██████▍ | 16/25 [00:00<00:00, 73.40it/s] 96%|█████████▌| 24/25 [00:00<00:00, 72.99it/s] 100%|██████████| 25/25 [00:00<00:00, 73.11it/s] 0%| | 0/25 [00:00<?, ?it/s] 28%|██▊ | 7/25 [00:00<00:00, 69.39it/s] 60%|██████ | 15/25 [00:00<00:00, 70.28it/s] 92%|█████████▏| 23/25 [00:00<00:00, 69.85it/s] 100%|██████████| 25/25 [00:00<00:00, 70.12it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 18.87it/s] 40%|████ | 4/10 [00:00<00:00, 18.69it/s] 60%|██████ | 6/10 [00:00<00:00, 18.67it/s] 80%|████████ | 8/10 [00:00<00:00, 18.69it/s] 100%|██████████| 10/10 [00:00<00:00, 18.67it/s] 100%|██████████| 10/10 [00:00<00:00, 18.68it/s] frame_idx: 660 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 347 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 frame_idx: 660 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 347 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 66%|██████▌ | 659/999 [10:52<06:21, 1.12s/it] 66%|██████▌ | 660/999 [10:52<04:40, 1.21it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 73.64it/s] 64%|██████▍ | 16/25 [00:00<00:00, 74.36it/s] 96%|█████████▌| 24/25 [00:00<00:00, 70.49it/s] 100%|██████████| 25/25 [00:00<00:00, 71.37it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 72.08it/s] 64%|██████▍ | 16/25 [00:00<00:00, 73.96it/s] 96%|█████████▌| 24/25 [00:00<00:00, 72.01it/s] 100%|██████████| 25/25 [00:00<00:00, 72.19it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 18.83it/s] 40%|████ | 4/10 [00:00<00:00, 18.78it/s] 60%|██████ | 6/10 [00:00<00:00, 18.72it/s] 80%|████████ | 8/10 [00:00<00:00, 18.73it/s] 100%|██████████| 10/10 [00:00<00:00, 18.69it/s] 100%|██████████| 10/10 [00:00<00:00, 18.71it/s] frame_idx: 662 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 348 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 frame_idx: 662 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 348 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 66%|██████▌ | 661/999 [10:54<06:17, 1.12s/it] 66%|██████▋ | 662/999 [10:54<04:37, 1.22it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 73.38it/s] 64%|██████▍ | 16/25 [00:00<00:00, 73.35it/s] 96%|█████████▌| 24/25 [00:00<00:00, 71.60it/s] 100%|██████████| 25/25 [00:00<00:00, 71.92it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 74.27it/s] 64%|██████▍ | 16/25 [00:00<00:00, 74.09it/s] 96%|█████████▌| 24/25 [00:00<00:00, 73.98it/s] 100%|██████████| 25/25 [00:00<00:00, 73.86it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 18.78it/s] 40%|████ | 4/10 [00:00<00:00, 18.70it/s] 60%|██████ | 6/10 [00:00<00:00, 18.69it/s] 80%|████████ | 8/10 [00:00<00:00, 18.67it/s] 100%|██████████| 10/10 [00:00<00:00, 18.67it/s] 100%|██████████| 10/10 [00:00<00:00, 18.68it/s] frame_idx: 664 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 349 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 frame_idx: 664 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 349 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 66%|██████▋ | 663/999 [10:56<06:14, 1.11s/it] 66%|██████▋ | 664/999 [10:56<04:33, 1.22it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 73.32it/s] 64%|██████▍ | 16/25 [00:00<00:00, 74.41it/s] 96%|█████████▌| 24/25 [00:00<00:00, 74.79it/s] 100%|██████████| 25/25 [00:00<00:00, 74.55it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 70.88it/s] 64%|██████▍ | 16/25 [00:00<00:00, 71.98it/s] 96%|█████████▌| 24/25 [00:00<00:00, 71.25it/s] 100%|██████████| 25/25 [00:00<00:00, 71.48it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 18.92it/s] 40%|████ | 4/10 [00:00<00:00, 18.81it/s] 60%|██████ | 6/10 [00:00<00:00, 18.79it/s] 80%|████████ | 8/10 [00:00<00:00, 18.72it/s] 100%|██████████| 10/10 [00:00<00:00, 18.71it/s] 100%|██████████| 10/10 [00:00<00:00, 18.73it/s] frame_idx: 666 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 350 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 frame_idx: 666 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 350 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 67%|██████▋ | 665/999 [10:58<06:09, 1.11s/it] 67%|██████▋ | 666/999 [10:58<04:30, 1.23it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 72.85it/s] 64%|██████▍ | 16/25 [00:00<00:00, 70.36it/s] 96%|█████████▌| 24/25 [00:00<00:00, 72.37it/s] 100%|██████████| 25/25 [00:00<00:00, 71.95it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 71.02it/s] 64%|██████▍ | 16/25 [00:00<00:00, 69.29it/s] 96%|█████████▌| 24/25 [00:00<00:00, 70.55it/s] 100%|██████████| 25/25 [00:00<00:00, 70.54it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 18.89it/s] 40%|████ | 4/10 [00:00<00:00, 18.80it/s] 60%|██████ | 6/10 [00:00<00:00, 18.76it/s] 80%|████████ | 8/10 [00:00<00:00, 18.76it/s] 100%|██████████| 10/10 [00:00<00:00, 18.72it/s] 100%|██████████| 10/10 [00:00<00:00, 18.74it/s] frame_idx: 668 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 351 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 frame_idx: 668 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 351 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 67%|██████▋ | 667/999 [11:00<06:08, 1.11s/it] 67%|██████▋ | 668/999 [11:00<04:30, 1.22it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 73.90it/s] 64%|██████▍ | 16/25 [00:00<00:00, 74.69it/s] 96%|█████████▌| 24/25 [00:00<00:00, 74.83it/s] 100%|██████████| 25/25 [00:00<00:00, 74.61it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 75.14it/s] 64%|██████▍ | 16/25 [00:00<00:00, 74.36it/s] 96%|█████████▌| 24/25 [00:00<00:00, 74.45it/s] 100%|██████████| 25/25 [00:00<00:00, 74.46it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 18.83it/s] 40%|████ | 4/10 [00:00<00:00, 18.73it/s] 60%|██████ | 6/10 [00:00<00:00, 18.66it/s] 80%|████████ | 8/10 [00:00<00:00, 18.67it/s] 100%|██████████| 10/10 [00:00<00:00, 18.66it/s] 100%|██████████| 10/10 [00:00<00:00, 18.67it/s] frame_idx: 670 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 352 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 frame_idx: 670 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 352 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 67%|██████▋ | 669/999 [11:01<06:05, 1.11s/it] 67%|██████▋ | 670/999 [11:02<04:27, 1.23it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 74.63it/s] 64%|██████▍ | 16/25 [00:00<00:00, 74.60it/s] 96%|█████████▌| 24/25 [00:00<00:00, 73.38it/s] 100%|██████████| 25/25 [00:00<00:00, 73.68it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 75.41it/s] 64%|██████▍ | 16/25 [00:00<00:00, 75.05it/s] 96%|█████████▌| 24/25 [00:00<00:00, 71.37it/s] 100%|██████████| 25/25 [00:00<00:00, 72.21it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 18.78it/s] 40%|████ | 4/10 [00:00<00:00, 18.73it/s] 60%|██████ | 6/10 [00:00<00:00, 18.69it/s] 80%|████████ | 8/10 [00:00<00:00, 18.63it/s] 100%|██████████| 10/10 [00:00<00:00, 18.65it/s] 100%|██████████| 10/10 [00:00<00:00, 18.66it/s] frame_idx: 672 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 353 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 frame_idx: 672 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 353 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 67%|██████▋ | 671/999 [11:03<06:04, 1.11s/it] 67%|██████▋ | 672/999 [11:04<04:27, 1.22it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 72.06it/s] 64%|██████▍ | 16/25 [00:00<00:00, 73.21it/s] 96%|█████████▌| 24/25 [00:00<00:00, 73.90it/s] 100%|██████████| 25/25 [00:00<00:00, 73.67it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 75.22it/s] 64%|██████▍ | 16/25 [00:00<00:00, 75.31it/s] 96%|█████████▌| 24/25 [00:00<00:00, 74.58it/s] 100%|██████████| 25/25 [00:00<00:00, 74.44it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 18.80it/s] 40%|████ | 4/10 [00:00<00:00, 18.72it/s] 60%|██████ | 6/10 [00:00<00:00, 18.70it/s] 80%|████████ | 8/10 [00:00<00:00, 18.69it/s] 100%|██████████| 10/10 [00:00<00:00, 18.66it/s] 100%|██████████| 10/10 [00:00<00:00, 18.67it/s] frame_idx: 674 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 354 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 frame_idx: 674 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 354 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 67%|██████▋ | 673/999 [11:05<06:01, 1.11s/it] 67%|██████▋ | 674/999 [11:05<04:25, 1.22it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 74.22it/s] 64%|██████▍ | 16/25 [00:00<00:00, 74.67it/s] 96%|█████████▌| 24/25 [00:00<00:00, 74.40it/s] 100%|██████████| 25/25 [00:00<00:00, 74.48it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 75.22it/s] 64%|██████▍ | 16/25 [00:00<00:00, 72.55it/s] 96%|█████████▌| 24/25 [00:00<00:00, 72.59it/s] 100%|██████████| 25/25 [00:00<00:00, 72.73it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 18.90it/s] 40%|████ | 4/10 [00:00<00:00, 18.77it/s] 60%|██████ | 6/10 [00:00<00:00, 18.76it/s] 80%|████████ | 8/10 [00:00<00:00, 18.73it/s] 100%|██████████| 10/10 [00:00<00:00, 18.70it/s] 100%|██████████| 10/10 [00:00<00:00, 18.73it/s] frame_idx: 676 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 355 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 frame_idx: 676 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 355 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 68%|██████▊ | 675/999 [11:07<05:59, 1.11s/it] 68%|██████▊ | 676/999 [11:07<04:23, 1.23it/s] 0%| | 0/25 [00:00<?, ?it/s] 28%|██▊ | 7/25 [00:00<00:00, 68.25it/s] 60%|██████ | 15/25 [00:00<00:00, 71.41it/s] 92%|█████████▏| 23/25 [00:00<00:00, 73.02it/s] 100%|██████████| 25/25 [00:00<00:00, 72.05it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 69.94it/s] 60%|██████ | 15/25 [00:00<00:00, 69.62it/s] 92%|█████████▏| 23/25 [00:00<00:00, 70.64it/s] 100%|██████████| 25/25 [00:00<00:00, 70.74it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 18.83it/s] 40%|████ | 4/10 [00:00<00:00, 18.73it/s] 60%|██████ | 6/10 [00:00<00:00, 18.71it/s] 80%|████████ | 8/10 [00:00<00:00, 18.72it/s] 100%|██████████| 10/10 [00:00<00:00, 18.70it/s] 100%|██████████| 10/10 [00:00<00:00, 18.71it/s] frame_idx: 678 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 356 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 frame_idx: 678 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 356 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 68%|██████▊ | 677/999 [11:09<06:00, 1.12s/it] 68%|██████▊ | 678/999 [11:09<04:24, 1.21it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 74.12it/s] 64%|██████▍ | 16/25 [00:00<00:00, 72.73it/s] 96%|█████████▌| 24/25 [00:00<00:00, 73.58it/s] 100%|██████████| 25/25 [00:00<00:00, 73.52it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 74.81it/s] 64%|██████▍ | 16/25 [00:00<00:00, 71.53it/s] 96%|█████████▌| 24/25 [00:00<00:00, 72.81it/s] 100%|██████████| 25/25 [00:00<00:00, 72.88it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 18.81it/s] 40%|████ | 4/10 [00:00<00:00, 18.71it/s] 60%|██████ | 6/10 [00:00<00:00, 18.69it/s] 80%|████████ | 8/10 [00:00<00:00, 18.67it/s] 100%|██████████| 10/10 [00:00<00:00, 18.65it/s] 100%|██████████| 10/10 [00:00<00:00, 18.67it/s] frame_idx: 680 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 357 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 frame_idx: 680 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 357 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 68%|██████▊ | 679/999 [11:11<05:58, 1.12s/it] 68%|██████▊ | 680/999 [11:11<04:23, 1.21it/s] 0%| | 0/25 [00:00<?, ?it/s] 28%|██▊ | 7/25 [00:00<00:00, 69.16it/s] 60%|██████ | 15/25 [00:00<00:00, 72.35it/s] 92%|█████████▏| 23/25 [00:00<00:00, 71.16it/s] 100%|██████████| 25/25 [00:00<00:00, 71.40it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 74.66it/s] 64%|██████▍ | 16/25 [00:00<00:00, 74.58it/s] 96%|█████████▌| 24/25 [00:00<00:00, 74.43it/s] 100%|██████████| 25/25 [00:00<00:00, 73.90it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 18.83it/s] 40%|████ | 4/10 [00:00<00:00, 18.73it/s] 60%|██████ | 6/10 [00:00<00:00, 18.69it/s] 80%|████████ | 8/10 [00:00<00:00, 18.67it/s] 100%|██████████| 10/10 [00:00<00:00, 18.64it/s] 100%|██████████| 10/10 [00:00<00:00, 18.66it/s] frame_idx: 682 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 358 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 frame_idx: 682 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 358 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 68%|██████▊ | 681/999 [11:13<05:56, 1.12s/it] 68%|██████▊ | 682/999 [11:13<04:22, 1.21it/s] 0%| | 0/25 [00:00<?, ?it/s] 28%|██▊ | 7/25 [00:00<00:00, 67.82it/s] 60%|██████ | 15/25 [00:00<00:00, 71.39it/s] 92%|█████████▏| 23/25 [00:00<00:00, 71.34it/s] 100%|██████████| 25/25 [00:00<00:00, 70.53it/s] 0%| | 0/25 [00:00<?, ?it/s] 28%|██▊ | 7/25 [00:00<00:00, 69.34it/s] 56%|█████▌ | 14/25 [00:00<00:00, 68.76it/s] 88%|████████▊ | 22/25 [00:00<00:00, 70.77it/s] 100%|██████████| 25/25 [00:00<00:00, 70.79it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 18.88it/s] 40%|████ | 4/10 [00:00<00:00, 18.77it/s] 60%|██████ | 6/10 [00:00<00:00, 18.75it/s] 80%|████████ | 8/10 [00:00<00:00, 18.72it/s] 100%|██████████| 10/10 [00:00<00:00, 18.72it/s] 100%|██████████| 10/10 [00:00<00:00, 18.73it/s] frame_idx: 684 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 359 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 frame_idx: 684 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 359 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 68%|██████▊ | 683/999 [11:15<05:57, 1.13s/it] 68%|██████▊ | 684/999 [11:15<04:21, 1.20it/s] 0%| | 0/25 [00:00<?, ?it/s] 28%|██▊ | 7/25 [00:00<00:00, 69.49it/s] 60%|██████ | 15/25 [00:00<00:00, 71.13it/s] 92%|█████████▏| 23/25 [00:00<00:00, 73.10it/s] 100%|██████████| 25/25 [00:00<00:00, 72.28it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 72.17it/s] 64%|██████▍ | 16/25 [00:00<00:00, 73.25it/s] 96%|█████████▌| 24/25 [00:00<00:00, 74.23it/s] 100%|██████████| 25/25 [00:00<00:00, 73.82it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 18.89it/s] 40%|████ | 4/10 [00:00<00:00, 18.73it/s] 60%|██████ | 6/10 [00:00<00:00, 18.69it/s] 80%|████████ | 8/10 [00:00<00:00, 18.68it/s] 100%|██████████| 10/10 [00:00<00:00, 18.64it/s] 100%|██████████| 10/10 [00:00<00:00, 18.66it/s] frame_idx: 686 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 360 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 frame_idx: 686 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 360 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 69%|██████▊ | 685/999 [11:17<05:51, 1.12s/it] 69%|██████▊ | 686/999 [11:17<04:17, 1.21it/s] 0%| | 0/25 [00:00<?, ?it/s] 28%|██▊ | 7/25 [00:00<00:00, 63.05it/s] 56%|█████▌ | 14/25 [00:00<00:00, 64.65it/s] 84%|████████▍ | 21/25 [00:00<00:00, 65.76it/s] 100%|██████████| 25/25 [00:00<00:00, 65.58it/s] 0%| | 0/25 [00:00<?, ?it/s] 28%|██▊ | 7/25 [00:00<00:00, 64.47it/s] 56%|█████▌ | 14/25 [00:00<00:00, 65.14it/s] 84%|████████▍ | 21/25 [00:00<00:00, 66.42it/s] 100%|██████████| 25/25 [00:00<00:00, 66.27it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 18.72it/s] 40%|████ | 4/10 [00:00<00:00, 18.63it/s] 60%|██████ | 6/10 [00:00<00:00, 18.59it/s] 80%|████████ | 8/10 [00:00<00:00, 18.62it/s] 100%|██████████| 10/10 [00:00<00:00, 18.62it/s] 100%|██████████| 10/10 [00:00<00:00, 18.62it/s] frame_idx: 688 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 361 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 frame_idx: 688 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 361 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 69%|██████▉ | 687/999 [11:19<06:00, 1.16s/it] 69%|██████▉ | 688/999 [11:19<04:24, 1.18it/s] 0%| | 0/25 [00:00<?, ?it/s] 28%|██▊ | 7/25 [00:00<00:00, 67.63it/s] 60%|██████ | 15/25 [00:00<00:00, 71.83it/s] 92%|█████████▏| 23/25 [00:00<00:00, 73.10it/s] 100%|██████████| 25/25 [00:00<00:00, 72.53it/s] 0%| | 0/25 [00:00<?, ?it/s] 28%|██▊ | 7/25 [00:00<00:00, 68.78it/s] 60%|██████ | 15/25 [00:00<00:00, 71.95it/s] 92%|█████████▏| 23/25 [00:00<00:00, 73.23it/s] 100%|██████████| 25/25 [00:00<00:00, 72.68it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 18.92it/s] 40%|████ | 4/10 [00:00<00:00, 18.75it/s] 60%|██████ | 6/10 [00:00<00:00, 18.70it/s] 80%|████████ | 8/10 [00:00<00:00, 18.69it/s] 100%|██████████| 10/10 [00:00<00:00, 18.68it/s] 100%|██████████| 10/10 [00:00<00:00, 18.70it/s] frame_idx: 690 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 362 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 frame_idx: 690 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 362 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 69%|██████▉ | 689/999 [11:21<05:53, 1.14s/it] 69%|██████▉ | 690/999 [11:21<04:19, 1.19it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 71.70it/s] 64%|██████▍ | 16/25 [00:00<00:00, 72.01it/s] 96%|█████████▌| 24/25 [00:00<00:00, 70.03it/s] 100%|██████████| 25/25 [00:00<00:00, 70.30it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 74.88it/s] 64%|██████▍ | 16/25 [00:00<00:00, 74.76it/s] 96%|█████████▌| 24/25 [00:00<00:00, 74.60it/s] 100%|██████████| 25/25 [00:00<00:00, 74.05it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 18.92it/s] 40%|████ | 4/10 [00:00<00:00, 18.77it/s] 60%|██████ | 6/10 [00:00<00:00, 18.71it/s] 80%|████████ | 8/10 [00:00<00:00, 18.67it/s] 100%|██████████| 10/10 [00:00<00:00, 18.65it/s] 100%|██████████| 10/10 [00:00<00:00, 18.68it/s] frame_idx: 692 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 363 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 frame_idx: 692 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 363 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 69%|██████▉ | 691/999 [11:23<05:48, 1.13s/it] 69%|██████▉ | 692/999 [11:23<04:15, 1.20it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 73.50it/s] 64%|██████▍ | 16/25 [00:00<00:00, 70.67it/s] 96%|█████████▌| 24/25 [00:00<00:00, 71.00it/s] 100%|██████████| 25/25 [00:00<00:00, 71.27it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 72.08it/s] 64%|██████▍ | 16/25 [00:00<00:00, 73.71it/s] 96%|█████████▌| 24/25 [00:00<00:00, 73.38it/s] 100%|██████████| 25/25 [00:00<00:00, 73.15it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 18.84it/s] 40%|████ | 4/10 [00:00<00:00, 18.77it/s] 60%|██████ | 6/10 [00:00<00:00, 18.73it/s] 80%|████████ | 8/10 [00:00<00:00, 18.68it/s] 100%|██████████| 10/10 [00:00<00:00, 18.70it/s] 100%|██████████| 10/10 [00:00<00:00, 18.71it/s] frame_idx: 694 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 364 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 frame_idx: 694 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 364 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 69%|██████▉ | 693/999 [11:25<05:48, 1.14s/it] 69%|██████▉ | 694/999 [11:25<04:17, 1.18it/s] 0%| | 0/25 [00:00<?, ?it/s] 28%|██▊ | 7/25 [00:00<00:00, 64.90it/s] 60%|██████ | 15/25 [00:00<00:00, 68.99it/s] 92%|█████████▏| 23/25 [00:00<00:00, 70.95it/s] 100%|██████████| 25/25 [00:00<00:00, 70.21it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 74.76it/s] 64%|██████▍ | 16/25 [00:00<00:00, 69.58it/s] 96%|█████████▌| 24/25 [00:00<00:00, 71.00it/s] 100%|██████████| 25/25 [00:00<00:00, 71.21it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 16.13it/s] 40%|████ | 4/10 [00:00<00:00, 17.50it/s] 60%|██████ | 6/10 [00:00<00:00, 18.01it/s] 80%|████████ | 8/10 [00:00<00:00, 18.27it/s] 100%|██████████| 10/10 [00:00<00:00, 18.43it/s] 100%|██████████| 10/10 [00:00<00:00, 18.09it/s] frame_idx: 696 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 365 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 frame_idx: 696 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 365 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 70%|██████▉ | 695/999 [11:27<06:00, 1.18s/it] 70%|██████▉ | 696/999 [11:27<04:23, 1.15it/s] 0%| | 0/25 [00:00<?, ?it/s] 28%|██▊ | 7/25 [00:00<00:00, 66.52it/s] 56%|█████▌ | 14/25 [00:00<00:00, 68.24it/s] 84%|████████▍ | 21/25 [00:00<00:00, 68.98it/s] 100%|██████████| 25/25 [00:00<00:00, 68.94it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 74.48it/s] 64%|██████▍ | 16/25 [00:00<00:00, 74.76it/s] 96%|█████████▌| 24/25 [00:00<00:00, 74.53it/s] 100%|██████████| 25/25 [00:00<00:00, 74.51it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 18.82it/s] 40%|████ | 4/10 [00:00<00:00, 18.75it/s] 60%|██████ | 6/10 [00:00<00:00, 18.72it/s] 80%|████████ | 8/10 [00:00<00:00, 18.71it/s] 100%|██████████| 10/10 [00:00<00:00, 18.70it/s] 100%|██████████| 10/10 [00:00<00:00, 18.71it/s] frame_idx: 698 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 366 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 frame_idx: 698 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 366 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 70%|██████▉ | 697/999 [11:29<05:49, 1.16s/it] 70%|██████▉ | 698/999 [11:29<04:15, 1.18it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 70.11it/s] 64%|██████▍ | 16/25 [00:00<00:00, 71.96it/s] 96%|█████████▌| 24/25 [00:00<00:00, 73.23it/s] 100%|██████████| 25/25 [00:00<00:00, 72.78it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 75.24it/s] 64%|██████▍ | 16/25 [00:00<00:00, 74.94it/s] 96%|█████████▌| 24/25 [00:00<00:00, 74.27it/s] 100%|██████████| 25/25 [00:00<00:00, 74.49it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 18.86it/s] 40%|████ | 4/10 [00:00<00:00, 18.72it/s] 60%|██████ | 6/10 [00:00<00:00, 18.70it/s] 80%|████████ | 8/10 [00:00<00:00, 18.71it/s] 100%|██████████| 10/10 [00:00<00:00, 18.71it/s] 100%|██████████| 10/10 [00:00<00:00, 18.71it/s] frame_idx: 700 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 367 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 frame_idx: 700 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 367 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 70%|██████▉ | 699/999 [11:31<05:38, 1.13s/it] 70%|███████ | 700/999 [11:31<04:08, 1.20it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 73.93it/s] 64%|██████▍ | 16/25 [00:00<00:00, 71.42it/s] 96%|█████████▌| 24/25 [00:00<00:00, 72.71it/s] 100%|██████████| 25/25 [00:00<00:00, 72.69it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 75.30it/s] 64%|██████▍ | 16/25 [00:00<00:00, 75.16it/s] 96%|█████████▌| 24/25 [00:00<00:00, 75.11it/s] 100%|██████████| 25/25 [00:00<00:00, 75.08it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 18.79it/s] 40%|████ | 4/10 [00:00<00:00, 18.73it/s] 60%|██████ | 6/10 [00:00<00:00, 18.74it/s] 80%|████████ | 8/10 [00:00<00:00, 18.73it/s] 100%|██████████| 10/10 [00:00<00:00, 18.71it/s] 100%|██████████| 10/10 [00:00<00:00, 18.72it/s] frame_idx: 702 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 368 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 frame_idx: 702 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 368 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 70%|███████ | 701/999 [11:33<05:32, 1.12s/it] 70%|███████ | 702/999 [11:33<04:03, 1.22it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 73.70it/s] 64%|██████▍ | 16/25 [00:00<00:00, 74.09it/s] 96%|█████████▌| 24/25 [00:00<00:00, 71.48it/s] 100%|██████████| 25/25 [00:00<00:00, 71.95it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 71.23it/s] 64%|██████▍ | 16/25 [00:00<00:00, 69.77it/s] 92%|█████████▏| 23/25 [00:00<00:00, 69.65it/s] 100%|██████████| 25/25 [00:00<00:00, 69.47it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 18.84it/s] 40%|████ | 4/10 [00:00<00:00, 18.72it/s] 60%|██████ | 6/10 [00:00<00:00, 18.69it/s] 80%|████████ | 8/10 [00:00<00:00, 18.67it/s] 100%|██████████| 10/10 [00:00<00:00, 18.67it/s] 100%|██████████| 10/10 [00:00<00:00, 18.68it/s] frame_idx: 704 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 369 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 frame_idx: 704 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 369 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 70%|███████ | 703/999 [11:35<05:31, 1.12s/it] 70%|███████ | 704/999 [11:35<04:03, 1.21it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 73.88it/s] 64%|██████▍ | 16/25 [00:00<00:00, 74.14it/s] 96%|█████████▌| 24/25 [00:00<00:00, 71.80it/s] 100%|██████████| 25/25 [00:00<00:00, 71.75it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 71.53it/s] 64%|██████▍ | 16/25 [00:00<00:00, 73.35it/s] 96%|█████████▌| 24/25 [00:00<00:00, 73.98it/s] 100%|██████████| 25/25 [00:00<00:00, 73.62it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 18.83it/s] 40%|████ | 4/10 [00:00<00:00, 18.72it/s] 60%|██████ | 6/10 [00:00<00:00, 18.72it/s] 80%|████████ | 8/10 [00:00<00:00, 18.68it/s] 100%|██████████| 10/10 [00:00<00:00, 18.68it/s] 100%|██████████| 10/10 [00:00<00:00, 18.69it/s] frame_idx: 706 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 370 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 frame_idx: 706 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 370 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 71%|███████ | 705/999 [11:37<05:28, 1.12s/it] 71%|███████ | 706/999 [11:37<04:01, 1.21it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 72.24it/s] 64%|██████▍ | 16/25 [00:00<00:00, 70.72it/s] 96%|█████████▌| 24/25 [00:00<00:00, 69.52it/s] 100%|██████████| 25/25 [00:00<00:00, 69.91it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 74.06it/s] 64%|██████▍ | 16/25 [00:00<00:00, 74.34it/s] 96%|█████████▌| 24/25 [00:00<00:00, 74.75it/s] 100%|██████████| 25/25 [00:00<00:00, 74.57it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 18.76it/s] 40%|████ | 4/10 [00:00<00:00, 18.67it/s] 60%|██████ | 6/10 [00:00<00:00, 18.64it/s] 80%|████████ | 8/10 [00:00<00:00, 18.63it/s] 100%|██████████| 10/10 [00:00<00:00, 18.66it/s] 100%|██████████| 10/10 [00:00<00:00, 18.65it/s] frame_idx: 708 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 371 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 frame_idx: 708 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 371 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 71%|███████ | 707/999 [11:39<05:28, 1.13s/it] 71%|███████ | 708/999 [11:39<04:01, 1.21it/s] 0%| | 0/25 [00:00<?, ?it/s] 28%|██▊ | 7/25 [00:00<00:00, 67.49it/s] 60%|██████ | 15/25 [00:00<00:00, 69.53it/s] 88%|████████▊ | 22/25 [00:00<00:00, 69.27it/s] 100%|██████████| 25/25 [00:00<00:00, 69.09it/s] 0%| | 0/25 [00:00<?, ?it/s] 28%|██▊ | 7/25 [00:00<00:00, 69.26it/s] 56%|█████▌ | 14/25 [00:00<00:00, 68.61it/s] 88%|████████▊ | 22/25 [00:00<00:00, 71.52it/s] 100%|██████████| 25/25 [00:00<00:00, 71.21it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 18.81it/s] 40%|████ | 4/10 [00:00<00:00, 18.73it/s] 60%|██████ | 6/10 [00:00<00:00, 18.72it/s] 80%|████████ | 8/10 [00:00<00:00, 18.68it/s] 100%|██████████| 10/10 [00:00<00:00, 18.71it/s] 100%|██████████| 10/10 [00:00<00:00, 18.70it/s] frame_idx: 710 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 372 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 frame_idx: 710 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 372 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 71%|███████ | 709/999 [11:41<05:26, 1.13s/it] 71%|███████ | 710/999 [11:41<03:59, 1.21it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 72.46it/s] 64%|██████▍ | 16/25 [00:00<00:00, 73.65it/s] 96%|█████████▌| 24/25 [00:00<00:00, 74.17it/s] 100%|██████████| 25/25 [00:00<00:00, 73.91it/s] 0%| | 0/25 [00:00<?, ?it/s] 28%|██▊ | 7/25 [00:00<00:00, 66.05it/s] 56%|█████▌ | 14/25 [00:00<00:00, 67.95it/s] 88%|████████▊ | 22/25 [00:00<00:00, 71.33it/s] 100%|██████████| 25/25 [00:00<00:00, 70.18it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 18.81it/s] 40%|████ | 4/10 [00:00<00:00, 18.75it/s] 60%|██████ | 6/10 [00:00<00:00, 18.73it/s] 80%|████████ | 8/10 [00:00<00:00, 18.71it/s] 100%|██████████| 10/10 [00:00<00:00, 18.71it/s] 100%|██████████| 10/10 [00:00<00:00, 18.72it/s] frame_idx: 712 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 373 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 frame_idx: 712 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 373 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 71%|███████ | 711/999 [11:43<05:22, 1.12s/it] 71%|███████▏ | 712/999 [11:43<03:57, 1.21it/s] 0%| | 0/25 [00:00<?, ?it/s] 28%|██▊ | 7/25 [00:00<00:00, 68.17it/s] 60%|██████ | 15/25 [00:00<00:00, 70.75it/s] 92%|█████████▏| 23/25 [00:00<00:00, 72.74it/s] 100%|██████████| 25/25 [00:00<00:00, 71.94it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 71.92it/s] 64%|██████▍ | 16/25 [00:00<00:00, 71.65it/s] 96%|█████████▌| 24/25 [00:00<00:00, 70.70it/s] 100%|██████████| 25/25 [00:00<00:00, 70.92it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 18.76it/s] 40%|████ | 4/10 [00:00<00:00, 18.70it/s] 60%|██████ | 6/10 [00:00<00:00, 18.66it/s] 80%|████████ | 8/10 [00:00<00:00, 18.65it/s] 100%|██████████| 10/10 [00:00<00:00, 18.63it/s] 100%|██████████| 10/10 [00:00<00:00, 18.64it/s] frame_idx: 714 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 374 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 frame_idx: 714 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 374 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 71%|███████▏ | 713/999 [11:45<05:20, 1.12s/it] 71%|███████▏ | 714/999 [11:45<03:54, 1.21it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 73.92it/s] 64%|██████▍ | 16/25 [00:00<00:00, 72.16it/s] 96%|█████████▌| 24/25 [00:00<00:00, 73.06it/s] 100%|██████████| 25/25 [00:00<00:00, 72.84it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 72.91it/s] 64%|██████▍ | 16/25 [00:00<00:00, 70.61it/s] 96%|█████████▌| 24/25 [00:00<00:00, 70.03it/s] 100%|██████████| 25/25 [00:00<00:00, 70.34it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 18.83it/s] 40%|████ | 4/10 [00:00<00:00, 18.76it/s] 60%|██████ | 6/10 [00:00<00:00, 18.73it/s] 80%|████████ | 8/10 [00:00<00:00, 18.72it/s] 100%|██████████| 10/10 [00:00<00:00, 18.71it/s] 100%|██████████| 10/10 [00:00<00:00, 18.72it/s] frame_idx: 716 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 375 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 frame_idx: 716 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 375 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 72%|███████▏ | 715/999 [11:47<05:19, 1.12s/it] 72%|███████▏ | 716/999 [11:47<03:53, 1.21it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 74.35it/s] 64%|██████▍ | 16/25 [00:00<00:00, 74.63it/s] 96%|█████████▌| 24/25 [00:00<00:00, 72.15it/s] 100%|██████████| 25/25 [00:00<00:00, 72.69it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 72.27it/s] 64%|██████▍ | 16/25 [00:00<00:00, 69.55it/s] 92%|█████████▏| 23/25 [00:00<00:00, 69.39it/s] 100%|██████████| 25/25 [00:00<00:00, 69.69it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 18.89it/s] 40%|████ | 4/10 [00:00<00:00, 18.76it/s] 60%|██████ | 6/10 [00:00<00:00, 18.70it/s] 80%|████████ | 8/10 [00:00<00:00, 18.70it/s] 100%|██████████| 10/10 [00:00<00:00, 18.67it/s] 100%|██████████| 10/10 [00:00<00:00, 18.69it/s] frame_idx: 718 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 376 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 frame_idx: 718 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 376 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 72%|███████▏ | 717/999 [11:49<05:16, 1.12s/it] 72%|███████▏ | 718/999 [11:49<03:51, 1.21it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 71.48it/s] 64%|██████▍ | 16/25 [00:00<00:00, 69.87it/s] 92%|█████████▏| 23/25 [00:00<00:00, 69.80it/s] 100%|██████████| 25/25 [00:00<00:00, 70.36it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 72.91it/s] 64%|██████▍ | 16/25 [00:00<00:00, 73.12it/s] 96%|█████████▌| 24/25 [00:00<00:00, 71.12it/s] 100%|██████████| 25/25 [00:00<00:00, 71.49it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 18.79it/s] 40%|████ | 4/10 [00:00<00:00, 18.71it/s] 60%|██████ | 6/10 [00:00<00:00, 18.66it/s] 80%|████████ | 8/10 [00:00<00:00, 18.65it/s] 100%|██████████| 10/10 [00:00<00:00, 18.66it/s] 100%|██████████| 10/10 [00:00<00:00, 18.66it/s] frame_idx: 720 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 377 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 frame_idx: 720 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 377 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 72%|███████▏ | 719/999 [11:50<05:13, 1.12s/it] 72%|███████▏ | 720/999 [11:51<03:49, 1.21it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 74.18it/s] 64%|██████▍ | 16/25 [00:00<00:00, 74.66it/s] 96%|█████████▌| 24/25 [00:00<00:00, 74.64it/s] 100%|██████████| 25/25 [00:00<00:00, 74.63it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 74.43it/s] 64%|██████▍ | 16/25 [00:00<00:00, 74.65it/s] 96%|█████████▌| 24/25 [00:00<00:00, 73.56it/s] 100%|██████████| 25/25 [00:00<00:00, 73.59it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 18.90it/s] 40%|████ | 4/10 [00:00<00:00, 18.75it/s] 60%|██████ | 6/10 [00:00<00:00, 18.73it/s] 80%|████████ | 8/10 [00:00<00:00, 18.74it/s] 100%|██████████| 10/10 [00:00<00:00, 18.73it/s] 100%|██████████| 10/10 [00:00<00:00, 18.74it/s] frame_idx: 722 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 378 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 frame_idx: 722 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 378 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 72%|███████▏ | 721/999 [11:52<05:09, 1.11s/it] 72%|███████▏ | 722/999 [11:52<03:46, 1.22it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 74.43it/s] 64%|██████▍ | 16/25 [00:00<00:00, 74.77it/s] 96%|█████████▌| 24/25 [00:00<00:00, 74.75it/s] 100%|██████████| 25/25 [00:00<00:00, 74.73it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 74.75it/s] 64%|██████▍ | 16/25 [00:00<00:00, 74.95it/s] 96%|█████████▌| 24/25 [00:00<00:00, 74.81it/s] 100%|██████████| 25/25 [00:00<00:00, 74.85it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 18.87it/s] 40%|████ | 4/10 [00:00<00:00, 18.78it/s] 60%|██████ | 6/10 [00:00<00:00, 18.77it/s] 80%|████████ | 8/10 [00:00<00:00, 18.74it/s] 100%|██████████| 10/10 [00:00<00:00, 18.73it/s] 100%|██████████| 10/10 [00:00<00:00, 18.74it/s] frame_idx: 724 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 379 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 frame_idx: 724 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 379 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 72%|███████▏ | 723/999 [11:54<05:07, 1.11s/it] 72%|███████▏ | 724/999 [11:54<03:45, 1.22it/s] 0%| | 0/25 [00:00<?, ?it/s] 28%|██▊ | 7/25 [00:00<00:00, 68.21it/s] 60%|██████ | 15/25 [00:00<00:00, 70.67it/s] 92%|█████████▏| 23/25 [00:00<00:00, 71.67it/s] 100%|██████████| 25/25 [00:00<00:00, 71.44it/s] 0%| | 0/25 [00:00<?, ?it/s] 28%|██▊ | 7/25 [00:00<00:00, 69.35it/s] 56%|█████▌ | 14/25 [00:00<00:00, 69.65it/s] 88%|████████▊ | 22/25 [00:00<00:00, 69.95it/s] 100%|██████████| 25/25 [00:00<00:00, 70.13it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 18.80it/s] 40%|████ | 4/10 [00:00<00:00, 18.69it/s] 60%|██████ | 6/10 [00:00<00:00, 18.66it/s] 80%|████████ | 8/10 [00:00<00:00, 18.62it/s] 100%|██████████| 10/10 [00:00<00:00, 18.62it/s] 100%|██████████| 10/10 [00:00<00:00, 18.63it/s] frame_idx: 726 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 380 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 frame_idx: 726 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 380 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 73%|███████▎ | 725/999 [11:56<05:06, 1.12s/it] 73%|███████▎ | 726/999 [11:56<03:45, 1.21it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 72.04it/s] 64%|██████▍ | 16/25 [00:00<00:00, 73.19it/s] 96%|█████████▌| 24/25 [00:00<00:00, 73.70it/s] 100%|██████████| 25/25 [00:00<00:00, 73.45it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 70.78it/s] 64%|██████▍ | 16/25 [00:00<00:00, 71.31it/s] 96%|█████████▌| 24/25 [00:00<00:00, 72.21it/s] 100%|██████████| 25/25 [00:00<00:00, 72.05it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 18.77it/s] 40%|████ | 4/10 [00:00<00:00, 18.74it/s] 60%|██████ | 6/10 [00:00<00:00, 18.71it/s] 80%|████████ | 8/10 [00:00<00:00, 18.69it/s] 100%|██████████| 10/10 [00:00<00:00, 18.72it/s] 100%|██████████| 10/10 [00:00<00:00, 18.72it/s] frame_idx: 728 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 381 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 frame_idx: 728 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 381 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 73%|███████▎ | 727/999 [11:58<05:04, 1.12s/it] 73%|███████▎ | 728/999 [11:58<03:42, 1.22it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 73.44it/s] 64%|██████▍ | 16/25 [00:00<00:00, 74.36it/s] 96%|█████████▌| 24/25 [00:00<00:00, 74.54it/s] 100%|██████████| 25/25 [00:00<00:00, 73.93it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 70.98it/s] 64%|██████▍ | 16/25 [00:00<00:00, 70.79it/s] 96%|█████████▌| 24/25 [00:00<00:00, 71.95it/s] 100%|██████████| 25/25 [00:00<00:00, 71.60it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 18.80it/s] 40%|████ | 4/10 [00:00<00:00, 18.71it/s] 60%|██████ | 6/10 [00:00<00:00, 18.68it/s] 80%|████████ | 8/10 [00:00<00:00, 18.65it/s] 100%|██████████| 10/10 [00:00<00:00, 18.63it/s] 100%|██████████| 10/10 [00:00<00:00, 18.66it/s] frame_idx: 730 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 382 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 frame_idx: 730 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 382 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 73%|███████▎ | 729/999 [12:00<05:01, 1.12s/it] 73%|███████▎ | 730/999 [12:00<03:41, 1.21it/s] 0%| | 0/25 [00:00<?, ?it/s] 28%|██▊ | 7/25 [00:00<00:00, 68.51it/s] 56%|█████▌ | 14/25 [00:00<00:00, 67.95it/s] 88%|████████▊ | 22/25 [00:00<00:00, 70.40it/s] 100%|██████████| 25/25 [00:00<00:00, 70.35it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 74.80it/s] 64%|██████▍ | 16/25 [00:00<00:00, 74.62it/s] 96%|█████████▌| 24/25 [00:00<00:00, 74.42it/s] 100%|██████████| 25/25 [00:00<00:00, 74.23it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 18.90it/s] 40%|████ | 4/10 [00:00<00:00, 18.78it/s] 60%|██████ | 6/10 [00:00<00:00, 18.75it/s] 80%|████████ | 8/10 [00:00<00:00, 18.73it/s] 100%|██████████| 10/10 [00:00<00:00, 18.72it/s] 100%|██████████| 10/10 [00:00<00:00, 18.73it/s] frame_idx: 732 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 383 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 frame_idx: 732 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 383 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 73%|███████▎ | 731/999 [12:02<04:59, 1.12s/it] 73%|███████▎ | 732/999 [12:02<03:39, 1.22it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 70.67it/s] 64%|██████▍ | 16/25 [00:00<00:00, 69.69it/s] 92%|█████████▏| 23/25 [00:00<00:00, 69.35it/s] 100%|██████████| 25/25 [00:00<00:00, 69.52it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 73.10it/s] 64%|██████▍ | 16/25 [00:00<00:00, 73.83it/s] 96%|█████████▌| 24/25 [00:00<00:00, 74.15it/s] 100%|██████████| 25/25 [00:00<00:00, 74.01it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 18.87it/s] 40%|████ | 4/10 [00:00<00:00, 18.70it/s] 60%|██████ | 6/10 [00:00<00:00, 18.66it/s] 80%|████████ | 8/10 [00:00<00:00, 18.65it/s] 100%|██████████| 10/10 [00:00<00:00, 18.67it/s] 100%|██████████| 10/10 [00:00<00:00, 18.67it/s] frame_idx: 734 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 384 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 frame_idx: 734 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 384 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 73%|███████▎ | 733/999 [12:04<04:58, 1.12s/it] 73%|███████▎ | 734/999 [12:04<03:37, 1.22it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 73.13it/s] 64%|██████▍ | 16/25 [00:00<00:00, 70.71it/s] 96%|█████████▌| 24/25 [00:00<00:00, 72.53it/s] 100%|██████████| 25/25 [00:00<00:00, 72.11it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 71.41it/s] 64%|██████▍ | 16/25 [00:00<00:00, 73.00it/s] 96%|█████████▌| 24/25 [00:00<00:00, 73.59it/s] 100%|██████████| 25/25 [00:00<00:00, 73.33it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 18.84it/s] 40%|████ | 4/10 [00:00<00:00, 18.70it/s] 60%|██████ | 6/10 [00:00<00:00, 18.69it/s] 80%|████████ | 8/10 [00:00<00:00, 18.68it/s] 100%|██████████| 10/10 [00:00<00:00, 18.68it/s] 100%|██████████| 10/10 [00:00<00:00, 18.68it/s] frame_idx: 736 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 385 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 frame_idx: 736 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 385 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 74%|███████▎ | 735/999 [12:06<04:54, 1.11s/it] 74%|███████▎ | 736/999 [12:06<03:36, 1.22it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 71.54it/s] 64%|██████▍ | 16/25 [00:00<00:00, 71.73it/s] 96%|█████████▌| 24/25 [00:00<00:00, 73.14it/s] 100%|██████████| 25/25 [00:00<00:00, 72.76it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 74.74it/s] 64%|██████▍ | 16/25 [00:00<00:00, 74.84it/s] 96%|█████████▌| 24/25 [00:00<00:00, 74.56it/s] 100%|██████████| 25/25 [00:00<00:00, 74.64it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 18.90it/s] 40%|████ | 4/10 [00:00<00:00, 18.75it/s] 60%|██████ | 6/10 [00:00<00:00, 18.73it/s] 80%|████████ | 8/10 [00:00<00:00, 18.54it/s] 100%|██████████| 10/10 [00:00<00:00, 18.57it/s] 100%|██████████| 10/10 [00:00<00:00, 18.62it/s] frame_idx: 738 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 386 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 frame_idx: 738 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 386 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 74%|███████▍ | 737/999 [12:08<04:50, 1.11s/it] 74%|███████▍ | 738/999 [12:08<03:33, 1.22it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 74.04it/s] 64%|██████▍ | 16/25 [00:00<00:00, 74.54it/s] 96%|█████████▌| 24/25 [00:00<00:00, 72.35it/s] 100%|██████████| 25/25 [00:00<00:00, 72.67it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 72.60it/s] 64%|██████▍ | 16/25 [00:00<00:00, 74.02it/s] 96%|█████████▌| 24/25 [00:00<00:00, 74.36it/s] 100%|██████████| 25/25 [00:00<00:00, 74.15it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 18.82it/s] 40%|████ | 4/10 [00:00<00:00, 18.80it/s] 60%|██████ | 6/10 [00:00<00:00, 18.73it/s] 80%|████████ | 8/10 [00:00<00:00, 18.71it/s] 100%|██████████| 10/10 [00:00<00:00, 18.67it/s] 100%|██████████| 10/10 [00:00<00:00, 18.69it/s] frame_idx: 740 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 387 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 frame_idx: 740 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 387 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 74%|███████▍ | 739/999 [12:10<04:49, 1.11s/it] 74%|███████▍ | 740/999 [12:10<03:31, 1.22it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 73.82it/s] 64%|██████▍ | 16/25 [00:00<00:00, 73.57it/s] 96%|█████████▌| 24/25 [00:00<00:00, 72.24it/s] 100%|██████████| 25/25 [00:00<00:00, 72.37it/s] 0%| | 0/25 [00:00<?, ?it/s] 28%|██▊ | 7/25 [00:00<00:00, 69.51it/s] 60%|██████ | 15/25 [00:00<00:00, 72.88it/s] 92%|█████████▏| 23/25 [00:00<00:00, 70.88it/s] 100%|██████████| 25/25 [00:00<00:00, 71.08it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 18.85it/s] 40%|████ | 4/10 [00:00<00:00, 18.73it/s] 60%|██████ | 6/10 [00:00<00:00, 18.71it/s] 80%|████████ | 8/10 [00:00<00:00, 18.68it/s] 100%|██████████| 10/10 [00:00<00:00, 18.68it/s] 100%|██████████| 10/10 [00:00<00:00, 18.69it/s] frame_idx: 742 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 388 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 frame_idx: 742 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 388 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 74%|███████▍ | 741/999 [12:12<04:48, 1.12s/it] 74%|███████▍ | 742/999 [12:12<03:31, 1.22it/s] 0%| | 0/25 [00:00<?, ?it/s] 28%|██▊ | 7/25 [00:00<00:00, 68.71it/s] 60%|██████ | 15/25 [00:00<00:00, 71.34it/s] 92%|█████████▏| 23/25 [00:00<00:00, 72.17it/s] 100%|██████████| 25/25 [00:00<00:00, 71.41it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 70.84it/s] 64%|██████▍ | 16/25 [00:00<00:00, 73.37it/s] 96%|█████████▌| 24/25 [00:00<00:00, 72.83it/s] 100%|██████████| 25/25 [00:00<00:00, 72.82it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 18.88it/s] 40%|████ | 4/10 [00:00<00:00, 18.76it/s] 60%|██████ | 6/10 [00:00<00:00, 18.73it/s] 80%|████████ | 8/10 [00:00<00:00, 18.72it/s] 100%|██████████| 10/10 [00:00<00:00, 18.67it/s] 100%|██████████| 10/10 [00:00<00:00, 18.70it/s] frame_idx: 744 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 389 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 frame_idx: 744 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 389 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 74%|███████▍ | 743/999 [12:14<04:46, 1.12s/it] 74%|███████▍ | 744/999 [12:14<03:29, 1.22it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 73.87it/s] 64%|██████▍ | 16/25 [00:00<00:00, 74.44it/s] 96%|█████████▌| 24/25 [00:00<00:00, 71.54it/s] 100%|██████████| 25/25 [00:00<00:00, 72.03it/s] 0%| | 0/25 [00:00<?, ?it/s] 28%|██▊ | 7/25 [00:00<00:00, 69.64it/s] 56%|█████▌ | 14/25 [00:00<00:00, 69.20it/s] 88%|████████▊ | 22/25 [00:00<00:00, 70.56it/s] 100%|██████████| 25/25 [00:00<00:00, 70.86it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 18.83it/s] 40%|████ | 4/10 [00:00<00:00, 18.71it/s] 60%|██████ | 6/10 [00:00<00:00, 18.66it/s] 80%|████████ | 8/10 [00:00<00:00, 18.65it/s] 100%|██████████| 10/10 [00:00<00:00, 18.68it/s] 100%|██████████| 10/10 [00:00<00:00, 18.68it/s] frame_idx: 746 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 390 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 frame_idx: 746 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 390 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 75%|███████▍ | 745/999 [12:16<04:44, 1.12s/it] 75%|███████▍ | 746/999 [12:16<03:28, 1.21it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 73.88it/s] 64%|██████▍ | 16/25 [00:00<00:00, 74.54it/s] 96%|█████████▌| 24/25 [00:00<00:00, 74.76it/s] 100%|██████████| 25/25 [00:00<00:00, 74.64it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 74.66it/s] 64%|██████▍ | 16/25 [00:00<00:00, 71.05it/s] 96%|█████████▌| 24/25 [00:00<00:00, 72.14it/s] 100%|██████████| 25/25 [00:00<00:00, 72.01it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 18.80it/s] 40%|████ | 4/10 [00:00<00:00, 18.70it/s] 60%|██████ | 6/10 [00:00<00:00, 18.67it/s] 80%|████████ | 8/10 [00:00<00:00, 18.68it/s] 100%|██████████| 10/10 [00:00<00:00, 18.69it/s] 100%|██████████| 10/10 [00:00<00:00, 18.69it/s] frame_idx: 748 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 391 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 frame_idx: 748 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 391 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 75%|███████▍ | 747/999 [12:18<04:41, 1.12s/it] 75%|███████▍ | 748/999 [12:18<03:26, 1.22it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 74.15it/s] 64%|██████▍ | 16/25 [00:00<00:00, 70.71it/s] 96%|█████████▌| 24/25 [00:00<00:00, 69.94it/s] 100%|██████████| 25/25 [00:00<00:00, 70.65it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 75.02it/s] 64%|██████▍ | 16/25 [00:00<00:00, 72.39it/s] 96%|█████████▌| 24/25 [00:00<00:00, 73.23it/s] 100%|██████████| 25/25 [00:00<00:00, 73.35it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 18.83it/s] 40%|████ | 4/10 [00:00<00:00, 18.73it/s] 60%|██████ | 6/10 [00:00<00:00, 18.69it/s] 80%|████████ | 8/10 [00:00<00:00, 18.71it/s] 100%|██████████| 10/10 [00:00<00:00, 18.73it/s] 100%|██████████| 10/10 [00:00<00:00, 18.72it/s] frame_idx: 750 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 392 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 frame_idx: 750 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 392 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 75%|███████▍ | 749/999 [12:20<04:39, 1.12s/it] 75%|███████▌ | 750/999 [12:20<03:25, 1.21it/s] 0%| | 0/25 [00:00<?, ?it/s] 28%|██▊ | 7/25 [00:00<00:00, 63.90it/s] 60%|██████ | 15/25 [00:00<00:00, 69.98it/s] 92%|█████████▏| 23/25 [00:00<00:00, 69.10it/s] 100%|██████████| 25/25 [00:00<00:00, 68.75it/s] 0%| | 0/25 [00:00<?, ?it/s] 28%|██▊ | 7/25 [00:00<00:00, 69.46it/s] 56%|█████▌ | 14/25 [00:00<00:00, 69.07it/s] 84%|████████▍ | 21/25 [00:00<00:00, 69.24it/s] 100%|██████████| 25/25 [00:00<00:00, 69.15it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 18.85it/s] 40%|████ | 4/10 [00:00<00:00, 18.74it/s] 60%|██████ | 6/10 [00:00<00:00, 18.65it/s] 80%|████████ | 8/10 [00:00<00:00, 18.65it/s] 100%|██████████| 10/10 [00:00<00:00, 18.67it/s] 100%|██████████| 10/10 [00:00<00:00, 18.68it/s] frame_idx: 752 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 393 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 frame_idx: 752 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 393 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 75%|███████▌ | 751/999 [12:21<04:40, 1.13s/it] 75%|███████▌ | 752/999 [12:22<03:25, 1.20it/s] 0%| | 0/25 [00:00<?, ?it/s] 28%|██▊ | 7/25 [00:00<00:00, 67.65it/s] 56%|█████▌ | 14/25 [00:00<00:00, 68.38it/s] 88%|████████▊ | 22/25 [00:00<00:00, 71.12it/s] 100%|██████████| 25/25 [00:00<00:00, 70.82it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 74.72it/s] 64%|██████▍ | 16/25 [00:00<00:00, 74.60it/s] 96%|█████████▌| 24/25 [00:00<00:00, 72.23it/s] 100%|██████████| 25/25 [00:00<00:00, 72.62it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 18.88it/s] 40%|████ | 4/10 [00:00<00:00, 18.74it/s] 60%|██████ | 6/10 [00:00<00:00, 18.72it/s] 80%|████████ | 8/10 [00:00<00:00, 18.65it/s] 100%|██████████| 10/10 [00:00<00:00, 18.63it/s] 100%|██████████| 10/10 [00:00<00:00, 18.66it/s] frame_idx: 754 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 394 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 frame_idx: 754 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 394 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 75%|███████▌ | 753/999 [12:23<04:37, 1.13s/it] 75%|███████▌ | 754/999 [12:24<03:23, 1.20it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 73.50it/s] 64%|██████▍ | 16/25 [00:00<00:00, 73.21it/s] 96%|█████████▌| 24/25 [00:00<00:00, 73.83it/s] 100%|██████████| 25/25 [00:00<00:00, 73.75it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 75.36it/s] 64%|██████▍ | 16/25 [00:00<00:00, 75.32it/s] 96%|█████████▌| 24/25 [00:00<00:00, 72.49it/s] 100%|██████████| 25/25 [00:00<00:00, 73.12it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 18.92it/s] 40%|████ | 4/10 [00:00<00:00, 18.78it/s] 60%|██████ | 6/10 [00:00<00:00, 18.75it/s] 80%|████████ | 8/10 [00:00<00:00, 18.73it/s] 100%|██████████| 10/10 [00:00<00:00, 18.72it/s] 100%|██████████| 10/10 [00:00<00:00, 18.74it/s] frame_idx: 756 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 395 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 frame_idx: 756 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 395 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 76%|███████▌ | 755/999 [12:25<04:33, 1.12s/it] 76%|███████▌ | 756/999 [12:26<03:19, 1.22it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 74.51it/s] 64%|██████▍ | 16/25 [00:00<00:00, 74.53it/s] 96%|█████████▌| 24/25 [00:00<00:00, 74.29it/s] 100%|██████████| 25/25 [00:00<00:00, 74.18it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 73.68it/s] 64%|██████▍ | 16/25 [00:00<00:00, 70.82it/s] 96%|█████████▌| 24/25 [00:00<00:00, 71.85it/s] 100%|██████████| 25/25 [00:00<00:00, 71.85it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 18.85it/s] 40%|████ | 4/10 [00:00<00:00, 18.76it/s] 60%|██████ | 6/10 [00:00<00:00, 18.73it/s] 80%|████████ | 8/10 [00:00<00:00, 18.75it/s] 100%|██████████| 10/10 [00:00<00:00, 18.72it/s] 100%|██████████| 10/10 [00:00<00:00, 18.73it/s] frame_idx: 758 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 396 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 frame_idx: 758 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 396 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 76%|███████▌ | 757/999 [12:27<04:29, 1.11s/it] 76%|███████▌ | 758/999 [12:27<03:17, 1.22it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 74.32it/s] 64%|██████▍ | 16/25 [00:00<00:00, 74.20it/s] 96%|█████████▌| 24/25 [00:00<00:00, 73.80it/s] 100%|██████████| 25/25 [00:00<00:00, 73.82it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 74.88it/s] 64%|██████▍ | 16/25 [00:00<00:00, 74.65it/s] 96%|█████████▌| 24/25 [00:00<00:00, 74.53it/s] 100%|██████████| 25/25 [00:00<00:00, 74.55it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 18.80it/s] 40%|████ | 4/10 [00:00<00:00, 18.74it/s] 60%|██████ | 6/10 [00:00<00:00, 18.72it/s] 80%|████████ | 8/10 [00:00<00:00, 18.72it/s] 100%|██████████| 10/10 [00:00<00:00, 18.71it/s] 100%|██████████| 10/10 [00:00<00:00, 18.71it/s] frame_idx: 760 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 397 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 frame_idx: 760 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 397 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 76%|███████▌ | 759/999 [12:29<04:26, 1.11s/it] 76%|███████▌ | 760/999 [12:29<03:15, 1.23it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 74.15it/s] 64%|██████▍ | 16/25 [00:00<00:00, 74.97it/s] 96%|█████████▌| 24/25 [00:00<00:00, 74.53it/s] 100%|██████████| 25/25 [00:00<00:00, 74.51it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 74.89it/s] 64%|██████▍ | 16/25 [00:00<00:00, 74.71it/s] 96%|█████████▌| 24/25 [00:00<00:00, 71.98it/s] 100%|██████████| 25/25 [00:00<00:00, 72.40it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 18.84it/s] 40%|████ | 4/10 [00:00<00:00, 18.67it/s] 60%|██████ | 6/10 [00:00<00:00, 18.67it/s] 80%|████████ | 8/10 [00:00<00:00, 18.69it/s] 100%|██████████| 10/10 [00:00<00:00, 18.67it/s] 100%|██████████| 10/10 [00:00<00:00, 18.68it/s] frame_idx: 762 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 398 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 frame_idx: 762 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 398 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 76%|███████▌ | 761/999 [12:31<04:24, 1.11s/it] 76%|███████▋ | 762/999 [12:31<03:14, 1.22it/s] 0%| | 0/25 [00:00<?, ?it/s] 28%|██▊ | 7/25 [00:00<00:00, 67.78it/s] 56%|█████▌ | 14/25 [00:00<00:00, 68.59it/s] 84%|████████▍ | 21/25 [00:00<00:00, 68.80it/s] 100%|██████████| 25/25 [00:00<00:00, 68.64it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 74.62it/s] 64%|██████▍ | 16/25 [00:00<00:00, 72.29it/s] 96%|█████████▌| 24/25 [00:00<00:00, 72.97it/s] 100%|██████████| 25/25 [00:00<00:00, 72.79it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 18.86it/s] 40%|████ | 4/10 [00:00<00:00, 18.73it/s] 60%|██████ | 6/10 [00:00<00:00, 18.65it/s] 80%|████████ | 8/10 [00:00<00:00, 18.62it/s] 100%|██████████| 10/10 [00:00<00:00, 18.62it/s] 100%|██████████| 10/10 [00:00<00:00, 18.64it/s] frame_idx: 764 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 399 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 frame_idx: 764 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 399 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 76%|███████▋ | 763/999 [12:33<04:25, 1.12s/it] 76%|███████▋ | 764/999 [12:33<03:14, 1.21it/s] 0%| | 0/25 [00:00<?, ?it/s] 28%|██▊ | 7/25 [00:00<00:00, 68.44it/s] 60%|██████ | 15/25 [00:00<00:00, 71.23it/s] 92%|█████████▏| 23/25 [00:00<00:00, 70.00it/s] 100%|██████████| 25/25 [00:00<00:00, 69.97it/s] 0%| | 0/25 [00:00<?, ?it/s] 28%|██▊ | 7/25 [00:00<00:00, 69.01it/s] 60%|██████ | 15/25 [00:00<00:00, 69.85it/s] 92%|█████████▏| 23/25 [00:00<00:00, 70.53it/s] 100%|██████████| 25/25 [00:00<00:00, 69.81it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 18.87it/s] 40%|████ | 4/10 [00:00<00:00, 18.69it/s] 60%|██████ | 6/10 [00:00<00:00, 18.68it/s] 80%|████████ | 8/10 [00:00<00:00, 18.67it/s] 100%|██████████| 10/10 [00:00<00:00, 18.64it/s] 100%|██████████| 10/10 [00:00<00:00, 18.66it/s] frame_idx: 766 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 400 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 frame_idx: 766 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 400 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 77%|███████▋ | 765/999 [12:35<04:25, 1.14s/it] 77%|███████▋ | 766/999 [12:35<03:14, 1.20it/s] 0%| | 0/25 [00:00<?, ?it/s] 28%|██▊ | 7/25 [00:00<00:00, 69.55it/s] 60%|██████ | 15/25 [00:00<00:00, 72.87it/s] 92%|█████████▏| 23/25 [00:00<00:00, 73.99it/s] 100%|██████████| 25/25 [00:00<00:00, 73.54it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 75.16it/s] 64%|██████▍ | 16/25 [00:00<00:00, 74.87it/s] 96%|█████████▌| 24/25 [00:00<00:00, 74.83it/s] 100%|██████████| 25/25 [00:00<00:00, 73.63it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 18.89it/s] 40%|████ | 4/10 [00:00<00:00, 18.78it/s] 60%|██████ | 6/10 [00:00<00:00, 18.78it/s] 80%|████████ | 8/10 [00:00<00:00, 18.75it/s] 100%|██████████| 10/10 [00:00<00:00, 18.74it/s] 100%|██████████| 10/10 [00:00<00:00, 18.75it/s] frame_idx: 768 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 401 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 frame_idx: 768 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 401 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 77%|███████▋ | 767/999 [12:37<04:21, 1.13s/it] 77%|███████▋ | 768/999 [12:37<03:11, 1.21it/s] 0%| | 0/25 [00:00<?, ?it/s] 28%|██▊ | 7/25 [00:00<00:00, 68.07it/s] 60%|██████ | 15/25 [00:00<00:00, 69.43it/s] 88%|████████▊ | 22/25 [00:00<00:00, 69.42it/s] 100%|██████████| 25/25 [00:00<00:00, 69.38it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 73.91it/s] 64%|██████▍ | 16/25 [00:00<00:00, 72.32it/s] 96%|█████████▌| 24/25 [00:00<00:00, 71.32it/s] 100%|██████████| 25/25 [00:00<00:00, 71.29it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 18.78it/s] 40%|████ | 4/10 [00:00<00:00, 18.68it/s] 60%|██████ | 6/10 [00:00<00:00, 18.67it/s] 80%|████████ | 8/10 [00:00<00:00, 18.62it/s] 100%|██████████| 10/10 [00:00<00:00, 18.60it/s] 100%|██████████| 10/10 [00:00<00:00, 18.63it/s] frame_idx: 770 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 402 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 frame_idx: 770 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 402 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 77%|███████▋ | 769/999 [12:39<04:19, 1.13s/it] 77%|███████▋ | 770/999 [12:39<03:10, 1.20it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 72.67it/s] 64%|██████▍ | 16/25 [00:00<00:00, 71.93it/s] 96%|█████████▌| 24/25 [00:00<00:00, 72.35it/s] 100%|██████████| 25/25 [00:00<00:00, 72.39it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 75.30it/s] 64%|██████▍ | 16/25 [00:00<00:00, 75.40it/s] 96%|█████████▌| 24/25 [00:00<00:00, 75.20it/s] 100%|██████████| 25/25 [00:00<00:00, 75.27it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 18.84it/s] 40%|████ | 4/10 [00:00<00:00, 18.72it/s] 60%|██████ | 6/10 [00:00<00:00, 18.73it/s] 80%|████████ | 8/10 [00:00<00:00, 18.69it/s] 100%|██████████| 10/10 [00:00<00:00, 18.71it/s] 100%|██████████| 10/10 [00:00<00:00, 18.71it/s] frame_idx: 772 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 403 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 frame_idx: 772 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 403 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 77%|███████▋ | 771/999 [12:41<04:15, 1.12s/it] 77%|███████▋ | 772/999 [12:41<03:06, 1.22it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 74.00it/s] 64%|██████▍ | 16/25 [00:00<00:00, 70.69it/s] 96%|█████████▌| 24/25 [00:00<00:00, 70.39it/s] 100%|██████████| 25/25 [00:00<00:00, 70.76it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 74.43it/s] 64%|██████▍ | 16/25 [00:00<00:00, 74.81it/s] 96%|█████████▌| 24/25 [00:00<00:00, 74.67it/s] 100%|██████████| 25/25 [00:00<00:00, 74.70it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 18.88it/s] 40%|████ | 4/10 [00:00<00:00, 18.76it/s] 60%|██████ | 6/10 [00:00<00:00, 18.69it/s] 80%|████████ | 8/10 [00:00<00:00, 18.71it/s] 100%|██████████| 10/10 [00:00<00:00, 18.68it/s] 100%|██████████| 10/10 [00:00<00:00, 18.70it/s] frame_idx: 774 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 404 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 frame_idx: 774 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 404 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 77%|███████▋ | 773/999 [12:43<04:12, 1.12s/it] 77%|███████▋ | 774/999 [12:43<03:05, 1.21it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 71.37it/s] 64%|██████▍ | 16/25 [00:00<00:00, 73.65it/s] 96%|█████████▌| 24/25 [00:00<00:00, 70.94it/s] 100%|██████████| 25/25 [00:00<00:00, 71.39it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 75.05it/s] 64%|██████▍ | 16/25 [00:00<00:00, 75.36it/s] 96%|█████████▌| 24/25 [00:00<00:00, 75.15it/s] 100%|██████████| 25/25 [00:00<00:00, 75.06it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 18.86it/s] 40%|████ | 4/10 [00:00<00:00, 18.78it/s] 60%|██████ | 6/10 [00:00<00:00, 18.70it/s] 80%|████████ | 8/10 [00:00<00:00, 18.65it/s] 100%|██████████| 10/10 [00:00<00:00, 18.69it/s] 100%|██████████| 10/10 [00:00<00:00, 18.69it/s] frame_idx: 776 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 405 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 frame_idx: 776 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 405 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 78%|███████▊ | 775/999 [12:45<04:10, 1.12s/it] 78%|███████▊ | 776/999 [12:45<03:03, 1.22it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 72.76it/s] 64%|██████▍ | 16/25 [00:00<00:00, 74.17it/s] 96%|█████████▌| 24/25 [00:00<00:00, 74.61it/s] 100%|██████████| 25/25 [00:00<00:00, 73.23it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 70.43it/s] 64%|██████▍ | 16/25 [00:00<00:00, 73.09it/s] 96%|█████████▌| 24/25 [00:00<00:00, 74.12it/s] 100%|██████████| 25/25 [00:00<00:00, 73.61it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 18.81it/s] 40%|████ | 4/10 [00:00<00:00, 18.72it/s] 60%|██████ | 6/10 [00:00<00:00, 18.70it/s] 80%|████████ | 8/10 [00:00<00:00, 18.72it/s] 100%|██████████| 10/10 [00:00<00:00, 18.70it/s] 100%|██████████| 10/10 [00:00<00:00, 18.70it/s] frame_idx: 778 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 406 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 frame_idx: 778 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 406 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 78%|███████▊ | 777/999 [12:47<04:06, 1.11s/it] 78%|███████▊ | 778/999 [12:47<03:00, 1.22it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 70.25it/s] 64%|██████▍ | 16/25 [00:00<00:00, 70.98it/s] 96%|█████████▌| 24/25 [00:00<00:00, 72.27it/s] 100%|██████████| 25/25 [00:00<00:00, 71.39it/s] 0%| | 0/25 [00:00<?, ?it/s] 28%|██▊ | 7/25 [00:00<00:00, 69.31it/s] 56%|█████▌ | 14/25 [00:00<00:00, 69.06it/s] 84%|████████▍ | 21/25 [00:00<00:00, 69.26it/s] 100%|██████████| 25/25 [00:00<00:00, 69.73it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 18.81it/s] 40%|████ | 4/10 [00:00<00:00, 18.69it/s] 60%|██████ | 6/10 [00:00<00:00, 18.67it/s] 80%|████████ | 8/10 [00:00<00:00, 18.67it/s] 100%|██████████| 10/10 [00:00<00:00, 18.64it/s] 100%|██████████| 10/10 [00:00<00:00, 18.65it/s] frame_idx: 780 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 407 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 frame_idx: 780 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 407 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 78%|███████▊ | 779/999 [12:49<04:06, 1.12s/it] 78%|███████▊ | 780/999 [12:49<03:00, 1.22it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 73.82it/s] 64%|██████▍ | 16/25 [00:00<00:00, 74.34it/s] 96%|█████████▌| 24/25 [00:00<00:00, 74.32it/s] 100%|██████████| 25/25 [00:00<00:00, 74.12it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 70.28it/s] 64%|██████▍ | 16/25 [00:00<00:00, 69.53it/s] 96%|█████████▌| 24/25 [00:00<00:00, 71.14it/s] 100%|██████████| 25/25 [00:00<00:00, 70.69it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 17.15it/s] 40%|████ | 4/10 [00:00<00:00, 18.01it/s] 60%|██████ | 6/10 [00:00<00:00, 18.27it/s] 80%|████████ | 8/10 [00:00<00:00, 18.43it/s] 100%|██████████| 10/10 [00:00<00:00, 18.53it/s] 100%|██████████| 10/10 [00:00<00:00, 18.33it/s] frame_idx: 782 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 408 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 frame_idx: 782 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 408 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 78%|███████▊ | 781/999 [12:51<04:03, 1.12s/it] 78%|███████▊ | 782/999 [12:51<02:58, 1.22it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 73.45it/s] 64%|██████▍ | 16/25 [00:00<00:00, 74.20it/s] 96%|█████████▌| 24/25 [00:00<00:00, 74.53it/s] 100%|██████████| 25/25 [00:00<00:00, 73.92it/s] 0%| | 0/25 [00:00<?, ?it/s] 28%|██▊ | 7/25 [00:00<00:00, 69.78it/s] 56%|█████▌ | 14/25 [00:00<00:00, 69.83it/s] 88%|████████▊ | 22/25 [00:00<00:00, 71.40it/s] 100%|██████████| 25/25 [00:00<00:00, 71.29it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 18.84it/s] 40%|████ | 4/10 [00:00<00:00, 18.73it/s] 60%|██████ | 6/10 [00:00<00:00, 18.66it/s] 80%|████████ | 8/10 [00:00<00:00, 18.64it/s] 100%|██████████| 10/10 [00:00<00:00, 18.63it/s] 100%|██████████| 10/10 [00:00<00:00, 18.65it/s] frame_idx: 784 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 409 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 frame_idx: 784 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 409 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 78%|███████▊ | 783/999 [12:53<04:02, 1.12s/it] 78%|███████▊ | 784/999 [12:53<02:58, 1.21it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 74.26it/s] 64%|██████▍ | 16/25 [00:00<00:00, 74.75it/s] 96%|█████████▌| 24/25 [00:00<00:00, 74.89it/s] 100%|██████████| 25/25 [00:00<00:00, 74.81it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 75.13it/s] 64%|██████▍ | 16/25 [00:00<00:00, 72.56it/s] 96%|█████████▌| 24/25 [00:00<00:00, 73.71it/s] 100%|██████████| 25/25 [00:00<00:00, 73.72it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 18.76it/s] 40%|████ | 4/10 [00:00<00:00, 18.73it/s] 60%|██████ | 6/10 [00:00<00:00, 18.64it/s] 80%|████████ | 8/10 [00:00<00:00, 18.65it/s] 100%|██████████| 10/10 [00:00<00:00, 18.64it/s] 100%|██████████| 10/10 [00:00<00:00, 18.65it/s] frame_idx: 786 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 410 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 frame_idx: 786 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 410 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 79%|███████▊ | 785/999 [12:55<03:59, 1.12s/it] 79%|███████▊ | 786/999 [12:55<02:55, 1.22it/s] 0%| | 0/25 [00:00<?, ?it/s] 28%|██▊ | 7/25 [00:00<00:00, 67.82it/s] 60%|██████ | 15/25 [00:00<00:00, 70.60it/s] 92%|█████████▏| 23/25 [00:00<00:00, 72.44it/s] 100%|██████████| 25/25 [00:00<00:00, 71.38it/s] 0%| | 0/25 [00:00<?, ?it/s] 28%|██▊ | 7/25 [00:00<00:00, 69.57it/s] 60%|██████ | 15/25 [00:00<00:00, 68.97it/s] 92%|█████████▏| 23/25 [00:00<00:00, 69.57it/s] 100%|██████████| 25/25 [00:00<00:00, 69.54it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 18.81it/s] 40%|████ | 4/10 [00:00<00:00, 18.75it/s] 60%|██████ | 6/10 [00:00<00:00, 18.72it/s] 80%|████████ | 8/10 [00:00<00:00, 18.73it/s] 100%|██████████| 10/10 [00:00<00:00, 18.72it/s] 100%|██████████| 10/10 [00:00<00:00, 18.73it/s] frame_idx: 788 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 411 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 frame_idx: 788 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 411 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 79%|███████▉ | 787/999 [12:56<03:57, 1.12s/it] 79%|███████▉ | 788/999 [12:57<02:53, 1.21it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 74.22it/s] 64%|██████▍ | 16/25 [00:00<00:00, 74.58it/s] 96%|█████████▌| 24/25 [00:00<00:00, 74.72it/s] 100%|██████████| 25/25 [00:00<00:00, 74.58it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 73.92it/s] 64%|██████▍ | 16/25 [00:00<00:00, 69.92it/s] 96%|█████████▌| 24/25 [00:00<00:00, 69.09it/s] 100%|██████████| 25/25 [00:00<00:00, 69.57it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 18.85it/s] 40%|████ | 4/10 [00:00<00:00, 18.70it/s] 60%|██████ | 6/10 [00:00<00:00, 18.69it/s] 80%|████████ | 8/10 [00:00<00:00, 18.63it/s] 100%|██████████| 10/10 [00:00<00:00, 18.64it/s] 100%|██████████| 10/10 [00:00<00:00, 18.66it/s] frame_idx: 790 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 412 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 frame_idx: 790 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 412 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 79%|███████▉ | 789/999 [12:58<03:54, 1.12s/it] 79%|███████▉ | 790/999 [12:59<02:52, 1.21it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 73.87it/s] 64%|██████▍ | 16/25 [00:00<00:00, 74.02it/s] 96%|█████████▌| 24/25 [00:00<00:00, 73.55it/s] 100%|██████████| 25/25 [00:00<00:00, 73.65it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 74.68it/s] 64%|██████▍ | 16/25 [00:00<00:00, 74.51it/s] 96%|█████████▌| 24/25 [00:00<00:00, 73.98it/s] 100%|██████████| 25/25 [00:00<00:00, 73.60it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 18.82it/s] 40%|████ | 4/10 [00:00<00:00, 18.67it/s] 60%|██████ | 6/10 [00:00<00:00, 18.64it/s] 80%|████████ | 8/10 [00:00<00:00, 18.66it/s] 100%|██████████| 10/10 [00:00<00:00, 18.65it/s] 100%|██████████| 10/10 [00:00<00:00, 18.66it/s] frame_idx: 792 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 413 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 frame_idx: 792 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 413 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 79%|███████▉ | 791/999 [13:00<03:51, 1.11s/it] 79%|███████▉ | 792/999 [13:00<02:49, 1.22it/s] 0%| | 0/25 [00:00<?, ?it/s] 28%|██▊ | 7/25 [00:00<00:00, 67.61it/s] 56%|█████▌ | 14/25 [00:00<00:00, 68.54it/s] 84%|████████▍ | 21/25 [00:00<00:00, 68.90it/s] 100%|██████████| 25/25 [00:00<00:00, 68.62it/s] 0%| | 0/25 [00:00<?, ?it/s] 28%|██▊ | 7/25 [00:00<00:00, 69.04it/s] 56%|█████▌ | 14/25 [00:00<00:00, 68.37it/s] 88%|████████▊ | 22/25 [00:00<00:00, 70.13it/s] 100%|██████████| 25/25 [00:00<00:00, 70.22it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 17.87it/s] 40%|████ | 4/10 [00:00<00:00, 18.28it/s] 60%|██████ | 6/10 [00:00<00:00, 18.47it/s] 80%|████████ | 8/10 [00:00<00:00, 18.56it/s] 100%|██████████| 10/10 [00:00<00:00, 18.56it/s] 100%|██████████| 10/10 [00:00<00:00, 18.47it/s] frame_idx: 794 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 414 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 frame_idx: 794 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 414 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 79%|███████▉ | 793/999 [13:02<03:52, 1.13s/it] 79%|███████▉ | 794/999 [13:02<02:50, 1.20it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 73.62it/s] 64%|██████▍ | 16/25 [00:00<00:00, 73.98it/s] 96%|█████████▌| 24/25 [00:00<00:00, 71.35it/s] 100%|██████████| 25/25 [00:00<00:00, 71.81it/s] 0%| | 0/25 [00:00<?, ?it/s] 28%|██▊ | 7/25 [00:00<00:00, 69.42it/s] 60%|██████ | 15/25 [00:00<00:00, 70.11it/s] 92%|█████████▏| 23/25 [00:00<00:00, 72.05it/s] 100%|██████████| 25/25 [00:00<00:00, 71.72it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 18.85it/s] 40%|████ | 4/10 [00:00<00:00, 18.74it/s] 60%|██████ | 6/10 [00:00<00:00, 18.72it/s] 80%|████████ | 8/10 [00:00<00:00, 18.71it/s] 100%|██████████| 10/10 [00:00<00:00, 18.68it/s] 100%|██████████| 10/10 [00:00<00:00, 18.70it/s] frame_idx: 796 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 415 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 frame_idx: 796 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 415 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 80%|███████▉ | 795/999 [13:04<03:50, 1.13s/it] 80%|███████▉ | 796/999 [13:04<02:49, 1.20it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 74.09it/s] 64%|██████▍ | 16/25 [00:00<00:00, 74.25it/s] 96%|█████████▌| 24/25 [00:00<00:00, 74.45it/s] 100%|██████████| 25/25 [00:00<00:00, 74.08it/s] 0%| | 0/25 [00:00<?, ?it/s] 28%|██▊ | 7/25 [00:00<00:00, 67.99it/s] 60%|██████ | 15/25 [00:00<00:00, 72.21it/s] 92%|█████████▏| 23/25 [00:00<00:00, 70.19it/s] 100%|██████████| 25/25 [00:00<00:00, 70.18it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 18.24it/s] 40%|████ | 4/10 [00:00<00:00, 18.45it/s] 60%|██████ | 6/10 [00:00<00:00, 18.51it/s] 80%|████████ | 8/10 [00:00<00:00, 18.57it/s] 100%|██████████| 10/10 [00:00<00:00, 18.48it/s] 100%|██████████| 10/10 [00:00<00:00, 18.46it/s] frame_idx: 798 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 416 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 frame_idx: 798 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 416 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 80%|███████▉ | 797/999 [13:06<03:55, 1.17s/it] 80%|███████▉ | 798/999 [13:07<03:03, 1.09it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 73.48it/s] 64%|██████▍ | 16/25 [00:00<00:00, 74.28it/s] 96%|█████████▌| 24/25 [00:00<00:00, 74.54it/s] 100%|██████████| 25/25 [00:00<00:00, 74.05it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 75.24it/s] 64%|██████▍ | 16/25 [00:00<00:00, 72.73it/s] 96%|█████████▌| 24/25 [00:00<00:00, 70.92it/s] 100%|██████████| 25/25 [00:00<00:00, 71.51it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 18.84it/s] 40%|████ | 4/10 [00:00<00:00, 18.77it/s] 60%|██████ | 6/10 [00:00<00:00, 18.72it/s] 80%|████████ | 8/10 [00:00<00:00, 18.73it/s] 100%|██████████| 10/10 [00:00<00:00, 18.71it/s] 100%|██████████| 10/10 [00:00<00:00, 18.72it/s] frame_idx: 800 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 417 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 frame_idx: 800 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 417 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 80%|███████▉ | 799/999 [13:09<03:55, 1.18s/it] 80%|████████ | 800/999 [13:09<02:52, 1.15it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 70.97it/s] 64%|██████▍ | 16/25 [00:00<00:00, 69.45it/s] 96%|█████████▌| 24/25 [00:00<00:00, 71.38it/s] 100%|██████████| 25/25 [00:00<00:00, 71.11it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 74.76it/s] 64%|██████▍ | 16/25 [00:00<00:00, 72.01it/s] 96%|█████████▌| 24/25 [00:00<00:00, 70.38it/s] 100%|██████████| 25/25 [00:00<00:00, 71.22it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 18.84it/s] 40%|████ | 4/10 [00:00<00:00, 18.77it/s] 60%|██████ | 6/10 [00:00<00:00, 18.72it/s] 80%|████████ | 8/10 [00:00<00:00, 18.70it/s] 100%|██████████| 10/10 [00:00<00:00, 18.70it/s] 100%|██████████| 10/10 [00:00<00:00, 18.71it/s] frame_idx: 802 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 418 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 frame_idx: 802 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 418 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 80%|████████ | 801/999 [13:10<03:48, 1.15s/it] 80%|████████ | 802/999 [13:11<02:46, 1.18it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 74.04it/s] 64%|██████▍ | 16/25 [00:00<00:00, 74.54it/s] 96%|█████████▌| 24/25 [00:00<00:00, 73.71it/s] 100%|██████████| 25/25 [00:00<00:00, 73.86it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 73.25it/s] 64%|██████▍ | 16/25 [00:00<00:00, 73.24it/s] 96%|█████████▌| 24/25 [00:00<00:00, 72.41it/s] 100%|██████████| 25/25 [00:00<00:00, 72.52it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 18.87it/s] 40%|████ | 4/10 [00:00<00:00, 18.58it/s] 60%|██████ | 6/10 [00:00<00:00, 18.61it/s] 80%|████████ | 8/10 [00:00<00:00, 18.61it/s] 100%|██████████| 10/10 [00:00<00:00, 18.62it/s] 100%|██████████| 10/10 [00:00<00:00, 18.62it/s] frame_idx: 804 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 419 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 frame_idx: 804 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 419 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 80%|████████ | 803/999 [13:12<03:41, 1.13s/it] 80%|████████ | 804/999 [13:13<02:42, 1.20it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 73.06it/s] 64%|██████▍ | 16/25 [00:00<00:00, 74.23it/s] 96%|█████████▌| 24/25 [00:00<00:00, 74.54it/s] 100%|██████████| 25/25 [00:00<00:00, 74.29it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 73.96it/s] 64%|██████▍ | 16/25 [00:00<00:00, 74.31it/s] 96%|█████████▌| 24/25 [00:00<00:00, 73.81it/s] 100%|██████████| 25/25 [00:00<00:00, 73.88it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 18.79it/s] 40%|████ | 4/10 [00:00<00:00, 18.69it/s] 60%|██████ | 6/10 [00:00<00:00, 18.65it/s] 80%|████████ | 8/10 [00:00<00:00, 18.66it/s] 100%|██████████| 10/10 [00:00<00:00, 18.64it/s] 100%|██████████| 10/10 [00:00<00:00, 18.65it/s] frame_idx: 806 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 420 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 frame_idx: 806 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 420 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 81%|████████ | 805/999 [13:14<03:37, 1.12s/it] 81%|████████ | 806/999 [13:14<02:39, 1.21it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 74.16it/s] 64%|██████▍ | 16/25 [00:00<00:00, 74.70it/s] 96%|█████████▌| 24/25 [00:00<00:00, 74.72it/s] 100%|██████████| 25/25 [00:00<00:00, 74.52it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 70.42it/s] 64%|██████▍ | 16/25 [00:00<00:00, 69.31it/s] 92%|█████████▏| 23/25 [00:00<00:00, 69.37it/s] 100%|██████████| 25/25 [00:00<00:00, 69.80it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 18.77it/s] 40%|████ | 4/10 [00:00<00:00, 18.70it/s] 60%|██████ | 6/10 [00:00<00:00, 18.66it/s] 80%|████████ | 8/10 [00:00<00:00, 18.66it/s] 100%|██████████| 10/10 [00:00<00:00, 18.64it/s] 100%|██████████| 10/10 [00:00<00:00, 18.66it/s] frame_idx: 808 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 421 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 frame_idx: 808 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 421 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 81%|████████ | 807/999 [13:16<03:35, 1.12s/it] 81%|████████ | 808/999 [13:16<02:37, 1.21it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 74.21it/s] 64%|██████▍ | 16/25 [00:00<00:00, 74.86it/s] 96%|█████████▌| 24/25 [00:00<00:00, 74.47it/s] 100%|██████████| 25/25 [00:00<00:00, 74.44it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 75.43it/s] 64%|██████▍ | 16/25 [00:00<00:00, 74.92it/s] 96%|█████████▌| 24/25 [00:00<00:00, 74.92it/s] 100%|██████████| 25/25 [00:00<00:00, 74.89it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 18.77it/s] 40%|████ | 4/10 [00:00<00:00, 18.69it/s] 60%|██████ | 6/10 [00:00<00:00, 18.67it/s] 80%|████████ | 8/10 [00:00<00:00, 18.66it/s] 100%|██████████| 10/10 [00:00<00:00, 18.66it/s] 100%|██████████| 10/10 [00:00<00:00, 18.67it/s] frame_idx: 810 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 422 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 frame_idx: 810 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 422 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 81%|████████ | 809/999 [13:18<03:30, 1.11s/it] 81%|████████ | 810/999 [13:18<02:34, 1.22it/s] 0%| | 0/25 [00:00<?, ?it/s] 28%|██▊ | 7/25 [00:00<00:00, 69.78it/s] 60%|██████ | 15/25 [00:00<00:00, 72.44it/s] 92%|█████████▏| 23/25 [00:00<00:00, 73.37it/s] 100%|██████████| 25/25 [00:00<00:00, 72.32it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 73.96it/s] 64%|██████▍ | 16/25 [00:00<00:00, 72.88it/s] 96%|█████████▌| 24/25 [00:00<00:00, 73.96it/s] 100%|██████████| 25/25 [00:00<00:00, 73.65it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 18.84it/s] 40%|████ | 4/10 [00:00<00:00, 18.68it/s] 60%|██████ | 6/10 [00:00<00:00, 18.64it/s] 80%|████████ | 8/10 [00:00<00:00, 18.63it/s] 100%|██████████| 10/10 [00:00<00:00, 18.65it/s] 100%|██████████| 10/10 [00:00<00:00, 18.65it/s] frame_idx: 812 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 423 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 frame_idx: 812 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 423 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 81%|████████ | 811/999 [13:20<03:28, 1.11s/it] 81%|████████▏ | 812/999 [13:20<02:33, 1.22it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 71.06it/s] 64%|██████▍ | 16/25 [00:00<00:00, 70.71it/s] 96%|█████████▌| 24/25 [00:00<00:00, 70.61it/s] 100%|██████████| 25/25 [00:00<00:00, 70.61it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 73.71it/s] 64%|██████▍ | 16/25 [00:00<00:00, 74.30it/s] 96%|█████████▌| 24/25 [00:00<00:00, 74.56it/s] 100%|██████████| 25/25 [00:00<00:00, 74.38it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 18.91it/s] 40%|████ | 4/10 [00:00<00:00, 18.72it/s] 60%|██████ | 6/10 [00:00<00:00, 18.69it/s] 80%|████████ | 8/10 [00:00<00:00, 18.68it/s] 100%|██████████| 10/10 [00:00<00:00, 18.66it/s] 100%|██████████| 10/10 [00:00<00:00, 18.68it/s] frame_idx: 814 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 424 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 frame_idx: 814 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 424 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 81%|████████▏ | 813/999 [13:22<03:27, 1.11s/it] 81%|████████▏ | 814/999 [13:22<02:31, 1.22it/s] 0%| | 0/25 [00:00<?, ?it/s] 28%|██▊ | 7/25 [00:00<00:00, 68.67it/s] 56%|█████▌ | 14/25 [00:00<00:00, 67.36it/s] 88%|████████▊ | 22/25 [00:00<00:00, 69.08it/s] 100%|██████████| 25/25 [00:00<00:00, 68.92it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 74.64it/s] 64%|██████▍ | 16/25 [00:00<00:00, 71.67it/s] 96%|█████████▌| 24/25 [00:00<00:00, 71.20it/s] 100%|██████████| 25/25 [00:00<00:00, 71.45it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 18.21it/s] 40%|████ | 4/10 [00:00<00:00, 18.49it/s] 60%|██████ | 6/10 [00:00<00:00, 18.56it/s] 80%|████████ | 8/10 [00:00<00:00, 18.60it/s] 100%|██████████| 10/10 [00:00<00:00, 18.65it/s] 100%|██████████| 10/10 [00:00<00:00, 18.58it/s] frame_idx: 816 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 425 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 frame_idx: 816 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 425 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 82%|████████▏ | 815/999 [13:24<03:26, 1.12s/it] 82%|████████▏ | 816/999 [13:24<02:31, 1.21it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 71.28it/s] 64%|██████▍ | 16/25 [00:00<00:00, 69.18it/s] 96%|█████████▌| 24/25 [00:00<00:00, 71.43it/s] 100%|██████████| 25/25 [00:00<00:00, 71.18it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 75.43it/s] 64%|██████▍ | 16/25 [00:00<00:00, 75.11it/s] 96%|█████████▌| 24/25 [00:00<00:00, 74.94it/s] 100%|██████████| 25/25 [00:00<00:00, 74.84it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 18.84it/s] 40%|████ | 4/10 [00:00<00:00, 18.76it/s] 60%|██████ | 6/10 [00:00<00:00, 18.76it/s] 80%|████████ | 8/10 [00:00<00:00, 18.70it/s] 100%|██████████| 10/10 [00:00<00:00, 18.70it/s] 100%|██████████| 10/10 [00:00<00:00, 18.72it/s] frame_idx: 818 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 426 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 frame_idx: 818 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 426 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 82%|████████▏ | 817/999 [13:26<03:23, 1.12s/it] 82%|████████▏ | 818/999 [13:26<02:29, 1.21it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 74.42it/s] 64%|██████▍ | 16/25 [00:00<00:00, 71.43it/s] 96%|█████████▌| 24/25 [00:00<00:00, 72.00it/s] 100%|██████████| 25/25 [00:00<00:00, 72.24it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 75.34it/s] 64%|██████▍ | 16/25 [00:00<00:00, 75.04it/s] 96%|█████████▌| 24/25 [00:00<00:00, 75.12it/s] 100%|██████████| 25/25 [00:00<00:00, 75.14it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 18.81it/s] 40%|████ | 4/10 [00:00<00:00, 18.78it/s] 60%|██████ | 6/10 [00:00<00:00, 18.77it/s] 80%|████████ | 8/10 [00:00<00:00, 18.69it/s] 100%|██████████| 10/10 [00:00<00:00, 18.70it/s] 100%|██████████| 10/10 [00:00<00:00, 18.72it/s] frame_idx: 820 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 427 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 frame_idx: 820 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 427 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 82%|████████▏ | 819/999 [13:28<03:20, 1.11s/it] 82%|████████▏ | 820/999 [13:28<02:26, 1.22it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 74.50it/s] 64%|██████▍ | 16/25 [00:00<00:00, 74.78it/s] 96%|█████████▌| 24/25 [00:00<00:00, 71.60it/s] 100%|██████████| 25/25 [00:00<00:00, 72.29it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 74.54it/s] 64%|██████▍ | 16/25 [00:00<00:00, 74.57it/s] 96%|█████████▌| 24/25 [00:00<00:00, 74.91it/s] 100%|██████████| 25/25 [00:00<00:00, 74.85it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 18.89it/s] 40%|████ | 4/10 [00:00<00:00, 18.79it/s] 60%|██████ | 6/10 [00:00<00:00, 18.70it/s] 80%|████████ | 8/10 [00:00<00:00, 18.70it/s] 100%|██████████| 10/10 [00:00<00:00, 18.67it/s] 100%|██████████| 10/10 [00:00<00:00, 18.70it/s] frame_idx: 822 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 428 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 frame_idx: 822 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 428 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 82%|████████▏ | 821/999 [13:30<03:18, 1.11s/it] 82%|████████▏ | 822/999 [13:30<02:25, 1.22it/s] 0%| | 0/25 [00:00<?, ?it/s] 28%|██▊ | 7/25 [00:00<00:00, 65.06it/s] 60%|██████ | 15/25 [00:00<00:00, 70.64it/s] 92%|█████████▏| 23/25 [00:00<00:00, 71.75it/s] 100%|██████████| 25/25 [00:00<00:00, 70.85it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 75.39it/s] 64%|██████▍ | 16/25 [00:00<00:00, 75.33it/s] 96%|█████████▌| 24/25 [00:00<00:00, 75.32it/s] 100%|██████████| 25/25 [00:00<00:00, 75.27it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 18.88it/s] 40%|████ | 4/10 [00:00<00:00, 18.73it/s] 60%|██████ | 6/10 [00:00<00:00, 18.73it/s] 80%|████████ | 8/10 [00:00<00:00, 18.70it/s] 100%|██████████| 10/10 [00:00<00:00, 18.69it/s] 100%|██████████| 10/10 [00:00<00:00, 18.71it/s] frame_idx: 824 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 429 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 frame_idx: 824 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 429 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 82%|████████▏ | 823/999 [13:32<03:16, 1.11s/it] 82%|████████▏ | 824/999 [13:32<02:23, 1.22it/s] 0%| | 0/25 [00:00<?, ?it/s] 28%|██▊ | 7/25 [00:00<00:00, 68.97it/s] 60%|██████ | 15/25 [00:00<00:00, 71.80it/s] 92%|█████████▏| 23/25 [00:00<00:00, 71.74it/s] 100%|██████████| 25/25 [00:00<00:00, 71.57it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 71.16it/s] 64%|██████▍ | 16/25 [00:00<00:00, 69.81it/s] 96%|█████████▌| 24/25 [00:00<00:00, 70.50it/s] 100%|██████████| 25/25 [00:00<00:00, 70.53it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 18.77it/s] 40%|████ | 4/10 [00:00<00:00, 18.70it/s] 60%|██████ | 6/10 [00:00<00:00, 18.65it/s] 80%|████████ | 8/10 [00:00<00:00, 18.62it/s] 100%|██████████| 10/10 [00:00<00:00, 18.61it/s] 100%|██████████| 10/10 [00:00<00:00, 18.62it/s] frame_idx: 826 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 430 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 frame_idx: 826 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 430 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 83%|████████▎ | 825/999 [13:34<03:14, 1.12s/it] 83%|████████▎ | 826/999 [13:34<02:22, 1.22it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 73.72it/s] 64%|██████▍ | 16/25 [00:00<00:00, 74.28it/s] 96%|█████████▌| 24/25 [00:00<00:00, 74.04it/s] 100%|██████████| 25/25 [00:00<00:00, 73.96it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 70.16it/s] 64%|██████▍ | 16/25 [00:00<00:00, 72.02it/s] 96%|█████████▌| 24/25 [00:00<00:00, 73.06it/s] 100%|██████████| 25/25 [00:00<00:00, 72.67it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 18.80it/s] 40%|████ | 4/10 [00:00<00:00, 18.65it/s] 60%|██████ | 6/10 [00:00<00:00, 18.70it/s] 80%|████████ | 8/10 [00:00<00:00, 18.69it/s] 100%|██████████| 10/10 [00:00<00:00, 18.68it/s] 100%|██████████| 10/10 [00:00<00:00, 18.68it/s] frame_idx: 828 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 431 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 frame_idx: 828 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 431 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 83%|████████▎ | 827/999 [13:36<03:11, 1.11s/it] 83%|████████▎ | 828/999 [13:36<02:20, 1.22it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 73.62it/s] 64%|██████▍ | 16/25 [00:00<00:00, 73.60it/s] 96%|█████████▌| 24/25 [00:00<00:00, 73.56it/s] 100%|██████████| 25/25 [00:00<00:00, 73.64it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 75.26it/s] 64%|██████▍ | 16/25 [00:00<00:00, 71.66it/s] 96%|█████████▌| 24/25 [00:00<00:00, 71.39it/s] 100%|██████████| 25/25 [00:00<00:00, 71.65it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 18.57it/s] 40%|████ | 4/10 [00:00<00:00, 18.65it/s] 60%|██████ | 6/10 [00:00<00:00, 18.69it/s] 80%|████████ | 8/10 [00:00<00:00, 18.67it/s] 100%|██████████| 10/10 [00:00<00:00, 18.68it/s] 100%|██████████| 10/10 [00:00<00:00, 18.65it/s] frame_idx: 830 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 432 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 frame_idx: 830 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 432 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 83%|████████▎ | 829/999 [13:38<03:09, 1.12s/it] 83%|████████▎ | 830/999 [13:38<02:19, 1.22it/s] 0%| | 0/25 [00:00<?, ?it/s] 28%|██▊ | 7/25 [00:00<00:00, 69.10it/s] 56%|█████▌ | 14/25 [00:00<00:00, 69.45it/s] 84%|████████▍ | 21/25 [00:00<00:00, 69.54it/s] 100%|██████████| 25/25 [00:00<00:00, 69.67it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 72.02it/s] 64%|██████▍ | 16/25 [00:00<00:00, 71.23it/s] 96%|█████████▌| 24/25 [00:00<00:00, 72.13it/s] 100%|██████████| 25/25 [00:00<00:00, 71.90it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 18.83it/s] 40%|████ | 4/10 [00:00<00:00, 18.76it/s] 60%|██████ | 6/10 [00:00<00:00, 18.72it/s] 80%|████████ | 8/10 [00:00<00:00, 18.72it/s] 100%|██████████| 10/10 [00:00<00:00, 18.70it/s] 100%|██████████| 10/10 [00:00<00:00, 18.71it/s] frame_idx: 832 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 433 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 frame_idx: 832 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 433 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 83%|████████▎ | 831/999 [13:40<03:08, 1.12s/it] 83%|████████▎ | 832/999 [13:40<02:17, 1.21it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 73.63it/s] 64%|██████▍ | 16/25 [00:00<00:00, 70.68it/s] 96%|█████████▌| 24/25 [00:00<00:00, 70.69it/s] 100%|██████████| 25/25 [00:00<00:00, 70.93it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 74.44it/s] 64%|██████▍ | 16/25 [00:00<00:00, 73.11it/s] 96%|█████████▌| 24/25 [00:00<00:00, 71.83it/s] 100%|██████████| 25/25 [00:00<00:00, 72.17it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 18.79it/s] 40%|████ | 4/10 [00:00<00:00, 18.70it/s] 60%|██████ | 6/10 [00:00<00:00, 18.69it/s] 80%|████████ | 8/10 [00:00<00:00, 18.72it/s] 100%|██████████| 10/10 [00:00<00:00, 18.70it/s] 100%|██████████| 10/10 [00:00<00:00, 18.70it/s] frame_idx: 834 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 434 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 frame_idx: 834 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 434 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 83%|████████▎ | 833/999 [13:41<03:05, 1.12s/it] 83%|████████▎ | 834/999 [13:42<02:15, 1.22it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 74.54it/s] 64%|██████▍ | 16/25 [00:00<00:00, 74.94it/s] 96%|█████████▌| 24/25 [00:00<00:00, 75.15it/s] 100%|██████████| 25/25 [00:00<00:00, 75.07it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 75.19it/s] 64%|██████▍ | 16/25 [00:00<00:00, 75.40it/s] 96%|█████████▌| 24/25 [00:00<00:00, 72.55it/s] 100%|██████████| 25/25 [00:00<00:00, 73.11it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 18.90it/s] 40%|████ | 4/10 [00:00<00:00, 18.78it/s] 60%|██████ | 6/10 [00:00<00:00, 18.75it/s] 80%|████████ | 8/10 [00:00<00:00, 18.75it/s] 100%|██████████| 10/10 [00:00<00:00, 18.72it/s] 100%|██████████| 10/10 [00:00<00:00, 18.74it/s] frame_idx: 836 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 435 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 frame_idx: 836 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 435 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 84%|████████▎ | 835/999 [13:43<03:02, 1.11s/it] 84%|████████▎ | 836/999 [13:43<02:13, 1.22it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 72.90it/s] 64%|██████▍ | 16/25 [00:00<00:00, 71.77it/s] 96%|█████████▌| 24/25 [00:00<00:00, 70.80it/s] 100%|██████████| 25/25 [00:00<00:00, 71.30it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 73.28it/s] 64%|██████▍ | 16/25 [00:00<00:00, 72.88it/s] 96%|█████████▌| 24/25 [00:00<00:00, 73.06it/s] 100%|██████████| 25/25 [00:00<00:00, 72.84it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 18.77it/s] 40%|████ | 4/10 [00:00<00:00, 18.72it/s] 60%|██████ | 6/10 [00:00<00:00, 18.67it/s] 80%|████████ | 8/10 [00:00<00:00, 18.65it/s] 100%|██████████| 10/10 [00:00<00:00, 18.65it/s] 100%|██████████| 10/10 [00:00<00:00, 18.66it/s] frame_idx: 838 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 436 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 frame_idx: 838 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 436 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 84%|████████▍ | 837/999 [13:45<03:00, 1.11s/it] 84%|████████▍ | 838/999 [13:45<02:11, 1.22it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 74.14it/s] 64%|██████▍ | 16/25 [00:00<00:00, 74.50it/s] 96%|█████████▌| 24/25 [00:00<00:00, 74.43it/s] 100%|██████████| 25/25 [00:00<00:00, 74.29it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 75.38it/s] 64%|██████▍ | 16/25 [00:00<00:00, 71.57it/s] 96%|█████████▌| 24/25 [00:00<00:00, 72.25it/s] 100%|██████████| 25/25 [00:00<00:00, 72.45it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 18.62it/s] 40%|████ | 4/10 [00:00<00:00, 18.64it/s] 60%|██████ | 6/10 [00:00<00:00, 18.63it/s] 80%|████████ | 8/10 [00:00<00:00, 18.63it/s] 100%|██████████| 10/10 [00:00<00:00, 18.66it/s] 100%|██████████| 10/10 [00:00<00:00, 18.64it/s] frame_idx: 840 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 437 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 frame_idx: 840 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 437 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 84%|████████▍ | 839/999 [13:47<02:57, 1.11s/it] 84%|████████▍ | 840/999 [13:47<02:09, 1.23it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 74.67it/s] 64%|██████▍ | 16/25 [00:00<00:00, 75.08it/s] 96%|█████████▌| 24/25 [00:00<00:00, 75.29it/s] 100%|██████████| 25/25 [00:00<00:00, 75.18it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 75.21it/s] 64%|██████▍ | 16/25 [00:00<00:00, 74.76it/s] 96%|█████████▌| 24/25 [00:00<00:00, 74.75it/s] 100%|██████████| 25/25 [00:00<00:00, 74.75it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 18.76it/s] 40%|████ | 4/10 [00:00<00:00, 18.69it/s] 60%|██████ | 6/10 [00:00<00:00, 18.73it/s] 80%|████████ | 8/10 [00:00<00:00, 18.72it/s] 100%|██████████| 10/10 [00:00<00:00, 18.72it/s] 100%|██████████| 10/10 [00:00<00:00, 18.72it/s] frame_idx: 842 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 438 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 frame_idx: 842 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 438 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 84%|████████▍ | 841/999 [13:49<02:53, 1.10s/it] 84%|████████▍ | 842/999 [13:49<02:07, 1.23it/s] 0%| | 0/25 [00:00<?, ?it/s] 28%|██▊ | 7/25 [00:00<00:00, 66.13it/s] 60%|██████ | 15/25 [00:00<00:00, 68.58it/s] 88%|████████▊ | 22/25 [00:00<00:00, 68.63it/s] 100%|██████████| 25/25 [00:00<00:00, 68.82it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 74.64it/s] 64%|██████▍ | 16/25 [00:00<00:00, 74.82it/s] 96%|█████████▌| 24/25 [00:00<00:00, 74.84it/s] 100%|██████████| 25/25 [00:00<00:00, 74.30it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 18.85it/s] 40%|████ | 4/10 [00:00<00:00, 18.70it/s] 60%|██████ | 6/10 [00:00<00:00, 18.71it/s] 80%|████████ | 8/10 [00:00<00:00, 18.69it/s] 100%|██████████| 10/10 [00:00<00:00, 18.68it/s] 100%|██████████| 10/10 [00:00<00:00, 18.68it/s] frame_idx: 844 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 439 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 frame_idx: 844 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 439 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 84%|████████▍ | 843/999 [13:51<02:53, 1.11s/it] 84%|████████▍ | 844/999 [13:51<02:06, 1.23it/s] 0%| | 0/25 [00:00<?, ?it/s] 28%|██▊ | 7/25 [00:00<00:00, 66.57it/s] 60%|██████ | 15/25 [00:00<00:00, 68.81it/s] 92%|█████████▏| 23/25 [00:00<00:00, 69.64it/s] 100%|██████████| 25/25 [00:00<00:00, 69.24it/s] 0%| | 0/25 [00:00<?, ?it/s] 28%|██▊ | 7/25 [00:00<00:00, 69.97it/s] 56%|█████▌ | 14/25 [00:00<00:00, 69.88it/s] 88%|████████▊ | 22/25 [00:00<00:00, 71.53it/s] 100%|██████████| 25/25 [00:00<00:00, 71.05it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 18.87it/s] 40%|████ | 4/10 [00:00<00:00, 18.74it/s] 60%|██████ | 6/10 [00:00<00:00, 18.57it/s] 80%|████████ | 8/10 [00:00<00:00, 18.61it/s] 100%|██████████| 10/10 [00:00<00:00, 18.63it/s] 100%|██████████| 10/10 [00:00<00:00, 18.63it/s] frame_idx: 846 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 440 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 frame_idx: 846 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 440 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 85%|████████▍ | 845/999 [13:53<02:52, 1.12s/it] 85%|████████▍ | 846/999 [13:53<02:05, 1.22it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 69.78it/s] 60%|██████ | 15/25 [00:00<00:00, 68.16it/s] 92%|█████████▏| 23/25 [00:00<00:00, 69.62it/s] 100%|██████████| 25/25 [00:00<00:00, 69.74it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 72.45it/s] 64%|██████▍ | 16/25 [00:00<00:00, 70.87it/s] 96%|█████████▌| 24/25 [00:00<00:00, 70.47it/s] 100%|██████████| 25/25 [00:00<00:00, 70.69it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 18.81it/s] 40%|████ | 4/10 [00:00<00:00, 18.72it/s] 60%|██████ | 6/10 [00:00<00:00, 18.70it/s] 80%|████████ | 8/10 [00:00<00:00, 18.67it/s] 100%|██████████| 10/10 [00:00<00:00, 18.63it/s] 100%|██████████| 10/10 [00:00<00:00, 18.66it/s] frame_idx: 848 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 441 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 frame_idx: 848 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 441 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 85%|████████▍ | 847/999 [13:55<02:50, 1.12s/it] 85%|████████▍ | 848/999 [13:55<02:04, 1.21it/s] 0%| | 0/25 [00:00<?, ?it/s] 28%|██▊ | 7/25 [00:00<00:00, 67.89it/s] 60%|██████ | 15/25 [00:00<00:00, 69.44it/s] 88%|████████▊ | 22/25 [00:00<00:00, 69.16it/s] 100%|██████████| 25/25 [00:00<00:00, 69.72it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 73.57it/s] 64%|██████▍ | 16/25 [00:00<00:00, 73.63it/s] 96%|█████████▌| 24/25 [00:00<00:00, 73.80it/s] 100%|██████████| 25/25 [00:00<00:00, 73.52it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 18.84it/s] 40%|████ | 4/10 [00:00<00:00, 18.71it/s] 60%|██████ | 6/10 [00:00<00:00, 18.71it/s] 80%|████████ | 8/10 [00:00<00:00, 18.67it/s] 100%|██████████| 10/10 [00:00<00:00, 18.67it/s] 100%|██████████| 10/10 [00:00<00:00, 18.68it/s] frame_idx: 850 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 442 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 frame_idx: 850 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 442 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 85%|████████▍ | 849/999 [13:57<02:48, 1.13s/it] 85%|████████▌ | 850/999 [13:57<02:03, 1.20it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 73.96it/s] 64%|██████▍ | 16/25 [00:00<00:00, 70.82it/s] 96%|█████████▌| 24/25 [00:00<00:00, 69.10it/s] 100%|██████████| 25/25 [00:00<00:00, 69.73it/s] 0%| | 0/25 [00:00<?, ?it/s] 28%|██▊ | 7/25 [00:00<00:00, 69.57it/s] 56%|█████▌ | 14/25 [00:00<00:00, 69.01it/s] 88%|████████▊ | 22/25 [00:00<00:00, 69.91it/s] 100%|██████████| 25/25 [00:00<00:00, 70.21it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 18.81it/s] 40%|████ | 4/10 [00:00<00:00, 18.73it/s] 60%|██████ | 6/10 [00:00<00:00, 18.66it/s] 80%|████████ | 8/10 [00:00<00:00, 18.65it/s] 100%|██████████| 10/10 [00:00<00:00, 18.63it/s] 100%|██████████| 10/10 [00:00<00:00, 18.65it/s] frame_idx: 852 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 443 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 frame_idx: 852 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 443 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 85%|████████▌ | 851/999 [13:59<02:47, 1.13s/it] 85%|████████▌ | 852/999 [13:59<02:02, 1.20it/s] 0%| | 0/25 [00:00<?, ?it/s] 28%|██▊ | 7/25 [00:00<00:00, 67.05it/s] 60%|██████ | 15/25 [00:00<00:00, 71.49it/s] 92%|█████████▏| 23/25 [00:00<00:00, 70.99it/s] 100%|██████████| 25/25 [00:00<00:00, 70.89it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 75.10it/s] 64%|██████▍ | 16/25 [00:00<00:00, 74.76it/s] 96%|█████████▌| 24/25 [00:00<00:00, 72.79it/s] 100%|██████████| 25/25 [00:00<00:00, 72.98it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 18.89it/s] 40%|████ | 4/10 [00:00<00:00, 18.71it/s] 60%|██████ | 6/10 [00:00<00:00, 18.66it/s] 80%|████████ | 8/10 [00:00<00:00, 18.60it/s] 100%|██████████| 10/10 [00:00<00:00, 18.60it/s] 100%|██████████| 10/10 [00:00<00:00, 18.63it/s] frame_idx: 854 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 444 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 frame_idx: 854 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 444 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 85%|████████▌ | 853/999 [14:01<02:43, 1.12s/it] 85%|████████▌ | 854/999 [14:01<01:59, 1.21it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 74.25it/s] 64%|██████▍ | 16/25 [00:00<00:00, 74.55it/s] 96%|█████████▌| 24/25 [00:00<00:00, 73.07it/s] 100%|██████████| 25/25 [00:00<00:00, 73.17it/s] 0%| | 0/25 [00:00<?, ?it/s] 28%|██▊ | 7/25 [00:00<00:00, 69.75it/s] 60%|██████ | 15/25 [00:00<00:00, 72.72it/s] 92%|█████████▏| 23/25 [00:00<00:00, 73.65it/s] 100%|██████████| 25/25 [00:00<00:00, 73.15it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 18.80it/s] 40%|████ | 4/10 [00:00<00:00, 18.66it/s] 60%|██████ | 6/10 [00:00<00:00, 18.61it/s] 80%|████████ | 8/10 [00:00<00:00, 18.58it/s] 100%|██████████| 10/10 [00:00<00:00, 18.61it/s] 100%|██████████| 10/10 [00:00<00:00, 18.61it/s] frame_idx: 856 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 445 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 frame_idx: 856 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 445 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 86%|████████▌ | 855/999 [14:03<02:41, 1.12s/it] 86%|████████▌ | 856/999 [14:03<01:58, 1.21it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 71.66it/s] 64%|██████▍ | 16/25 [00:00<00:00, 73.51it/s] 96%|█████████▌| 24/25 [00:00<00:00, 73.05it/s] 100%|██████████| 25/25 [00:00<00:00, 72.85it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 71.74it/s] 64%|██████▍ | 16/25 [00:00<00:00, 73.12it/s] 96%|█████████▌| 24/25 [00:00<00:00, 73.67it/s] 100%|██████████| 25/25 [00:00<00:00, 73.32it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 18.85it/s] 40%|████ | 4/10 [00:00<00:00, 18.74it/s] 60%|██████ | 6/10 [00:00<00:00, 18.70it/s] 80%|████████ | 8/10 [00:00<00:00, 18.72it/s] 100%|██████████| 10/10 [00:00<00:00, 18.69it/s] 100%|██████████| 10/10 [00:00<00:00, 18.70it/s] frame_idx: 858 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 446 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 frame_idx: 858 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 446 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 86%|████████▌ | 857/999 [14:05<02:39, 1.12s/it] 86%|████████▌ | 858/999 [14:05<01:56, 1.21it/s] 0%| | 0/25 [00:00<?, ?it/s] 28%|██▊ | 7/25 [00:00<00:00, 69.03it/s] 60%|██████ | 15/25 [00:00<00:00, 72.49it/s] 92%|█████████▏| 23/25 [00:00<00:00, 72.87it/s] 100%|██████████| 25/25 [00:00<00:00, 72.18it/s] 0%| | 0/25 [00:00<?, ?it/s] 28%|██▊ | 7/25 [00:00<00:00, 66.82it/s] 56%|█████▌ | 14/25 [00:00<00:00, 67.97it/s] 88%|████████▊ | 22/25 [00:00<00:00, 69.02it/s] 100%|██████████| 25/25 [00:00<00:00, 68.54it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 18.83it/s] 40%|████ | 4/10 [00:00<00:00, 18.69it/s] 60%|██████ | 6/10 [00:00<00:00, 18.67it/s] 80%|████████ | 8/10 [00:00<00:00, 18.68it/s] 100%|██████████| 10/10 [00:00<00:00, 18.67it/s] 100%|██████████| 10/10 [00:00<00:00, 18.68it/s] frame_idx: 860 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 447 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 frame_idx: 860 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 447 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 86%|████████▌ | 859/999 [14:07<02:37, 1.13s/it] 86%|████████▌ | 860/999 [14:07<01:55, 1.21it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 71.48it/s] 64%|██████▍ | 16/25 [00:00<00:00, 70.26it/s] 96%|█████████▌| 24/25 [00:00<00:00, 70.06it/s] 100%|██████████| 25/25 [00:00<00:00, 70.17it/s] 0%| | 0/25 [00:00<?, ?it/s] 28%|██▊ | 7/25 [00:00<00:00, 69.56it/s] 60%|██████ | 15/25 [00:00<00:00, 70.34it/s] 92%|█████████▏| 23/25 [00:00<00:00, 72.24it/s] 100%|██████████| 25/25 [00:00<00:00, 71.48it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 18.76it/s] 40%|████ | 4/10 [00:00<00:00, 18.68it/s] 60%|██████ | 6/10 [00:00<00:00, 18.68it/s] 80%|████████ | 8/10 [00:00<00:00, 18.66it/s] 100%|██████████| 10/10 [00:00<00:00, 18.69it/s] 100%|██████████| 10/10 [00:00<00:00, 18.68it/s] frame_idx: 862 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 448 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 frame_idx: 862 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 448 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 86%|████████▌ | 861/999 [14:09<02:36, 1.13s/it] 86%|████████▋ | 862/999 [14:09<01:53, 1.20it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 73.53it/s] 64%|██████▍ | 16/25 [00:00<00:00, 71.70it/s] 96%|█████████▌| 24/25 [00:00<00:00, 72.03it/s] 100%|██████████| 25/25 [00:00<00:00, 72.19it/s] 0%| | 0/25 [00:00<?, ?it/s] 28%|██▊ | 7/25 [00:00<00:00, 64.95it/s] 60%|██████ | 15/25 [00:00<00:00, 67.85it/s] 92%|█████████▏| 23/25 [00:00<00:00, 70.50it/s] 100%|██████████| 25/25 [00:00<00:00, 69.65it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 18.87it/s] 40%|████ | 4/10 [00:00<00:00, 18.70it/s] 60%|██████ | 6/10 [00:00<00:00, 18.67it/s] 80%|████████ | 8/10 [00:00<00:00, 18.67it/s] 100%|██████████| 10/10 [00:00<00:00, 18.65it/s] 100%|██████████| 10/10 [00:00<00:00, 18.66it/s] frame_idx: 864 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 449 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 frame_idx: 864 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 449 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 86%|████████▋ | 863/999 [14:11<02:33, 1.13s/it] 86%|████████▋ | 864/999 [14:11<01:52, 1.20it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 73.26it/s] 64%|██████▍ | 16/25 [00:00<00:00, 74.05it/s] 96%|█████████▌| 24/25 [00:00<00:00, 74.31it/s] 100%|██████████| 25/25 [00:00<00:00, 73.71it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 73.19it/s] 64%|██████▍ | 16/25 [00:00<00:00, 71.09it/s] 96%|█████████▌| 24/25 [00:00<00:00, 70.24it/s] 100%|██████████| 25/25 [00:00<00:00, 70.76it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 18.01it/s] 40%|████ | 4/10 [00:00<00:00, 18.37it/s] 60%|██████ | 6/10 [00:00<00:00, 18.48it/s] 80%|████████ | 8/10 [00:00<00:00, 18.53it/s] 100%|██████████| 10/10 [00:00<00:00, 18.57it/s] 100%|██████████| 10/10 [00:00<00:00, 18.49it/s] frame_idx: 866 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 450 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 frame_idx: 866 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 450 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 87%|████████▋ | 865/999 [14:13<02:31, 1.13s/it] 87%|████████▋ | 866/999 [14:13<01:50, 1.20it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 73.54it/s] 64%|██████▍ | 16/25 [00:00<00:00, 74.10it/s] 96%|█████████▌| 24/25 [00:00<00:00, 72.56it/s] 100%|██████████| 25/25 [00:00<00:00, 72.54it/s] 0%| | 0/25 [00:00<?, ?it/s] 28%|██▊ | 7/25 [00:00<00:00, 68.19it/s] 56%|█████▌ | 14/25 [00:00<00:00, 68.09it/s] 88%|████████▊ | 22/25 [00:00<00:00, 69.33it/s] 100%|██████████| 25/25 [00:00<00:00, 69.23it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 18.80it/s] 40%|████ | 4/10 [00:00<00:00, 18.74it/s] 60%|██████ | 6/10 [00:00<00:00, 18.70it/s] 80%|████████ | 8/10 [00:00<00:00, 18.68it/s] 100%|██████████| 10/10 [00:00<00:00, 18.67it/s] 100%|██████████| 10/10 [00:00<00:00, 18.68it/s] frame_idx: 868 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 451 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 frame_idx: 868 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 451 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 87%|████████▋ | 867/999 [14:15<02:29, 1.13s/it] 87%|████████▋ | 868/999 [14:15<01:49, 1.20it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 74.02it/s] 64%|██████▍ | 16/25 [00:00<00:00, 74.28it/s] 96%|█████████▌| 24/25 [00:00<00:00, 74.53it/s] 100%|██████████| 25/25 [00:00<00:00, 74.45it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 74.49it/s] 64%|██████▍ | 16/25 [00:00<00:00, 73.23it/s] 96%|█████████▌| 24/25 [00:00<00:00, 70.72it/s] 100%|██████████| 25/25 [00:00<00:00, 71.61it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 18.79it/s] 40%|████ | 4/10 [00:00<00:00, 18.68it/s] 60%|██████ | 6/10 [00:00<00:00, 18.65it/s] 80%|████████ | 8/10 [00:00<00:00, 18.65it/s] 100%|██████████| 10/10 [00:00<00:00, 18.66it/s] 100%|██████████| 10/10 [00:00<00:00, 18.66it/s] frame_idx: 870 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 452 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 frame_idx: 870 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 452 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 87%|████████▋ | 869/999 [14:16<02:25, 1.12s/it] 87%|████████▋ | 870/999 [14:17<01:46, 1.21it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 73.98it/s] 64%|██████▍ | 16/25 [00:00<00:00, 74.19it/s] 96%|█████████▌| 24/25 [00:00<00:00, 74.19it/s] 100%|██████████| 25/25 [00:00<00:00, 74.04it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 73.73it/s] 64%|██████▍ | 16/25 [00:00<00:00, 72.89it/s] 96%|█████████▌| 24/25 [00:00<00:00, 70.61it/s] 100%|██████████| 25/25 [00:00<00:00, 71.28it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 18.66it/s] 40%|████ | 4/10 [00:00<00:00, 18.52it/s] 60%|██████ | 6/10 [00:00<00:00, 18.52it/s] 80%|████████ | 8/10 [00:00<00:00, 18.58it/s] 100%|██████████| 10/10 [00:00<00:00, 18.59it/s] 100%|██████████| 10/10 [00:00<00:00, 18.57it/s] frame_idx: 872 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 453 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 frame_idx: 872 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 453 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 87%|████████▋ | 871/999 [14:18<02:23, 1.12s/it] 87%|████████▋ | 872/999 [14:19<01:45, 1.20it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 73.37it/s] 64%|██████▍ | 16/25 [00:00<00:00, 74.29it/s] 96%|█████████▌| 24/25 [00:00<00:00, 73.79it/s] 100%|██████████| 25/25 [00:00<00:00, 73.80it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 74.54it/s] 64%|██████▍ | 16/25 [00:00<00:00, 74.57it/s] 96%|█████████▌| 24/25 [00:00<00:00, 71.86it/s] 100%|██████████| 25/25 [00:00<00:00, 72.39it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 18.88it/s] 40%|████ | 4/10 [00:00<00:00, 18.75it/s] 60%|██████ | 6/10 [00:00<00:00, 18.75it/s] 80%|████████ | 8/10 [00:00<00:00, 18.73it/s] 100%|██████████| 10/10 [00:00<00:00, 18.70it/s] 100%|██████████| 10/10 [00:00<00:00, 18.72it/s] frame_idx: 874 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 454 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 frame_idx: 874 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 454 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 87%|████████▋ | 873/999 [14:20<02:21, 1.12s/it] 87%|████████▋ | 874/999 [14:21<01:43, 1.21it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 72.73it/s] 64%|██████▍ | 16/25 [00:00<00:00, 73.76it/s] 96%|█████████▌| 24/25 [00:00<00:00, 73.00it/s] 100%|██████████| 25/25 [00:00<00:00, 73.14it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 74.41it/s] 64%|██████▍ | 16/25 [00:00<00:00, 72.62it/s] 96%|█████████▌| 24/25 [00:00<00:00, 71.76it/s] 100%|██████████| 25/25 [00:00<00:00, 71.93it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 18.79it/s] 40%|████ | 4/10 [00:00<00:00, 18.75it/s] 60%|██████ | 6/10 [00:00<00:00, 18.67it/s] 80%|████████ | 8/10 [00:00<00:00, 18.66it/s] 100%|██████████| 10/10 [00:00<00:00, 18.67it/s] 100%|██████████| 10/10 [00:00<00:00, 18.68it/s] frame_idx: 876 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 455 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 frame_idx: 876 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 455 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 88%|████████▊ | 875/999 [14:22<02:19, 1.12s/it] 88%|████████▊ | 876/999 [14:22<01:41, 1.21it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 73.46it/s] 64%|██████▍ | 16/25 [00:00<00:00, 73.85it/s] 96%|█████████▌| 24/25 [00:00<00:00, 72.37it/s] 100%|██████████| 25/25 [00:00<00:00, 72.73it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 74.91it/s] 64%|██████▍ | 16/25 [00:00<00:00, 74.64it/s] 96%|█████████▌| 24/25 [00:00<00:00, 74.39it/s] 100%|██████████| 25/25 [00:00<00:00, 74.40it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 18.87it/s] 40%|████ | 4/10 [00:00<00:00, 18.65it/s] 60%|██████ | 6/10 [00:00<00:00, 18.65it/s] 80%|████████ | 8/10 [00:00<00:00, 18.67it/s] 100%|██████████| 10/10 [00:00<00:00, 18.64it/s] 100%|██████████| 10/10 [00:00<00:00, 18.65it/s] frame_idx: 878 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 456 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 frame_idx: 878 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 456 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 88%|████████▊ | 877/999 [14:24<02:17, 1.12s/it] 88%|████████▊ | 878/999 [14:24<01:40, 1.20it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 73.25it/s] 64%|██████▍ | 16/25 [00:00<00:00, 73.98it/s] 96%|█████████▌| 24/25 [00:00<00:00, 73.87it/s] 100%|██████████| 25/25 [00:00<00:00, 73.82it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 71.63it/s] 64%|██████▍ | 16/25 [00:00<00:00, 70.39it/s] 96%|█████████▌| 24/25 [00:00<00:00, 69.62it/s] 100%|██████████| 25/25 [00:00<00:00, 69.87it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 18.85it/s] 40%|████ | 4/10 [00:00<00:00, 18.78it/s] 60%|██████ | 6/10 [00:00<00:00, 18.74it/s] 80%|████████ | 8/10 [00:00<00:00, 18.74it/s] 100%|██████████| 10/10 [00:00<00:00, 18.71it/s] 100%|██████████| 10/10 [00:00<00:00, 18.72it/s] frame_idx: 880 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 457 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 frame_idx: 880 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 457 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 88%|████████▊ | 879/999 [14:26<02:15, 1.13s/it] 88%|████████▊ | 880/999 [14:26<01:38, 1.20it/s] 0%| | 0/25 [00:00<?, ?it/s] 28%|██▊ | 7/25 [00:00<00:00, 67.80it/s] 56%|█████▌ | 14/25 [00:00<00:00, 68.48it/s] 84%|████████▍ | 21/25 [00:00<00:00, 68.83it/s] 100%|██████████| 25/25 [00:00<00:00, 68.83it/s] 0%| | 0/25 [00:00<?, ?it/s] 28%|██▊ | 7/25 [00:00<00:00, 69.11it/s] 60%|██████ | 15/25 [00:00<00:00, 71.25it/s] 92%|█████████▏| 23/25 [00:00<00:00, 70.12it/s] 100%|██████████| 25/25 [00:00<00:00, 70.04it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 18.19it/s] 40%|████ | 4/10 [00:00<00:00, 18.48it/s] 60%|██████ | 6/10 [00:00<00:00, 18.56it/s] 80%|████████ | 8/10 [00:00<00:00, 18.57it/s] 100%|██████████| 10/10 [00:00<00:00, 18.59it/s] 100%|██████████| 10/10 [00:00<00:00, 18.54it/s] frame_idx: 882 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 458 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 frame_idx: 882 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 458 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 88%|████████▊ | 881/999 [14:28<02:14, 1.14s/it] 88%|████████▊ | 882/999 [14:28<01:37, 1.19it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 72.34it/s] 64%|██████▍ | 16/25 [00:00<00:00, 70.50it/s] 96%|█████████▌| 24/25 [00:00<00:00, 69.41it/s] 100%|██████████| 25/25 [00:00<00:00, 69.69it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 70.89it/s] 64%|██████▍ | 16/25 [00:00<00:00, 70.08it/s] 96%|█████████▌| 24/25 [00:00<00:00, 71.25it/s] 100%|██████████| 25/25 [00:00<00:00, 71.12it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 18.82it/s] 40%|████ | 4/10 [00:00<00:00, 18.75it/s] 60%|██████ | 6/10 [00:00<00:00, 18.70it/s] 80%|████████ | 8/10 [00:00<00:00, 18.73it/s] 100%|██████████| 10/10 [00:00<00:00, 18.72it/s] 100%|██████████| 10/10 [00:00<00:00, 18.72it/s] frame_idx: 884 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 459 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 frame_idx: 884 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 459 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 88%|████████▊ | 883/999 [14:30<02:11, 1.14s/it] 88%|████████▊ | 884/999 [14:30<01:36, 1.20it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 73.38it/s] 64%|██████▍ | 16/25 [00:00<00:00, 73.75it/s] 96%|█████████▌| 24/25 [00:00<00:00, 74.34it/s] 100%|██████████| 25/25 [00:00<00:00, 74.12it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 75.09it/s] 64%|██████▍ | 16/25 [00:00<00:00, 74.72it/s] 96%|█████████▌| 24/25 [00:00<00:00, 74.49it/s] 100%|██████████| 25/25 [00:00<00:00, 74.55it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 18.80it/s] 40%|████ | 4/10 [00:00<00:00, 18.69it/s] 60%|██████ | 6/10 [00:00<00:00, 18.71it/s] 80%|████████ | 8/10 [00:00<00:00, 18.68it/s] 100%|██████████| 10/10 [00:00<00:00, 18.66it/s] 100%|██████████| 10/10 [00:00<00:00, 18.67it/s] frame_idx: 886 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 460 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 frame_idx: 886 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 460 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 89%|████████▊ | 885/999 [14:32<02:08, 1.12s/it] 89%|████████▊ | 886/999 [14:32<01:33, 1.20it/s] 0%| | 0/25 [00:00<?, ?it/s] 28%|██▊ | 7/25 [00:00<00:00, 68.69it/s] 56%|█████▌ | 14/25 [00:00<00:00, 68.68it/s] 84%|████████▍ | 21/25 [00:00<00:00, 68.36it/s] 100%|██████████| 25/25 [00:00<00:00, 68.43it/s] 0%| | 0/25 [00:00<?, ?it/s] 28%|██▊ | 7/25 [00:00<00:00, 69.32it/s] 56%|█████▌ | 14/25 [00:00<00:00, 69.02it/s] 84%|████████▍ | 21/25 [00:00<00:00, 68.83it/s] 100%|██████████| 25/25 [00:00<00:00, 68.59it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 18.79it/s] 40%|████ | 4/10 [00:00<00:00, 18.70it/s] 60%|██████ | 6/10 [00:00<00:00, 18.64it/s] 80%|████████ | 8/10 [00:00<00:00, 18.63it/s] 100%|██████████| 10/10 [00:00<00:00, 18.65it/s] 100%|██████████| 10/10 [00:00<00:00, 18.65it/s] frame_idx: 888 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 461 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 frame_idx: 888 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 461 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 89%|████████▉ | 887/999 [14:34<02:07, 1.14s/it] 89%|████████▉ | 888/999 [14:34<01:33, 1.19it/s] 0%| | 0/25 [00:00<?, ?it/s] 28%|██▊ | 7/25 [00:00<00:00, 66.73it/s] 60%|██████ | 15/25 [00:00<00:00, 71.03it/s] 92%|█████████▏| 23/25 [00:00<00:00, 72.90it/s] 100%|██████████| 25/25 [00:00<00:00, 72.14it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 72.12it/s] 64%|██████▍ | 16/25 [00:00<00:00, 73.10it/s] 96%|█████████▌| 24/25 [00:00<00:00, 73.83it/s] 100%|██████████| 25/25 [00:00<00:00, 73.52it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 18.76it/s] 40%|████ | 4/10 [00:00<00:00, 18.63it/s] 60%|██████ | 6/10 [00:00<00:00, 18.60it/s] 80%|████████ | 8/10 [00:00<00:00, 18.61it/s] 100%|██████████| 10/10 [00:00<00:00, 18.56it/s] 100%|██████████| 10/10 [00:00<00:00, 18.58it/s] frame_idx: 890 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 462 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 frame_idx: 890 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 462 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 89%|████████▉ | 889/999 [14:36<02:04, 1.13s/it] 89%|████████▉ | 890/999 [14:36<01:30, 1.20it/s] 0%| | 0/25 [00:00<?, ?it/s] 28%|██▊ | 7/25 [00:00<00:00, 68.86it/s] 60%|██████ | 15/25 [00:00<00:00, 72.02it/s] 92%|█████████▏| 23/25 [00:00<00:00, 73.25it/s] 100%|██████████| 25/25 [00:00<00:00, 72.38it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 71.03it/s] 64%|██████▍ | 16/25 [00:00<00:00, 71.53it/s] 96%|█████████▌| 24/25 [00:00<00:00, 72.93it/s] 100%|██████████| 25/25 [00:00<00:00, 72.36it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 18.82it/s] 40%|████ | 4/10 [00:00<00:00, 18.72it/s] 60%|██████ | 6/10 [00:00<00:00, 18.64it/s] 80%|████████ | 8/10 [00:00<00:00, 18.66it/s] 100%|██████████| 10/10 [00:00<00:00, 18.65it/s] 100%|██████████| 10/10 [00:00<00:00, 18.66it/s] frame_idx: 892 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 463 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 frame_idx: 892 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 463 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 89%|████████▉ | 891/999 [14:38<02:01, 1.13s/it] 89%|████████▉ | 892/999 [14:38<01:28, 1.20it/s] 0%| | 0/25 [00:00<?, ?it/s] 28%|██▊ | 7/25 [00:00<00:00, 65.82it/s] 56%|█████▌ | 14/25 [00:00<00:00, 68.18it/s] 88%|████████▊ | 22/25 [00:00<00:00, 70.84it/s] 100%|██████████| 25/25 [00:00<00:00, 70.43it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 70.35it/s] 64%|██████▍ | 16/25 [00:00<00:00, 70.01it/s] 96%|█████████▌| 24/25 [00:00<00:00, 71.83it/s] 100%|██████████| 25/25 [00:00<00:00, 71.41it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 18.79it/s] 40%|████ | 4/10 [00:00<00:00, 18.70it/s] 60%|██████ | 6/10 [00:00<00:00, 18.62it/s] 80%|████████ | 8/10 [00:00<00:00, 18.56it/s] 100%|██████████| 10/10 [00:00<00:00, 18.52it/s] 100%|██████████| 10/10 [00:00<00:00, 18.56it/s] frame_idx: 894 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 464 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 frame_idx: 894 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 464 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 89%|████████▉ | 893/999 [14:40<02:00, 1.14s/it] 89%|████████▉ | 894/999 [14:40<01:28, 1.19it/s] 0%| | 0/25 [00:00<?, ?it/s] 28%|██▊ | 7/25 [00:00<00:00, 67.36it/s] 60%|██████ | 15/25 [00:00<00:00, 70.27it/s] 92%|█████████▏| 23/25 [00:00<00:00, 70.64it/s] 100%|██████████| 25/25 [00:00<00:00, 70.59it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 74.36it/s] 64%|██████▍ | 16/25 [00:00<00:00, 74.45it/s] 96%|█████████▌| 24/25 [00:00<00:00, 74.25it/s] 100%|██████████| 25/25 [00:00<00:00, 73.96it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 18.77it/s] 40%|████ | 4/10 [00:00<00:00, 18.69it/s] 60%|██████ | 6/10 [00:00<00:00, 18.52it/s] 80%|████████ | 8/10 [00:00<00:00, 18.57it/s] 100%|██████████| 10/10 [00:00<00:00, 18.62it/s] 100%|██████████| 10/10 [00:00<00:00, 18.61it/s] frame_idx: 896 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 465 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 frame_idx: 896 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 465 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 90%|████████▉ | 895/999 [14:42<01:57, 1.13s/it] 90%|████████▉ | 896/999 [14:42<01:26, 1.20it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 71.20it/s] 64%|██████▍ | 16/25 [00:00<00:00, 70.10it/s] 96%|█████████▌| 24/25 [00:00<00:00, 70.06it/s] 100%|██████████| 25/25 [00:00<00:00, 70.11it/s] 0%| | 0/25 [00:00<?, ?it/s] 28%|██▊ | 7/25 [00:00<00:00, 69.44it/s] 60%|██████ | 15/25 [00:00<00:00, 70.28it/s] 92%|█████████▏| 23/25 [00:00<00:00, 72.27it/s] 100%|██████████| 25/25 [00:00<00:00, 71.46it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 18.84it/s] 40%|████ | 4/10 [00:00<00:00, 18.75it/s] 60%|██████ | 6/10 [00:00<00:00, 18.74it/s] 80%|████████ | 8/10 [00:00<00:00, 18.72it/s] 100%|██████████| 10/10 [00:00<00:00, 18.68it/s] 100%|██████████| 10/10 [00:00<00:00, 18.70it/s] frame_idx: 898 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 466 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 frame_idx: 898 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 466 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 90%|████████▉ | 897/999 [14:44<01:55, 1.14s/it] 90%|████████▉ | 898/999 [14:44<01:24, 1.20it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 72.21it/s] 64%|██████▍ | 16/25 [00:00<00:00, 71.75it/s] 96%|█████████▌| 24/25 [00:00<00:00, 72.83it/s] 100%|██████████| 25/25 [00:00<00:00, 72.64it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 74.36it/s] 64%|██████▍ | 16/25 [00:00<00:00, 72.71it/s] 96%|█████████▌| 24/25 [00:00<00:00, 72.35it/s] 100%|██████████| 25/25 [00:00<00:00, 72.69it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 18.33it/s] 40%|████ | 4/10 [00:00<00:00, 18.50it/s] 60%|██████ | 6/10 [00:00<00:00, 18.55it/s] 80%|████████ | 8/10 [00:00<00:00, 18.56it/s] 100%|██████████| 10/10 [00:00<00:00, 18.58it/s] 100%|██████████| 10/10 [00:00<00:00, 18.54it/s] frame_idx: 900 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 467 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 frame_idx: 900 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 467 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 90%|████████▉ | 899/999 [14:46<02:00, 1.20s/it] 90%|█████████ | 900/999 [14:47<01:32, 1.07it/s] 0%| | 0/25 [00:00<?, ?it/s] 24%|██▍ | 6/25 [00:00<00:00, 59.86it/s] 56%|█████▌ | 14/25 [00:00<00:00, 69.00it/s] 88%|████████▊ | 22/25 [00:00<00:00, 71.52it/s] 100%|██████████| 25/25 [00:00<00:00, 70.35it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 74.48it/s] 64%|██████▍ | 16/25 [00:00<00:00, 68.68it/s] 92%|█████████▏| 23/25 [00:00<00:00, 68.98it/s] 100%|██████████| 25/25 [00:00<00:00, 69.42it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 18.72it/s] 40%|████ | 4/10 [00:00<00:00, 18.67it/s] 60%|██████ | 6/10 [00:00<00:00, 18.63it/s] 80%|████████ | 8/10 [00:00<00:00, 18.69it/s] 100%|██████████| 10/10 [00:00<00:00, 18.69it/s] 100%|██████████| 10/10 [00:00<00:00, 18.67it/s] frame_idx: 902 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 468 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 frame_idx: 902 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 468 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 90%|█████████ | 901/999 [14:48<02:02, 1.25s/it] 90%|█████████ | 902/999 [14:49<01:28, 1.10it/s] 0%| | 0/25 [00:00<?, ?it/s] 28%|██▊ | 7/25 [00:00<00:00, 68.99it/s] 60%|██████ | 15/25 [00:00<00:00, 70.25it/s] 92%|█████████▏| 23/25 [00:00<00:00, 70.05it/s] 100%|██████████| 25/25 [00:00<00:00, 69.94it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 70.16it/s] 64%|██████▍ | 16/25 [00:00<00:00, 70.21it/s] 96%|█████████▌| 24/25 [00:00<00:00, 69.79it/s] 100%|██████████| 25/25 [00:00<00:00, 69.85it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 18.76it/s] 40%|████ | 4/10 [00:00<00:00, 18.67it/s] 60%|██████ | 6/10 [00:00<00:00, 18.65it/s] 80%|████████ | 8/10 [00:00<00:00, 18.63it/s] 100%|██████████| 10/10 [00:00<00:00, 18.63it/s] 100%|██████████| 10/10 [00:00<00:00, 18.64it/s] frame_idx: 904 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 469 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 frame_idx: 904 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 469 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 90%|█████████ | 903/999 [14:50<01:54, 1.19s/it] 90%|█████████ | 904/999 [14:51<01:22, 1.15it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 73.05it/s] 64%|██████▍ | 16/25 [00:00<00:00, 73.92it/s] 96%|█████████▌| 24/25 [00:00<00:00, 72.57it/s] 100%|██████████| 25/25 [00:00<00:00, 72.24it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 75.00it/s] 64%|██████▍ | 16/25 [00:00<00:00, 74.51it/s] 96%|█████████▌| 24/25 [00:00<00:00, 71.76it/s] 100%|██████████| 25/25 [00:00<00:00, 72.38it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 18.79it/s] 40%|████ | 4/10 [00:00<00:00, 18.74it/s] 60%|██████ | 6/10 [00:00<00:00, 18.71it/s] 80%|████████ | 8/10 [00:00<00:00, 18.70it/s] 100%|██████████| 10/10 [00:00<00:00, 18.68it/s] 100%|██████████| 10/10 [00:00<00:00, 18.69it/s] frame_idx: 906 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 470 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 frame_idx: 906 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 470 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 91%|█████████ | 905/999 [14:52<01:48, 1.16s/it] 91%|█████████ | 906/999 [14:53<01:19, 1.17it/s] 0%| | 0/25 [00:00<?, ?it/s] 28%|██▊ | 7/25 [00:00<00:00, 68.28it/s] 56%|█████▌ | 14/25 [00:00<00:00, 68.19it/s] 84%|████████▍ | 21/25 [00:00<00:00, 68.01it/s] 100%|██████████| 25/25 [00:00<00:00, 67.75it/s] 0%| | 0/25 [00:00<?, ?it/s] 28%|██▊ | 7/25 [00:00<00:00, 68.56it/s] 56%|█████▌ | 14/25 [00:00<00:00, 68.77it/s] 84%|████████▍ | 21/25 [00:00<00:00, 69.10it/s] 100%|██████████| 25/25 [00:00<00:00, 69.12it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 18.87it/s] 40%|████ | 4/10 [00:00<00:00, 18.75it/s] 60%|██████ | 6/10 [00:00<00:00, 18.73it/s] 80%|████████ | 8/10 [00:00<00:00, 18.74it/s] 100%|██████████| 10/10 [00:00<00:00, 18.70it/s] 100%|██████████| 10/10 [00:00<00:00, 18.71it/s] frame_idx: 908 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 471 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 frame_idx: 908 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 471 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 91%|█████████ | 907/999 [14:54<01:46, 1.16s/it] 91%|█████████ | 908/999 [14:55<01:17, 1.18it/s] 0%| | 0/25 [00:00<?, ?it/s] 28%|██▊ | 7/25 [00:00<00:00, 68.22it/s] 56%|█████▌ | 14/25 [00:00<00:00, 68.75it/s] 84%|████████▍ | 21/25 [00:00<00:00, 68.63it/s] 100%|██████████| 25/25 [00:00<00:00, 68.73it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 74.36it/s] 64%|██████▍ | 16/25 [00:00<00:00, 71.24it/s] 96%|█████████▌| 24/25 [00:00<00:00, 68.68it/s] 100%|██████████| 25/25 [00:00<00:00, 69.60it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 18.91it/s] 40%|████ | 4/10 [00:00<00:00, 18.77it/s] 60%|██████ | 6/10 [00:00<00:00, 18.75it/s] 80%|████████ | 8/10 [00:00<00:00, 18.70it/s] 100%|██████████| 10/10 [00:00<00:00, 18.71it/s] 100%|██████████| 10/10 [00:00<00:00, 18.72it/s] frame_idx: 910 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 472 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 frame_idx: 910 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 472 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 91%|█████████ | 909/999 [14:56<01:43, 1.15s/it] 91%|█████████ | 910/999 [14:57<01:15, 1.18it/s] 0%| | 0/25 [00:00<?, ?it/s] 28%|██▊ | 7/25 [00:00<00:00, 68.25it/s] 56%|█████▌ | 14/25 [00:00<00:00, 68.58it/s] 84%|████████▍ | 21/25 [00:00<00:00, 68.99it/s] 100%|██████████| 25/25 [00:00<00:00, 68.95it/s] 0%| | 0/25 [00:00<?, ?it/s] 28%|██▊ | 7/25 [00:00<00:00, 67.68it/s] 56%|█████▌ | 14/25 [00:00<00:00, 67.23it/s] 84%|████████▍ | 21/25 [00:00<00:00, 66.52it/s] 100%|██████████| 25/25 [00:00<00:00, 67.07it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 18.85it/s] 40%|████ | 4/10 [00:00<00:00, 18.77it/s] 60%|██████ | 6/10 [00:00<00:00, 18.74it/s] 80%|████████ | 8/10 [00:00<00:00, 18.73it/s] 100%|██████████| 10/10 [00:00<00:00, 18.69it/s] 100%|██████████| 10/10 [00:00<00:00, 18.71it/s] frame_idx: 912 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 473 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 frame_idx: 912 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 473 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 91%|█████████ | 911/999 [14:58<01:41, 1.15s/it] 91%|█████████▏| 912/999 [14:59<01:13, 1.18it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 70.84it/s] 64%|██████▍ | 16/25 [00:00<00:00, 73.06it/s] 96%|█████████▌| 24/25 [00:00<00:00, 73.22it/s] 100%|██████████| 25/25 [00:00<00:00, 73.00it/s] 0%| | 0/25 [00:00<?, ?it/s] 28%|██▊ | 7/25 [00:00<00:00, 69.26it/s] 56%|█████▌ | 14/25 [00:00<00:00, 69.32it/s] 84%|████████▍ | 21/25 [00:00<00:00, 69.31it/s] 100%|██████████| 25/25 [00:00<00:00, 69.32it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 18.83it/s] 40%|████ | 4/10 [00:00<00:00, 18.75it/s] 60%|██████ | 6/10 [00:00<00:00, 18.76it/s] 80%|████████ | 8/10 [00:00<00:00, 18.71it/s] 100%|██████████| 10/10 [00:00<00:00, 18.69it/s] 100%|██████████| 10/10 [00:00<00:00, 18.71it/s] frame_idx: 914 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 474 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 frame_idx: 914 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 474 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 91%|█████████▏| 913/999 [15:00<01:38, 1.14s/it] 91%|█████████▏| 914/999 [15:01<01:11, 1.18it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 74.02it/s] 64%|██████▍ | 16/25 [00:00<00:00, 74.47it/s] 96%|█████████▌| 24/25 [00:00<00:00, 71.92it/s] 100%|██████████| 25/25 [00:00<00:00, 72.38it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 74.98it/s] 64%|██████▍ | 16/25 [00:00<00:00, 74.91it/s] 96%|█████████▌| 24/25 [00:00<00:00, 74.48it/s] 100%|██████████| 25/25 [00:00<00:00, 74.28it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 17.70it/s] 40%|████ | 4/10 [00:00<00:00, 18.26it/s] 60%|██████ | 6/10 [00:00<00:00, 18.46it/s] 80%|████████ | 8/10 [00:00<00:00, 18.55it/s] 100%|██████████| 10/10 [00:00<00:00, 18.59it/s] 100%|██████████| 10/10 [00:00<00:00, 18.47it/s] frame_idx: 916 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 475 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 frame_idx: 916 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 475 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 92%|█████████▏| 915/999 [15:02<01:35, 1.13s/it] 92%|█████████▏| 916/999 [15:02<01:09, 1.20it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 73.17it/s] 64%|██████▍ | 16/25 [00:00<00:00, 74.06it/s] 96%|█████████▌| 24/25 [00:00<00:00, 74.17it/s] 100%|██████████| 25/25 [00:00<00:00, 73.77it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 75.34it/s] 64%|██████▍ | 16/25 [00:00<00:00, 74.69it/s] 96%|█████████▌| 24/25 [00:00<00:00, 74.57it/s] 100%|██████████| 25/25 [00:00<00:00, 74.41it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 18.84it/s] 40%|████ | 4/10 [00:00<00:00, 18.68it/s] 60%|██████ | 6/10 [00:00<00:00, 18.65it/s] 80%|████████ | 8/10 [00:00<00:00, 18.65it/s] 100%|██████████| 10/10 [00:00<00:00, 18.68it/s] 100%|██████████| 10/10 [00:00<00:00, 18.67it/s] frame_idx: 918 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 476 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 frame_idx: 918 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 476 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 92%|█████████▏| 917/999 [15:04<01:32, 1.12s/it] 92%|█████████▏| 918/999 [15:04<01:06, 1.21it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 73.56it/s] 64%|██████▍ | 16/25 [00:00<00:00, 74.21it/s] 96%|█████████▌| 24/25 [00:00<00:00, 74.37it/s] 100%|██████████| 25/25 [00:00<00:00, 73.61it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 74.80it/s] 64%|██████▍ | 16/25 [00:00<00:00, 74.78it/s] 96%|█████████▌| 24/25 [00:00<00:00, 74.76it/s] 100%|██████████| 25/25 [00:00<00:00, 74.53it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 18.87it/s] 40%|████ | 4/10 [00:00<00:00, 18.75it/s] 60%|██████ | 6/10 [00:00<00:00, 18.70it/s] 80%|████████ | 8/10 [00:00<00:00, 18.67it/s] 100%|██████████| 10/10 [00:00<00:00, 18.64it/s] 100%|██████████| 10/10 [00:00<00:00, 18.66it/s] frame_idx: 920 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 477 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 frame_idx: 920 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 477 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 92%|█████████▏| 919/999 [15:06<01:29, 1.11s/it] 92%|█████████▏| 920/999 [15:06<01:04, 1.22it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 70.21it/s] 64%|██████▍ | 16/25 [00:00<00:00, 72.95it/s] 96%|█████████▌| 24/25 [00:00<00:00, 73.97it/s] 100%|██████████| 25/25 [00:00<00:00, 73.44it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 74.21it/s] 64%|██████▍ | 16/25 [00:00<00:00, 74.92it/s] 96%|█████████▌| 24/25 [00:00<00:00, 75.30it/s] 100%|██████████| 25/25 [00:00<00:00, 75.11it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 18.78it/s] 40%|████ | 4/10 [00:00<00:00, 18.74it/s] 60%|██████ | 6/10 [00:00<00:00, 18.71it/s] 80%|████████ | 8/10 [00:00<00:00, 18.72it/s] 100%|██████████| 10/10 [00:00<00:00, 18.73it/s] 100%|██████████| 10/10 [00:00<00:00, 18.72it/s] frame_idx: 922 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 478 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 frame_idx: 922 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 478 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 92%|█████████▏| 921/999 [15:08<01:26, 1.11s/it] 92%|█████████▏| 922/999 [15:08<01:02, 1.23it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 70.84it/s] 64%|██████▍ | 16/25 [00:00<00:00, 73.11it/s] 96%|█████████▌| 24/25 [00:00<00:00, 74.19it/s] 100%|██████████| 25/25 [00:00<00:00, 73.74it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 75.26it/s] 64%|██████▍ | 16/25 [00:00<00:00, 75.05it/s] 96%|█████████▌| 24/25 [00:00<00:00, 73.74it/s] 100%|██████████| 25/25 [00:00<00:00, 74.15it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 18.86it/s] 40%|████ | 4/10 [00:00<00:00, 18.80it/s] 60%|██████ | 6/10 [00:00<00:00, 18.72it/s] 80%|████████ | 8/10 [00:00<00:00, 18.68it/s] 100%|██████████| 10/10 [00:00<00:00, 18.68it/s] 100%|██████████| 10/10 [00:00<00:00, 18.70it/s] frame_idx: 924 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 479 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 frame_idx: 924 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 479 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 92%|█████████▏| 923/999 [15:10<01:23, 1.10s/it] 92%|█████████▏| 924/999 [15:10<01:01, 1.23it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 74.10it/s] 64%|██████▍ | 16/25 [00:00<00:00, 69.59it/s] 96%|█████████▌| 24/25 [00:00<00:00, 70.33it/s] 100%|██████████| 25/25 [00:00<00:00, 70.68it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 73.24it/s] 64%|██████▍ | 16/25 [00:00<00:00, 74.19it/s] 96%|█████████▌| 24/25 [00:00<00:00, 74.31it/s] 100%|██████████| 25/25 [00:00<00:00, 74.11it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 18.83it/s] 40%|████ | 4/10 [00:00<00:00, 18.70it/s] 60%|██████ | 6/10 [00:00<00:00, 18.67it/s] 80%|████████ | 8/10 [00:00<00:00, 18.66it/s] 100%|██████████| 10/10 [00:00<00:00, 18.66it/s] 100%|██████████| 10/10 [00:00<00:00, 18.67it/s] frame_idx: 926 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 480 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 frame_idx: 926 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 480 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 93%|█████████▎| 925/999 [15:12<01:22, 1.11s/it] 93%|█████████▎| 926/999 [15:12<00:59, 1.22it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 73.18it/s] 64%|██████▍ | 16/25 [00:00<00:00, 71.18it/s] 96%|█████████▌| 24/25 [00:00<00:00, 71.38it/s] 100%|██████████| 25/25 [00:00<00:00, 71.40it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 73.27it/s] 64%|██████▍ | 16/25 [00:00<00:00, 74.11it/s] 96%|█████████▌| 24/25 [00:00<00:00, 71.79it/s] 100%|██████████| 25/25 [00:00<00:00, 72.15it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 18.85it/s] 40%|████ | 4/10 [00:00<00:00, 18.74it/s] 60%|██████ | 6/10 [00:00<00:00, 18.74it/s] 80%|████████ | 8/10 [00:00<00:00, 18.72it/s] 100%|██████████| 10/10 [00:00<00:00, 18.69it/s] 100%|██████████| 10/10 [00:00<00:00, 18.71it/s] frame_idx: 928 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 481 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 frame_idx: 928 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 481 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 93%|█████████▎| 927/999 [15:14<01:20, 1.12s/it] 93%|█████████▎| 928/999 [15:14<00:58, 1.21it/s] 0%| | 0/25 [00:00<?, ?it/s] 28%|██▊ | 7/25 [00:00<00:00, 68.47it/s] 56%|█████▌ | 14/25 [00:00<00:00, 68.77it/s] 84%|████████▍ | 21/25 [00:00<00:00, 69.00it/s] 100%|██████████| 25/25 [00:00<00:00, 69.02it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 74.93it/s] 64%|██████▍ | 16/25 [00:00<00:00, 73.74it/s] 96%|█████████▌| 24/25 [00:00<00:00, 71.36it/s] 100%|██████████| 25/25 [00:00<00:00, 71.99it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 18.69it/s] 40%|████ | 4/10 [00:00<00:00, 18.74it/s] 60%|██████ | 6/10 [00:00<00:00, 18.68it/s] 80%|████████ | 8/10 [00:00<00:00, 18.63it/s] 100%|██████████| 10/10 [00:00<00:00, 18.62it/s] 100%|██████████| 10/10 [00:00<00:00, 18.63it/s] frame_idx: 930 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 482 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 frame_idx: 930 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 482 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 93%|█████████▎| 929/999 [15:16<01:18, 1.12s/it] 93%|█████████▎| 930/999 [15:16<00:56, 1.21it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 74.45it/s] 64%|██████▍ | 16/25 [00:00<00:00, 74.91it/s] 96%|█████████▌| 24/25 [00:00<00:00, 73.27it/s] 100%|██████████| 25/25 [00:00<00:00, 73.48it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 72.17it/s] 64%|██████▍ | 16/25 [00:00<00:00, 70.49it/s] 96%|█████████▌| 24/25 [00:00<00:00, 71.43it/s] 100%|██████████| 25/25 [00:00<00:00, 71.23it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 18.84it/s] 40%|████ | 4/10 [00:00<00:00, 18.76it/s] 60%|██████ | 6/10 [00:00<00:00, 18.75it/s] 80%|████████ | 8/10 [00:00<00:00, 18.72it/s] 100%|██████████| 10/10 [00:00<00:00, 18.71it/s] 100%|██████████| 10/10 [00:00<00:00, 18.72it/s] frame_idx: 932 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 483 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 frame_idx: 932 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 483 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 93%|█████████▎| 931/999 [15:18<01:16, 1.12s/it] 93%|█████████▎| 932/999 [15:18<00:55, 1.21it/s] 0%| | 0/25 [00:00<?, ?it/s] 28%|██▊ | 7/25 [00:00<00:00, 68.89it/s] 60%|██████ | 15/25 [00:00<00:00, 72.24it/s] 92%|█████████▏| 23/25 [00:00<00:00, 73.45it/s] 100%|██████████| 25/25 [00:00<00:00, 72.29it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 72.07it/s] 64%|██████▍ | 16/25 [00:00<00:00, 74.00it/s] 96%|█████████▌| 24/25 [00:00<00:00, 72.75it/s] 100%|██████████| 25/25 [00:00<00:00, 72.95it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 18.79it/s] 40%|████ | 4/10 [00:00<00:00, 18.74it/s] 60%|██████ | 6/10 [00:00<00:00, 18.71it/s] 80%|████████ | 8/10 [00:00<00:00, 18.69it/s] 100%|██████████| 10/10 [00:00<00:00, 18.65it/s] 100%|██████████| 10/10 [00:00<00:00, 18.67it/s] frame_idx: 934 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 484 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 frame_idx: 934 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 484 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 93%|█████████▎| 933/999 [15:20<01:13, 1.12s/it] 93%|█████████▎| 934/999 [15:20<00:53, 1.21it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 74.15it/s] 64%|██████▍ | 16/25 [00:00<00:00, 73.05it/s] 96%|█████████▌| 24/25 [00:00<00:00, 73.82it/s] 100%|██████████| 25/25 [00:00<00:00, 73.77it/s] 0%| | 0/25 [00:00<?, ?it/s] 28%|██▊ | 7/25 [00:00<00:00, 69.08it/s] 56%|█████▌ | 14/25 [00:00<00:00, 68.70it/s] 84%|████████▍ | 21/25 [00:00<00:00, 68.62it/s] 100%|██████████| 25/25 [00:00<00:00, 69.22it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 18.86it/s] 40%|████ | 4/10 [00:00<00:00, 18.74it/s] 60%|██████ | 6/10 [00:00<00:00, 18.74it/s] 80%|████████ | 8/10 [00:00<00:00, 18.69it/s] 100%|██████████| 10/10 [00:00<00:00, 18.70it/s] 100%|██████████| 10/10 [00:00<00:00, 18.71it/s] frame_idx: 936 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 485 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 frame_idx: 936 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 485 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 94%|█████████▎| 935/999 [15:22<01:11, 1.12s/it] 94%|█████████▎| 936/999 [15:22<00:52, 1.21it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 73.70it/s] 64%|██████▍ | 16/25 [00:00<00:00, 74.38it/s] 96%|█████████▌| 24/25 [00:00<00:00, 73.34it/s] 100%|██████████| 25/25 [00:00<00:00, 73.51it/s] 0%| | 0/25 [00:00<?, ?it/s] 28%|██▊ | 7/25 [00:00<00:00, 69.93it/s] 56%|█████▌ | 14/25 [00:00<00:00, 68.78it/s] 84%|████████▍ | 21/25 [00:00<00:00, 68.62it/s] 100%|██████████| 25/25 [00:00<00:00, 68.58it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 18.90it/s] 40%|████ | 4/10 [00:00<00:00, 18.75it/s] 60%|██████ | 6/10 [00:00<00:00, 18.72it/s] 80%|████████ | 8/10 [00:00<00:00, 18.74it/s] 100%|██████████| 10/10 [00:00<00:00, 18.69it/s] 100%|██████████| 10/10 [00:00<00:00, 18.71it/s] frame_idx: 938 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 486 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 frame_idx: 938 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 486 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 94%|█████████▍| 937/999 [15:24<01:09, 1.12s/it] 94%|█████████▍| 938/999 [15:24<00:50, 1.21it/s] 0%| | 0/25 [00:00<?, ?it/s] 28%|██▊ | 7/25 [00:00<00:00, 67.56it/s] 56%|█████▌ | 14/25 [00:00<00:00, 68.27it/s] 88%|████████▊ | 22/25 [00:00<00:00, 71.37it/s] 100%|██████████| 25/25 [00:00<00:00, 70.26it/s] 0%| | 0/25 [00:00<?, ?it/s] 28%|██▊ | 7/25 [00:00<00:00, 65.89it/s] 56%|█████▌ | 14/25 [00:00<00:00, 67.82it/s] 84%|████████▍ | 21/25 [00:00<00:00, 68.20it/s] 100%|██████████| 25/25 [00:00<00:00, 68.81it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 18.84it/s] 40%|████ | 4/10 [00:00<00:00, 18.70it/s] 60%|██████ | 6/10 [00:00<00:00, 18.70it/s] 80%|████████ | 8/10 [00:00<00:00, 18.71it/s] 100%|██████████| 10/10 [00:00<00:00, 18.70it/s] 100%|██████████| 10/10 [00:00<00:00, 18.70it/s] frame_idx: 940 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 487 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 frame_idx: 940 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 487 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 94%|█████████▍| 939/999 [15:26<01:08, 1.14s/it] 94%|█████████▍| 940/999 [15:26<00:49, 1.20it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 72.65it/s] 64%|██████▍ | 16/25 [00:00<00:00, 72.95it/s] 96%|█████████▌| 24/25 [00:00<00:00, 73.98it/s] 100%|██████████| 25/25 [00:00<00:00, 73.72it/s] 0%| | 0/25 [00:00<?, ?it/s] 28%|██▊ | 7/25 [00:00<00:00, 65.46it/s] 56%|█████▌ | 14/25 [00:00<00:00, 67.53it/s] 88%|████████▊ | 22/25 [00:00<00:00, 69.27it/s] 100%|██████████| 25/25 [00:00<00:00, 68.64it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 18.90it/s] 40%|████ | 4/10 [00:00<00:00, 18.79it/s] 60%|██████ | 6/10 [00:00<00:00, 18.73it/s] 80%|████████ | 8/10 [00:00<00:00, 18.72it/s] 100%|██████████| 10/10 [00:00<00:00, 18.73it/s] 100%|██████████| 10/10 [00:00<00:00, 18.74it/s] frame_idx: 942 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 488 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 frame_idx: 942 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 488 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 94%|█████████▍| 941/999 [15:28<01:05, 1.13s/it] 94%|█████████▍| 942/999 [15:28<00:47, 1.20it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 74.49it/s] 64%|██████▍ | 16/25 [00:00<00:00, 74.89it/s] 96%|█████████▌| 24/25 [00:00<00:00, 74.68it/s] 100%|██████████| 25/25 [00:00<00:00, 74.45it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 75.43it/s] 64%|██████▍ | 16/25 [00:00<00:00, 71.78it/s] 96%|█████████▌| 24/25 [00:00<00:00, 72.86it/s] 100%|██████████| 25/25 [00:00<00:00, 72.64it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 18.87it/s] 40%|████ | 4/10 [00:00<00:00, 18.77it/s] 60%|██████ | 6/10 [00:00<00:00, 18.72it/s] 80%|████████ | 8/10 [00:00<00:00, 18.68it/s] 100%|██████████| 10/10 [00:00<00:00, 18.66it/s] 100%|██████████| 10/10 [00:00<00:00, 18.68it/s] frame_idx: 944 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 489 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 frame_idx: 944 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 489 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 94%|█████████▍| 943/999 [15:30<01:02, 1.12s/it] 94%|█████████▍| 944/999 [15:30<00:45, 1.21it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 74.13it/s] 64%|██████▍ | 16/25 [00:00<00:00, 74.22it/s] 96%|█████████▌| 24/25 [00:00<00:00, 74.32it/s] 100%|██████████| 25/25 [00:00<00:00, 74.07it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 74.85it/s] 64%|██████▍ | 16/25 [00:00<00:00, 72.50it/s] 96%|█████████▌| 24/25 [00:00<00:00, 71.85it/s] 100%|██████████| 25/25 [00:00<00:00, 72.14it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 18.83it/s] 40%|████ | 4/10 [00:00<00:00, 18.74it/s] 60%|██████ | 6/10 [00:00<00:00, 18.70it/s] 80%|████████ | 8/10 [00:00<00:00, 18.68it/s] 100%|██████████| 10/10 [00:00<00:00, 18.65it/s] 100%|██████████| 10/10 [00:00<00:00, 18.67it/s] frame_idx: 946 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 490 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 frame_idx: 946 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 490 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 95%|█████████▍| 945/999 [15:31<01:00, 1.12s/it] 95%|█████████▍| 946/999 [15:32<00:43, 1.21it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 74.05it/s] 64%|██████▍ | 16/25 [00:00<00:00, 72.46it/s] 96%|█████████▌| 24/25 [00:00<00:00, 73.57it/s] 100%|██████████| 25/25 [00:00<00:00, 73.19it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 74.81it/s] 64%|██████▍ | 16/25 [00:00<00:00, 71.43it/s] 96%|█████████▌| 24/25 [00:00<00:00, 70.22it/s] 100%|██████████| 25/25 [00:00<00:00, 70.81it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 18.78it/s] 40%|████ | 4/10 [00:00<00:00, 18.77it/s] 60%|██████ | 6/10 [00:00<00:00, 18.73it/s] 80%|████████ | 8/10 [00:00<00:00, 18.71it/s] 100%|██████████| 10/10 [00:00<00:00, 18.72it/s] 100%|██████████| 10/10 [00:00<00:00, 18.73it/s] frame_idx: 948 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 491 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 frame_idx: 948 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 491 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 95%|█████████▍| 947/999 [15:33<00:58, 1.12s/it] 95%|█████████▍| 948/999 [15:34<00:42, 1.21it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 74.14it/s] 64%|██████▍ | 16/25 [00:00<00:00, 74.50it/s] 96%|█████████▌| 24/25 [00:00<00:00, 74.80it/s] 100%|██████████| 25/25 [00:00<00:00, 74.70it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 75.49it/s] 64%|██████▍ | 16/25 [00:00<00:00, 75.35it/s] 96%|█████████▌| 24/25 [00:00<00:00, 75.33it/s] 100%|██████████| 25/25 [00:00<00:00, 75.35it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 18.85it/s] 40%|████ | 4/10 [00:00<00:00, 18.76it/s] 60%|██████ | 6/10 [00:00<00:00, 18.72it/s] 80%|████████ | 8/10 [00:00<00:00, 18.75it/s] 100%|██████████| 10/10 [00:00<00:00, 18.73it/s] 100%|██████████| 10/10 [00:00<00:00, 18.73it/s] frame_idx: 950 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 492 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 frame_idx: 950 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 492 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 95%|█████████▍| 949/999 [15:35<00:55, 1.11s/it] 95%|█████████▌| 950/999 [15:35<00:40, 1.22it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 74.27it/s] 64%|██████▍ | 16/25 [00:00<00:00, 74.94it/s] 96%|█████████▌| 24/25 [00:00<00:00, 75.02it/s] 100%|██████████| 25/25 [00:00<00:00, 74.94it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 75.34it/s] 64%|██████▍ | 16/25 [00:00<00:00, 73.96it/s] 96%|█████████▌| 24/25 [00:00<00:00, 74.50it/s] 100%|██████████| 25/25 [00:00<00:00, 74.53it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 18.50it/s] 40%|████ | 4/10 [00:00<00:00, 18.61it/s] 60%|██████ | 6/10 [00:00<00:00, 18.66it/s] 80%|████████ | 8/10 [00:00<00:00, 18.71it/s] 100%|██████████| 10/10 [00:00<00:00, 18.71it/s] 100%|██████████| 10/10 [00:00<00:00, 18.67it/s] frame_idx: 952 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 493 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 frame_idx: 952 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 493 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 95%|█████████▌| 951/999 [15:37<00:52, 1.10s/it] 95%|█████████▌| 952/999 [15:37<00:38, 1.23it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 74.14it/s] 64%|██████▍ | 16/25 [00:00<00:00, 74.71it/s] 96%|█████████▌| 24/25 [00:00<00:00, 74.83it/s] 100%|██████████| 25/25 [00:00<00:00, 74.70it/s] 0%| | 0/25 [00:00<?, ?it/s] 28%|██▊ | 7/25 [00:00<00:00, 69.05it/s] 60%|██████ | 15/25 [00:00<00:00, 70.73it/s] 92%|█████████▏| 23/25 [00:00<00:00, 70.56it/s] 100%|██████████| 25/25 [00:00<00:00, 70.39it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 18.01it/s] 40%|████ | 4/10 [00:00<00:00, 18.40it/s] 60%|██████ | 6/10 [00:00<00:00, 18.51it/s] 80%|████████ | 8/10 [00:00<00:00, 18.59it/s] 100%|██████████| 10/10 [00:00<00:00, 18.63it/s] 100%|██████████| 10/10 [00:00<00:00, 18.54it/s] frame_idx: 954 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 494 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 frame_idx: 954 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 494 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 95%|█████████▌| 953/999 [15:39<00:51, 1.11s/it] 95%|█████████▌| 954/999 [15:39<00:36, 1.22it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 73.58it/s] 64%|██████▍ | 16/25 [00:00<00:00, 74.66it/s] 96%|█████████▌| 24/25 [00:00<00:00, 72.63it/s] 100%|██████████| 25/25 [00:00<00:00, 72.95it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 74.60it/s] 64%|██████▍ | 16/25 [00:00<00:00, 74.12it/s] 96%|█████████▌| 24/25 [00:00<00:00, 71.41it/s] 100%|██████████| 25/25 [00:00<00:00, 71.95it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 18.87it/s] 40%|████ | 4/10 [00:00<00:00, 18.76it/s] 60%|██████ | 6/10 [00:00<00:00, 18.69it/s] 80%|████████ | 8/10 [00:00<00:00, 18.70it/s] 100%|██████████| 10/10 [00:00<00:00, 18.68it/s] 100%|██████████| 10/10 [00:00<00:00, 18.70it/s] frame_idx: 956 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 495 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 frame_idx: 956 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 495 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 96%|█████████▌| 955/999 [15:41<00:49, 1.11s/it] 96%|█████████▌| 956/999 [15:41<00:35, 1.22it/s] 0%| | 0/25 [00:00<?, ?it/s] 28%|██▊ | 7/25 [00:00<00:00, 67.31it/s] 56%|█████▌ | 14/25 [00:00<00:00, 67.90it/s] 88%|████████▊ | 22/25 [00:00<00:00, 71.02it/s] 100%|██████████| 25/25 [00:00<00:00, 69.73it/s] 0%| | 0/25 [00:00<?, ?it/s] 28%|██▊ | 7/25 [00:00<00:00, 68.98it/s] 60%|██████ | 15/25 [00:00<00:00, 72.26it/s] 92%|█████████▏| 23/25 [00:00<00:00, 73.35it/s] 100%|██████████| 25/25 [00:00<00:00, 72.84it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 18.84it/s] 40%|████ | 4/10 [00:00<00:00, 18.73it/s] 60%|██████ | 6/10 [00:00<00:00, 18.70it/s] 80%|████████ | 8/10 [00:00<00:00, 18.65it/s] 100%|██████████| 10/10 [00:00<00:00, 18.65it/s] 100%|██████████| 10/10 [00:00<00:00, 18.67it/s] frame_idx: 958 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 496 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 frame_idx: 958 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 496 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 96%|█████████▌| 957/999 [15:43<00:46, 1.12s/it] 96%|█████████▌| 958/999 [15:43<00:33, 1.22it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 70.83it/s] 64%|██████▍ | 16/25 [00:00<00:00, 69.42it/s] 92%|█████████▏| 23/25 [00:00<00:00, 69.21it/s] 100%|██████████| 25/25 [00:00<00:00, 69.80it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 74.88it/s] 64%|██████▍ | 16/25 [00:00<00:00, 74.51it/s] 96%|█████████▌| 24/25 [00:00<00:00, 74.34it/s] 100%|██████████| 25/25 [00:00<00:00, 74.38it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 18.85it/s] 40%|████ | 4/10 [00:00<00:00, 18.73it/s] 60%|██████ | 6/10 [00:00<00:00, 18.66it/s] 80%|████████ | 8/10 [00:00<00:00, 18.68it/s] 100%|██████████| 10/10 [00:00<00:00, 18.66it/s] 100%|██████████| 10/10 [00:00<00:00, 18.68it/s] frame_idx: 960 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 497 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 frame_idx: 960 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 497 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 96%|█████████▌| 959/999 [15:45<00:44, 1.12s/it] 96%|█████████▌| 960/999 [15:45<00:32, 1.22it/s] 0%| | 0/25 [00:00<?, ?it/s] 28%|██▊ | 7/25 [00:00<00:00, 69.38it/s] 60%|██████ | 15/25 [00:00<00:00, 69.48it/s] 88%|████████▊ | 22/25 [00:00<00:00, 69.68it/s] 100%|██████████| 25/25 [00:00<00:00, 70.13it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 75.13it/s] 64%|██████▍ | 16/25 [00:00<00:00, 74.49it/s] 96%|█████████▌| 24/25 [00:00<00:00, 71.30it/s] 100%|██████████| 25/25 [00:00<00:00, 71.98it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 18.88it/s] 40%|████ | 4/10 [00:00<00:00, 18.72it/s] 60%|██████ | 6/10 [00:00<00:00, 18.72it/s] 80%|████████ | 8/10 [00:00<00:00, 18.68it/s] 100%|██████████| 10/10 [00:00<00:00, 18.69it/s] 100%|██████████| 10/10 [00:00<00:00, 18.70it/s] frame_idx: 962 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 498 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 frame_idx: 962 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 498 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 96%|█████████▌| 961/999 [15:47<00:42, 1.12s/it] 96%|█████████▋| 962/999 [15:47<00:30, 1.22it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 72.64it/s] 64%|██████▍ | 16/25 [00:00<00:00, 68.54it/s] 92%|█████████▏| 23/25 [00:00<00:00, 68.77it/s] 100%|██████████| 25/25 [00:00<00:00, 69.05it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 73.86it/s] 64%|██████▍ | 16/25 [00:00<00:00, 74.89it/s] 96%|█████████▌| 24/25 [00:00<00:00, 74.90it/s] 100%|██████████| 25/25 [00:00<00:00, 74.72it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 18.82it/s] 40%|████ | 4/10 [00:00<00:00, 18.79it/s] 60%|██████ | 6/10 [00:00<00:00, 18.73it/s] 80%|████████ | 8/10 [00:00<00:00, 18.72it/s] 100%|██████████| 10/10 [00:00<00:00, 18.73it/s] 100%|██████████| 10/10 [00:00<00:00, 18.73it/s] frame_idx: 964 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 499 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 frame_idx: 964 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 499 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 96%|█████████▋| 963/999 [15:49<00:40, 1.12s/it] 96%|█████████▋| 964/999 [15:49<00:28, 1.22it/s] 0%| | 0/25 [00:00<?, ?it/s] 28%|██▊ | 7/25 [00:00<00:00, 69.88it/s] 60%|██████ | 15/25 [00:00<00:00, 71.69it/s] 92%|█████████▏| 23/25 [00:00<00:00, 70.70it/s] 100%|██████████| 25/25 [00:00<00:00, 70.96it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 70.86it/s] 64%|██████▍ | 16/25 [00:00<00:00, 72.84it/s] 96%|█████████▌| 24/25 [00:00<00:00, 73.48it/s] 100%|██████████| 25/25 [00:00<00:00, 72.96it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 18.76it/s] 40%|████ | 4/10 [00:00<00:00, 18.71it/s] 60%|██████ | 6/10 [00:00<00:00, 18.69it/s] 80%|████████ | 8/10 [00:00<00:00, 18.67it/s] 100%|██████████| 10/10 [00:00<00:00, 18.66it/s] 100%|██████████| 10/10 [00:00<00:00, 18.66it/s] frame_idx: 966 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 500 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 frame_idx: 966 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 500 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 97%|█████████▋| 965/999 [15:51<00:37, 1.11s/it] 97%|█████████▋| 966/999 [15:51<00:27, 1.22it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 74.39it/s] 64%|██████▍ | 16/25 [00:00<00:00, 74.78it/s] 96%|█████████▌| 24/25 [00:00<00:00, 74.25it/s] 100%|██████████| 25/25 [00:00<00:00, 74.22it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 75.42it/s] 64%|██████▍ | 16/25 [00:00<00:00, 75.36it/s] 96%|█████████▌| 24/25 [00:00<00:00, 75.30it/s] 100%|██████████| 25/25 [00:00<00:00, 75.34it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 18.86it/s] 40%|████ | 4/10 [00:00<00:00, 18.74it/s] 60%|██████ | 6/10 [00:00<00:00, 18.69it/s] 80%|████████ | 8/10 [00:00<00:00, 18.69it/s] 100%|██████████| 10/10 [00:00<00:00, 18.64it/s] 100%|██████████| 10/10 [00:00<00:00, 18.67it/s] frame_idx: 968 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 501 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 frame_idx: 968 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 501 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 97%|█████████▋| 967/999 [15:53<00:35, 1.11s/it] 97%|█████████▋| 968/999 [15:53<00:25, 1.22it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 71.01it/s] 64%|██████▍ | 16/25 [00:00<00:00, 72.82it/s] 96%|█████████▌| 24/25 [00:00<00:00, 71.21it/s] 100%|██████████| 25/25 [00:00<00:00, 71.50it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 70.43it/s] 64%|██████▍ | 16/25 [00:00<00:00, 70.06it/s] 96%|█████████▌| 24/25 [00:00<00:00, 72.29it/s] 100%|██████████| 25/25 [00:00<00:00, 71.80it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 18.90it/s] 40%|████ | 4/10 [00:00<00:00, 18.76it/s] 60%|██████ | 6/10 [00:00<00:00, 18.73it/s] 80%|████████ | 8/10 [00:00<00:00, 18.70it/s] 100%|██████████| 10/10 [00:00<00:00, 18.69it/s] 100%|██████████| 10/10 [00:00<00:00, 18.71it/s] frame_idx: 970 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 502 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 frame_idx: 970 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 502 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 97%|█████████▋| 969/999 [15:55<00:33, 1.12s/it] 97%|█████████▋| 970/999 [15:55<00:23, 1.22it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 74.55it/s] 64%|██████▍ | 16/25 [00:00<00:00, 74.77it/s] 96%|█████████▌| 24/25 [00:00<00:00, 74.79it/s] 100%|██████████| 25/25 [00:00<00:00, 74.79it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 72.98it/s] 64%|██████▍ | 16/25 [00:00<00:00, 72.66it/s] 96%|█████████▌| 24/25 [00:00<00:00, 73.79it/s] 100%|██████████| 25/25 [00:00<00:00, 73.58it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 18.85it/s] 40%|████ | 4/10 [00:00<00:00, 18.75it/s] 60%|██████ | 6/10 [00:00<00:00, 18.73it/s] 80%|████████ | 8/10 [00:00<00:00, 18.71it/s] 100%|██████████| 10/10 [00:00<00:00, 18.68it/s] 100%|██████████| 10/10 [00:00<00:00, 18.70it/s] frame_idx: 972 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 503 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 frame_idx: 972 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 503 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 97%|█████████▋| 971/999 [15:57<00:31, 1.11s/it] 97%|█████████▋| 972/999 [15:57<00:22, 1.22it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 72.38it/s] 64%|██████▍ | 16/25 [00:00<00:00, 73.95it/s] 96%|█████████▌| 24/25 [00:00<00:00, 74.45it/s] 100%|██████████| 25/25 [00:00<00:00, 74.07it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 75.59it/s] 64%|██████▍ | 16/25 [00:00<00:00, 70.61it/s] 96%|█████████▌| 24/25 [00:00<00:00, 69.83it/s] 100%|██████████| 25/25 [00:00<00:00, 70.62it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 18.82it/s] 40%|████ | 4/10 [00:00<00:00, 18.72it/s] 60%|██████ | 6/10 [00:00<00:00, 18.69it/s] 80%|████████ | 8/10 [00:00<00:00, 18.69it/s] 100%|██████████| 10/10 [00:00<00:00, 18.67it/s] 100%|██████████| 10/10 [00:00<00:00, 18.68it/s] frame_idx: 974 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 504 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 frame_idx: 974 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 504 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 97%|█████████▋| 973/999 [15:59<00:28, 1.11s/it] 97%|█████████▋| 974/999 [15:59<00:20, 1.22it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 73.73it/s] 64%|██████▍ | 16/25 [00:00<00:00, 74.21it/s] 96%|█████████▌| 24/25 [00:00<00:00, 74.50it/s] 100%|██████████| 25/25 [00:00<00:00, 74.29it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 75.11it/s] 64%|██████▍ | 16/25 [00:00<00:00, 69.10it/s] 92%|█████████▏| 23/25 [00:00<00:00, 68.89it/s] 100%|██████████| 25/25 [00:00<00:00, 69.66it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 18.85it/s] 40%|████ | 4/10 [00:00<00:00, 18.78it/s] 60%|██████ | 6/10 [00:00<00:00, 18.72it/s] 80%|████████ | 8/10 [00:00<00:00, 18.71it/s] 100%|██████████| 10/10 [00:00<00:00, 18.72it/s] 100%|██████████| 10/10 [00:00<00:00, 18.72it/s] frame_idx: 976 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 505 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 frame_idx: 976 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 505 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 98%|█████████▊| 975/999 [16:00<00:26, 1.11s/it] 98%|█████████▊| 976/999 [16:01<00:18, 1.22it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 70.97it/s] 64%|██████▍ | 16/25 [00:00<00:00, 72.98it/s] 96%|█████████▌| 24/25 [00:00<00:00, 73.74it/s] 100%|██████████| 25/25 [00:00<00:00, 73.12it/s] 0%| | 0/25 [00:00<?, ?it/s] 28%|██▊ | 7/25 [00:00<00:00, 69.06it/s] 60%|██████ | 15/25 [00:00<00:00, 72.35it/s] 92%|█████████▏| 23/25 [00:00<00:00, 72.08it/s] 100%|██████████| 25/25 [00:00<00:00, 71.60it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 18.90it/s] 40%|████ | 4/10 [00:00<00:00, 18.77it/s] 60%|██████ | 6/10 [00:00<00:00, 18.77it/s] 80%|████████ | 8/10 [00:00<00:00, 18.73it/s] 100%|██████████| 10/10 [00:00<00:00, 18.71it/s] 100%|██████████| 10/10 [00:00<00:00, 18.73it/s] frame_idx: 978 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 506 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 frame_idx: 978 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 506 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 98%|█████████▊| 977/999 [16:02<00:24, 1.11s/it] 98%|█████████▊| 978/999 [16:03<00:17, 1.22it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 73.43it/s] 64%|██████▍ | 16/25 [00:00<00:00, 71.83it/s] 96%|█████████▌| 24/25 [00:00<00:00, 72.99it/s] 100%|██████████| 25/25 [00:00<00:00, 72.69it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 74.51it/s] 64%|██████▍ | 16/25 [00:00<00:00, 74.70it/s] 96%|█████████▌| 24/25 [00:00<00:00, 74.76it/s] 100%|██████████| 25/25 [00:00<00:00, 74.37it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 18.84it/s] 40%|████ | 4/10 [00:00<00:00, 18.77it/s] 60%|██████ | 6/10 [00:00<00:00, 18.73it/s] 80%|████████ | 8/10 [00:00<00:00, 18.73it/s] 100%|██████████| 10/10 [00:00<00:00, 18.74it/s] 100%|██████████| 10/10 [00:00<00:00, 18.74it/s] frame_idx: 980 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 507 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 frame_idx: 980 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 507 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 98%|█████████▊| 979/999 [16:04<00:22, 1.11s/it] 98%|█████████▊| 980/999 [16:04<00:15, 1.22it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 74.37it/s] 64%|██████▍ | 16/25 [00:00<00:00, 74.75it/s] 96%|█████████▌| 24/25 [00:00<00:00, 74.21it/s] 100%|██████████| 25/25 [00:00<00:00, 74.24it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 75.00it/s] 64%|██████▍ | 16/25 [00:00<00:00, 75.06it/s] 96%|█████████▌| 24/25 [00:00<00:00, 74.96it/s] 100%|██████████| 25/25 [00:00<00:00, 74.89it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 18.87it/s] 40%|████ | 4/10 [00:00<00:00, 18.76it/s] 60%|██████ | 6/10 [00:00<00:00, 18.74it/s] 80%|████████ | 8/10 [00:00<00:00, 18.74it/s] 100%|██████████| 10/10 [00:00<00:00, 18.72it/s] 100%|██████████| 10/10 [00:00<00:00, 18.73it/s] frame_idx: 982 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 508 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 frame_idx: 982 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 508 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 98%|█████████▊| 981/999 [16:06<00:19, 1.11s/it] 98%|█████████▊| 982/999 [16:06<00:13, 1.22it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 74.42it/s] 64%|██████▍ | 16/25 [00:00<00:00, 74.74it/s] 96%|█████████▌| 24/25 [00:00<00:00, 75.00it/s] 100%|██████████| 25/25 [00:00<00:00, 74.24it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 70.32it/s] 64%|██████▍ | 16/25 [00:00<00:00, 70.31it/s] 96%|█████████▌| 24/25 [00:00<00:00, 71.33it/s] 100%|██████████| 25/25 [00:00<00:00, 70.87it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 18.84it/s] 40%|████ | 4/10 [00:00<00:00, 18.76it/s] 60%|██████ | 6/10 [00:00<00:00, 18.70it/s] 80%|████████ | 8/10 [00:00<00:00, 18.67it/s] 100%|██████████| 10/10 [00:00<00:00, 18.66it/s] 100%|██████████| 10/10 [00:00<00:00, 18.68it/s] frame_idx: 984 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 509 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 frame_idx: 984 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 509 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 98%|█████████▊| 983/999 [16:08<00:17, 1.12s/it] 98%|█████████▊| 984/999 [16:08<00:12, 1.21it/s] 0%| | 0/25 [00:00<?, ?it/s] 28%|██▊ | 7/25 [00:00<00:00, 69.23it/s] 60%|██████ | 15/25 [00:00<00:00, 73.00it/s] 92%|█████████▏| 23/25 [00:00<00:00, 71.18it/s] 100%|██████████| 25/25 [00:00<00:00, 71.39it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 72.86it/s] 64%|██████▍ | 16/25 [00:00<00:00, 74.04it/s] 96%|█████████▌| 24/25 [00:00<00:00, 74.50it/s] 100%|██████████| 25/25 [00:00<00:00, 73.64it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 18.88it/s] 40%|████ | 4/10 [00:00<00:00, 18.75it/s] 60%|██████ | 6/10 [00:00<00:00, 18.69it/s] 80%|████████ | 8/10 [00:00<00:00, 18.69it/s] 100%|██████████| 10/10 [00:00<00:00, 18.67it/s] 100%|██████████| 10/10 [00:00<00:00, 18.69it/s] frame_idx: 986 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 510 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 frame_idx: 986 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 510 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 99%|█████████▊| 985/999 [16:10<00:15, 1.12s/it] 99%|█████████▊| 986/999 [16:10<00:10, 1.21it/s] 0%| | 0/25 [00:00<?, ?it/s] 28%|██▊ | 7/25 [00:00<00:00, 69.01it/s] 60%|██████ | 15/25 [00:00<00:00, 71.91it/s] 92%|█████████▏| 23/25 [00:00<00:00, 73.34it/s] 100%|██████████| 25/25 [00:00<00:00, 72.85it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 71.39it/s] 64%|██████▍ | 16/25 [00:00<00:00, 73.55it/s] 96%|█████████▌| 24/25 [00:00<00:00, 74.13it/s] 100%|██████████| 25/25 [00:00<00:00, 73.74it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 18.79it/s] 40%|████ | 4/10 [00:00<00:00, 18.70it/s] 60%|██████ | 6/10 [00:00<00:00, 18.70it/s] 80%|████████ | 8/10 [00:00<00:00, 18.67it/s] 100%|██████████| 10/10 [00:00<00:00, 18.67it/s] 100%|██████████| 10/10 [00:00<00:00, 18.68it/s] frame_idx: 988 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 511 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 frame_idx: 988 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 511 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 99%|█████████▉| 987/999 [16:12<00:13, 1.12s/it] 99%|█████████▉| 988/999 [16:12<00:09, 1.21it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 71.45it/s] 64%|██████▍ | 16/25 [00:00<00:00, 73.76it/s] 96%|█████████▌| 24/25 [00:00<00:00, 74.41it/s] 100%|██████████| 25/25 [00:00<00:00, 73.84it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 74.57it/s] 64%|██████▍ | 16/25 [00:00<00:00, 72.57it/s] 96%|█████████▌| 24/25 [00:00<00:00, 72.46it/s] 100%|██████████| 25/25 [00:00<00:00, 72.73it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 18.83it/s] 40%|████ | 4/10 [00:00<00:00, 18.76it/s] 60%|██████ | 6/10 [00:00<00:00, 18.74it/s] 80%|████████ | 8/10 [00:00<00:00, 18.72it/s] 100%|██████████| 10/10 [00:00<00:00, 18.73it/s] 100%|██████████| 10/10 [00:00<00:00, 18.73it/s] frame_idx: 990 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 512 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 frame_idx: 990 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 512 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 99%|█████████▉| 989/999 [16:14<00:11, 1.12s/it] 99%|█████████▉| 990/999 [16:14<00:07, 1.21it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 70.86it/s] 64%|██████▍ | 16/25 [00:00<00:00, 70.33it/s] 96%|█████████▌| 24/25 [00:00<00:00, 72.43it/s] 100%|██████████| 25/25 [00:00<00:00, 72.02it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 74.96it/s] 64%|██████▍ | 16/25 [00:00<00:00, 71.60it/s] 96%|█████████▌| 24/25 [00:00<00:00, 72.20it/s] 100%|██████████| 25/25 [00:00<00:00, 72.44it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 18.78it/s] 40%|████ | 4/10 [00:00<00:00, 18.70it/s] 60%|██████ | 6/10 [00:00<00:00, 18.66it/s] 80%|████████ | 8/10 [00:00<00:00, 18.68it/s] 100%|██████████| 10/10 [00:00<00:00, 18.72it/s] 100%|██████████| 10/10 [00:00<00:00, 18.70it/s] frame_idx: 992 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 513 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 frame_idx: 992 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 513 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 99%|█████████▉| 991/999 [16:16<00:08, 1.12s/it] 99%|█████████▉| 992/999 [16:16<00:05, 1.21it/s] 0%| | 0/25 [00:00<?, ?it/s] 28%|██▊ | 7/25 [00:00<00:00, 64.22it/s] 60%|██████ | 15/25 [00:00<00:00, 67.69it/s] 88%|████████▊ | 22/25 [00:00<00:00, 67.95it/s] 100%|██████████| 25/25 [00:00<00:00, 67.74it/s] 0%| | 0/25 [00:00<?, ?it/s] 28%|██▊ | 7/25 [00:00<00:00, 69.57it/s] 56%|█████▌ | 14/25 [00:00<00:00, 69.09it/s] 88%|████████▊ | 22/25 [00:00<00:00, 69.86it/s] 100%|██████████| 25/25 [00:00<00:00, 69.68it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 18.84it/s] 40%|████ | 4/10 [00:00<00:00, 18.78it/s] 60%|██████ | 6/10 [00:00<00:00, 18.61it/s] 80%|████████ | 8/10 [00:00<00:00, 18.62it/s] 100%|██████████| 10/10 [00:00<00:00, 18.64it/s] 100%|██████████| 10/10 [00:00<00:00, 18.65it/s] frame_idx: 994 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 514 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 frame_idx: 994 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 514 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 99%|█████████▉| 993/999 [16:18<00:06, 1.13s/it] 99%|█████████▉| 994/999 [16:18<00:04, 1.21it/s] 0%| | 0/25 [00:00<?, ?it/s] 28%|██▊ | 7/25 [00:00<00:00, 69.90it/s] 60%|██████ | 15/25 [00:00<00:00, 71.08it/s] 92%|█████████▏| 23/25 [00:00<00:00, 70.41it/s] 100%|██████████| 25/25 [00:00<00:00, 70.58it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 75.30it/s] 64%|██████▍ | 16/25 [00:00<00:00, 75.07it/s] 96%|█████████▌| 24/25 [00:00<00:00, 74.95it/s] 100%|██████████| 25/25 [00:00<00:00, 74.91it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 18.87it/s] 40%|████ | 4/10 [00:00<00:00, 18.76it/s] 60%|██████ | 6/10 [00:00<00:00, 18.73it/s] 80%|████████ | 8/10 [00:00<00:00, 18.70it/s] 100%|██████████| 10/10 [00:00<00:00, 18.69it/s] 100%|██████████| 10/10 [00:00<00:00, 18.70it/s] frame_idx: 996 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 515 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 frame_idx: 996 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 515 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 100%|█████████▉| 995/999 [16:20<00:04, 1.12s/it] 100%|█████████▉| 996/999 [16:20<00:02, 1.22it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 71.69it/s] 64%|██████▍ | 16/25 [00:00<00:00, 73.42it/s] 96%|█████████▌| 24/25 [00:00<00:00, 70.58it/s] 100%|██████████| 25/25 [00:00<00:00, 71.01it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 74.71it/s] 64%|██████▍ | 16/25 [00:00<00:00, 74.85it/s] 96%|█████████▌| 24/25 [00:00<00:00, 74.73it/s] 100%|██████████| 25/25 [00:00<00:00, 74.62it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 18.86it/s] 40%|████ | 4/10 [00:00<00:00, 18.79it/s] 60%|██████ | 6/10 [00:00<00:00, 18.75it/s] 80%|████████ | 8/10 [00:00<00:00, 18.72it/s] 100%|██████████| 10/10 [00:00<00:00, 18.70it/s] 100%|██████████| 10/10 [00:00<00:00, 18.72it/s] frame_idx: 998 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 516 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 frame_idx: 998 cond_prompt: a beautiful forest by Asher Brown Durand, trending on Artstation uncond_prompt: low quality, bad image, cropped, out of frame seed: 516 prior_seed: 547339 angle: 0.0 zoom: 1.0 translation_x: 0.0 translation_y: 0.0 translation_z: 1.0 rotation_x: 0.0 rotation_y: 0.0 rotation_z: 0.0 noise: 0.0 strength: 0.13 contrast: 1.0 kernel: 5 sigma: 1.0 amount: 0.2 threshold: 0.0 100%|█████████▉| 997/999 [16:22<00:02, 1.12s/it] 100%|█████████▉| 998/999 [16:22<00:00, 1.22it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 74.09it/s] 64%|██████▍ | 16/25 [00:00<00:00, 74.43it/s] 96%|█████████▌| 24/25 [00:00<00:00, 73.52it/s] 100%|██████████| 25/25 [00:00<00:00, 73.52it/s] 0%| | 0/25 [00:00<?, ?it/s] 32%|███▏ | 8/25 [00:00<00:00, 75.27it/s] 64%|██████▍ | 16/25 [00:00<00:00, 75.31it/s] 96%|█████████▌| 24/25 [00:00<00:00, 75.31it/s] 100%|██████████| 25/25 [00:00<00:00, 75.28it/s] 0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 18.87it/s] 40%|████ | 4/10 [00:00<00:00, 18.79it/s] 60%|██████ | 6/10 [00:00<00:00, 18.74it/s] 80%|████████ | 8/10 [00:00<00:00, 18.74it/s] 100%|██████████| 10/10 [00:00<00:00, 18.69it/s] 100%|██████████| 10/10 [00:00<00:00, 18.72it/s] 100%|█████████▉| 998/999 [16:24<00:00, 1.01it/s] 0%| | 0/998 [00:00<?, ?it/s] 0%| | 1/998 [00:00<02:51, 5.81it/s] 5%|▍ | 47/998 [00:00<00:05, 170.01it/s] 7%|▋ | 65/998 [00:00<00:06, 143.86it/s] 8%|▊ | 80/998 [00:00<00:07, 128.98it/s] 9%|▉ | 94/998 [00:00<00:07, 119.40it/s] 11%|█ | 106/998 [00:00<00:07, 111.77it/s] 12%|█▏ | 118/998 [00:01<00:07, 110.43it/s] 13%|█▎ | 129/998 [00:01<00:07, 108.85it/s] 14%|█▍ | 140/998 [00:01<00:07, 107.76it/s] 15%|█▌ | 153/998 [00:01<00:07, 106.13it/s] 17%|█▋ | 165/998 [00:01<00:07, 108.98it/s] 18%|█▊ | 176/998 [00:01<00:07, 105.01it/s] 19%|█▊ | 187/998 [00:01<00:07, 106.14it/s] 20%|█▉ | 198/998 [00:01<00:07, 102.84it/s] 21%|██ | 209/998 [00:01<00:07, 102.60it/s] 22%|██▏ | 222/998 [00:02<00:07, 104.94it/s] 23%|██▎ | 233/998 [00:02<00:07, 105.18it/s] 24%|██▍ | 244/998 [00:02<00:07, 101.63it/s] 26%|██▌ | 255/998 [00:02<00:07, 103.29it/s] 27%|██▋ | 266/998 [00:02<00:07, 102.24it/s] 28%|██▊ | 277/998 [00:02<00:07, 102.13it/s] 29%|██▉ | 289/998 [00:02<00:06, 104.63it/s] 30%|███ | 300/998 [00:02<00:06, 100.01it/s] 31%|███ | 311/998 [00:02<00:06, 98.20it/s] 32%|███▏ | 324/998 [00:03<00:06, 104.17it/s] 34%|███▎ | 335/998 [00:03<00:06, 96.96it/s] 35%|███▍ | 345/998 [00:03<00:06, 97.15it/s] 36%|███▌ | 355/998 [00:03<00:06, 96.28it/s] 37%|███▋ | 366/998 [00:03<00:06, 97.45it/s] 38%|███▊ | 378/998 [00:03<00:06, 102.96it/s] 39%|███▉ | 389/998 [00:03<00:06, 101.18it/s] 40%|████ | 400/998 [00:03<00:05, 101.92it/s] 41%|████ | 411/998 [00:03<00:05, 99.18it/s] 42%|████▏ | 423/998 [00:03<00:05, 104.63it/s] 43%|████▎ | 434/998 [00:04<00:05, 97.90it/s] 45%|████▍ | 445/998 [00:04<00:05, 100.80it/s] 46%|████▌ | 456/998 [00:04<00:05, 101.71it/s] 47%|████▋ | 467/998 [00:04<00:05, 100.09it/s] 48%|████▊ | 478/998 [00:04<00:05, 99.54it/s] 49%|████▉ | 490/998 [00:04<00:04, 103.89it/s] 50%|█████ | 503/998 [00:04<00:04, 109.59it/s] 52%|█████▏ | 515/998 [00:04<00:04, 104.83it/s] 53%|█████▎ | 526/998 [00:05<00:04, 100.96it/s] 54%|█████▍ | 537/998 [00:05<00:04, 100.94it/s] 55%|█████▍ | 548/998 [00:05<00:04, 98.30it/s] 56%|█████▌ | 559/998 [00:05<00:04, 101.16it/s] 57%|█████▋ | 570/998 [00:05<00:04, 102.59it/s] 58%|█████▊ | 581/998 [00:05<00:04, 97.93it/s] 59%|█████▉ | 592/998 [00:05<00:04, 99.11it/s] 61%|██████ | 604/998 [00:05<00:03, 102.97it/s] 62%|██████▏ | 615/998 [00:05<00:03, 100.10it/s] 63%|██████▎ | 626/998 [00:06<00:03, 93.72it/s] 64%|██████▍ | 637/998 [00:06<00:03, 97.95it/s] 65%|██████▍ | 648/998 [00:06<00:03, 100.06it/s] 66%|██████▌ | 659/998 [00:06<00:03, 101.20it/s] 67%|██████▋ | 670/998 [00:06<00:03, 97.51it/s] 68%|██████▊ | 680/998 [00:06<00:03, 96.16it/s] 69%|██████▉ | 691/998 [00:06<00:03, 99.02it/s] 70%|███████ | 701/998 [00:06<00:03, 98.78it/s] 71%|███████▏ | 712/998 [00:06<00:02, 99.46it/s] 72%|███████▏ | 723/998 [00:07<00:02, 96.30it/s] 74%|███████▎ | 735/998 [00:07<00:02, 101.91it/s] 75%|███████▍ | 746/998 [00:07<00:02, 99.67it/s] 76%|███████▌ | 757/998 [00:07<00:02, 99.15it/s] 77%|███████▋ | 769/998 [00:07<00:02, 100.24it/s] 78%|███████▊ | 780/998 [00:07<00:02, 101.11it/s] 79%|███████▉ | 791/998 [00:07<00:02, 101.15it/s] 80%|████████ | 802/998 [00:07<00:01, 100.03it/s] 81%|████████▏ | 813/998 [00:07<00:01, 102.48it/s] 83%|████████▎ | 824/998 [00:08<00:01, 101.60it/s] 84%|████████▎ | 835/998 [00:08<00:01, 100.86it/s] 85%|████████▍ | 846/998 [00:08<00:01, 97.03it/s] 86%|████████▌ | 859/998 [00:08<00:01, 102.49it/s] 87%|████████▋ | 870/998 [00:08<00:01, 102.26it/s] 88%|████████▊ | 881/998 [00:08<00:01, 100.97it/s] 89%|████████▉ | 892/998 [00:08<00:01, 98.15it/s] 91%|█████████ | 905/998 [00:08<00:00, 99.31it/s] 92%|█████████▏| 916/998 [00:08<00:00, 101.69it/s] 93%|█████████▎| 927/998 [00:09<00:00, 98.90it/s] 94%|█████████▍| 938/998 [00:09<00:00, 99.81it/s] 95%|█████████▌| 949/998 [00:09<00:00, 100.86it/s] 96%|█████████▌| 960/998 [00:09<00:00, 98.59it/s] 97%|█████████▋| 971/998 [00:09<00:00, 99.88it/s] 99%|█████████▊| 984/998 [00:09<00:00, 108.13it/s] 100%|█████████▉| 995/998 [00:09<00:00, 99.94it/s] 100%|██████████| 998/998 [00:09<00:00, 102.60it/s]
Want to make some of these yourself?
Run this model