You're looking at a specific version of this model. Jump to the model overview.
hvision-nku /storydiffusion:39c85f15
Input
Run this model in Node.js with one line of code:
npm install replicate
REPLICATE_API_TOKEN
environment variable:export REPLICATE_API_TOKEN=<paste-your-token-here>
Find your API token in your account settings.
import Replicate from "replicate";
const replicate = new Replicate({
auth: process.env.REPLICATE_API_TOKEN,
});
Run hvision-nku/storydiffusion using Replicate’s API. Check out the model's schema for an overview of inputs and outputs.
const output = await replicate.run(
"hvision-nku/storydiffusion:39c85f153f00e4e9328cb3035b94559a8ec66170eb4c0618c07b16528bf20ac2",
{
input: {
num_ids: 4,
sd_model: "RealVision",
num_steps: 25,
style_name: "Line art",
comic_style: "Classic Comic Style",
image_width: 768,
image_height: 768,
sa32_setting: 0.3,
sa64_setting: 0.5,
output_format: "webp",
guidance_scale: 5,
output_quality: 80,
negative_prompt: "bad anatomy, bad hands, missing fingers, extra fingers, three hands, three legs, bad arms, missing legs, missing arms, poorly drawn face, bad face, fused face, cloned face, three crus, fused feet, fused thigh, extra crus, ugly fingers, horn, cartoon, cg, 3d, unreal, animate, amputation, disconnected limbs",
comic_description: "at home #at home, began to go to drawing\nsitting alone on a park bench.\nreading a book on a park bench.\n[NC]A squirrel approaches, peeking over the bench. \nlook around in the park. # She looks around and enjoys the beauty of nature.\n[NC]leaf falls from the tree, landing on the sketchbook.\npicks up the leaf, examining its details closely.\n[NC]The brown squirrel appear.\nis very happy # She is very happy to see the squirrel again\n[NC]The brown squirrel takes the cracker and scampers up a tree. # She gives the squirrel cracker",
style_strength_ratio: 20,
character_description: "a girl, wearing white shirt, black skirt, black tie, yellow hair"
}
}
);
console.log(output);
To learn more, take a look at the guide on getting started with Node.js.
pip install replicate
REPLICATE_API_TOKEN
environment variable:export REPLICATE_API_TOKEN=<paste-your-token-here>
Find your API token in your account settings.
import replicate
Run hvision-nku/storydiffusion using Replicate’s API. Check out the model's schema for an overview of inputs and outputs.
output = replicate.run(
"hvision-nku/storydiffusion:39c85f153f00e4e9328cb3035b94559a8ec66170eb4c0618c07b16528bf20ac2",
input={
"num_ids": 4,
"sd_model": "RealVision",
"num_steps": 25,
"style_name": "Line art",
"comic_style": "Classic Comic Style",
"image_width": 768,
"image_height": 768,
"sa32_setting": 0.3,
"sa64_setting": 0.5,
"output_format": "webp",
"guidance_scale": 5,
"output_quality": 80,
"negative_prompt": "bad anatomy, bad hands, missing fingers, extra fingers, three hands, three legs, bad arms, missing legs, missing arms, poorly drawn face, bad face, fused face, cloned face, three crus, fused feet, fused thigh, extra crus, ugly fingers, horn, cartoon, cg, 3d, unreal, animate, amputation, disconnected limbs",
"comic_description": "at home #at home, began to go to drawing\nsitting alone on a park bench.\nreading a book on a park bench.\n[NC]A squirrel approaches, peeking over the bench. \nlook around in the park. # She looks around and enjoys the beauty of nature.\n[NC]leaf falls from the tree, landing on the sketchbook.\npicks up the leaf, examining its details closely.\n[NC]The brown squirrel appear.\nis very happy # She is very happy to see the squirrel again\n[NC]The brown squirrel takes the cracker and scampers up a tree. # She gives the squirrel cracker",
"style_strength_ratio": 20,
"character_description": "a girl, wearing white shirt, black skirt, black tie, yellow hair"
}
)
print(output)
To learn more, take a look at the guide on getting started with Python.
REPLICATE_API_TOKEN
environment variable:export REPLICATE_API_TOKEN=<paste-your-token-here>
Find your API token in your account settings.
Run hvision-nku/storydiffusion 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": "39c85f153f00e4e9328cb3035b94559a8ec66170eb4c0618c07b16528bf20ac2",
"input": {
"num_ids": 4,
"sd_model": "RealVision",
"num_steps": 25,
"style_name": "Line art",
"comic_style": "Classic Comic Style",
"image_width": 768,
"image_height": 768,
"sa32_setting": 0.3,
"sa64_setting": 0.5,
"output_format": "webp",
"guidance_scale": 5,
"output_quality": 80,
"negative_prompt": "bad anatomy, bad hands, missing fingers, extra fingers, three hands, three legs, bad arms, missing legs, missing arms, poorly drawn face, bad face, fused face, cloned face, three crus, fused feet, fused thigh, extra crus, ugly fingers, horn, cartoon, cg, 3d, unreal, animate, amputation, disconnected limbs",
"comic_description": "at home #at home, began to go to drawing\\nsitting alone on a park bench.\\nreading a book on a park bench.\\n[NC]A squirrel approaches, peeking over the bench. \\nlook around in the park. # She looks around and enjoys the beauty of nature.\\n[NC]leaf falls from the tree, landing on the sketchbook.\\npicks up the leaf, examining its details closely.\\n[NC]The brown squirrel appear.\\nis very happy # She is very happy to see the squirrel again\\n[NC]The brown squirrel takes the cracker and scampers up a tree. # She gives the squirrel cracker",
"style_strength_ratio": 20,
"character_description": "a girl, wearing white shirt, black skirt, black tie, yellow hair"
}
}' \
https://api.replicate.com/v1/predictions
To learn more, take a look at Replicate’s HTTP API reference docs.
brew install cog
If you don’t have Homebrew, there are other installation options available.
Run this to download the model and run it in your local environment:
cog predict r8.im/cjwbw/storydiffusion@sha256:39c85f153f00e4e9328cb3035b94559a8ec66170eb4c0618c07b16528bf20ac2 \
-i 'num_ids=4' \
-i 'sd_model="RealVision"' \
-i 'num_steps=25' \
-i 'style_name="Line art"' \
-i 'comic_style="Classic Comic Style"' \
-i 'image_width=768' \
-i 'image_height=768' \
-i 'sa32_setting=0.3' \
-i 'sa64_setting=0.5' \
-i 'output_format="webp"' \
-i 'guidance_scale=5' \
-i 'output_quality=80' \
-i 'negative_prompt="bad anatomy, bad hands, missing fingers, extra fingers, three hands, three legs, bad arms, missing legs, missing arms, poorly drawn face, bad face, fused face, cloned face, three crus, fused feet, fused thigh, extra crus, ugly fingers, horn, cartoon, cg, 3d, unreal, animate, amputation, disconnected limbs"' \
-i $'comic_description="at home #at home, began to go to drawing\\nsitting alone on a park bench.\\nreading a book on a park bench.\\n[NC]A squirrel approaches, peeking over the bench. \\nlook around in the park. # She looks around and enjoys the beauty of nature.\\n[NC]leaf falls from the tree, landing on the sketchbook.\\npicks up the leaf, examining its details closely.\\n[NC]The brown squirrel appear.\\nis very happy # She is very happy to see the squirrel again\\n[NC]The brown squirrel takes the cracker and scampers up a tree. # She gives the squirrel cracker"' \
-i 'style_strength_ratio=20' \
-i 'character_description="a girl, wearing white shirt, black skirt, black tie, yellow hair"'
To learn more, take a look at the Cog documentation.
Run this to download the model and run it in your local environment:
docker run -d -p 5000:5000 --gpus=all r8.im/cjwbw/storydiffusion@sha256:39c85f153f00e4e9328cb3035b94559a8ec66170eb4c0618c07b16528bf20ac2
curl -s -X POST \ -H "Content-Type: application/json" \ -d $'{ "input": { "num_ids": 4, "sd_model": "RealVision", "num_steps": 25, "style_name": "Line art", "comic_style": "Classic Comic Style", "image_width": 768, "image_height": 768, "sa32_setting": 0.3, "sa64_setting": 0.5, "output_format": "webp", "guidance_scale": 5, "output_quality": 80, "negative_prompt": "bad anatomy, bad hands, missing fingers, extra fingers, three hands, three legs, bad arms, missing legs, missing arms, poorly drawn face, bad face, fused face, cloned face, three crus, fused feet, fused thigh, extra crus, ugly fingers, horn, cartoon, cg, 3d, unreal, animate, amputation, disconnected limbs", "comic_description": "at home #at home, began to go to drawing\\nsitting alone on a park bench.\\nreading a book on a park bench.\\n[NC]A squirrel approaches, peeking over the bench. \\nlook around in the park. # She looks around and enjoys the beauty of nature.\\n[NC]leaf falls from the tree, landing on the sketchbook.\\npicks up the leaf, examining its details closely.\\n[NC]The brown squirrel appear.\\nis very happy # She is very happy to see the squirrel again\\n[NC]The brown squirrel takes the cracker and scampers up a tree. # She gives the squirrel cracker", "style_strength_ratio": 20, "character_description": "a girl, wearing white shirt, black skirt, black tie, yellow hair" } }' \ http://localhost:5000/predictions
To learn more, take a look at the Cog documentation.
Add a payment method to run this model.
Each run costs approximately $0.082. Alternatively, try out our featured models for free.
By signing in, you agree to our
terms of service and privacy policy
Output
{
"completed_at": "2024-05-04T23:35:30.504012Z",
"created_at": "2024-05-04T23:34:32.156000Z",
"data_removed": false,
"error": null,
"id": "m5dwv3cfvhrgg0cf8qtv7yhvc4",
"input": {
"num_ids": 4,
"sd_model": "RealVision",
"num_steps": 25,
"style_name": "Line art",
"comic_style": "Classic Comic Style",
"image_width": 768,
"image_height": 768,
"sa32_setting": 0.3,
"sa64_setting": 0.5,
"output_format": "webp",
"guidance_scale": 5,
"output_quality": 80,
"negative_prompt": "bad anatomy, bad hands, missing fingers, extra fingers, three hands, three legs, bad arms, missing legs, missing arms, poorly drawn face, bad face, fused face, cloned face, three crus, fused feet, fused thigh, extra crus, ugly fingers, horn, cartoon, cg, 3d, unreal, animate, amputation, disconnected limbs",
"comic_description": "at home #at home, began to go to drawing\nsitting alone on a park bench.\nreading a book on a park bench.\n[NC]A squirrel approaches, peeking over the bench. \nlook around in the park. # She looks around and enjoys the beauty of nature.\n[NC]leaf falls from the tree, landing on the sketchbook.\npicks up the leaf, examining its details closely.\n[NC]The brown squirrel appear.\nis very happy # She is very happy to see the squirrel again\n[NC]The brown squirrel takes the cracker and scampers up a tree. # She gives the squirrel cracker",
"style_strength_ratio": 20,
"character_description": "a girl, wearing white shirt, black skirt, black tie, yellow hair"
},
"logs": "['at home #at home, began to go to drawing', 'sitting alone on a park bench.', 'reading a book on a park bench.', '[NC]A squirrel approaches, peeking over the bench. ', 'look around in the park. # She looks around and enjoys the beauty of nature.', '[NC]leaf falls from the tree, landing on the sketchbook.', 'picks up the leaf, examining its details closely.', '[NC]The brown squirrel appear.', 'is very happy # She is very happy to see the squirrel again', '[NC]The brown squirrel takes the cracker and scampers up a tree. # She gives the squirrel cracker']\n['a girl, wearing white shirt, black skirt, black tie, yellow hair,at home #at home, began to go to drawing', 'a girl, wearing white shirt, black skirt, black tie, yellow hair,sitting alone on a park bench.', 'a girl, wearing white shirt, black skirt, black tie, yellow hair,reading a book on a park bench.', 'A squirrel approaches, peeking over the bench. ', 'a girl, wearing white shirt, black skirt, black tie, yellow hair,look around in the park. # She looks around and enjoys the beauty of nature.', 'leaf falls from the tree, landing on the sketchbook.', 'a girl, wearing white shirt, black skirt, black tie, yellow hair,picks up the leaf, examining its details closely.', 'The brown squirrel appear.', 'a girl, wearing white shirt, black skirt, black tie, yellow hair,is very happy # She is very happy to see the squirrel again', 'The brown squirrel takes the cracker and scampers up a tree. # She gives the squirrel cracker']\n['a girl, wearing white shirt, black skirt, black tie, yellow hair,at home', 'a girl, wearing white shirt, black skirt, black tie, yellow hair,sitting alone on a park bench.', 'a girl, wearing white shirt, black skirt, black tie, yellow hair,reading a book on a park bench.', 'A squirrel approaches, peeking over the bench.', 'a girl, wearing white shirt, black skirt, black tie, yellow hair,look around in the park.', 'leaf falls from the tree, landing on the sketchbook.', 'a girl, wearing white shirt, black skirt, black tie, yellow hair,picks up the leaf, examining its details closely.', 'The brown squirrel appear.', 'a girl, wearing white shirt, black skirt, black tie, yellow hair,is very happy', 'The brown squirrel takes the cracker and scampers up a tree.']\nUsing seed: 1486\nSuccessfully load paired self-attention\nNumber of the processor : 36\n 0%| | 0/25 [00:00<?, ?it/s]\n 4%|▍ | 1/25 [00:00<00:10, 2.26it/s]\n 8%|▊ | 2/25 [00:00<00:10, 2.25it/s]\n 12%|█▏ | 3/25 [00:01<00:09, 2.25it/s]\n 16%|█▌ | 4/25 [00:01<00:09, 2.25it/s]\n 20%|██ | 5/25 [00:02<00:08, 2.25it/s]\n 24%|██▍ | 6/25 [00:02<00:10, 1.87it/s]\n 28%|██▊ | 7/25 [00:03<00:10, 1.73it/s]\n 32%|███▏ | 8/25 [00:04<00:10, 1.65it/s]\n 36%|███▌ | 9/25 [00:04<00:10, 1.59it/s]\n 40%|████ | 10/25 [00:05<00:09, 1.53it/s]\n 44%|████▍ | 11/25 [00:06<00:09, 1.48it/s]\n 48%|████▊ | 12/25 [00:07<00:08, 1.48it/s]\n 52%|█████▏ | 13/25 [00:07<00:08, 1.45it/s]\n 56%|█████▌ | 14/25 [00:08<00:07, 1.45it/s]\n 60%|██████ | 15/25 [00:09<00:07, 1.42it/s]\n 64%|██████▍ | 16/25 [00:09<00:06, 1.41it/s]\n 68%|██████▊ | 17/25 [00:10<00:05, 1.41it/s]\n 72%|███████▏ | 18/25 [00:11<00:04, 1.43it/s]\n 76%|███████▌ | 19/25 [00:12<00:04, 1.40it/s]\n 80%|████████ | 20/25 [00:12<00:03, 1.40it/s]\n 84%|████████▍ | 21/25 [00:13<00:02, 1.34it/s]\n 88%|████████▊ | 22/25 [00:14<00:02, 1.30it/s]\n 92%|█████████▏| 23/25 [00:15<00:01, 1.29it/s]\n 96%|█████████▌| 24/25 [00:16<00:00, 1.28it/s]\n100%|██████████| 25/25 [00:16<00:00, 1.25it/s]\n100%|██████████| 25/25 [00:16<00:00, 1.48it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\n 4%|▍ | 1/25 [00:00<00:03, 6.19it/s]\n 8%|▊ | 2/25 [00:00<00:03, 6.15it/s]\n 12%|█▏ | 3/25 [00:00<00:03, 6.15it/s]\n 16%|█▌ | 4/25 [00:00<00:03, 6.14it/s]\n 20%|██ | 5/25 [00:00<00:03, 6.11it/s]\n 24%|██▍ | 6/25 [00:01<00:03, 5.46it/s]\n 28%|██▊ | 7/25 [00:01<00:03, 4.94it/s]\n 32%|███▏ | 8/25 [00:01<00:03, 4.57it/s]\n 36%|███▌ | 9/25 [00:01<00:03, 4.49it/s]\n 40%|████ | 10/25 [00:01<00:03, 4.46it/s]\n 44%|████▍ | 11/25 [00:02<00:03, 4.53it/s]\n 48%|████▊ | 12/25 [00:02<00:02, 4.49it/s]\n 52%|█████▏ | 13/25 [00:02<00:02, 4.45it/s]\n 56%|█████▌ | 14/25 [00:02<00:02, 4.49it/s]\n 60%|██████ | 15/25 [00:03<00:02, 4.53it/s]\n 64%|██████▍ | 16/25 [00:03<00:02, 4.44it/s]\n 68%|██████▊ | 17/25 [00:03<00:01, 4.45it/s]\n 72%|███████▏ | 18/25 [00:03<00:01, 4.38it/s]\n 76%|███████▌ | 19/25 [00:04<00:01, 4.33it/s]\n 80%|████████ | 20/25 [00:04<00:01, 4.27it/s]\n 84%|████████▍ | 21/25 [00:04<00:00, 4.24it/s]\n 88%|████████▊ | 22/25 [00:04<00:00, 4.07it/s]\n 92%|█████████▏| 23/25 [00:05<00:00, 3.96it/s]\n 96%|█████████▌| 24/25 [00:05<00:00, 3.94it/s]\n100%|██████████| 25/25 [00:05<00:00, 3.87it/s]\n100%|██████████| 25/25 [00:05<00:00, 4.49it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\n 4%|▍ | 1/25 [00:00<00:03, 6.17it/s]\n 8%|▊ | 2/25 [00:00<00:03, 6.16it/s]\n 12%|█▏ | 3/25 [00:00<00:03, 6.16it/s]\n 16%|█▌ | 4/25 [00:00<00:03, 6.14it/s]\n 20%|██ | 5/25 [00:00<00:03, 6.13it/s]\n 24%|██▍ | 6/25 [00:01<00:03, 5.28it/s]\n 28%|██▊ | 7/25 [00:01<00:03, 4.89it/s]\n 32%|███▏ | 8/25 [00:01<00:03, 4.69it/s]\n 36%|███▌ | 9/25 [00:01<00:03, 4.56it/s]\n 40%|████ | 10/25 [00:01<00:03, 4.48it/s]\n 44%|████▍ | 11/25 [00:02<00:03, 4.36it/s]\n 48%|████▊ | 12/25 [00:02<00:02, 4.36it/s]\n 52%|█████▏ | 13/25 [00:02<00:02, 4.46it/s]\n 56%|█████▌ | 14/25 [00:02<00:02, 4.55it/s]\n 60%|██████ | 15/25 [00:03<00:02, 4.42it/s]\n 64%|██████▍ | 16/25 [00:03<00:01, 4.51it/s]\n 68%|██████▊ | 17/25 [00:03<00:01, 4.55it/s]\n 72%|███████▏ | 18/25 [00:03<00:01, 4.48it/s]\n 76%|███████▌ | 19/25 [00:04<00:01, 4.37it/s]\n 80%|████████ | 20/25 [00:04<00:01, 4.37it/s]\n 84%|████████▍ | 21/25 [00:04<00:00, 4.15it/s]\n 88%|████████▊ | 22/25 [00:04<00:00, 4.07it/s]\n 92%|█████████▏| 23/25 [00:05<00:00, 4.01it/s]\n 96%|█████████▌| 24/25 [00:05<00:00, 3.92it/s]\n100%|██████████| 25/25 [00:05<00:00, 3.85it/s]\n100%|██████████| 25/25 [00:05<00:00, 4.48it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\n 4%|▍ | 1/25 [00:00<00:03, 6.19it/s]\n 8%|▊ | 2/25 [00:00<00:03, 6.15it/s]\n 12%|█▏ | 3/25 [00:00<00:03, 6.13it/s]\n 16%|█▌ | 4/25 [00:00<00:03, 6.12it/s]\n 20%|██ | 5/25 [00:00<00:03, 6.12it/s]\n 24%|██▍ | 6/25 [00:01<00:03, 5.08it/s]\n 28%|██▊ | 7/25 [00:01<00:03, 4.70it/s]\n 32%|███▏ | 8/25 [00:01<00:03, 4.57it/s]\n 36%|███▌ | 9/25 [00:01<00:03, 4.77it/s]\n 40%|████ | 10/25 [00:01<00:03, 4.63it/s]\n 44%|████▍ | 11/25 [00:02<00:02, 4.70it/s]\n 48%|████▊ | 12/25 [00:02<00:02, 4.81it/s]\n 52%|█████▏ | 13/25 [00:02<00:02, 4.65it/s]\n 56%|█████▌ | 14/25 [00:02<00:02, 4.79it/s]\n 60%|██████ | 15/25 [00:03<00:02, 4.84it/s]\n 64%|██████▍ | 16/25 [00:03<00:01, 4.60it/s]\n 68%|██████▊ | 17/25 [00:03<00:01, 4.44it/s]\n 72%|███████▏ | 18/25 [00:03<00:01, 4.44it/s]\n 76%|███████▌ | 19/25 [00:03<00:01, 4.46it/s]\n 80%|████████ | 20/25 [00:04<00:01, 4.45it/s]\n 84%|████████▍ | 21/25 [00:04<00:00, 4.29it/s]\n 88%|████████▊ | 22/25 [00:04<00:00, 4.11it/s]\n 92%|█████████▏| 23/25 [00:04<00:00, 4.07it/s]\n 96%|█████████▌| 24/25 [00:05<00:00, 3.94it/s]\n100%|██████████| 25/25 [00:05<00:00, 3.91it/s]\n100%|██████████| 25/25 [00:05<00:00, 4.57it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\n 4%|▍ | 1/25 [00:00<00:03, 6.17it/s]\n 8%|▊ | 2/25 [00:00<00:03, 6.13it/s]\n 12%|█▏ | 3/25 [00:00<00:03, 6.12it/s]\n 16%|█▌ | 4/25 [00:00<00:03, 6.12it/s]\n 20%|██ | 5/25 [00:00<00:03, 6.12it/s]\n 24%|██▍ | 6/25 [00:01<00:03, 5.51it/s]\n 28%|██▊ | 7/25 [00:01<00:03, 5.24it/s]\n 32%|███▏ | 8/25 [00:01<00:03, 4.93it/s]\n 36%|███▌ | 9/25 [00:01<00:03, 4.59it/s]\n 40%|████ | 10/25 [00:01<00:03, 4.52it/s]\n 44%|████▍ | 11/25 [00:02<00:03, 4.37it/s]\n 48%|████▊ | 12/25 [00:02<00:02, 4.39it/s]\n 52%|█████▏ | 13/25 [00:02<00:02, 4.35it/s]\n 56%|█████▌ | 14/25 [00:02<00:02, 4.35it/s]\n 60%|██████ | 15/25 [00:03<00:02, 4.34it/s]\n 64%|██████▍ | 16/25 [00:03<00:02, 4.48it/s]\n 68%|██████▊ | 17/25 [00:03<00:01, 4.42it/s]\n 72%|███████▏ | 18/25 [00:03<00:01, 4.26it/s]\n 76%|███████▌ | 19/25 [00:04<00:01, 4.44it/s]\n 80%|████████ | 20/25 [00:04<00:01, 4.37it/s]\n 84%|████████▍ | 21/25 [00:04<00:00, 4.26it/s]\n 88%|████████▊ | 22/25 [00:04<00:00, 4.13it/s]\n 92%|█████████▏| 23/25 [00:05<00:00, 4.07it/s]\n 96%|█████████▌| 24/25 [00:05<00:00, 3.95it/s]\n100%|██████████| 25/25 [00:05<00:00, 3.90it/s]\n100%|██████████| 25/25 [00:05<00:00, 4.51it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\n 4%|▍ | 1/25 [00:00<00:03, 6.15it/s]\n 8%|▊ | 2/25 [00:00<00:03, 6.11it/s]\n 12%|█▏ | 3/25 [00:00<00:03, 6.11it/s]\n 16%|█▌ | 4/25 [00:00<00:03, 6.11it/s]\n 20%|██ | 5/25 [00:00<00:03, 6.10it/s]\n 24%|██▍ | 6/25 [00:01<00:03, 5.45it/s]\n 28%|██▊ | 7/25 [00:01<00:03, 5.09it/s]\n 32%|███▏ | 8/25 [00:01<00:03, 4.83it/s]\n 36%|███▌ | 9/25 [00:01<00:03, 4.74it/s]\n 40%|████ | 10/25 [00:01<00:03, 4.58it/s]\n 44%|████▍ | 11/25 [00:02<00:03, 4.63it/s]\n 48%|████▊ | 12/25 [00:02<00:02, 4.47it/s]\n 52%|█████▏ | 13/25 [00:02<00:02, 4.54it/s]\n 56%|█████▌ | 14/25 [00:02<00:02, 4.41it/s]\n 60%|██████ | 15/25 [00:03<00:02, 4.24it/s]\n 64%|██████▍ | 16/25 [00:03<00:02, 4.30it/s]\n 68%|██████▊ | 17/25 [00:03<00:01, 4.16it/s]\n 72%|███████▏ | 18/25 [00:03<00:01, 4.16it/s]\n 76%|███████▌ | 19/25 [00:04<00:01, 4.18it/s]\n 80%|████████ | 20/25 [00:04<00:01, 4.20it/s]\n 84%|████████▍ | 21/25 [00:04<00:00, 4.12it/s]\n 88%|████████▊ | 22/25 [00:04<00:00, 3.99it/s]\n 92%|█████████▏| 23/25 [00:05<00:00, 3.96it/s]\n 96%|█████████▌| 24/25 [00:05<00:00, 3.87it/s]\n100%|██████████| 25/25 [00:05<00:00, 3.82it/s]\n100%|██████████| 25/25 [00:05<00:00, 4.44it/s]\n 0%| | 0/25 [00:00<?, ?it/s]\n 4%|▍ | 1/25 [00:00<00:03, 6.17it/s]\n 8%|▊ | 2/25 [00:00<00:03, 6.13it/s]\n 12%|█▏ | 3/25 [00:00<00:03, 6.12it/s]\n 16%|█▌ | 4/25 [00:00<00:03, 6.11it/s]\n 20%|██ | 5/25 [00:00<00:03, 6.11it/s]\n 24%|██▍ | 6/25 [00:01<00:03, 5.22it/s]\n 28%|██▊ | 7/25 [00:01<00:03, 4.70it/s]\n 32%|███▏ | 8/25 [00:01<00:03, 4.45it/s]\n 36%|███▌ | 9/25 [00:01<00:03, 4.41it/s]\n 40%|████ | 10/25 [00:02<00:03, 4.40it/s]\n 44%|████▍ | 11/25 [00:02<00:03, 4.39it/s]\n 48%|████▊ | 12/25 [00:02<00:02, 4.40it/s]\n 52%|█████▏ | 13/25 [00:02<00:02, 4.51it/s]\n 56%|█████▌ | 14/25 [00:02<00:02, 4.42it/s]\n 60%|██████ | 15/25 [00:03<00:02, 4.50it/s]\n 64%|██████▍ | 16/25 [00:03<00:01, 4.50it/s]\n 68%|██████▊ | 17/25 [00:03<00:01, 4.37it/s]\n 72%|███████▏ | 18/25 [00:03<00:01, 4.36it/s]\n 76%|███████▌ | 19/25 [00:04<00:01, 4.37it/s]\n 80%|████████ | 20/25 [00:04<00:01, 4.36it/s]\n 84%|████████▍ | 21/25 [00:04<00:00, 4.15it/s]\n 88%|████████▊ | 22/25 [00:04<00:00, 4.14it/s]\n 92%|█████████▏| 23/25 [00:05<00:00, 4.03it/s]\n 96%|█████████▌| 24/25 [00:05<00:00, 3.93it/s]\n100%|██████████| 25/25 [00:05<00:00, 3.87it/s]\n100%|██████████| 25/25 [00:05<00:00, 4.46it/s]\n6 [[<PIL.Image.Image image mode=RGB size=788x788 at 0x7F22A36C4810>, <PIL.Image.Image image mode=RGB size=788x788 at 0x7F22A6EE7BD0>, <PIL.Image.Image image mode=RGB size=788x788 at 0x7F22A3D70850>, <PIL.Image.Image image mode=RGB size=788x788 at 0x7F22A5820C10>]]\n0 [[<PIL.Image.Image image mode=RGB size=788x788 at 0x7F22A36C4810>, <PIL.Image.Image image mode=RGB size=788x788 at 0x7F22A6EE7BD0>, <PIL.Image.Image image mode=RGB size=788x788 at 0x7F22A3D70850>, <PIL.Image.Image image mode=RGB size=788x788 at 0x7F22A5820C10>], [<PIL.Image.Image image mode=RGB size=788x788 at 0x7F22A3528410>, <PIL.Image.Image image mode=RGB size=788x788 at 0x7F22A40A5210>, <PIL.Image.Image image mode=RGB size=788x788 at 0x7F22A40A66D0>, <PIL.Image.Image image mode=RGB size=788x788 at 0x7F22A40A5CD0>, <PIL.Image.Image image mode=RGB size=788x788 at 0x7F22A40A4410>, <PIL.Image.Image image mode=RGB size=788x788 at 0x7F22A7E55A10>]]\n[[<PIL.Image.Image image mode=RGB size=788x788 at 0x7F22A36C4810>, <PIL.Image.Image image mode=RGB size=788x788 at 0x7F22A6EE7BD0>, <PIL.Image.Image image mode=RGB size=788x788 at 0x7F22A3D70850>, <PIL.Image.Image image mode=RGB size=788x788 at 0x7F22A5820C10>], [<PIL.Image.Image image mode=RGB size=788x788 at 0x7F22A3528410>, <PIL.Image.Image image mode=RGB size=788x788 at 0x7F22A40A5210>, <PIL.Image.Image image mode=RGB size=788x788 at 0x7F22A40A66D0>, <PIL.Image.Image image mode=RGB size=788x788 at 0x7F22A40A5CD0>, <PIL.Image.Image image mode=RGB size=788x788 at 0x7F22A40A4410>, <PIL.Image.Image image mode=RGB size=788x788 at 0x7F22A7E55A10>]]\n0 (83, 712)\n0 (115, 712)\n1 (30, 641)\n0 (136, 718)",
"metrics": {
"predict_time": 58.30952,
"total_time": 58.348012
},
"output": {
"comic": "https://replicate.delivery/pbxt/kb51zJAT4LZ3DBrDTdxG3r8zvWo6GoKTQtV74S5UvtnP4RsE/comic.webp",
"individual_images": [
"https://replicate.delivery/pbxt/kbWjLatKuY58NRfu6A3nPsffTHWeVcovKcpbi20fK639H8IWC/out-0.webp",
"https://replicate.delivery/pbxt/eSE9XNP9UTwWEK291xXBWVnPfADGTbIC4enr1ia4A7FACPilA/out-1.webp",
"https://replicate.delivery/pbxt/Ze04d4jR4fix0USFIrXfp3p85jXWuAzPz4rgfzCfcqwHI8IWC/out-2.webp",
"https://replicate.delivery/pbxt/21cjVTK86ULNIlIAlNfXh4FXf6DdYU1XKDWkFGqjQ8yAhHxSA/out-3.webp",
"https://replicate.delivery/pbxt/T8f8flamuPjoWk5J1DcBk7vfEI1x0x8RR76DPbFb6TxACPilA/out-4.webp",
"https://replicate.delivery/pbxt/V12yP6wHKYpmId8FX8vjkAwUz0cnfG8Polo74uMLxAmgwjYJA/out-5.webp",
"https://replicate.delivery/pbxt/GOCaZrZzlRbPC9oLgRpCypCZS0t7MGn1fDQkj9yhh8vgwjYJA/out-6.webp",
"https://replicate.delivery/pbxt/PEt9c7zSSZKPOBsl2eMnuFBSpVyJJig3FeOvJL5meRADCPilA/out-7.webp",
"https://replicate.delivery/pbxt/JpGM444lfsxVdiAeGd5OePCzhgzghrarlrHVBvWYexzIEeIWC/out-8.webp",
"https://replicate.delivery/pbxt/BuYXgeVo4TztVawo7Vj80cdf1BUu4hj28tDEkGlAzsLChHxSA/out-9.webp"
]
},
"started_at": "2024-05-04T23:34:32.194492Z",
"status": "succeeded",
"urls": {
"get": "https://api.replicate.com/v1/predictions/m5dwv3cfvhrgg0cf8qtv7yhvc4",
"cancel": "https://api.replicate.com/v1/predictions/m5dwv3cfvhrgg0cf8qtv7yhvc4/cancel"
},
"version": "39c85f153f00e4e9328cb3035b94559a8ec66170eb4c0618c07b16528bf20ac2"
}
['at home #at home, began to go to drawing', 'sitting alone on a park bench.', 'reading a book on a park bench.', '[NC]A squirrel approaches, peeking over the bench. ', 'look around in the park. # She looks around and enjoys the beauty of nature.', '[NC]leaf falls from the tree, landing on the sketchbook.', 'picks up the leaf, examining its details closely.', '[NC]The brown squirrel appear.', 'is very happy # She is very happy to see the squirrel again', '[NC]The brown squirrel takes the cracker and scampers up a tree. # She gives the squirrel cracker']
['a girl, wearing white shirt, black skirt, black tie, yellow hair,at home #at home, began to go to drawing', 'a girl, wearing white shirt, black skirt, black tie, yellow hair,sitting alone on a park bench.', 'a girl, wearing white shirt, black skirt, black tie, yellow hair,reading a book on a park bench.', 'A squirrel approaches, peeking over the bench. ', 'a girl, wearing white shirt, black skirt, black tie, yellow hair,look around in the park. # She looks around and enjoys the beauty of nature.', 'leaf falls from the tree, landing on the sketchbook.', 'a girl, wearing white shirt, black skirt, black tie, yellow hair,picks up the leaf, examining its details closely.', 'The brown squirrel appear.', 'a girl, wearing white shirt, black skirt, black tie, yellow hair,is very happy # She is very happy to see the squirrel again', 'The brown squirrel takes the cracker and scampers up a tree. # She gives the squirrel cracker']
['a girl, wearing white shirt, black skirt, black tie, yellow hair,at home', 'a girl, wearing white shirt, black skirt, black tie, yellow hair,sitting alone on a park bench.', 'a girl, wearing white shirt, black skirt, black tie, yellow hair,reading a book on a park bench.', 'A squirrel approaches, peeking over the bench.', 'a girl, wearing white shirt, black skirt, black tie, yellow hair,look around in the park.', 'leaf falls from the tree, landing on the sketchbook.', 'a girl, wearing white shirt, black skirt, black tie, yellow hair,picks up the leaf, examining its details closely.', 'The brown squirrel appear.', 'a girl, wearing white shirt, black skirt, black tie, yellow hair,is very happy', 'The brown squirrel takes the cracker and scampers up a tree.']
Using seed: 1486
Successfully load paired self-attention
Number of the processor : 36
0%| | 0/25 [00:00<?, ?it/s]
4%|▍ | 1/25 [00:00<00:10, 2.26it/s]
8%|▊ | 2/25 [00:00<00:10, 2.25it/s]
12%|█▏ | 3/25 [00:01<00:09, 2.25it/s]
16%|█▌ | 4/25 [00:01<00:09, 2.25it/s]
20%|██ | 5/25 [00:02<00:08, 2.25it/s]
24%|██▍ | 6/25 [00:02<00:10, 1.87it/s]
28%|██▊ | 7/25 [00:03<00:10, 1.73it/s]
32%|███▏ | 8/25 [00:04<00:10, 1.65it/s]
36%|███▌ | 9/25 [00:04<00:10, 1.59it/s]
40%|████ | 10/25 [00:05<00:09, 1.53it/s]
44%|████▍ | 11/25 [00:06<00:09, 1.48it/s]
48%|████▊ | 12/25 [00:07<00:08, 1.48it/s]
52%|█████▏ | 13/25 [00:07<00:08, 1.45it/s]
56%|█████▌ | 14/25 [00:08<00:07, 1.45it/s]
60%|██████ | 15/25 [00:09<00:07, 1.42it/s]
64%|██████▍ | 16/25 [00:09<00:06, 1.41it/s]
68%|██████▊ | 17/25 [00:10<00:05, 1.41it/s]
72%|███████▏ | 18/25 [00:11<00:04, 1.43it/s]
76%|███████▌ | 19/25 [00:12<00:04, 1.40it/s]
80%|████████ | 20/25 [00:12<00:03, 1.40it/s]
84%|████████▍ | 21/25 [00:13<00:02, 1.34it/s]
88%|████████▊ | 22/25 [00:14<00:02, 1.30it/s]
92%|█████████▏| 23/25 [00:15<00:01, 1.29it/s]
96%|█████████▌| 24/25 [00:16<00:00, 1.28it/s]
100%|██████████| 25/25 [00:16<00:00, 1.25it/s]
100%|██████████| 25/25 [00:16<00:00, 1.48it/s]
0%| | 0/25 [00:00<?, ?it/s]
4%|▍ | 1/25 [00:00<00:03, 6.19it/s]
8%|▊ | 2/25 [00:00<00:03, 6.15it/s]
12%|█▏ | 3/25 [00:00<00:03, 6.15it/s]
16%|█▌ | 4/25 [00:00<00:03, 6.14it/s]
20%|██ | 5/25 [00:00<00:03, 6.11it/s]
24%|██▍ | 6/25 [00:01<00:03, 5.46it/s]
28%|██▊ | 7/25 [00:01<00:03, 4.94it/s]
32%|███▏ | 8/25 [00:01<00:03, 4.57it/s]
36%|███▌ | 9/25 [00:01<00:03, 4.49it/s]
40%|████ | 10/25 [00:01<00:03, 4.46it/s]
44%|████▍ | 11/25 [00:02<00:03, 4.53it/s]
48%|████▊ | 12/25 [00:02<00:02, 4.49it/s]
52%|█████▏ | 13/25 [00:02<00:02, 4.45it/s]
56%|█████▌ | 14/25 [00:02<00:02, 4.49it/s]
60%|██████ | 15/25 [00:03<00:02, 4.53it/s]
64%|██████▍ | 16/25 [00:03<00:02, 4.44it/s]
68%|██████▊ | 17/25 [00:03<00:01, 4.45it/s]
72%|███████▏ | 18/25 [00:03<00:01, 4.38it/s]
76%|███████▌ | 19/25 [00:04<00:01, 4.33it/s]
80%|████████ | 20/25 [00:04<00:01, 4.27it/s]
84%|████████▍ | 21/25 [00:04<00:00, 4.24it/s]
88%|████████▊ | 22/25 [00:04<00:00, 4.07it/s]
92%|█████████▏| 23/25 [00:05<00:00, 3.96it/s]
96%|█████████▌| 24/25 [00:05<00:00, 3.94it/s]
100%|██████████| 25/25 [00:05<00:00, 3.87it/s]
100%|██████████| 25/25 [00:05<00:00, 4.49it/s]
0%| | 0/25 [00:00<?, ?it/s]
4%|▍ | 1/25 [00:00<00:03, 6.17it/s]
8%|▊ | 2/25 [00:00<00:03, 6.16it/s]
12%|█▏ | 3/25 [00:00<00:03, 6.16it/s]
16%|█▌ | 4/25 [00:00<00:03, 6.14it/s]
20%|██ | 5/25 [00:00<00:03, 6.13it/s]
24%|██▍ | 6/25 [00:01<00:03, 5.28it/s]
28%|██▊ | 7/25 [00:01<00:03, 4.89it/s]
32%|███▏ | 8/25 [00:01<00:03, 4.69it/s]
36%|███▌ | 9/25 [00:01<00:03, 4.56it/s]
40%|████ | 10/25 [00:01<00:03, 4.48it/s]
44%|████▍ | 11/25 [00:02<00:03, 4.36it/s]
48%|████▊ | 12/25 [00:02<00:02, 4.36it/s]
52%|█████▏ | 13/25 [00:02<00:02, 4.46it/s]
56%|█████▌ | 14/25 [00:02<00:02, 4.55it/s]
60%|██████ | 15/25 [00:03<00:02, 4.42it/s]
64%|██████▍ | 16/25 [00:03<00:01, 4.51it/s]
68%|██████▊ | 17/25 [00:03<00:01, 4.55it/s]
72%|███████▏ | 18/25 [00:03<00:01, 4.48it/s]
76%|███████▌ | 19/25 [00:04<00:01, 4.37it/s]
80%|████████ | 20/25 [00:04<00:01, 4.37it/s]
84%|████████▍ | 21/25 [00:04<00:00, 4.15it/s]
88%|████████▊ | 22/25 [00:04<00:00, 4.07it/s]
92%|█████████▏| 23/25 [00:05<00:00, 4.01it/s]
96%|█████████▌| 24/25 [00:05<00:00, 3.92it/s]
100%|██████████| 25/25 [00:05<00:00, 3.85it/s]
100%|██████████| 25/25 [00:05<00:00, 4.48it/s]
0%| | 0/25 [00:00<?, ?it/s]
4%|▍ | 1/25 [00:00<00:03, 6.19it/s]
8%|▊ | 2/25 [00:00<00:03, 6.15it/s]
12%|█▏ | 3/25 [00:00<00:03, 6.13it/s]
16%|█▌ | 4/25 [00:00<00:03, 6.12it/s]
20%|██ | 5/25 [00:00<00:03, 6.12it/s]
24%|██▍ | 6/25 [00:01<00:03, 5.08it/s]
28%|██▊ | 7/25 [00:01<00:03, 4.70it/s]
32%|███▏ | 8/25 [00:01<00:03, 4.57it/s]
36%|███▌ | 9/25 [00:01<00:03, 4.77it/s]
40%|████ | 10/25 [00:01<00:03, 4.63it/s]
44%|████▍ | 11/25 [00:02<00:02, 4.70it/s]
48%|████▊ | 12/25 [00:02<00:02, 4.81it/s]
52%|█████▏ | 13/25 [00:02<00:02, 4.65it/s]
56%|█████▌ | 14/25 [00:02<00:02, 4.79it/s]
60%|██████ | 15/25 [00:03<00:02, 4.84it/s]
64%|██████▍ | 16/25 [00:03<00:01, 4.60it/s]
68%|██████▊ | 17/25 [00:03<00:01, 4.44it/s]
72%|███████▏ | 18/25 [00:03<00:01, 4.44it/s]
76%|███████▌ | 19/25 [00:03<00:01, 4.46it/s]
80%|████████ | 20/25 [00:04<00:01, 4.45it/s]
84%|████████▍ | 21/25 [00:04<00:00, 4.29it/s]
88%|████████▊ | 22/25 [00:04<00:00, 4.11it/s]
92%|█████████▏| 23/25 [00:04<00:00, 4.07it/s]
96%|█████████▌| 24/25 [00:05<00:00, 3.94it/s]
100%|██████████| 25/25 [00:05<00:00, 3.91it/s]
100%|██████████| 25/25 [00:05<00:00, 4.57it/s]
0%| | 0/25 [00:00<?, ?it/s]
4%|▍ | 1/25 [00:00<00:03, 6.17it/s]
8%|▊ | 2/25 [00:00<00:03, 6.13it/s]
12%|█▏ | 3/25 [00:00<00:03, 6.12it/s]
16%|█▌ | 4/25 [00:00<00:03, 6.12it/s]
20%|██ | 5/25 [00:00<00:03, 6.12it/s]
24%|██▍ | 6/25 [00:01<00:03, 5.51it/s]
28%|██▊ | 7/25 [00:01<00:03, 5.24it/s]
32%|███▏ | 8/25 [00:01<00:03, 4.93it/s]
36%|███▌ | 9/25 [00:01<00:03, 4.59it/s]
40%|████ | 10/25 [00:01<00:03, 4.52it/s]
44%|████▍ | 11/25 [00:02<00:03, 4.37it/s]
48%|████▊ | 12/25 [00:02<00:02, 4.39it/s]
52%|█████▏ | 13/25 [00:02<00:02, 4.35it/s]
56%|█████▌ | 14/25 [00:02<00:02, 4.35it/s]
60%|██████ | 15/25 [00:03<00:02, 4.34it/s]
64%|██████▍ | 16/25 [00:03<00:02, 4.48it/s]
68%|██████▊ | 17/25 [00:03<00:01, 4.42it/s]
72%|███████▏ | 18/25 [00:03<00:01, 4.26it/s]
76%|███████▌ | 19/25 [00:04<00:01, 4.44it/s]
80%|████████ | 20/25 [00:04<00:01, 4.37it/s]
84%|████████▍ | 21/25 [00:04<00:00, 4.26it/s]
88%|████████▊ | 22/25 [00:04<00:00, 4.13it/s]
92%|█████████▏| 23/25 [00:05<00:00, 4.07it/s]
96%|█████████▌| 24/25 [00:05<00:00, 3.95it/s]
100%|██████████| 25/25 [00:05<00:00, 3.90it/s]
100%|██████████| 25/25 [00:05<00:00, 4.51it/s]
0%| | 0/25 [00:00<?, ?it/s]
4%|▍ | 1/25 [00:00<00:03, 6.15it/s]
8%|▊ | 2/25 [00:00<00:03, 6.11it/s]
12%|█▏ | 3/25 [00:00<00:03, 6.11it/s]
16%|█▌ | 4/25 [00:00<00:03, 6.11it/s]
20%|██ | 5/25 [00:00<00:03, 6.10it/s]
24%|██▍ | 6/25 [00:01<00:03, 5.45it/s]
28%|██▊ | 7/25 [00:01<00:03, 5.09it/s]
32%|███▏ | 8/25 [00:01<00:03, 4.83it/s]
36%|███▌ | 9/25 [00:01<00:03, 4.74it/s]
40%|████ | 10/25 [00:01<00:03, 4.58it/s]
44%|████▍ | 11/25 [00:02<00:03, 4.63it/s]
48%|████▊ | 12/25 [00:02<00:02, 4.47it/s]
52%|█████▏ | 13/25 [00:02<00:02, 4.54it/s]
56%|█████▌ | 14/25 [00:02<00:02, 4.41it/s]
60%|██████ | 15/25 [00:03<00:02, 4.24it/s]
64%|██████▍ | 16/25 [00:03<00:02, 4.30it/s]
68%|██████▊ | 17/25 [00:03<00:01, 4.16it/s]
72%|███████▏ | 18/25 [00:03<00:01, 4.16it/s]
76%|███████▌ | 19/25 [00:04<00:01, 4.18it/s]
80%|████████ | 20/25 [00:04<00:01, 4.20it/s]
84%|████████▍ | 21/25 [00:04<00:00, 4.12it/s]
88%|████████▊ | 22/25 [00:04<00:00, 3.99it/s]
92%|█████████▏| 23/25 [00:05<00:00, 3.96it/s]
96%|█████████▌| 24/25 [00:05<00:00, 3.87it/s]
100%|██████████| 25/25 [00:05<00:00, 3.82it/s]
100%|██████████| 25/25 [00:05<00:00, 4.44it/s]
0%| | 0/25 [00:00<?, ?it/s]
4%|▍ | 1/25 [00:00<00:03, 6.17it/s]
8%|▊ | 2/25 [00:00<00:03, 6.13it/s]
12%|█▏ | 3/25 [00:00<00:03, 6.12it/s]
16%|█▌ | 4/25 [00:00<00:03, 6.11it/s]
20%|██ | 5/25 [00:00<00:03, 6.11it/s]
24%|██▍ | 6/25 [00:01<00:03, 5.22it/s]
28%|██▊ | 7/25 [00:01<00:03, 4.70it/s]
32%|███▏ | 8/25 [00:01<00:03, 4.45it/s]
36%|███▌ | 9/25 [00:01<00:03, 4.41it/s]
40%|████ | 10/25 [00:02<00:03, 4.40it/s]
44%|████▍ | 11/25 [00:02<00:03, 4.39it/s]
48%|████▊ | 12/25 [00:02<00:02, 4.40it/s]
52%|█████▏ | 13/25 [00:02<00:02, 4.51it/s]
56%|█████▌ | 14/25 [00:02<00:02, 4.42it/s]
60%|██████ | 15/25 [00:03<00:02, 4.50it/s]
64%|██████▍ | 16/25 [00:03<00:01, 4.50it/s]
68%|██████▊ | 17/25 [00:03<00:01, 4.37it/s]
72%|███████▏ | 18/25 [00:03<00:01, 4.36it/s]
76%|███████▌ | 19/25 [00:04<00:01, 4.37it/s]
80%|████████ | 20/25 [00:04<00:01, 4.36it/s]
84%|████████▍ | 21/25 [00:04<00:00, 4.15it/s]
88%|████████▊ | 22/25 [00:04<00:00, 4.14it/s]
92%|█████████▏| 23/25 [00:05<00:00, 4.03it/s]
96%|█████████▌| 24/25 [00:05<00:00, 3.93it/s]
100%|██████████| 25/25 [00:05<00:00, 3.87it/s]
100%|██████████| 25/25 [00:05<00:00, 4.46it/s]
6 [[<PIL.Image.Image image mode=RGB size=788x788 at 0x7F22A36C4810>, <PIL.Image.Image image mode=RGB size=788x788 at 0x7F22A6EE7BD0>, <PIL.Image.Image image mode=RGB size=788x788 at 0x7F22A3D70850>, <PIL.Image.Image image mode=RGB size=788x788 at 0x7F22A5820C10>]]
0 [[<PIL.Image.Image image mode=RGB size=788x788 at 0x7F22A36C4810>, <PIL.Image.Image image mode=RGB size=788x788 at 0x7F22A6EE7BD0>, <PIL.Image.Image image mode=RGB size=788x788 at 0x7F22A3D70850>, <PIL.Image.Image image mode=RGB size=788x788 at 0x7F22A5820C10>], [<PIL.Image.Image image mode=RGB size=788x788 at 0x7F22A3528410>, <PIL.Image.Image image mode=RGB size=788x788 at 0x7F22A40A5210>, <PIL.Image.Image image mode=RGB size=788x788 at 0x7F22A40A66D0>, <PIL.Image.Image image mode=RGB size=788x788 at 0x7F22A40A5CD0>, <PIL.Image.Image image mode=RGB size=788x788 at 0x7F22A40A4410>, <PIL.Image.Image image mode=RGB size=788x788 at 0x7F22A7E55A10>]]
[[<PIL.Image.Image image mode=RGB size=788x788 at 0x7F22A36C4810>, <PIL.Image.Image image mode=RGB size=788x788 at 0x7F22A6EE7BD0>, <PIL.Image.Image image mode=RGB size=788x788 at 0x7F22A3D70850>, <PIL.Image.Image image mode=RGB size=788x788 at 0x7F22A5820C10>], [<PIL.Image.Image image mode=RGB size=788x788 at 0x7F22A3528410>, <PIL.Image.Image image mode=RGB size=788x788 at 0x7F22A40A5210>, <PIL.Image.Image image mode=RGB size=788x788 at 0x7F22A40A66D0>, <PIL.Image.Image image mode=RGB size=788x788 at 0x7F22A40A5CD0>, <PIL.Image.Image image mode=RGB size=788x788 at 0x7F22A40A4410>, <PIL.Image.Image image mode=RGB size=788x788 at 0x7F22A7E55A10>]]
0 (83, 712)
0 (115, 712)
1 (30, 641)
0 (136, 718)