diaphinus / bodegakitty
Trained on images of a real cat
- Public
- 1.5K runs
-
L40S
- SDXL fine-tune
Prediction
diaphinus/bodegakitty:8d8f11f6b7d50d536fe284a5c81b0ba0fd64aafec0031accb2ab5ca5ec9aef19IDuonbartbcy2hn4rp5ymitflaeeStatusSucceededSourceWebHardwareA40 (Large)Total durationCreatedInput
- width
- 928
- height
- 1232
- prompt
- human-sized orange cat behind the counter of a Bodega, photographed by Annie Leibovitz, smokey, haunting atmosphere, dimly lit
- refine
- no_refiner
- scheduler
- K_EULER_ANCESTRAL
- lora_scale
- 0.6
- num_outputs
- 4
- guidance_scale
- 7.5
- apply_watermark
- high_noise_frac
- 0.8
- negative_prompt
- deformed, noisy, low-poly, blurry, painting, photographic, scribbles drawing, painting, crayon, sketch, graphite, impressionist, noisy, blurry, soft, deformed, ugly
- prompt_strength
- 0.8
- num_inference_steps
- 50
{ "image": "https://replicate.delivery/pbxt/JXrKdDvU91bLoztTvdZ9W7MO8VjTjDMmu3RLL0lvL8fIEd63/marcaaron_human_sized_orange_cat_behind_the_counter_of_a_Bodega_0797b090-56f6-46ed-9849-7ae770ccd1cd.png", "width": 928, "height": 1232, "prompt": "human-sized orange cat behind the counter of a Bodega, photographed by Annie Leibovitz, smokey, haunting atmosphere, dimly lit", "refine": "no_refiner", "scheduler": "K_EULER_ANCESTRAL", "lora_scale": 0.6, "num_outputs": 4, "guidance_scale": 7.5, "apply_watermark": false, "high_noise_frac": 0.8, "negative_prompt": "deformed, noisy, low-poly, blurry, painting, photographic, scribbles drawing, painting, crayon, sketch, graphite, impressionist, noisy, blurry, soft, deformed, ugly \n", "prompt_strength": 0.8, "num_inference_steps": 50 }
Install Replicate’s Node.js client library:npm install replicate
Import and set up the client:import Replicate from "replicate"; import fs from "node:fs"; const replicate = new Replicate({ auth: process.env.REPLICATE_API_TOKEN, });
Run diaphinus/bodegakitty using Replicate’s API. Check out the model's schema for an overview of inputs and outputs.
const output = await replicate.run( "diaphinus/bodegakitty:8d8f11f6b7d50d536fe284a5c81b0ba0fd64aafec0031accb2ab5ca5ec9aef19", { input: { image: "https://replicate.delivery/pbxt/JXrKdDvU91bLoztTvdZ9W7MO8VjTjDMmu3RLL0lvL8fIEd63/marcaaron_human_sized_orange_cat_behind_the_counter_of_a_Bodega_0797b090-56f6-46ed-9849-7ae770ccd1cd.png", width: 928, height: 1232, prompt: "human-sized orange cat behind the counter of a Bodega, photographed by Annie Leibovitz, smokey, haunting atmosphere, dimly lit", refine: "no_refiner", scheduler: "K_EULER_ANCESTRAL", lora_scale: 0.6, num_outputs: 4, guidance_scale: 7.5, apply_watermark: false, high_noise_frac: 0.8, negative_prompt: "deformed, noisy, low-poly, blurry, painting, photographic, scribbles drawing, painting, crayon, sketch, graphite, impressionist, noisy, blurry, soft, deformed, ugly \n", prompt_strength: 0.8, num_inference_steps: 50 } } ); // To access the file URL: console.log(output[0].url()); //=> "http://example.com" // To write the file to disk: fs.writeFile("my-image.png", output[0]);
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 diaphinus/bodegakitty using Replicate’s API. Check out the model's schema for an overview of inputs and outputs.
output = replicate.run( "diaphinus/bodegakitty:8d8f11f6b7d50d536fe284a5c81b0ba0fd64aafec0031accb2ab5ca5ec9aef19", input={ "image": "https://replicate.delivery/pbxt/JXrKdDvU91bLoztTvdZ9W7MO8VjTjDMmu3RLL0lvL8fIEd63/marcaaron_human_sized_orange_cat_behind_the_counter_of_a_Bodega_0797b090-56f6-46ed-9849-7ae770ccd1cd.png", "width": 928, "height": 1232, "prompt": "human-sized orange cat behind the counter of a Bodega, photographed by Annie Leibovitz, smokey, haunting atmosphere, dimly lit", "refine": "no_refiner", "scheduler": "K_EULER_ANCESTRAL", "lora_scale": 0.6, "num_outputs": 4, "guidance_scale": 7.5, "apply_watermark": False, "high_noise_frac": 0.8, "negative_prompt": "deformed, noisy, low-poly, blurry, painting, photographic, scribbles drawing, painting, crayon, sketch, graphite, impressionist, noisy, blurry, soft, deformed, ugly \n", "prompt_strength": 0.8, "num_inference_steps": 50 } ) # To access the file URL: print(output[0].url()) #=> "http://example.com" # To write the file to disk: with open("my-image.png", "wb") as file: file.write(output[0].read())
To learn more, take a look at the guide on getting started with Python.
Run diaphinus/bodegakitty 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": "diaphinus/bodegakitty:8d8f11f6b7d50d536fe284a5c81b0ba0fd64aafec0031accb2ab5ca5ec9aef19", "input": { "image": "https://replicate.delivery/pbxt/JXrKdDvU91bLoztTvdZ9W7MO8VjTjDMmu3RLL0lvL8fIEd63/marcaaron_human_sized_orange_cat_behind_the_counter_of_a_Bodega_0797b090-56f6-46ed-9849-7ae770ccd1cd.png", "width": 928, "height": 1232, "prompt": "human-sized orange cat behind the counter of a Bodega, photographed by Annie Leibovitz, smokey, haunting atmosphere, dimly lit", "refine": "no_refiner", "scheduler": "K_EULER_ANCESTRAL", "lora_scale": 0.6, "num_outputs": 4, "guidance_scale": 7.5, "apply_watermark": false, "high_noise_frac": 0.8, "negative_prompt": "deformed, noisy, low-poly, blurry, painting, photographic, scribbles drawing, painting, crayon, sketch, graphite, impressionist, noisy, blurry, soft, deformed, ugly \\n", "prompt_strength": 0.8, "num_inference_steps": 50 } }' \ https://api.replicate.com/v1/predictions
To learn more, take a look at Replicate’s HTTP API reference docs.
Output
{ "completed_at": "2023-09-17T19:33:47.819413Z", "created_at": "2023-09-17T19:32:52.308032Z", "data_removed": false, "error": null, "id": "uonbartbcy2hn4rp5ymitflaee", "input": { "image": "https://replicate.delivery/pbxt/JXrKdDvU91bLoztTvdZ9W7MO8VjTjDMmu3RLL0lvL8fIEd63/marcaaron_human_sized_orange_cat_behind_the_counter_of_a_Bodega_0797b090-56f6-46ed-9849-7ae770ccd1cd.png", "width": 928, "height": 1232, "prompt": "human-sized orange cat behind the counter of a Bodega, photographed by Annie Leibovitz, smokey, haunting atmosphere, dimly lit", "refine": "no_refiner", "scheduler": "K_EULER_ANCESTRAL", "lora_scale": 0.6, "num_outputs": 4, "guidance_scale": 7.5, "apply_watermark": false, "high_noise_frac": 0.8, "negative_prompt": "deformed, noisy, low-poly, blurry, painting, photographic, scribbles drawing, painting, crayon, sketch, graphite, impressionist, noisy, blurry, soft, deformed, ugly \n", "prompt_strength": 0.8, "num_inference_steps": 50 }, "logs": "Using seed: 37266\nPrompt: human-sized orange cat behind the counter of a Bodega, photographed by Annie Leibovitz, smokey, haunting atmosphere, dimly lit\nimg2img mode\n 0%| | 0/40 [00:00<?, ?it/s]\n 2%|▎ | 1/40 [00:01<00:44, 1.13s/it]\n 5%|▌ | 2/40 [00:02<00:43, 1.13s/it]\n 8%|▊ | 3/40 [00:03<00:41, 1.13s/it]\n 10%|█ | 4/40 [00:04<00:40, 1.14s/it]\n 12%|█▎ | 5/40 [00:05<00:39, 1.13s/it]\n 15%|█▌ | 6/40 [00:06<00:38, 1.13s/it]\n 18%|█▊ | 7/40 [00:07<00:37, 1.13s/it]\n 20%|██ | 8/40 [00:09<00:36, 1.13s/it]\n 22%|██▎ | 9/40 [00:10<00:35, 1.13s/it]\n 25%|██▌ | 10/40 [00:11<00:33, 1.13s/it]\n 28%|██▊ | 11/40 [00:12<00:32, 1.13s/it]\n 30%|███ | 12/40 [00:13<00:31, 1.13s/it]\n 32%|███▎ | 13/40 [00:14<00:30, 1.13s/it]\n 35%|███▌ | 14/40 [00:15<00:29, 1.13s/it]\n 38%|███▊ | 15/40 [00:17<00:28, 1.14s/it]\n 40%|████ | 16/40 [00:18<00:27, 1.14s/it]\n 42%|████▎ | 17/40 [00:19<00:26, 1.14s/it]\n 45%|████▌ | 18/40 [00:20<00:25, 1.14s/it]\n 48%|████▊ | 19/40 [00:21<00:23, 1.14s/it]\n 50%|█████ | 20/40 [00:22<00:22, 1.14s/it]\n 52%|█████▎ | 21/40 [00:23<00:21, 1.14s/it]\n 55%|█████▌ | 22/40 [00:24<00:20, 1.14s/it]\n 57%|█████▊ | 23/40 [00:26<00:19, 1.14s/it]\n 60%|██████ | 24/40 [00:27<00:18, 1.14s/it]\n 62%|██████▎ | 25/40 [00:28<00:17, 1.14s/it]\n 65%|██████▌ | 26/40 [00:29<00:15, 1.14s/it]\n 68%|██████▊ | 27/40 [00:30<00:14, 1.14s/it]\n 70%|███████ | 28/40 [00:31<00:13, 1.14s/it]\n 72%|███████▎ | 29/40 [00:32<00:12, 1.14s/it]\n 75%|███████▌ | 30/40 [00:34<00:11, 1.14s/it]\n 78%|███████▊ | 31/40 [00:35<00:10, 1.14s/it]\n 80%|████████ | 32/40 [00:36<00:09, 1.14s/it]\n 82%|████████▎ | 33/40 [00:37<00:07, 1.14s/it]\n 85%|████████▌ | 34/40 [00:38<00:06, 1.14s/it]\n 88%|████████▊ | 35/40 [00:39<00:05, 1.14s/it]\n 90%|█████████ | 36/40 [00:40<00:04, 1.14s/it]\n 92%|█████████▎| 37/40 [00:42<00:03, 1.14s/it]\n 95%|█████████▌| 38/40 [00:43<00:02, 1.14s/it]\n 98%|█████████▊| 39/40 [00:44<00:01, 1.14s/it]\n100%|██████████| 40/40 [00:45<00:00, 1.14s/it]\n100%|██████████| 40/40 [00:45<00:00, 1.14s/it]", "metrics": { "predict_time": 53.625501, "total_time": 55.511381 }, "output": [ "https://replicate.delivery/pbxt/e8M8hxpGA0wPQ6vLiaf7VVvb9hcFKyXD6Q6mxBLjjPnZaQlRA/out-0.png", "https://replicate.delivery/pbxt/NOSpeBFL7vSYWKVDdrFhEUvCuqZfRIfFQCMQ0Td16hw10gKjA/out-1.png", "https://replicate.delivery/pbxt/lkUT2CP2pEYAPpHGX10QhLiJPhPNpn355tmXHZROCZhmGUZE/out-2.png", "https://replicate.delivery/pbxt/I7CNHeT7PDW7JqeSJgg1RmMUg7KfR567Jg82jdQYLHi20gKjA/out-3.png" ], "started_at": "2023-09-17T19:32:54.193912Z", "status": "succeeded", "urls": { "get": "https://api.replicate.com/v1/predictions/uonbartbcy2hn4rp5ymitflaee", "cancel": "https://api.replicate.com/v1/predictions/uonbartbcy2hn4rp5ymitflaee/cancel" }, "version": "8d8f11f6b7d50d536fe284a5c81b0ba0fd64aafec0031accb2ab5ca5ec9aef19" }
Generated inUsing seed: 37266 Prompt: human-sized orange cat behind the counter of a Bodega, photographed by Annie Leibovitz, smokey, haunting atmosphere, dimly lit img2img mode 0%| | 0/40 [00:00<?, ?it/s] 2%|▎ | 1/40 [00:01<00:44, 1.13s/it] 5%|▌ | 2/40 [00:02<00:43, 1.13s/it] 8%|▊ | 3/40 [00:03<00:41, 1.13s/it] 10%|█ | 4/40 [00:04<00:40, 1.14s/it] 12%|█▎ | 5/40 [00:05<00:39, 1.13s/it] 15%|█▌ | 6/40 [00:06<00:38, 1.13s/it] 18%|█▊ | 7/40 [00:07<00:37, 1.13s/it] 20%|██ | 8/40 [00:09<00:36, 1.13s/it] 22%|██▎ | 9/40 [00:10<00:35, 1.13s/it] 25%|██▌ | 10/40 [00:11<00:33, 1.13s/it] 28%|██▊ | 11/40 [00:12<00:32, 1.13s/it] 30%|███ | 12/40 [00:13<00:31, 1.13s/it] 32%|███▎ | 13/40 [00:14<00:30, 1.13s/it] 35%|███▌ | 14/40 [00:15<00:29, 1.13s/it] 38%|███▊ | 15/40 [00:17<00:28, 1.14s/it] 40%|████ | 16/40 [00:18<00:27, 1.14s/it] 42%|████▎ | 17/40 [00:19<00:26, 1.14s/it] 45%|████▌ | 18/40 [00:20<00:25, 1.14s/it] 48%|████▊ | 19/40 [00:21<00:23, 1.14s/it] 50%|█████ | 20/40 [00:22<00:22, 1.14s/it] 52%|█████▎ | 21/40 [00:23<00:21, 1.14s/it] 55%|█████▌ | 22/40 [00:24<00:20, 1.14s/it] 57%|█████▊ | 23/40 [00:26<00:19, 1.14s/it] 60%|██████ | 24/40 [00:27<00:18, 1.14s/it] 62%|██████▎ | 25/40 [00:28<00:17, 1.14s/it] 65%|██████▌ | 26/40 [00:29<00:15, 1.14s/it] 68%|██████▊ | 27/40 [00:30<00:14, 1.14s/it] 70%|███████ | 28/40 [00:31<00:13, 1.14s/it] 72%|███████▎ | 29/40 [00:32<00:12, 1.14s/it] 75%|███████▌ | 30/40 [00:34<00:11, 1.14s/it] 78%|███████▊ | 31/40 [00:35<00:10, 1.14s/it] 80%|████████ | 32/40 [00:36<00:09, 1.14s/it] 82%|████████▎ | 33/40 [00:37<00:07, 1.14s/it] 85%|████████▌ | 34/40 [00:38<00:06, 1.14s/it] 88%|████████▊ | 35/40 [00:39<00:05, 1.14s/it] 90%|█████████ | 36/40 [00:40<00:04, 1.14s/it] 92%|█████████▎| 37/40 [00:42<00:03, 1.14s/it] 95%|█████████▌| 38/40 [00:43<00:02, 1.14s/it] 98%|█████████▊| 39/40 [00:44<00:01, 1.14s/it] 100%|██████████| 40/40 [00:45<00:00, 1.14s/it] 100%|██████████| 40/40 [00:45<00:00, 1.14s/it]
Prediction
diaphinus/bodegakitty:8d8f11f6b7d50d536fe284a5c81b0ba0fd64aafec0031accb2ab5ca5ec9aef19IDu22ghwlb57bcxcmuu5twvaspfaStatusSucceededSourceWebHardwareA40 (Large)Total durationCreatedby @diaphinusInput
- width
- 928
- height
- 1232
- prompt
- human sized anthropomorphic orange cat wearing a hoody behind the counter of a Brooklyn Bodega, photographed by Annie Leibovitz, smokey, haunting atmosphere, dimly lit
- refine
- no_refiner
- scheduler
- K_EULER_ANCESTRAL
- lora_scale
- 0.6
- num_outputs
- 4
- guidance_scale
- 7.5
- apply_watermark
- high_noise_frac
- 0.8
- negative_prompt
- deformed, noisy, low-poly, blurry, painting, photographic, scribbles drawing, painting, crayon, sketch, graphite, impressionist, noisy, blurry, soft, deformed, ugly
- prompt_strength
- 0.8
- num_inference_steps
- 50
{ "image": "https://replicate.delivery/pbxt/JXrOiwqFeF8Pd9BqCSQL2AnPUqwbpSWElJlUfF0GNOwg6Asy/marcaaron_human_sized_orange_cat_behind_the_counter_of_a_Bodega_0797b090-56f6-46ed-9849-7ae770ccd1cd.png", "width": 928, "height": 1232, "prompt": "human sized anthropomorphic orange cat wearing a hoody behind the counter of a Brooklyn Bodega, photographed by Annie Leibovitz, smokey, haunting atmosphere, dimly lit", "refine": "no_refiner", "scheduler": "K_EULER_ANCESTRAL", "lora_scale": 0.6, "num_outputs": 4, "guidance_scale": 7.5, "apply_watermark": false, "high_noise_frac": 0.8, "negative_prompt": "deformed, noisy, low-poly, blurry, painting, photographic, scribbles drawing, painting, crayon, sketch, graphite, impressionist, noisy, blurry, soft, deformed, ugly \n", "prompt_strength": 0.8, "num_inference_steps": 50 }
Install Replicate’s Node.js client library:npm install replicate
Import and set up the client:import Replicate from "replicate"; import fs from "node:fs"; const replicate = new Replicate({ auth: process.env.REPLICATE_API_TOKEN, });
Run diaphinus/bodegakitty using Replicate’s API. Check out the model's schema for an overview of inputs and outputs.
const output = await replicate.run( "diaphinus/bodegakitty:8d8f11f6b7d50d536fe284a5c81b0ba0fd64aafec0031accb2ab5ca5ec9aef19", { input: { image: "https://replicate.delivery/pbxt/JXrOiwqFeF8Pd9BqCSQL2AnPUqwbpSWElJlUfF0GNOwg6Asy/marcaaron_human_sized_orange_cat_behind_the_counter_of_a_Bodega_0797b090-56f6-46ed-9849-7ae770ccd1cd.png", width: 928, height: 1232, prompt: "human sized anthropomorphic orange cat wearing a hoody behind the counter of a Brooklyn Bodega, photographed by Annie Leibovitz, smokey, haunting atmosphere, dimly lit", refine: "no_refiner", scheduler: "K_EULER_ANCESTRAL", lora_scale: 0.6, num_outputs: 4, guidance_scale: 7.5, apply_watermark: false, high_noise_frac: 0.8, negative_prompt: "deformed, noisy, low-poly, blurry, painting, photographic, scribbles drawing, painting, crayon, sketch, graphite, impressionist, noisy, blurry, soft, deformed, ugly \n", prompt_strength: 0.8, num_inference_steps: 50 } } ); // To access the file URL: console.log(output[0].url()); //=> "http://example.com" // To write the file to disk: fs.writeFile("my-image.png", output[0]);
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 diaphinus/bodegakitty using Replicate’s API. Check out the model's schema for an overview of inputs and outputs.
output = replicate.run( "diaphinus/bodegakitty:8d8f11f6b7d50d536fe284a5c81b0ba0fd64aafec0031accb2ab5ca5ec9aef19", input={ "image": "https://replicate.delivery/pbxt/JXrOiwqFeF8Pd9BqCSQL2AnPUqwbpSWElJlUfF0GNOwg6Asy/marcaaron_human_sized_orange_cat_behind_the_counter_of_a_Bodega_0797b090-56f6-46ed-9849-7ae770ccd1cd.png", "width": 928, "height": 1232, "prompt": "human sized anthropomorphic orange cat wearing a hoody behind the counter of a Brooklyn Bodega, photographed by Annie Leibovitz, smokey, haunting atmosphere, dimly lit", "refine": "no_refiner", "scheduler": "K_EULER_ANCESTRAL", "lora_scale": 0.6, "num_outputs": 4, "guidance_scale": 7.5, "apply_watermark": False, "high_noise_frac": 0.8, "negative_prompt": "deformed, noisy, low-poly, blurry, painting, photographic, scribbles drawing, painting, crayon, sketch, graphite, impressionist, noisy, blurry, soft, deformed, ugly \n", "prompt_strength": 0.8, "num_inference_steps": 50 } ) # To access the file URL: print(output[0].url()) #=> "http://example.com" # To write the file to disk: with open("my-image.png", "wb") as file: file.write(output[0].read())
To learn more, take a look at the guide on getting started with Python.
Run diaphinus/bodegakitty 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": "diaphinus/bodegakitty:8d8f11f6b7d50d536fe284a5c81b0ba0fd64aafec0031accb2ab5ca5ec9aef19", "input": { "image": "https://replicate.delivery/pbxt/JXrOiwqFeF8Pd9BqCSQL2AnPUqwbpSWElJlUfF0GNOwg6Asy/marcaaron_human_sized_orange_cat_behind_the_counter_of_a_Bodega_0797b090-56f6-46ed-9849-7ae770ccd1cd.png", "width": 928, "height": 1232, "prompt": "human sized anthropomorphic orange cat wearing a hoody behind the counter of a Brooklyn Bodega, photographed by Annie Leibovitz, smokey, haunting atmosphere, dimly lit", "refine": "no_refiner", "scheduler": "K_EULER_ANCESTRAL", "lora_scale": 0.6, "num_outputs": 4, "guidance_scale": 7.5, "apply_watermark": false, "high_noise_frac": 0.8, "negative_prompt": "deformed, noisy, low-poly, blurry, painting, photographic, scribbles drawing, painting, crayon, sketch, graphite, impressionist, noisy, blurry, soft, deformed, ugly \\n", "prompt_strength": 0.8, "num_inference_steps": 50 } }' \ https://api.replicate.com/v1/predictions
To learn more, take a look at Replicate’s HTTP API reference docs.
Output
{ "completed_at": "2023-09-17T19:38:03.399876Z", "created_at": "2023-09-17T19:37:11.307291Z", "data_removed": false, "error": null, "id": "u22ghwlb57bcxcmuu5twvaspfa", "input": { "image": "https://replicate.delivery/pbxt/JXrOiwqFeF8Pd9BqCSQL2AnPUqwbpSWElJlUfF0GNOwg6Asy/marcaaron_human_sized_orange_cat_behind_the_counter_of_a_Bodega_0797b090-56f6-46ed-9849-7ae770ccd1cd.png", "width": 928, "height": 1232, "prompt": "human sized anthropomorphic orange cat wearing a hoody behind the counter of a Brooklyn Bodega, photographed by Annie Leibovitz, smokey, haunting atmosphere, dimly lit", "refine": "no_refiner", "scheduler": "K_EULER_ANCESTRAL", "lora_scale": 0.6, "num_outputs": 4, "guidance_scale": 7.5, "apply_watermark": false, "high_noise_frac": 0.8, "negative_prompt": "deformed, noisy, low-poly, blurry, painting, photographic, scribbles drawing, painting, crayon, sketch, graphite, impressionist, noisy, blurry, soft, deformed, ugly \n", "prompt_strength": 0.8, "num_inference_steps": 50 }, "logs": "Using seed: 3645\nPrompt: human sized anthropomorphic orange cat wearing a hoody behind the counter of a Brooklyn Bodega, photographed by Annie Leibovitz, smokey, haunting atmosphere, dimly lit\nimg2img mode\n 0%| | 0/40 [00:00<?, ?it/s]\n 2%|▎ | 1/40 [00:01<00:44, 1.14s/it]\n 5%|▌ | 2/40 [00:02<00:43, 1.13s/it]\n 8%|▊ | 3/40 [00:03<00:41, 1.13s/it]\n 10%|█ | 4/40 [00:04<00:40, 1.13s/it]\n 12%|█▎ | 5/40 [00:05<00:39, 1.13s/it]\n 15%|█▌ | 6/40 [00:06<00:38, 1.13s/it]\n 18%|█▊ | 7/40 [00:07<00:37, 1.13s/it]\n 20%|██ | 8/40 [00:09<00:36, 1.13s/it]\n 22%|██▎ | 9/40 [00:10<00:35, 1.13s/it]\n 25%|██▌ | 10/40 [00:11<00:33, 1.13s/it]\n 28%|██▊ | 11/40 [00:12<00:32, 1.13s/it]\n 30%|███ | 12/40 [00:13<00:31, 1.13s/it]\n 32%|███▎ | 13/40 [00:14<00:30, 1.13s/it]\n 35%|███▌ | 14/40 [00:15<00:29, 1.13s/it]\n 38%|███▊ | 15/40 [00:16<00:28, 1.13s/it]\n 40%|████ | 16/40 [00:18<00:27, 1.13s/it]\n 42%|████▎ | 17/40 [00:19<00:26, 1.13s/it]\n 45%|████▌ | 18/40 [00:20<00:25, 1.14s/it]\n 48%|████▊ | 19/40 [00:21<00:23, 1.14s/it]\n 50%|█████ | 20/40 [00:22<00:22, 1.14s/it]\n 52%|█████▎ | 21/40 [00:23<00:21, 1.14s/it]\n 55%|█████▌ | 22/40 [00:24<00:20, 1.14s/it]\n 57%|█████▊ | 23/40 [00:26<00:19, 1.14s/it]\n 60%|██████ | 24/40 [00:27<00:18, 1.14s/it]\n 62%|██████▎ | 25/40 [00:28<00:17, 1.14s/it]\n 65%|██████▌ | 26/40 [00:29<00:15, 1.14s/it]\n 68%|██████▊ | 27/40 [00:30<00:14, 1.14s/it]\n 70%|███████ | 28/40 [00:31<00:13, 1.14s/it]\n 72%|███████▎ | 29/40 [00:32<00:12, 1.14s/it]\n 75%|███████▌ | 30/40 [00:34<00:11, 1.14s/it]\n 78%|███████▊ | 31/40 [00:35<00:10, 1.14s/it]\n 80%|████████ | 32/40 [00:36<00:09, 1.14s/it]\n 82%|████████▎ | 33/40 [00:37<00:07, 1.14s/it]\n 85%|████████▌ | 34/40 [00:38<00:06, 1.14s/it]\n 88%|████████▊ | 35/40 [00:39<00:05, 1.14s/it]\n 90%|█████████ | 36/40 [00:40<00:04, 1.14s/it]\n 92%|█████████▎| 37/40 [00:42<00:03, 1.14s/it]\n 95%|█████████▌| 38/40 [00:43<00:02, 1.14s/it]\n 98%|█████████▊| 39/40 [00:44<00:01, 1.14s/it]\n100%|██████████| 40/40 [00:45<00:00, 1.14s/it]\n100%|██████████| 40/40 [00:45<00:00, 1.14s/it]", "metrics": { "predict_time": 52.167872, "total_time": 52.092585 }, "output": [ "https://replicate.delivery/pbxt/2WJpe6Q1haShXaYgtjUT1ttRLskHfq1X9WSmrGmK1ZSYegKjA/out-0.png", "https://replicate.delivery/pbxt/ORAgCjI9gNL6MdtsfrN9MiUcEVtjpzhicfM2CM1g82CZegKjA/out-1.png", "https://replicate.delivery/pbxt/5KednAii6tWe4UIpZVTAuDltQ0MxBWRLat8858a3BxAaegKjA/out-2.png", "https://replicate.delivery/pbxt/mEHQlt4pfwU9TahH2xarIeH8zlligp2oWC3FXkP5et538gKjA/out-3.png" ], "started_at": "2023-09-17T19:37:11.232004Z", "status": "succeeded", "urls": { "get": "https://api.replicate.com/v1/predictions/u22ghwlb57bcxcmuu5twvaspfa", "cancel": "https://api.replicate.com/v1/predictions/u22ghwlb57bcxcmuu5twvaspfa/cancel" }, "version": "8d8f11f6b7d50d536fe284a5c81b0ba0fd64aafec0031accb2ab5ca5ec9aef19" }
Generated inUsing seed: 3645 Prompt: human sized anthropomorphic orange cat wearing a hoody behind the counter of a Brooklyn Bodega, photographed by Annie Leibovitz, smokey, haunting atmosphere, dimly lit img2img mode 0%| | 0/40 [00:00<?, ?it/s] 2%|▎ | 1/40 [00:01<00:44, 1.14s/it] 5%|▌ | 2/40 [00:02<00:43, 1.13s/it] 8%|▊ | 3/40 [00:03<00:41, 1.13s/it] 10%|█ | 4/40 [00:04<00:40, 1.13s/it] 12%|█▎ | 5/40 [00:05<00:39, 1.13s/it] 15%|█▌ | 6/40 [00:06<00:38, 1.13s/it] 18%|█▊ | 7/40 [00:07<00:37, 1.13s/it] 20%|██ | 8/40 [00:09<00:36, 1.13s/it] 22%|██▎ | 9/40 [00:10<00:35, 1.13s/it] 25%|██▌ | 10/40 [00:11<00:33, 1.13s/it] 28%|██▊ | 11/40 [00:12<00:32, 1.13s/it] 30%|███ | 12/40 [00:13<00:31, 1.13s/it] 32%|███▎ | 13/40 [00:14<00:30, 1.13s/it] 35%|███▌ | 14/40 [00:15<00:29, 1.13s/it] 38%|███▊ | 15/40 [00:16<00:28, 1.13s/it] 40%|████ | 16/40 [00:18<00:27, 1.13s/it] 42%|████▎ | 17/40 [00:19<00:26, 1.13s/it] 45%|████▌ | 18/40 [00:20<00:25, 1.14s/it] 48%|████▊ | 19/40 [00:21<00:23, 1.14s/it] 50%|█████ | 20/40 [00:22<00:22, 1.14s/it] 52%|█████▎ | 21/40 [00:23<00:21, 1.14s/it] 55%|█████▌ | 22/40 [00:24<00:20, 1.14s/it] 57%|█████▊ | 23/40 [00:26<00:19, 1.14s/it] 60%|██████ | 24/40 [00:27<00:18, 1.14s/it] 62%|██████▎ | 25/40 [00:28<00:17, 1.14s/it] 65%|██████▌ | 26/40 [00:29<00:15, 1.14s/it] 68%|██████▊ | 27/40 [00:30<00:14, 1.14s/it] 70%|███████ | 28/40 [00:31<00:13, 1.14s/it] 72%|███████▎ | 29/40 [00:32<00:12, 1.14s/it] 75%|███████▌ | 30/40 [00:34<00:11, 1.14s/it] 78%|███████▊ | 31/40 [00:35<00:10, 1.14s/it] 80%|████████ | 32/40 [00:36<00:09, 1.14s/it] 82%|████████▎ | 33/40 [00:37<00:07, 1.14s/it] 85%|████████▌ | 34/40 [00:38<00:06, 1.14s/it] 88%|████████▊ | 35/40 [00:39<00:05, 1.14s/it] 90%|█████████ | 36/40 [00:40<00:04, 1.14s/it] 92%|█████████▎| 37/40 [00:42<00:03, 1.14s/it] 95%|█████████▌| 38/40 [00:43<00:02, 1.14s/it] 98%|█████████▊| 39/40 [00:44<00:01, 1.14s/it] 100%|██████████| 40/40 [00:45<00:00, 1.14s/it] 100%|██████████| 40/40 [00:45<00:00, 1.14s/it]
Prediction
diaphinus/bodegakitty:8d8f11f6b7d50d536fe284a5c81b0ba0fd64aafec0031accb2ab5ca5ec9aef19IDo4uvk3lbkra2p7zuxe3orrz22mStatusSucceededSourceWebHardwareA40 (Large)Total durationCreatedInput
- width
- 928
- height
- 1232
- prompt
- human sized anthropomorphic orange cat wearing a black hoody holding a silver revolver behind the counter of a Brooklyn Bodega, photographed by Annie Leibovitz, smokey, haunting atmosphere, dimly lit
- refine
- expert_ensemble_refiner
- scheduler
- K_EULER_ANCESTRAL
- lora_scale
- 0.6
- num_outputs
- 4
- guidance_scale
- 7.5
- apply_watermark
- high_noise_frac
- 0.8
- negative_prompt
- deformed, noisy, low-poly, blurry, painting, photographic, scribbles drawing, painting, crayon, sketch, graphite, impressionist, noisy, blurry, soft, deformed, ugly
- prompt_strength
- 0.8
- num_inference_steps
- 50
{ "image": "https://replicate.delivery/pbxt/JXrKdDvU91bLoztTvdZ9W7MO8VjTjDMmu3RLL0lvL8fIEd63/marcaaron_human_sized_orange_cat_behind_the_counter_of_a_Bodega_0797b090-56f6-46ed-9849-7ae770ccd1cd.png", "width": 928, "height": 1232, "prompt": "human sized anthropomorphic orange cat wearing a black hoody holding a silver revolver behind the counter of a Brooklyn Bodega, photographed by Annie Leibovitz, smokey, haunting atmosphere, dimly lit", "refine": "expert_ensemble_refiner", "scheduler": "K_EULER_ANCESTRAL", "lora_scale": 0.6, "num_outputs": 4, "guidance_scale": 7.5, "apply_watermark": false, "high_noise_frac": 0.8, "negative_prompt": "deformed, noisy, low-poly, blurry, painting, photographic, scribbles drawing, painting, crayon, sketch, graphite, impressionist, noisy, blurry, soft, deformed, ugly \n", "prompt_strength": 0.8, "num_inference_steps": 50 }
Install Replicate’s Node.js client library:npm install replicate
Import and set up the client:import Replicate from "replicate"; import fs from "node:fs"; const replicate = new Replicate({ auth: process.env.REPLICATE_API_TOKEN, });
Run diaphinus/bodegakitty using Replicate’s API. Check out the model's schema for an overview of inputs and outputs.
const output = await replicate.run( "diaphinus/bodegakitty:8d8f11f6b7d50d536fe284a5c81b0ba0fd64aafec0031accb2ab5ca5ec9aef19", { input: { image: "https://replicate.delivery/pbxt/JXrKdDvU91bLoztTvdZ9W7MO8VjTjDMmu3RLL0lvL8fIEd63/marcaaron_human_sized_orange_cat_behind_the_counter_of_a_Bodega_0797b090-56f6-46ed-9849-7ae770ccd1cd.png", width: 928, height: 1232, prompt: "human sized anthropomorphic orange cat wearing a black hoody holding a silver revolver behind the counter of a Brooklyn Bodega, photographed by Annie Leibovitz, smokey, haunting atmosphere, dimly lit", refine: "expert_ensemble_refiner", scheduler: "K_EULER_ANCESTRAL", lora_scale: 0.6, num_outputs: 4, guidance_scale: 7.5, apply_watermark: false, high_noise_frac: 0.8, negative_prompt: "deformed, noisy, low-poly, blurry, painting, photographic, scribbles drawing, painting, crayon, sketch, graphite, impressionist, noisy, blurry, soft, deformed, ugly \n", prompt_strength: 0.8, num_inference_steps: 50 } } ); // To access the file URL: console.log(output[0].url()); //=> "http://example.com" // To write the file to disk: fs.writeFile("my-image.png", output[0]);
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 diaphinus/bodegakitty using Replicate’s API. Check out the model's schema for an overview of inputs and outputs.
output = replicate.run( "diaphinus/bodegakitty:8d8f11f6b7d50d536fe284a5c81b0ba0fd64aafec0031accb2ab5ca5ec9aef19", input={ "image": "https://replicate.delivery/pbxt/JXrKdDvU91bLoztTvdZ9W7MO8VjTjDMmu3RLL0lvL8fIEd63/marcaaron_human_sized_orange_cat_behind_the_counter_of_a_Bodega_0797b090-56f6-46ed-9849-7ae770ccd1cd.png", "width": 928, "height": 1232, "prompt": "human sized anthropomorphic orange cat wearing a black hoody holding a silver revolver behind the counter of a Brooklyn Bodega, photographed by Annie Leibovitz, smokey, haunting atmosphere, dimly lit", "refine": "expert_ensemble_refiner", "scheduler": "K_EULER_ANCESTRAL", "lora_scale": 0.6, "num_outputs": 4, "guidance_scale": 7.5, "apply_watermark": False, "high_noise_frac": 0.8, "negative_prompt": "deformed, noisy, low-poly, blurry, painting, photographic, scribbles drawing, painting, crayon, sketch, graphite, impressionist, noisy, blurry, soft, deformed, ugly \n", "prompt_strength": 0.8, "num_inference_steps": 50 } ) # To access the file URL: print(output[0].url()) #=> "http://example.com" # To write the file to disk: with open("my-image.png", "wb") as file: file.write(output[0].read())
To learn more, take a look at the guide on getting started with Python.
Run diaphinus/bodegakitty 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": "diaphinus/bodegakitty:8d8f11f6b7d50d536fe284a5c81b0ba0fd64aafec0031accb2ab5ca5ec9aef19", "input": { "image": "https://replicate.delivery/pbxt/JXrKdDvU91bLoztTvdZ9W7MO8VjTjDMmu3RLL0lvL8fIEd63/marcaaron_human_sized_orange_cat_behind_the_counter_of_a_Bodega_0797b090-56f6-46ed-9849-7ae770ccd1cd.png", "width": 928, "height": 1232, "prompt": "human sized anthropomorphic orange cat wearing a black hoody holding a silver revolver behind the counter of a Brooklyn Bodega, photographed by Annie Leibovitz, smokey, haunting atmosphere, dimly lit", "refine": "expert_ensemble_refiner", "scheduler": "K_EULER_ANCESTRAL", "lora_scale": 0.6, "num_outputs": 4, "guidance_scale": 7.5, "apply_watermark": false, "high_noise_frac": 0.8, "negative_prompt": "deformed, noisy, low-poly, blurry, painting, photographic, scribbles drawing, painting, crayon, sketch, graphite, impressionist, noisy, blurry, soft, deformed, ugly \\n", "prompt_strength": 0.8, "num_inference_steps": 50 } }' \ https://api.replicate.com/v1/predictions
To learn more, take a look at Replicate’s HTTP API reference docs.
Output
{ "completed_at": "2023-09-17T19:47:02.255628Z", "created_at": "2023-09-17T19:46:12.086774Z", "data_removed": false, "error": null, "id": "o4uvk3lbkra2p7zuxe3orrz22m", "input": { "image": "https://replicate.delivery/pbxt/JXrKdDvU91bLoztTvdZ9W7MO8VjTjDMmu3RLL0lvL8fIEd63/marcaaron_human_sized_orange_cat_behind_the_counter_of_a_Bodega_0797b090-56f6-46ed-9849-7ae770ccd1cd.png", "width": 928, "height": 1232, "prompt": "human sized anthropomorphic orange cat wearing a black hoody holding a silver revolver behind the counter of a Brooklyn Bodega, photographed by Annie Leibovitz, smokey, haunting atmosphere, dimly lit", "refine": "expert_ensemble_refiner", "scheduler": "K_EULER_ANCESTRAL", "lora_scale": 0.6, "num_outputs": 4, "guidance_scale": 7.5, "apply_watermark": false, "high_noise_frac": 0.8, "negative_prompt": "deformed, noisy, low-poly, blurry, painting, photographic, scribbles drawing, painting, crayon, sketch, graphite, impressionist, noisy, blurry, soft, deformed, ugly \n", "prompt_strength": 0.8, "num_inference_steps": 50 }, "logs": "Using seed: 6792\nPrompt: human sized anthropomorphic orange cat wearing a black hoody holding a silver revolver behind the counter of a Brooklyn Bodega, photographed by Annie Leibovitz, smokey, haunting atmosphere, dimly lit\nimg2img mode\n 0%| | 0/30 [00:00<?, ?it/s]\n 3%|▎ | 1/30 [00:01<00:32, 1.13s/it]\n 7%|▋ | 2/30 [00:02<00:31, 1.13s/it]\n 10%|█ | 3/30 [00:03<00:30, 1.13s/it]\n 13%|█▎ | 4/30 [00:04<00:29, 1.13s/it]\n 17%|█▋ | 5/30 [00:05<00:28, 1.13s/it]\n 20%|██ | 6/30 [00:06<00:27, 1.13s/it]\n 23%|██▎ | 7/30 [00:07<00:26, 1.13s/it]\n 27%|██▋ | 8/30 [00:09<00:25, 1.14s/it]\n 30%|███ | 9/30 [00:10<00:23, 1.14s/it]\n 33%|███▎ | 10/30 [00:11<00:22, 1.13s/it]\n 37%|███▋ | 11/30 [00:12<00:21, 1.13s/it]\n 40%|████ | 12/30 [00:13<00:20, 1.14s/it]\n 43%|████▎ | 13/30 [00:14<00:19, 1.14s/it]\n 47%|████▋ | 14/30 [00:15<00:18, 1.14s/it]\n 50%|█████ | 15/30 [00:17<00:17, 1.14s/it]\n 53%|█████▎ | 16/30 [00:18<00:15, 1.14s/it]\n 57%|█████▋ | 17/30 [00:19<00:14, 1.14s/it]\n 60%|██████ | 18/30 [00:20<00:13, 1.14s/it]\n 63%|██████▎ | 19/30 [00:21<00:12, 1.14s/it]\n 67%|██████▋ | 20/30 [00:22<00:11, 1.14s/it]\n 70%|███████ | 21/30 [00:23<00:10, 1.14s/it]\n 73%|███████▎ | 22/30 [00:24<00:09, 1.14s/it]\n 77%|███████▋ | 23/30 [00:26<00:07, 1.14s/it]\n 80%|████████ | 24/30 [00:27<00:06, 1.14s/it]\n 83%|████████▎ | 25/30 [00:28<00:05, 1.14s/it]\n 87%|████████▋ | 26/30 [00:29<00:04, 1.14s/it]\n 90%|█████████ | 27/30 [00:30<00:03, 1.14s/it]\n 93%|█████████▎| 28/30 [00:31<00:02, 1.14s/it]\n 97%|█████████▋| 29/30 [00:32<00:01, 1.14s/it]\n100%|██████████| 30/30 [00:34<00:00, 1.14s/it]\n100%|██████████| 30/30 [00:34<00:00, 1.14s/it]\n 0%| | 0/10 [00:00<?, ?it/s]\n 10%|█ | 1/10 [00:00<00:08, 1.06it/s]\n 20%|██ | 2/10 [00:01<00:07, 1.07it/s]\n 30%|███ | 3/10 [00:02<00:06, 1.07it/s]\n 40%|████ | 4/10 [00:03<00:05, 1.07it/s]\n 50%|█████ | 5/10 [00:04<00:04, 1.07it/s]\n 60%|██████ | 6/10 [00:05<00:03, 1.07it/s]\n 70%|███████ | 7/10 [00:06<00:02, 1.07it/s]\n 80%|████████ | 8/10 [00:07<00:01, 1.07it/s]\n 90%|█████████ | 9/10 [00:08<00:00, 1.07it/s]\n100%|██████████| 10/10 [00:09<00:00, 1.07it/s]\n100%|██████████| 10/10 [00:09<00:00, 1.07it/s]", "metrics": { "predict_time": 50.164627, "total_time": 50.168854 }, "output": [ "https://replicate.delivery/pbxt/0YA98hcIDMYhOJjCv25kWeMGrkcM13m3CKKCxjq9ZVoZToyIA/out-0.png", "https://replicate.delivery/pbxt/ZMDYSIvGRIbVDJgzkcCKP8fE6dFc7LCad2Ccrn9O3vFaToyIA/out-1.png", "https://replicate.delivery/pbxt/bnEmf2yUCP22ek5Ih1wue42el2Zl28pAKe9AbddZVqebtJUZE/out-2.png", "https://replicate.delivery/pbxt/UDvxfuz2WdVUByg2CxIfaU0x7nLA7eE6mNpdJo7gYVVqNhKjA/out-3.png" ], "started_at": "2023-09-17T19:46:12.091001Z", "status": "succeeded", "urls": { "get": "https://api.replicate.com/v1/predictions/o4uvk3lbkra2p7zuxe3orrz22m", "cancel": "https://api.replicate.com/v1/predictions/o4uvk3lbkra2p7zuxe3orrz22m/cancel" }, "version": "8d8f11f6b7d50d536fe284a5c81b0ba0fd64aafec0031accb2ab5ca5ec9aef19" }
Generated inUsing seed: 6792 Prompt: human sized anthropomorphic orange cat wearing a black hoody holding a silver revolver behind the counter of a Brooklyn Bodega, photographed by Annie Leibovitz, smokey, haunting atmosphere, dimly lit img2img mode 0%| | 0/30 [00:00<?, ?it/s] 3%|▎ | 1/30 [00:01<00:32, 1.13s/it] 7%|▋ | 2/30 [00:02<00:31, 1.13s/it] 10%|█ | 3/30 [00:03<00:30, 1.13s/it] 13%|█▎ | 4/30 [00:04<00:29, 1.13s/it] 17%|█▋ | 5/30 [00:05<00:28, 1.13s/it] 20%|██ | 6/30 [00:06<00:27, 1.13s/it] 23%|██▎ | 7/30 [00:07<00:26, 1.13s/it] 27%|██▋ | 8/30 [00:09<00:25, 1.14s/it] 30%|███ | 9/30 [00:10<00:23, 1.14s/it] 33%|███▎ | 10/30 [00:11<00:22, 1.13s/it] 37%|███▋ | 11/30 [00:12<00:21, 1.13s/it] 40%|████ | 12/30 [00:13<00:20, 1.14s/it] 43%|████▎ | 13/30 [00:14<00:19, 1.14s/it] 47%|████▋ | 14/30 [00:15<00:18, 1.14s/it] 50%|█████ | 15/30 [00:17<00:17, 1.14s/it] 53%|█████▎ | 16/30 [00:18<00:15, 1.14s/it] 57%|█████▋ | 17/30 [00:19<00:14, 1.14s/it] 60%|██████ | 18/30 [00:20<00:13, 1.14s/it] 63%|██████▎ | 19/30 [00:21<00:12, 1.14s/it] 67%|██████▋ | 20/30 [00:22<00:11, 1.14s/it] 70%|███████ | 21/30 [00:23<00:10, 1.14s/it] 73%|███████▎ | 22/30 [00:24<00:09, 1.14s/it] 77%|███████▋ | 23/30 [00:26<00:07, 1.14s/it] 80%|████████ | 24/30 [00:27<00:06, 1.14s/it] 83%|████████▎ | 25/30 [00:28<00:05, 1.14s/it] 87%|████████▋ | 26/30 [00:29<00:04, 1.14s/it] 90%|█████████ | 27/30 [00:30<00:03, 1.14s/it] 93%|█████████▎| 28/30 [00:31<00:02, 1.14s/it] 97%|█████████▋| 29/30 [00:32<00:01, 1.14s/it] 100%|██████████| 30/30 [00:34<00:00, 1.14s/it] 100%|██████████| 30/30 [00:34<00:00, 1.14s/it] 0%| | 0/10 [00:00<?, ?it/s] 10%|█ | 1/10 [00:00<00:08, 1.06it/s] 20%|██ | 2/10 [00:01<00:07, 1.07it/s] 30%|███ | 3/10 [00:02<00:06, 1.07it/s] 40%|████ | 4/10 [00:03<00:05, 1.07it/s] 50%|█████ | 5/10 [00:04<00:04, 1.07it/s] 60%|██████ | 6/10 [00:05<00:03, 1.07it/s] 70%|███████ | 7/10 [00:06<00:02, 1.07it/s] 80%|████████ | 8/10 [00:07<00:01, 1.07it/s] 90%|█████████ | 9/10 [00:08<00:00, 1.07it/s] 100%|██████████| 10/10 [00:09<00:00, 1.07it/s] 100%|██████████| 10/10 [00:09<00:00, 1.07it/s]
Prediction
diaphinus/bodegakitty:8d8f11f6b7d50d536fe284a5c81b0ba0fd64aafec0031accb2ab5ca5ec9aef19ID32nclh3bxtsgac2j4z4vosqyhqStatusSucceededSourceWebHardwareA40 (Large)Total durationCreatedInput
- width
- 928
- height
- 1232
- prompt
- human sized anthropomorphic orange cat wearing a black hoody holding a gun behind the counter of a Brooklyn Bodega, photographed by Annie Leibovitz, in the style of a Sopranos movie poster, smokey, haunting atmosphere, dimly lit
- refine
- no_refiner
- scheduler
- K_EULER_ANCESTRAL
- lora_scale
- 0.6
- num_outputs
- 4
- guidance_scale
- 7.5
- apply_watermark
- high_noise_frac
- 0.8
- negative_prompt
- deformed, noisy, low-poly, blurry, painting, letters, words, writing, photographic, scribbles drawing, painting, crayon, sketch, graphite, impressionist, noisy, blurry, soft, deformed, ugly
- prompt_strength
- 0.8
- num_inference_steps
- 50
{ "image": "https://replicate.delivery/pbxt/JXrkUjANdaJTXhXJ6s0gbMT6Q0h3ewEFPbYGBgvJklFc2Ekl/marcaaron_human_sized_orange_cat_behind_the_counter_of_a_Bodega_0797b090-56f6-46ed-9849-7ae770ccd1cd.png", "width": 928, "height": 1232, "prompt": "human sized anthropomorphic orange cat wearing a black hoody holding a gun behind the counter of a Brooklyn Bodega, photographed by Annie Leibovitz, in the style of a Sopranos movie poster, smokey, haunting atmosphere, dimly lit", "refine": "no_refiner", "scheduler": "K_EULER_ANCESTRAL", "lora_scale": 0.6, "num_outputs": 4, "guidance_scale": 7.5, "apply_watermark": false, "high_noise_frac": 0.8, "negative_prompt": "deformed, noisy, low-poly, blurry, painting, letters, words, writing, photographic, scribbles drawing, painting, crayon, sketch, graphite, impressionist, noisy, blurry, soft, deformed, ugly \n", "prompt_strength": 0.8, "num_inference_steps": 50 }
Install Replicate’s Node.js client library:npm install replicate
Import and set up the client:import Replicate from "replicate"; import fs from "node:fs"; const replicate = new Replicate({ auth: process.env.REPLICATE_API_TOKEN, });
Run diaphinus/bodegakitty using Replicate’s API. Check out the model's schema for an overview of inputs and outputs.
const output = await replicate.run( "diaphinus/bodegakitty:8d8f11f6b7d50d536fe284a5c81b0ba0fd64aafec0031accb2ab5ca5ec9aef19", { input: { image: "https://replicate.delivery/pbxt/JXrkUjANdaJTXhXJ6s0gbMT6Q0h3ewEFPbYGBgvJklFc2Ekl/marcaaron_human_sized_orange_cat_behind_the_counter_of_a_Bodega_0797b090-56f6-46ed-9849-7ae770ccd1cd.png", width: 928, height: 1232, prompt: "human sized anthropomorphic orange cat wearing a black hoody holding a gun behind the counter of a Brooklyn Bodega, photographed by Annie Leibovitz, in the style of a Sopranos movie poster, smokey, haunting atmosphere, dimly lit", refine: "no_refiner", scheduler: "K_EULER_ANCESTRAL", lora_scale: 0.6, num_outputs: 4, guidance_scale: 7.5, apply_watermark: false, high_noise_frac: 0.8, negative_prompt: "deformed, noisy, low-poly, blurry, painting, letters, words, writing, photographic, scribbles drawing, painting, crayon, sketch, graphite, impressionist, noisy, blurry, soft, deformed, ugly \n", prompt_strength: 0.8, num_inference_steps: 50 } } ); // To access the file URL: console.log(output[0].url()); //=> "http://example.com" // To write the file to disk: fs.writeFile("my-image.png", output[0]);
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 diaphinus/bodegakitty using Replicate’s API. Check out the model's schema for an overview of inputs and outputs.
output = replicate.run( "diaphinus/bodegakitty:8d8f11f6b7d50d536fe284a5c81b0ba0fd64aafec0031accb2ab5ca5ec9aef19", input={ "image": "https://replicate.delivery/pbxt/JXrkUjANdaJTXhXJ6s0gbMT6Q0h3ewEFPbYGBgvJklFc2Ekl/marcaaron_human_sized_orange_cat_behind_the_counter_of_a_Bodega_0797b090-56f6-46ed-9849-7ae770ccd1cd.png", "width": 928, "height": 1232, "prompt": "human sized anthropomorphic orange cat wearing a black hoody holding a gun behind the counter of a Brooklyn Bodega, photographed by Annie Leibovitz, in the style of a Sopranos movie poster, smokey, haunting atmosphere, dimly lit", "refine": "no_refiner", "scheduler": "K_EULER_ANCESTRAL", "lora_scale": 0.6, "num_outputs": 4, "guidance_scale": 7.5, "apply_watermark": False, "high_noise_frac": 0.8, "negative_prompt": "deformed, noisy, low-poly, blurry, painting, letters, words, writing, photographic, scribbles drawing, painting, crayon, sketch, graphite, impressionist, noisy, blurry, soft, deformed, ugly \n", "prompt_strength": 0.8, "num_inference_steps": 50 } ) # To access the file URL: print(output[0].url()) #=> "http://example.com" # To write the file to disk: with open("my-image.png", "wb") as file: file.write(output[0].read())
To learn more, take a look at the guide on getting started with Python.
Run diaphinus/bodegakitty 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": "diaphinus/bodegakitty:8d8f11f6b7d50d536fe284a5c81b0ba0fd64aafec0031accb2ab5ca5ec9aef19", "input": { "image": "https://replicate.delivery/pbxt/JXrkUjANdaJTXhXJ6s0gbMT6Q0h3ewEFPbYGBgvJklFc2Ekl/marcaaron_human_sized_orange_cat_behind_the_counter_of_a_Bodega_0797b090-56f6-46ed-9849-7ae770ccd1cd.png", "width": 928, "height": 1232, "prompt": "human sized anthropomorphic orange cat wearing a black hoody holding a gun behind the counter of a Brooklyn Bodega, photographed by Annie Leibovitz, in the style of a Sopranos movie poster, smokey, haunting atmosphere, dimly lit", "refine": "no_refiner", "scheduler": "K_EULER_ANCESTRAL", "lora_scale": 0.6, "num_outputs": 4, "guidance_scale": 7.5, "apply_watermark": false, "high_noise_frac": 0.8, "negative_prompt": "deformed, noisy, low-poly, blurry, painting, letters, words, writing, photographic, scribbles drawing, painting, crayon, sketch, graphite, impressionist, noisy, blurry, soft, deformed, ugly \\n", "prompt_strength": 0.8, "num_inference_steps": 50 } }' \ https://api.replicate.com/v1/predictions
To learn more, take a look at Replicate’s HTTP API reference docs.
Output
{ "completed_at": "2023-09-17T20:01:03.382727Z", "created_at": "2023-09-17T20:00:11.037132Z", "data_removed": false, "error": null, "id": "32nclh3bxtsgac2j4z4vosqyhq", "input": { "image": "https://replicate.delivery/pbxt/JXrkUjANdaJTXhXJ6s0gbMT6Q0h3ewEFPbYGBgvJklFc2Ekl/marcaaron_human_sized_orange_cat_behind_the_counter_of_a_Bodega_0797b090-56f6-46ed-9849-7ae770ccd1cd.png", "width": 928, "height": 1232, "prompt": "human sized anthropomorphic orange cat wearing a black hoody holding a gun behind the counter of a Brooklyn Bodega, photographed by Annie Leibovitz, in the style of a Sopranos movie poster, smokey, haunting atmosphere, dimly lit", "refine": "no_refiner", "scheduler": "K_EULER_ANCESTRAL", "lora_scale": 0.6, "num_outputs": 4, "guidance_scale": 7.5, "apply_watermark": false, "high_noise_frac": 0.8, "negative_prompt": "deformed, noisy, low-poly, blurry, painting, letters, words, writing, photographic, scribbles drawing, painting, crayon, sketch, graphite, impressionist, noisy, blurry, soft, deformed, ugly \n", "prompt_strength": 0.8, "num_inference_steps": 50 }, "logs": "Using seed: 9542\nPrompt: human sized anthropomorphic orange cat wearing a black hoody holding a gun behind the counter of a Brooklyn Bodega, photographed by Annie Leibovitz, in the style of a Sopranos movie poster, smokey, haunting atmosphere, dimly lit\nimg2img mode\n 0%| | 0/40 [00:00<?, ?it/s]\n 2%|▎ | 1/40 [00:01<00:44, 1.13s/it]\n 5%|▌ | 2/40 [00:02<00:43, 1.13s/it]\n 8%|▊ | 3/40 [00:03<00:41, 1.13s/it]\n 10%|█ | 4/40 [00:04<00:40, 1.13s/it]\n 12%|█▎ | 5/40 [00:05<00:39, 1.13s/it]\n 15%|█▌ | 6/40 [00:06<00:38, 1.13s/it]\n 18%|█▊ | 7/40 [00:07<00:37, 1.13s/it]\n 20%|██ | 8/40 [00:09<00:36, 1.13s/it]\n 22%|██▎ | 9/40 [00:10<00:35, 1.13s/it]\n 25%|██▌ | 10/40 [00:11<00:33, 1.13s/it]\n 28%|██▊ | 11/40 [00:12<00:32, 1.13s/it]\n 30%|███ | 12/40 [00:13<00:31, 1.13s/it]\n 32%|███▎ | 13/40 [00:14<00:30, 1.13s/it]\n 35%|███▌ | 14/40 [00:15<00:29, 1.14s/it]\n 38%|███▊ | 15/40 [00:17<00:28, 1.14s/it]\n 40%|████ | 16/40 [00:18<00:27, 1.14s/it]\n 42%|████▎ | 17/40 [00:19<00:26, 1.14s/it]\n 45%|████▌ | 18/40 [00:20<00:25, 1.14s/it]\n 48%|████▊ | 19/40 [00:21<00:23, 1.14s/it]\n 50%|█████ | 20/40 [00:22<00:22, 1.14s/it]\n 52%|█████▎ | 21/40 [00:23<00:21, 1.14s/it]\n 55%|█████▌ | 22/40 [00:24<00:20, 1.14s/it]\n 57%|█████▊ | 23/40 [00:26<00:19, 1.14s/it]\n 60%|██████ | 24/40 [00:27<00:18, 1.14s/it]\n 62%|██████▎ | 25/40 [00:28<00:17, 1.14s/it]\n 65%|██████▌ | 26/40 [00:29<00:15, 1.14s/it]\n 68%|██████▊ | 27/40 [00:30<00:14, 1.14s/it]\n 70%|███████ | 28/40 [00:31<00:13, 1.14s/it]\n 72%|███████▎ | 29/40 [00:32<00:12, 1.14s/it]\n 75%|███████▌ | 30/40 [00:34<00:11, 1.14s/it]\n 78%|███████▊ | 31/40 [00:35<00:10, 1.14s/it]\n 80%|████████ | 32/40 [00:36<00:09, 1.14s/it]\n 82%|████████▎ | 33/40 [00:37<00:07, 1.14s/it]\n 85%|████████▌ | 34/40 [00:38<00:06, 1.14s/it]\n 88%|████████▊ | 35/40 [00:39<00:05, 1.14s/it]\n 90%|█████████ | 36/40 [00:40<00:04, 1.14s/it]\n 92%|█████████▎| 37/40 [00:42<00:03, 1.14s/it]\n 95%|█████████▌| 38/40 [00:43<00:02, 1.14s/it]\n 98%|█████████▊| 39/40 [00:44<00:01, 1.14s/it]\n100%|██████████| 40/40 [00:45<00:00, 1.14s/it]\n100%|██████████| 40/40 [00:45<00:00, 1.14s/it]", "metrics": { "predict_time": 52.356483, "total_time": 52.345595 }, "output": [ "https://replicate.delivery/pbxt/f9r2DSKOTjQ9Pi0tv19lYq0NnrsuSTXUI08zezetHgo5nhKjA/out-0.png", "https://replicate.delivery/pbxt/kStPc3iJlYL5CBrhO147x6npWLEWMqevFBvbJjBeGy69zQlRA/out-1.png", "https://replicate.delivery/pbxt/v825S8TeXjztVqe3NeAZoJEVfMJb1ItfZQcIDi4rfPZrfZoyIA/out-2.png", "https://replicate.delivery/pbxt/Z9cgVT3C3Ya1LZRb6q7fVDxIOlS2eo9eFovsl0QdrZmfPDVGB/out-3.png" ], "started_at": "2023-09-17T20:00:11.026244Z", "status": "succeeded", "urls": { "get": "https://api.replicate.com/v1/predictions/32nclh3bxtsgac2j4z4vosqyhq", "cancel": "https://api.replicate.com/v1/predictions/32nclh3bxtsgac2j4z4vosqyhq/cancel" }, "version": "8d8f11f6b7d50d536fe284a5c81b0ba0fd64aafec0031accb2ab5ca5ec9aef19" }
Generated inUsing seed: 9542 Prompt: human sized anthropomorphic orange cat wearing a black hoody holding a gun behind the counter of a Brooklyn Bodega, photographed by Annie Leibovitz, in the style of a Sopranos movie poster, smokey, haunting atmosphere, dimly lit img2img mode 0%| | 0/40 [00:00<?, ?it/s] 2%|▎ | 1/40 [00:01<00:44, 1.13s/it] 5%|▌ | 2/40 [00:02<00:43, 1.13s/it] 8%|▊ | 3/40 [00:03<00:41, 1.13s/it] 10%|█ | 4/40 [00:04<00:40, 1.13s/it] 12%|█▎ | 5/40 [00:05<00:39, 1.13s/it] 15%|█▌ | 6/40 [00:06<00:38, 1.13s/it] 18%|█▊ | 7/40 [00:07<00:37, 1.13s/it] 20%|██ | 8/40 [00:09<00:36, 1.13s/it] 22%|██▎ | 9/40 [00:10<00:35, 1.13s/it] 25%|██▌ | 10/40 [00:11<00:33, 1.13s/it] 28%|██▊ | 11/40 [00:12<00:32, 1.13s/it] 30%|███ | 12/40 [00:13<00:31, 1.13s/it] 32%|███▎ | 13/40 [00:14<00:30, 1.13s/it] 35%|███▌ | 14/40 [00:15<00:29, 1.14s/it] 38%|███▊ | 15/40 [00:17<00:28, 1.14s/it] 40%|████ | 16/40 [00:18<00:27, 1.14s/it] 42%|████▎ | 17/40 [00:19<00:26, 1.14s/it] 45%|████▌ | 18/40 [00:20<00:25, 1.14s/it] 48%|████▊ | 19/40 [00:21<00:23, 1.14s/it] 50%|█████ | 20/40 [00:22<00:22, 1.14s/it] 52%|█████▎ | 21/40 [00:23<00:21, 1.14s/it] 55%|█████▌ | 22/40 [00:24<00:20, 1.14s/it] 57%|█████▊ | 23/40 [00:26<00:19, 1.14s/it] 60%|██████ | 24/40 [00:27<00:18, 1.14s/it] 62%|██████▎ | 25/40 [00:28<00:17, 1.14s/it] 65%|██████▌ | 26/40 [00:29<00:15, 1.14s/it] 68%|██████▊ | 27/40 [00:30<00:14, 1.14s/it] 70%|███████ | 28/40 [00:31<00:13, 1.14s/it] 72%|███████▎ | 29/40 [00:32<00:12, 1.14s/it] 75%|███████▌ | 30/40 [00:34<00:11, 1.14s/it] 78%|███████▊ | 31/40 [00:35<00:10, 1.14s/it] 80%|████████ | 32/40 [00:36<00:09, 1.14s/it] 82%|████████▎ | 33/40 [00:37<00:07, 1.14s/it] 85%|████████▌ | 34/40 [00:38<00:06, 1.14s/it] 88%|████████▊ | 35/40 [00:39<00:05, 1.14s/it] 90%|█████████ | 36/40 [00:40<00:04, 1.14s/it] 92%|█████████▎| 37/40 [00:42<00:03, 1.14s/it] 95%|█████████▌| 38/40 [00:43<00:02, 1.14s/it] 98%|█████████▊| 39/40 [00:44<00:01, 1.14s/it] 100%|██████████| 40/40 [00:45<00:00, 1.14s/it] 100%|██████████| 40/40 [00:45<00:00, 1.14s/it]
Prediction
diaphinus/bodegakitty:8d8f11f6b7d50d536fe284a5c81b0ba0fd64aafec0031accb2ab5ca5ec9aef19ID6hxf4ddbxbvtexg7zybmtr3waeStatusSucceededSourceWebHardwareA40 (Large)Total durationCreatedInput
- width
- 928
- height
- 1232
- prompt
- human sized anthropomorphic orange cat wearing a black hoody holding a gun behind the counter of a Brooklyn Bodega, photographed by Annie Leibovitz, in the style of Sopranos, smokey, haunting atmosphere, dim dramatic lighting
- refine
- expert_ensemble_refiner
- scheduler
- K_EULER
- lora_scale
- 0.6
- num_outputs
- 4
- guidance_scale
- 7.5
- apply_watermark
- high_noise_frac
- 0.8
- negative_prompt
- deformed, noisy, low-poly, blurry, painting, letters, words, writing, photographic, scribbles drawing, painting, crayon, sketch, graphite, impressionist, noisy, blurry, soft, deformed, ugly
- prompt_strength
- 0.8
- num_inference_steps
- 50
{ "image": "https://replicate.delivery/pbxt/JXrrfCh9DGsyBSgkS3hhUaMJMokmlFrDxGdDtu8dp1xkYeDB/marcaaron_human_sized_orange_cat_behind_the_counter_of_a_Bodega_0797b090-56f6-46ed-9849-7ae770ccd1cd.png", "width": 928, "height": 1232, "prompt": "human sized anthropomorphic orange cat wearing a black hoody holding a gun behind the counter of a Brooklyn Bodega, photographed by Annie Leibovitz, in the style of Sopranos, smokey, haunting atmosphere, dim dramatic lighting", "refine": "expert_ensemble_refiner", "scheduler": "K_EULER", "lora_scale": 0.6, "num_outputs": 4, "guidance_scale": 7.5, "apply_watermark": false, "high_noise_frac": 0.8, "negative_prompt": "deformed, noisy, low-poly, blurry, painting, letters, words, writing, photographic, scribbles drawing, painting, crayon, sketch, graphite, impressionist, noisy, blurry, soft, deformed, ugly \n", "prompt_strength": 0.8, "num_inference_steps": 50 }
Install Replicate’s Node.js client library:npm install replicate
Import and set up the client:import Replicate from "replicate"; import fs from "node:fs"; const replicate = new Replicate({ auth: process.env.REPLICATE_API_TOKEN, });
Run diaphinus/bodegakitty using Replicate’s API. Check out the model's schema for an overview of inputs and outputs.
const output = await replicate.run( "diaphinus/bodegakitty:8d8f11f6b7d50d536fe284a5c81b0ba0fd64aafec0031accb2ab5ca5ec9aef19", { input: { image: "https://replicate.delivery/pbxt/JXrrfCh9DGsyBSgkS3hhUaMJMokmlFrDxGdDtu8dp1xkYeDB/marcaaron_human_sized_orange_cat_behind_the_counter_of_a_Bodega_0797b090-56f6-46ed-9849-7ae770ccd1cd.png", width: 928, height: 1232, prompt: "human sized anthropomorphic orange cat wearing a black hoody holding a gun behind the counter of a Brooklyn Bodega, photographed by Annie Leibovitz, in the style of Sopranos, smokey, haunting atmosphere, dim dramatic lighting", refine: "expert_ensemble_refiner", scheduler: "K_EULER", lora_scale: 0.6, num_outputs: 4, guidance_scale: 7.5, apply_watermark: false, high_noise_frac: 0.8, negative_prompt: "deformed, noisy, low-poly, blurry, painting, letters, words, writing, photographic, scribbles drawing, painting, crayon, sketch, graphite, impressionist, noisy, blurry, soft, deformed, ugly \n", prompt_strength: 0.8, num_inference_steps: 50 } } ); // To access the file URL: console.log(output[0].url()); //=> "http://example.com" // To write the file to disk: fs.writeFile("my-image.png", output[0]);
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 diaphinus/bodegakitty using Replicate’s API. Check out the model's schema for an overview of inputs and outputs.
output = replicate.run( "diaphinus/bodegakitty:8d8f11f6b7d50d536fe284a5c81b0ba0fd64aafec0031accb2ab5ca5ec9aef19", input={ "image": "https://replicate.delivery/pbxt/JXrrfCh9DGsyBSgkS3hhUaMJMokmlFrDxGdDtu8dp1xkYeDB/marcaaron_human_sized_orange_cat_behind_the_counter_of_a_Bodega_0797b090-56f6-46ed-9849-7ae770ccd1cd.png", "width": 928, "height": 1232, "prompt": "human sized anthropomorphic orange cat wearing a black hoody holding a gun behind the counter of a Brooklyn Bodega, photographed by Annie Leibovitz, in the style of Sopranos, smokey, haunting atmosphere, dim dramatic lighting", "refine": "expert_ensemble_refiner", "scheduler": "K_EULER", "lora_scale": 0.6, "num_outputs": 4, "guidance_scale": 7.5, "apply_watermark": False, "high_noise_frac": 0.8, "negative_prompt": "deformed, noisy, low-poly, blurry, painting, letters, words, writing, photographic, scribbles drawing, painting, crayon, sketch, graphite, impressionist, noisy, blurry, soft, deformed, ugly \n", "prompt_strength": 0.8, "num_inference_steps": 50 } ) # To access the file URL: print(output[0].url()) #=> "http://example.com" # To write the file to disk: with open("my-image.png", "wb") as file: file.write(output[0].read())
To learn more, take a look at the guide on getting started with Python.
Run diaphinus/bodegakitty 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": "diaphinus/bodegakitty:8d8f11f6b7d50d536fe284a5c81b0ba0fd64aafec0031accb2ab5ca5ec9aef19", "input": { "image": "https://replicate.delivery/pbxt/JXrrfCh9DGsyBSgkS3hhUaMJMokmlFrDxGdDtu8dp1xkYeDB/marcaaron_human_sized_orange_cat_behind_the_counter_of_a_Bodega_0797b090-56f6-46ed-9849-7ae770ccd1cd.png", "width": 928, "height": 1232, "prompt": "human sized anthropomorphic orange cat wearing a black hoody holding a gun behind the counter of a Brooklyn Bodega, photographed by Annie Leibovitz, in the style of Sopranos, smokey, haunting atmosphere, dim dramatic lighting", "refine": "expert_ensemble_refiner", "scheduler": "K_EULER", "lora_scale": 0.6, "num_outputs": 4, "guidance_scale": 7.5, "apply_watermark": false, "high_noise_frac": 0.8, "negative_prompt": "deformed, noisy, low-poly, blurry, painting, letters, words, writing, photographic, scribbles drawing, painting, crayon, sketch, graphite, impressionist, noisy, blurry, soft, deformed, ugly \\n", "prompt_strength": 0.8, "num_inference_steps": 50 } }' \ https://api.replicate.com/v1/predictions
To learn more, take a look at Replicate’s HTTP API reference docs.
Output
{ "completed_at": "2023-09-17T20:08:34.888501Z", "created_at": "2023-09-17T20:07:44.609883Z", "data_removed": false, "error": null, "id": "6hxf4ddbxbvtexg7zybmtr3wae", "input": { "image": "https://replicate.delivery/pbxt/JXrrfCh9DGsyBSgkS3hhUaMJMokmlFrDxGdDtu8dp1xkYeDB/marcaaron_human_sized_orange_cat_behind_the_counter_of_a_Bodega_0797b090-56f6-46ed-9849-7ae770ccd1cd.png", "width": 928, "height": 1232, "prompt": "human sized anthropomorphic orange cat wearing a black hoody holding a gun behind the counter of a Brooklyn Bodega, photographed by Annie Leibovitz, in the style of Sopranos, smokey, haunting atmosphere, dim dramatic lighting", "refine": "expert_ensemble_refiner", "scheduler": "K_EULER", "lora_scale": 0.6, "num_outputs": 4, "guidance_scale": 7.5, "apply_watermark": false, "high_noise_frac": 0.8, "negative_prompt": "deformed, noisy, low-poly, blurry, painting, letters, words, writing, photographic, scribbles drawing, painting, crayon, sketch, graphite, impressionist, noisy, blurry, soft, deformed, ugly \n", "prompt_strength": 0.8, "num_inference_steps": 50 }, "logs": "Using seed: 35245\nPrompt: human sized anthropomorphic orange cat wearing a black hoody holding a gun behind the counter of a Brooklyn Bodega, photographed by Annie Leibovitz, in the style of Sopranos, smokey, haunting atmosphere, dim dramatic lighting\nimg2img mode\n 0%| | 0/30 [00:00<?, ?it/s]\n 3%|▎ | 1/30 [00:01<00:32, 1.13s/it]\n 7%|▋ | 2/30 [00:02<00:31, 1.13s/it]\n 10%|█ | 3/30 [00:03<00:30, 1.13s/it]\n 13%|█▎ | 4/30 [00:04<00:29, 1.13s/it]\n 17%|█▋ | 5/30 [00:05<00:28, 1.13s/it]\n 20%|██ | 6/30 [00:06<00:27, 1.13s/it]\n 23%|██▎ | 7/30 [00:07<00:26, 1.13s/it]\n 27%|██▋ | 8/30 [00:09<00:24, 1.14s/it]\n 30%|███ | 9/30 [00:10<00:23, 1.14s/it]\n 33%|███▎ | 10/30 [00:11<00:22, 1.14s/it]\n 37%|███▋ | 11/30 [00:12<00:21, 1.14s/it]\n 40%|████ | 12/30 [00:13<00:20, 1.14s/it]\n 43%|████▎ | 13/30 [00:14<00:19, 1.14s/it]\n 47%|████▋ | 14/30 [00:15<00:18, 1.14s/it]\n 50%|█████ | 15/30 [00:17<00:17, 1.14s/it]\n 53%|█████▎ | 16/30 [00:18<00:15, 1.14s/it]\n 57%|█████▋ | 17/30 [00:19<00:14, 1.14s/it]\n 60%|██████ | 18/30 [00:20<00:13, 1.14s/it]\n 63%|██████▎ | 19/30 [00:21<00:12, 1.14s/it]\n 67%|██████▋ | 20/30 [00:22<00:11, 1.14s/it]\n 70%|███████ | 21/30 [00:23<00:10, 1.14s/it]\n 73%|███████▎ | 22/30 [00:25<00:09, 1.14s/it]\n 77%|███████▋ | 23/30 [00:26<00:07, 1.14s/it]\n 80%|████████ | 24/30 [00:27<00:06, 1.14s/it]\n 83%|████████▎ | 25/30 [00:28<00:05, 1.14s/it]\n 87%|████████▋ | 26/30 [00:29<00:04, 1.14s/it]\n 90%|█████████ | 27/30 [00:30<00:03, 1.14s/it]\n 93%|█████████▎| 28/30 [00:31<00:02, 1.14s/it]\n 97%|█████████▋| 29/30 [00:33<00:01, 1.14s/it]\n100%|██████████| 30/30 [00:34<00:00, 1.14s/it]\n100%|██████████| 30/30 [00:34<00:00, 1.14s/it]\n 0%| | 0/10 [00:00<?, ?it/s]\n 10%|█ | 1/10 [00:00<00:08, 1.06it/s]\n 20%|██ | 2/10 [00:01<00:07, 1.07it/s]\n 30%|███ | 3/10 [00:02<00:06, 1.07it/s]\n 40%|████ | 4/10 [00:03<00:05, 1.07it/s]\n 50%|█████ | 5/10 [00:04<00:04, 1.06it/s]\n 60%|██████ | 6/10 [00:05<00:03, 1.07it/s]\n 70%|███████ | 7/10 [00:06<00:02, 1.06it/s]\n 80%|████████ | 8/10 [00:07<00:01, 1.06it/s]\n 90%|█████████ | 9/10 [00:08<00:00, 1.06it/s]\n100%|██████████| 10/10 [00:09<00:00, 1.06it/s]\n100%|██████████| 10/10 [00:09<00:00, 1.06it/s]", "metrics": { "predict_time": 50.329264, "total_time": 50.278618 }, "output": [ "https://replicate.delivery/pbxt/rGzyvHvUqSpfTisqtMqLrvAr1l2tfReecRbwD7kqWeTGYHqMC/out-0.png", "https://replicate.delivery/pbxt/a8WptzZoatpsKtetfLOtBfUgy7joeJ40OrDHNbCoeVHKYHqMC/out-1.png", "https://replicate.delivery/pbxt/ZX6fUj9Fng15FameuM0QMAIWF4yL02HQANQ5oMC5Se2E2hKjA/out-2.png", "https://replicate.delivery/pbxt/Cdx0ieGc6z2mDicY6I8IYtVotCGnXl8VxdWOphS9cPYhdoyIA/out-3.png" ], "started_at": "2023-09-17T20:07:44.559237Z", "status": "succeeded", "urls": { "get": "https://api.replicate.com/v1/predictions/6hxf4ddbxbvtexg7zybmtr3wae", "cancel": "https://api.replicate.com/v1/predictions/6hxf4ddbxbvtexg7zybmtr3wae/cancel" }, "version": "8d8f11f6b7d50d536fe284a5c81b0ba0fd64aafec0031accb2ab5ca5ec9aef19" }
Generated inUsing seed: 35245 Prompt: human sized anthropomorphic orange cat wearing a black hoody holding a gun behind the counter of a Brooklyn Bodega, photographed by Annie Leibovitz, in the style of Sopranos, smokey, haunting atmosphere, dim dramatic lighting img2img mode 0%| | 0/30 [00:00<?, ?it/s] 3%|▎ | 1/30 [00:01<00:32, 1.13s/it] 7%|▋ | 2/30 [00:02<00:31, 1.13s/it] 10%|█ | 3/30 [00:03<00:30, 1.13s/it] 13%|█▎ | 4/30 [00:04<00:29, 1.13s/it] 17%|█▋ | 5/30 [00:05<00:28, 1.13s/it] 20%|██ | 6/30 [00:06<00:27, 1.13s/it] 23%|██▎ | 7/30 [00:07<00:26, 1.13s/it] 27%|██▋ | 8/30 [00:09<00:24, 1.14s/it] 30%|███ | 9/30 [00:10<00:23, 1.14s/it] 33%|███▎ | 10/30 [00:11<00:22, 1.14s/it] 37%|███▋ | 11/30 [00:12<00:21, 1.14s/it] 40%|████ | 12/30 [00:13<00:20, 1.14s/it] 43%|████▎ | 13/30 [00:14<00:19, 1.14s/it] 47%|████▋ | 14/30 [00:15<00:18, 1.14s/it] 50%|█████ | 15/30 [00:17<00:17, 1.14s/it] 53%|█████▎ | 16/30 [00:18<00:15, 1.14s/it] 57%|█████▋ | 17/30 [00:19<00:14, 1.14s/it] 60%|██████ | 18/30 [00:20<00:13, 1.14s/it] 63%|██████▎ | 19/30 [00:21<00:12, 1.14s/it] 67%|██████▋ | 20/30 [00:22<00:11, 1.14s/it] 70%|███████ | 21/30 [00:23<00:10, 1.14s/it] 73%|███████▎ | 22/30 [00:25<00:09, 1.14s/it] 77%|███████▋ | 23/30 [00:26<00:07, 1.14s/it] 80%|████████ | 24/30 [00:27<00:06, 1.14s/it] 83%|████████▎ | 25/30 [00:28<00:05, 1.14s/it] 87%|████████▋ | 26/30 [00:29<00:04, 1.14s/it] 90%|█████████ | 27/30 [00:30<00:03, 1.14s/it] 93%|█████████▎| 28/30 [00:31<00:02, 1.14s/it] 97%|█████████▋| 29/30 [00:33<00:01, 1.14s/it] 100%|██████████| 30/30 [00:34<00:00, 1.14s/it] 100%|██████████| 30/30 [00:34<00:00, 1.14s/it] 0%| | 0/10 [00:00<?, ?it/s] 10%|█ | 1/10 [00:00<00:08, 1.06it/s] 20%|██ | 2/10 [00:01<00:07, 1.07it/s] 30%|███ | 3/10 [00:02<00:06, 1.07it/s] 40%|████ | 4/10 [00:03<00:05, 1.07it/s] 50%|█████ | 5/10 [00:04<00:04, 1.06it/s] 60%|██████ | 6/10 [00:05<00:03, 1.07it/s] 70%|███████ | 7/10 [00:06<00:02, 1.06it/s] 80%|████████ | 8/10 [00:07<00:01, 1.06it/s] 90%|█████████ | 9/10 [00:08<00:00, 1.06it/s] 100%|██████████| 10/10 [00:09<00:00, 1.06it/s] 100%|██████████| 10/10 [00:09<00:00, 1.06it/s]
Prediction
diaphinus/bodegakitty:8d8f11f6b7d50d536fe284a5c81b0ba0fd64aafec0031accb2ab5ca5ec9aef19IDog7n53dbmualjsyszg3ajcu7byStatusSucceededSourceWebHardwareA40 (Large)Total durationCreatedInput
- width
- 928
- height
- 1232
- prompt
- behind the counter of a Brooklyn Bodega is a human sized anthropomorphic orange cat wearing a hoody holding a gun photographed by Annie Leibovitz, in the style of the Sopranos, smokey, haunting atmosphere, dim dramatic lighting
- refine
- expert_ensemble_refiner
- scheduler
- K_EULER
- lora_scale
- 0.6
- num_outputs
- 4
- guidance_scale
- 7.5
- apply_watermark
- high_noise_frac
- 0.8
- negative_prompt
- deformed, noisy, low-poly, blurry, painting, letters, words, writing, photographic, scribbles drawing, painting, crayon, sketch, graphite, impressionist, noisy, blurry, soft, deformed, ugly
- prompt_strength
- 0.8
- num_inference_steps
- 50
{ "image": "https://replicate.delivery/pbxt/JXrrfCh9DGsyBSgkS3hhUaMJMokmlFrDxGdDtu8dp1xkYeDB/marcaaron_human_sized_orange_cat_behind_the_counter_of_a_Bodega_0797b090-56f6-46ed-9849-7ae770ccd1cd.png", "width": 928, "height": 1232, "prompt": "behind the counter of a Brooklyn Bodega is a human sized anthropomorphic orange cat wearing a hoody holding a gun photographed by Annie Leibovitz, in the style of the Sopranos, smokey, haunting atmosphere, dim dramatic lighting", "refine": "expert_ensemble_refiner", "scheduler": "K_EULER", "lora_scale": 0.6, "num_outputs": 4, "guidance_scale": 7.5, "apply_watermark": false, "high_noise_frac": 0.8, "negative_prompt": "deformed, noisy, low-poly, blurry, painting, letters, words, writing, photographic, scribbles drawing, painting, crayon, sketch, graphite, impressionist, noisy, blurry, soft, deformed, ugly \n", "prompt_strength": 0.8, "num_inference_steps": 50 }
Install Replicate’s Node.js client library:npm install replicate
Import and set up the client:import Replicate from "replicate"; import fs from "node:fs"; const replicate = new Replicate({ auth: process.env.REPLICATE_API_TOKEN, });
Run diaphinus/bodegakitty using Replicate’s API. Check out the model's schema for an overview of inputs and outputs.
const output = await replicate.run( "diaphinus/bodegakitty:8d8f11f6b7d50d536fe284a5c81b0ba0fd64aafec0031accb2ab5ca5ec9aef19", { input: { image: "https://replicate.delivery/pbxt/JXrrfCh9DGsyBSgkS3hhUaMJMokmlFrDxGdDtu8dp1xkYeDB/marcaaron_human_sized_orange_cat_behind_the_counter_of_a_Bodega_0797b090-56f6-46ed-9849-7ae770ccd1cd.png", width: 928, height: 1232, prompt: "behind the counter of a Brooklyn Bodega is a human sized anthropomorphic orange cat wearing a hoody holding a gun photographed by Annie Leibovitz, in the style of the Sopranos, smokey, haunting atmosphere, dim dramatic lighting", refine: "expert_ensemble_refiner", scheduler: "K_EULER", lora_scale: 0.6, num_outputs: 4, guidance_scale: 7.5, apply_watermark: false, high_noise_frac: 0.8, negative_prompt: "deformed, noisy, low-poly, blurry, painting, letters, words, writing, photographic, scribbles drawing, painting, crayon, sketch, graphite, impressionist, noisy, blurry, soft, deformed, ugly \n", prompt_strength: 0.8, num_inference_steps: 50 } } ); // To access the file URL: console.log(output[0].url()); //=> "http://example.com" // To write the file to disk: fs.writeFile("my-image.png", output[0]);
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 diaphinus/bodegakitty using Replicate’s API. Check out the model's schema for an overview of inputs and outputs.
output = replicate.run( "diaphinus/bodegakitty:8d8f11f6b7d50d536fe284a5c81b0ba0fd64aafec0031accb2ab5ca5ec9aef19", input={ "image": "https://replicate.delivery/pbxt/JXrrfCh9DGsyBSgkS3hhUaMJMokmlFrDxGdDtu8dp1xkYeDB/marcaaron_human_sized_orange_cat_behind_the_counter_of_a_Bodega_0797b090-56f6-46ed-9849-7ae770ccd1cd.png", "width": 928, "height": 1232, "prompt": "behind the counter of a Brooklyn Bodega is a human sized anthropomorphic orange cat wearing a hoody holding a gun photographed by Annie Leibovitz, in the style of the Sopranos, smokey, haunting atmosphere, dim dramatic lighting", "refine": "expert_ensemble_refiner", "scheduler": "K_EULER", "lora_scale": 0.6, "num_outputs": 4, "guidance_scale": 7.5, "apply_watermark": False, "high_noise_frac": 0.8, "negative_prompt": "deformed, noisy, low-poly, blurry, painting, letters, words, writing, photographic, scribbles drawing, painting, crayon, sketch, graphite, impressionist, noisy, blurry, soft, deformed, ugly \n", "prompt_strength": 0.8, "num_inference_steps": 50 } ) # To access the file URL: print(output[0].url()) #=> "http://example.com" # To write the file to disk: with open("my-image.png", "wb") as file: file.write(output[0].read())
To learn more, take a look at the guide on getting started with Python.
Run diaphinus/bodegakitty 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": "diaphinus/bodegakitty:8d8f11f6b7d50d536fe284a5c81b0ba0fd64aafec0031accb2ab5ca5ec9aef19", "input": { "image": "https://replicate.delivery/pbxt/JXrrfCh9DGsyBSgkS3hhUaMJMokmlFrDxGdDtu8dp1xkYeDB/marcaaron_human_sized_orange_cat_behind_the_counter_of_a_Bodega_0797b090-56f6-46ed-9849-7ae770ccd1cd.png", "width": 928, "height": 1232, "prompt": "behind the counter of a Brooklyn Bodega is a human sized anthropomorphic orange cat wearing a hoody holding a gun photographed by Annie Leibovitz, in the style of the Sopranos, smokey, haunting atmosphere, dim dramatic lighting", "refine": "expert_ensemble_refiner", "scheduler": "K_EULER", "lora_scale": 0.6, "num_outputs": 4, "guidance_scale": 7.5, "apply_watermark": false, "high_noise_frac": 0.8, "negative_prompt": "deformed, noisy, low-poly, blurry, painting, letters, words, writing, photographic, scribbles drawing, painting, crayon, sketch, graphite, impressionist, noisy, blurry, soft, deformed, ugly \\n", "prompt_strength": 0.8, "num_inference_steps": 50 } }' \ https://api.replicate.com/v1/predictions
To learn more, take a look at Replicate’s HTTP API reference docs.
Output
{ "completed_at": "2023-09-17T20:16:54.792043Z", "created_at": "2023-09-17T20:16:04.544307Z", "data_removed": false, "error": null, "id": "og7n53dbmualjsyszg3ajcu7by", "input": { "image": "https://replicate.delivery/pbxt/JXrrfCh9DGsyBSgkS3hhUaMJMokmlFrDxGdDtu8dp1xkYeDB/marcaaron_human_sized_orange_cat_behind_the_counter_of_a_Bodega_0797b090-56f6-46ed-9849-7ae770ccd1cd.png", "width": 928, "height": 1232, "prompt": "behind the counter of a Brooklyn Bodega is a human sized anthropomorphic orange cat wearing a hoody holding a gun photographed by Annie Leibovitz, in the style of the Sopranos, smokey, haunting atmosphere, dim dramatic lighting", "refine": "expert_ensemble_refiner", "scheduler": "K_EULER", "lora_scale": 0.6, "num_outputs": 4, "guidance_scale": 7.5, "apply_watermark": false, "high_noise_frac": 0.8, "negative_prompt": "deformed, noisy, low-poly, blurry, painting, letters, words, writing, photographic, scribbles drawing, painting, crayon, sketch, graphite, impressionist, noisy, blurry, soft, deformed, ugly \n", "prompt_strength": 0.8, "num_inference_steps": 50 }, "logs": "Using seed: 62642\nPrompt: behind the counter of a Brooklyn Bodega is a human sized anthropomorphic orange cat wearing a hoody holding a gun photographed by Annie Leibovitz, in the style of the Sopranos, smokey, haunting atmosphere, dim dramatic lighting\nimg2img mode\n 0%| | 0/30 [00:00<?, ?it/s]\n 3%|▎ | 1/30 [00:01<00:32, 1.13s/it]\n 7%|▋ | 2/30 [00:02<00:31, 1.13s/it]\n 10%|█ | 3/30 [00:03<00:30, 1.13s/it]\n 13%|█▎ | 4/30 [00:04<00:29, 1.13s/it]\n 17%|█▋ | 5/30 [00:05<00:28, 1.13s/it]\n 20%|██ | 6/30 [00:06<00:27, 1.13s/it]\n 23%|██▎ | 7/30 [00:07<00:26, 1.13s/it]\n 27%|██▋ | 8/30 [00:09<00:24, 1.13s/it]\n 30%|███ | 9/30 [00:10<00:23, 1.13s/it]\n 33%|███▎ | 10/30 [00:11<00:22, 1.13s/it]\n 37%|███▋ | 11/30 [00:12<00:21, 1.13s/it]\n 40%|████ | 12/30 [00:13<00:20, 1.13s/it]\n 43%|████▎ | 13/30 [00:14<00:19, 1.13s/it]\n 47%|████▋ | 14/30 [00:15<00:18, 1.13s/it]\n 50%|█████ | 15/30 [00:17<00:17, 1.14s/it]\n 53%|█████▎ | 16/30 [00:18<00:15, 1.14s/it]\n 57%|█████▋ | 17/30 [00:19<00:14, 1.14s/it]\n 60%|██████ | 18/30 [00:20<00:13, 1.14s/it]\n 63%|██████▎ | 19/30 [00:21<00:12, 1.14s/it]\n 67%|██████▋ | 20/30 [00:22<00:11, 1.14s/it]\n 70%|███████ | 21/30 [00:23<00:10, 1.14s/it]\n 73%|███████▎ | 22/30 [00:24<00:09, 1.14s/it]\n 77%|███████▋ | 23/30 [00:26<00:07, 1.14s/it]\n 80%|████████ | 24/30 [00:27<00:06, 1.14s/it]\n 83%|████████▎ | 25/30 [00:28<00:05, 1.14s/it]\n 87%|████████▋ | 26/30 [00:29<00:04, 1.14s/it]\n 90%|█████████ | 27/30 [00:30<00:03, 1.14s/it]\n 93%|█████████▎| 28/30 [00:31<00:02, 1.14s/it]\n 97%|█████████▋| 29/30 [00:32<00:01, 1.14s/it]\n100%|██████████| 30/30 [00:34<00:00, 1.14s/it]\n100%|██████████| 30/30 [00:34<00:00, 1.14s/it]\n 0%| | 0/10 [00:00<?, ?it/s]\n 10%|█ | 1/10 [00:00<00:08, 1.06it/s]\n 20%|██ | 2/10 [00:01<00:07, 1.06it/s]\n 30%|███ | 3/10 [00:02<00:06, 1.06it/s]\n 40%|████ | 4/10 [00:03<00:05, 1.06it/s]\n 50%|█████ | 5/10 [00:04<00:04, 1.07it/s]\n 60%|██████ | 6/10 [00:05<00:03, 1.06it/s]\n 70%|███████ | 7/10 [00:06<00:02, 1.06it/s]\n 80%|████████ | 8/10 [00:07<00:01, 1.06it/s]\n 90%|█████████ | 9/10 [00:08<00:00, 1.06it/s]\n100%|██████████| 10/10 [00:09<00:00, 1.07it/s]\n100%|██████████| 10/10 [00:09<00:00, 1.06it/s]", "metrics": { "predict_time": 50.259411, "total_time": 50.247736 }, "output": [ "https://replicate.delivery/pbxt/roXTuGpCRIJMDp52fgTnNdKmh3sKehWGvgLOetBmkp4oFiKjA/out-0.png", "https://replicate.delivery/pbxt/Ba015sOEF2a7MRc5Dn7Wk9rWGX3Y1EVqQw6YfFAieKfrFiKjA/out-1.png", "https://replicate.delivery/pbxt/3RLY4TfB0zVoF62NBXy4Lu1kcdn8Yxowww1DRqQb18pahoyIA/out-2.png", "https://replicate.delivery/pbxt/4EHuDZM4io5fFyMxL1bVkwsflcrxDUPAMRbjx5DjVJB2CRlRA/out-3.png" ], "started_at": "2023-09-17T20:16:04.532632Z", "status": "succeeded", "urls": { "get": "https://api.replicate.com/v1/predictions/og7n53dbmualjsyszg3ajcu7by", "cancel": "https://api.replicate.com/v1/predictions/og7n53dbmualjsyszg3ajcu7by/cancel" }, "version": "8d8f11f6b7d50d536fe284a5c81b0ba0fd64aafec0031accb2ab5ca5ec9aef19" }
Generated inUsing seed: 62642 Prompt: behind the counter of a Brooklyn Bodega is a human sized anthropomorphic orange cat wearing a hoody holding a gun photographed by Annie Leibovitz, in the style of the Sopranos, smokey, haunting atmosphere, dim dramatic lighting img2img mode 0%| | 0/30 [00:00<?, ?it/s] 3%|▎ | 1/30 [00:01<00:32, 1.13s/it] 7%|▋ | 2/30 [00:02<00:31, 1.13s/it] 10%|█ | 3/30 [00:03<00:30, 1.13s/it] 13%|█▎ | 4/30 [00:04<00:29, 1.13s/it] 17%|█▋ | 5/30 [00:05<00:28, 1.13s/it] 20%|██ | 6/30 [00:06<00:27, 1.13s/it] 23%|██▎ | 7/30 [00:07<00:26, 1.13s/it] 27%|██▋ | 8/30 [00:09<00:24, 1.13s/it] 30%|███ | 9/30 [00:10<00:23, 1.13s/it] 33%|███▎ | 10/30 [00:11<00:22, 1.13s/it] 37%|███▋ | 11/30 [00:12<00:21, 1.13s/it] 40%|████ | 12/30 [00:13<00:20, 1.13s/it] 43%|████▎ | 13/30 [00:14<00:19, 1.13s/it] 47%|████▋ | 14/30 [00:15<00:18, 1.13s/it] 50%|█████ | 15/30 [00:17<00:17, 1.14s/it] 53%|█████▎ | 16/30 [00:18<00:15, 1.14s/it] 57%|█████▋ | 17/30 [00:19<00:14, 1.14s/it] 60%|██████ | 18/30 [00:20<00:13, 1.14s/it] 63%|██████▎ | 19/30 [00:21<00:12, 1.14s/it] 67%|██████▋ | 20/30 [00:22<00:11, 1.14s/it] 70%|███████ | 21/30 [00:23<00:10, 1.14s/it] 73%|███████▎ | 22/30 [00:24<00:09, 1.14s/it] 77%|███████▋ | 23/30 [00:26<00:07, 1.14s/it] 80%|████████ | 24/30 [00:27<00:06, 1.14s/it] 83%|████████▎ | 25/30 [00:28<00:05, 1.14s/it] 87%|████████▋ | 26/30 [00:29<00:04, 1.14s/it] 90%|█████████ | 27/30 [00:30<00:03, 1.14s/it] 93%|█████████▎| 28/30 [00:31<00:02, 1.14s/it] 97%|█████████▋| 29/30 [00:32<00:01, 1.14s/it] 100%|██████████| 30/30 [00:34<00:00, 1.14s/it] 100%|██████████| 30/30 [00:34<00:00, 1.14s/it] 0%| | 0/10 [00:00<?, ?it/s] 10%|█ | 1/10 [00:00<00:08, 1.06it/s] 20%|██ | 2/10 [00:01<00:07, 1.06it/s] 30%|███ | 3/10 [00:02<00:06, 1.06it/s] 40%|████ | 4/10 [00:03<00:05, 1.06it/s] 50%|█████ | 5/10 [00:04<00:04, 1.07it/s] 60%|██████ | 6/10 [00:05<00:03, 1.06it/s] 70%|███████ | 7/10 [00:06<00:02, 1.06it/s] 80%|████████ | 8/10 [00:07<00:01, 1.06it/s] 90%|█████████ | 9/10 [00:08<00:00, 1.06it/s] 100%|██████████| 10/10 [00:09<00:00, 1.07it/s] 100%|██████████| 10/10 [00:09<00:00, 1.06it/s]
Prediction
diaphinus/bodegakitty:8d8f11f6b7d50d536fe284a5c81b0ba0fd64aafec0031accb2ab5ca5ec9aef19IDa2xhqntbfqv6xvvumbvdhxhfqiStatusSucceededSourceWebHardwareA40 (Large)Total durationCreatedInput
- image
- null
- width
- 928
- height
- 1232
- prompt
- human sized anthropomorphic orange muscle cat flexing in the mirror at the gym, photographed by Annie Leibovitz, smokey, haunting atmosphere, dimly lit
- refine
- no_refiner
- scheduler
- K_EULER_ANCESTRAL
- lora_scale
- 0.6
- num_outputs
- 4
- guidance_scale
- 7.5
- apply_watermark
- high_noise_frac
- 0.8
- negative_prompt
- deformed, noisy, low-poly, blurry, painting, scribbles drawing, painting, crayon, sketch, graphite, impressionist, noisy, blurry, soft, deformed, ugly
- prompt_strength
- 0.8
- num_inference_steps
- 50
{ "image": null, "width": 928, "height": 1232, "prompt": "human sized anthropomorphic orange muscle cat flexing in the mirror at the gym, photographed by Annie Leibovitz, smokey, haunting atmosphere, dimly lit", "refine": "no_refiner", "scheduler": "K_EULER_ANCESTRAL", "lora_scale": 0.6, "num_outputs": 4, "guidance_scale": 7.5, "apply_watermark": false, "high_noise_frac": 0.8, "negative_prompt": "deformed, noisy, low-poly, blurry, painting, scribbles drawing, painting, crayon, sketch, graphite, impressionist, noisy, blurry, soft, deformed, ugly \n", "prompt_strength": 0.8, "num_inference_steps": 50 }
Install Replicate’s Node.js client library:npm install replicate
Import and set up the client:import Replicate from "replicate"; import fs from "node:fs"; const replicate = new Replicate({ auth: process.env.REPLICATE_API_TOKEN, });
Run diaphinus/bodegakitty using Replicate’s API. Check out the model's schema for an overview of inputs and outputs.
const output = await replicate.run( "diaphinus/bodegakitty:8d8f11f6b7d50d536fe284a5c81b0ba0fd64aafec0031accb2ab5ca5ec9aef19", { input: { width: 928, height: 1232, prompt: "human sized anthropomorphic orange muscle cat flexing in the mirror at the gym, photographed by Annie Leibovitz, smokey, haunting atmosphere, dimly lit", refine: "no_refiner", scheduler: "K_EULER_ANCESTRAL", lora_scale: 0.6, num_outputs: 4, guidance_scale: 7.5, apply_watermark: false, high_noise_frac: 0.8, negative_prompt: "deformed, noisy, low-poly, blurry, painting, scribbles drawing, painting, crayon, sketch, graphite, impressionist, noisy, blurry, soft, deformed, ugly \n", prompt_strength: 0.8, num_inference_steps: 50 } } ); // To access the file URL: console.log(output[0].url()); //=> "http://example.com" // To write the file to disk: fs.writeFile("my-image.png", output[0]);
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 diaphinus/bodegakitty using Replicate’s API. Check out the model's schema for an overview of inputs and outputs.
output = replicate.run( "diaphinus/bodegakitty:8d8f11f6b7d50d536fe284a5c81b0ba0fd64aafec0031accb2ab5ca5ec9aef19", input={ "width": 928, "height": 1232, "prompt": "human sized anthropomorphic orange muscle cat flexing in the mirror at the gym, photographed by Annie Leibovitz, smokey, haunting atmosphere, dimly lit", "refine": "no_refiner", "scheduler": "K_EULER_ANCESTRAL", "lora_scale": 0.6, "num_outputs": 4, "guidance_scale": 7.5, "apply_watermark": False, "high_noise_frac": 0.8, "negative_prompt": "deformed, noisy, low-poly, blurry, painting, scribbles drawing, painting, crayon, sketch, graphite, impressionist, noisy, blurry, soft, deformed, ugly \n", "prompt_strength": 0.8, "num_inference_steps": 50 } ) # To access the file URL: print(output[0].url()) #=> "http://example.com" # To write the file to disk: with open("my-image.png", "wb") as file: file.write(output[0].read())
To learn more, take a look at the guide on getting started with Python.
Run diaphinus/bodegakitty 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": "diaphinus/bodegakitty:8d8f11f6b7d50d536fe284a5c81b0ba0fd64aafec0031accb2ab5ca5ec9aef19", "input": { "width": 928, "height": 1232, "prompt": "human sized anthropomorphic orange muscle cat flexing in the mirror at the gym, photographed by Annie Leibovitz, smokey, haunting atmosphere, dimly lit", "refine": "no_refiner", "scheduler": "K_EULER_ANCESTRAL", "lora_scale": 0.6, "num_outputs": 4, "guidance_scale": 7.5, "apply_watermark": false, "high_noise_frac": 0.8, "negative_prompt": "deformed, noisy, low-poly, blurry, painting, scribbles drawing, painting, crayon, sketch, graphite, impressionist, noisy, blurry, soft, deformed, ugly \\n", "prompt_strength": 0.8, "num_inference_steps": 50 } }' \ https://api.replicate.com/v1/predictions
To learn more, take a look at Replicate’s HTTP API reference docs.
Output
{ "completed_at": "2023-09-20T23:23:06.660564Z", "created_at": "2023-09-20T23:18:32.316871Z", "data_removed": false, "error": null, "id": "a2xhqntbfqv6xvvumbvdhxhfqi", "input": { "image": null, "width": 928, "height": 1232, "prompt": "human sized anthropomorphic orange muscle cat flexing in the mirror at the gym, photographed by Annie Leibovitz, smokey, haunting atmosphere, dimly lit", "refine": "no_refiner", "scheduler": "K_EULER_ANCESTRAL", "lora_scale": 0.6, "num_outputs": 4, "guidance_scale": 7.5, "apply_watermark": false, "high_noise_frac": 0.8, "negative_prompt": "deformed, noisy, low-poly, blurry, painting, scribbles drawing, painting, crayon, sketch, graphite, impressionist, noisy, blurry, soft, deformed, ugly \n", "prompt_strength": 0.8, "num_inference_steps": 50 }, "logs": "Using seed: 40328\nPrompt: human sized anthropomorphic orange muscle cat flexing in the mirror at the gym, photographed by Annie Leibovitz, smokey, haunting atmosphere, dimly lit\ntxt2img mode\n 0%| | 0/50 [00:00<?, ?it/s]\n 2%|▏ | 1/50 [00:01<00:55, 1.14s/it]\n 4%|▍ | 2/50 [00:02<00:54, 1.14s/it]\n 6%|▌ | 3/50 [00:03<00:53, 1.14s/it]\n 8%|▊ | 4/50 [00:04<00:52, 1.14s/it]\n 10%|█ | 5/50 [00:05<00:51, 1.14s/it]\n 12%|█▏ | 6/50 [00:06<00:50, 1.14s/it]\n 14%|█▍ | 7/50 [00:07<00:48, 1.14s/it]\n 16%|█▌ | 8/50 [00:09<00:47, 1.14s/it]\n 18%|█▊ | 9/50 [00:10<00:46, 1.14s/it]\n 20%|██ | 10/50 [00:11<00:45, 1.14s/it]\n 22%|██▏ | 11/50 [00:12<00:44, 1.14s/it]\n 24%|██▍ | 12/50 [00:13<00:43, 1.14s/it]\n 26%|██▌ | 13/50 [00:14<00:42, 1.14s/it]\n 28%|██▊ | 14/50 [00:15<00:41, 1.14s/it]\n 30%|███ | 15/50 [00:17<00:39, 1.14s/it]\n 32%|███▏ | 16/50 [00:18<00:38, 1.14s/it]\n 34%|███▍ | 17/50 [00:19<00:37, 1.14s/it]\n 36%|███▌ | 18/50 [00:20<00:36, 1.14s/it]\n 38%|███▊ | 19/50 [00:21<00:35, 1.14s/it]\n 40%|████ | 20/50 [00:22<00:34, 1.14s/it]\n 42%|████▏ | 21/50 [00:23<00:33, 1.14s/it]\n 44%|████▍ | 22/50 [00:25<00:31, 1.14s/it]\n 46%|████▌ | 23/50 [00:26<00:30, 1.14s/it]\n 48%|████▊ | 24/50 [00:27<00:29, 1.14s/it]\n 50%|█████ | 25/50 [00:28<00:28, 1.14s/it]\n 52%|█████▏ | 26/50 [00:29<00:27, 1.14s/it]\n 54%|█████▍ | 27/50 [00:30<00:26, 1.14s/it]\n 56%|█████▌ | 28/50 [00:31<00:25, 1.14s/it]\n 58%|█████▊ | 29/50 [00:33<00:23, 1.14s/it]\n 60%|██████ | 30/50 [00:34<00:22, 1.14s/it]\n 62%|██████▏ | 31/50 [00:35<00:21, 1.14s/it]\n 64%|██████▍ | 32/50 [00:36<00:20, 1.14s/it]\n 66%|██████▌ | 33/50 [00:37<00:19, 1.14s/it]\n 68%|██████▊ | 34/50 [00:38<00:18, 1.14s/it]\n 70%|███████ | 35/50 [00:39<00:17, 1.14s/it]\n 72%|███████▏ | 36/50 [00:41<00:15, 1.14s/it]\n 74%|███████▍ | 37/50 [00:42<00:14, 1.14s/it]\n 76%|███████▌ | 38/50 [00:43<00:13, 1.14s/it]\n 78%|███████▊ | 39/50 [00:44<00:12, 1.14s/it]\n 80%|████████ | 40/50 [00:45<00:11, 1.14s/it]\n 82%|████████▏ | 41/50 [00:46<00:10, 1.14s/it]\n 84%|████████▍ | 42/50 [00:47<00:09, 1.14s/it]\n 86%|████████▌ | 43/50 [00:49<00:07, 1.14s/it]\n 88%|████████▊ | 44/50 [00:50<00:06, 1.14s/it]\n 90%|█████████ | 45/50 [00:51<00:05, 1.14s/it]\n 92%|█████████▏| 46/50 [00:52<00:04, 1.14s/it]\n 94%|█████████▍| 47/50 [00:53<00:03, 1.14s/it]\n 96%|█████████▌| 48/50 [00:54<00:02, 1.14s/it]\n 98%|█████████▊| 49/50 [00:55<00:01, 1.14s/it]\n100%|██████████| 50/50 [00:56<00:00, 1.14s/it]\n100%|██████████| 50/50 [00:56<00:00, 1.14s/it]", "metrics": { "predict_time": 62.976186, "total_time": 274.343693 }, "output": [ "https://replicate.delivery/pbxt/2JAXPaCzXW5lANP6lmHvzNvBZVrkncTGoe9UnauRbiprhJzIA/out-0.png", "https://replicate.delivery/pbxt/J9zVOEVi226mCJyIRD25eEix1z1zIXZLcFISxOIam48shJzIA/out-1.png", "https://replicate.delivery/pbxt/t3rnDlEfVw25WKJXAZHCgex5eT4PfUQl89yCykj4bCSkNMZGB/out-2.png", "https://replicate.delivery/pbxt/fuITez7xEVng104GtdfxXYKBhUKodCXnZQCN5e3OtcyrNMZGB/out-3.png" ], "started_at": "2023-09-20T23:22:03.684378Z", "status": "succeeded", "urls": { "get": "https://api.replicate.com/v1/predictions/a2xhqntbfqv6xvvumbvdhxhfqi", "cancel": "https://api.replicate.com/v1/predictions/a2xhqntbfqv6xvvumbvdhxhfqi/cancel" }, "version": "8d8f11f6b7d50d536fe284a5c81b0ba0fd64aafec0031accb2ab5ca5ec9aef19" }
Generated inUsing seed: 40328 Prompt: human sized anthropomorphic orange muscle cat flexing in the mirror at the gym, photographed by Annie Leibovitz, smokey, haunting atmosphere, dimly lit txt2img mode 0%| | 0/50 [00:00<?, ?it/s] 2%|▏ | 1/50 [00:01<00:55, 1.14s/it] 4%|▍ | 2/50 [00:02<00:54, 1.14s/it] 6%|▌ | 3/50 [00:03<00:53, 1.14s/it] 8%|▊ | 4/50 [00:04<00:52, 1.14s/it] 10%|█ | 5/50 [00:05<00:51, 1.14s/it] 12%|█▏ | 6/50 [00:06<00:50, 1.14s/it] 14%|█▍ | 7/50 [00:07<00:48, 1.14s/it] 16%|█▌ | 8/50 [00:09<00:47, 1.14s/it] 18%|█▊ | 9/50 [00:10<00:46, 1.14s/it] 20%|██ | 10/50 [00:11<00:45, 1.14s/it] 22%|██▏ | 11/50 [00:12<00:44, 1.14s/it] 24%|██▍ | 12/50 [00:13<00:43, 1.14s/it] 26%|██▌ | 13/50 [00:14<00:42, 1.14s/it] 28%|██▊ | 14/50 [00:15<00:41, 1.14s/it] 30%|███ | 15/50 [00:17<00:39, 1.14s/it] 32%|███▏ | 16/50 [00:18<00:38, 1.14s/it] 34%|███▍ | 17/50 [00:19<00:37, 1.14s/it] 36%|███▌ | 18/50 [00:20<00:36, 1.14s/it] 38%|███▊ | 19/50 [00:21<00:35, 1.14s/it] 40%|████ | 20/50 [00:22<00:34, 1.14s/it] 42%|████▏ | 21/50 [00:23<00:33, 1.14s/it] 44%|████▍ | 22/50 [00:25<00:31, 1.14s/it] 46%|████▌ | 23/50 [00:26<00:30, 1.14s/it] 48%|████▊ | 24/50 [00:27<00:29, 1.14s/it] 50%|█████ | 25/50 [00:28<00:28, 1.14s/it] 52%|█████▏ | 26/50 [00:29<00:27, 1.14s/it] 54%|█████▍ | 27/50 [00:30<00:26, 1.14s/it] 56%|█████▌ | 28/50 [00:31<00:25, 1.14s/it] 58%|█████▊ | 29/50 [00:33<00:23, 1.14s/it] 60%|██████ | 30/50 [00:34<00:22, 1.14s/it] 62%|██████▏ | 31/50 [00:35<00:21, 1.14s/it] 64%|██████▍ | 32/50 [00:36<00:20, 1.14s/it] 66%|██████▌ | 33/50 [00:37<00:19, 1.14s/it] 68%|██████▊ | 34/50 [00:38<00:18, 1.14s/it] 70%|███████ | 35/50 [00:39<00:17, 1.14s/it] 72%|███████▏ | 36/50 [00:41<00:15, 1.14s/it] 74%|███████▍ | 37/50 [00:42<00:14, 1.14s/it] 76%|███████▌ | 38/50 [00:43<00:13, 1.14s/it] 78%|███████▊ | 39/50 [00:44<00:12, 1.14s/it] 80%|████████ | 40/50 [00:45<00:11, 1.14s/it] 82%|████████▏ | 41/50 [00:46<00:10, 1.14s/it] 84%|████████▍ | 42/50 [00:47<00:09, 1.14s/it] 86%|████████▌ | 43/50 [00:49<00:07, 1.14s/it] 88%|████████▊ | 44/50 [00:50<00:06, 1.14s/it] 90%|█████████ | 45/50 [00:51<00:05, 1.14s/it] 92%|█████████▏| 46/50 [00:52<00:04, 1.14s/it] 94%|█████████▍| 47/50 [00:53<00:03, 1.14s/it] 96%|█████████▌| 48/50 [00:54<00:02, 1.14s/it] 98%|█████████▊| 49/50 [00:55<00:01, 1.14s/it] 100%|██████████| 50/50 [00:56<00:00, 1.14s/it] 100%|██████████| 50/50 [00:56<00:00, 1.14s/it]
Prediction
diaphinus/bodegakitty:8d8f11f6b7d50d536fe284a5c81b0ba0fd64aafec0031accb2ab5ca5ec9aef19IDuvgf5glbk4fjowkkvvtrzms6jiStatusSucceededSourceWebHardwareA40 (Large)Total durationCreatedInput
- width
- 928
- height
- 1232
- prompt
- muscular human-sized anthropomorphic orange cat wearing a muscle shirt and spandex flexing in the mirror at the gym
- refine
- no_refiner
- scheduler
- K_EULER_ANCESTRAL
- lora_scale
- 0.6
- num_outputs
- 4
- guidance_scale
- 7.5
- apply_watermark
- high_noise_frac
- 0.8
- negative_prompt
- deformed, noisy, low-poly, blurry, doubles, painting, scribbles drawing, painting, crayon, sketch, graphite, impressionist, noisy, blurry, soft, deformed, ugly
- prompt_strength
- 0.8
- num_inference_steps
- 50
{ "image": "https://replicate.delivery/pbxt/JZ1Xu84dQThnJ3DF9uLll0yazvNH4Cc5fgXSFhwygEvqVfXW/IMG_3137.png", "width": 928, "height": 1232, "prompt": "muscular human-sized anthropomorphic orange cat wearing a muscle shirt and spandex flexing in the mirror at the gym", "refine": "no_refiner", "scheduler": "K_EULER_ANCESTRAL", "lora_scale": 0.6, "num_outputs": 4, "guidance_scale": 7.5, "apply_watermark": false, "high_noise_frac": 0.8, "negative_prompt": "deformed, noisy, low-poly, blurry, doubles, painting, scribbles drawing, painting, crayon, sketch, graphite, impressionist, noisy, blurry, soft, deformed, ugly \n", "prompt_strength": 0.8, "num_inference_steps": 50 }
Install Replicate’s Node.js client library:npm install replicate
Import and set up the client:import Replicate from "replicate"; import fs from "node:fs"; const replicate = new Replicate({ auth: process.env.REPLICATE_API_TOKEN, });
Run diaphinus/bodegakitty using Replicate’s API. Check out the model's schema for an overview of inputs and outputs.
const output = await replicate.run( "diaphinus/bodegakitty:8d8f11f6b7d50d536fe284a5c81b0ba0fd64aafec0031accb2ab5ca5ec9aef19", { input: { image: "https://replicate.delivery/pbxt/JZ1Xu84dQThnJ3DF9uLll0yazvNH4Cc5fgXSFhwygEvqVfXW/IMG_3137.png", width: 928, height: 1232, prompt: "muscular human-sized anthropomorphic orange cat wearing a muscle shirt and spandex flexing in the mirror at the gym", refine: "no_refiner", scheduler: "K_EULER_ANCESTRAL", lora_scale: 0.6, num_outputs: 4, guidance_scale: 7.5, apply_watermark: false, high_noise_frac: 0.8, negative_prompt: "deformed, noisy, low-poly, blurry, doubles, painting, scribbles drawing, painting, crayon, sketch, graphite, impressionist, noisy, blurry, soft, deformed, ugly \n", prompt_strength: 0.8, num_inference_steps: 50 } } ); // To access the file URL: console.log(output[0].url()); //=> "http://example.com" // To write the file to disk: fs.writeFile("my-image.png", output[0]);
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 diaphinus/bodegakitty using Replicate’s API. Check out the model's schema for an overview of inputs and outputs.
output = replicate.run( "diaphinus/bodegakitty:8d8f11f6b7d50d536fe284a5c81b0ba0fd64aafec0031accb2ab5ca5ec9aef19", input={ "image": "https://replicate.delivery/pbxt/JZ1Xu84dQThnJ3DF9uLll0yazvNH4Cc5fgXSFhwygEvqVfXW/IMG_3137.png", "width": 928, "height": 1232, "prompt": "muscular human-sized anthropomorphic orange cat wearing a muscle shirt and spandex flexing in the mirror at the gym", "refine": "no_refiner", "scheduler": "K_EULER_ANCESTRAL", "lora_scale": 0.6, "num_outputs": 4, "guidance_scale": 7.5, "apply_watermark": False, "high_noise_frac": 0.8, "negative_prompt": "deformed, noisy, low-poly, blurry, doubles, painting, scribbles drawing, painting, crayon, sketch, graphite, impressionist, noisy, blurry, soft, deformed, ugly \n", "prompt_strength": 0.8, "num_inference_steps": 50 } ) # To access the file URL: print(output[0].url()) #=> "http://example.com" # To write the file to disk: with open("my-image.png", "wb") as file: file.write(output[0].read())
To learn more, take a look at the guide on getting started with Python.
Run diaphinus/bodegakitty 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": "diaphinus/bodegakitty:8d8f11f6b7d50d536fe284a5c81b0ba0fd64aafec0031accb2ab5ca5ec9aef19", "input": { "image": "https://replicate.delivery/pbxt/JZ1Xu84dQThnJ3DF9uLll0yazvNH4Cc5fgXSFhwygEvqVfXW/IMG_3137.png", "width": 928, "height": 1232, "prompt": "muscular human-sized anthropomorphic orange cat wearing a muscle shirt and spandex flexing in the mirror at the gym", "refine": "no_refiner", "scheduler": "K_EULER_ANCESTRAL", "lora_scale": 0.6, "num_outputs": 4, "guidance_scale": 7.5, "apply_watermark": false, "high_noise_frac": 0.8, "negative_prompt": "deformed, noisy, low-poly, blurry, doubles, painting, scribbles drawing, painting, crayon, sketch, graphite, impressionist, noisy, blurry, soft, deformed, ugly \\n", "prompt_strength": 0.8, "num_inference_steps": 50 } }' \ https://api.replicate.com/v1/predictions
To learn more, take a look at Replicate’s HTTP API reference docs.
Output
{ "completed_at": "2023-09-21T02:33:24.601958Z", "created_at": "2023-09-21T02:18:03.199197Z", "data_removed": false, "error": null, "id": "uvgf5glbk4fjowkkvvtrzms6ji", "input": { "image": "https://replicate.delivery/pbxt/JZ1Xu84dQThnJ3DF9uLll0yazvNH4Cc5fgXSFhwygEvqVfXW/IMG_3137.png", "width": 928, "height": 1232, "prompt": "muscular human-sized anthropomorphic orange cat wearing a muscle shirt and spandex flexing in the mirror at the gym", "refine": "no_refiner", "scheduler": "K_EULER_ANCESTRAL", "lora_scale": 0.6, "num_outputs": 4, "guidance_scale": 7.5, "apply_watermark": false, "high_noise_frac": 0.8, "negative_prompt": "deformed, noisy, low-poly, blurry, doubles, painting, scribbles drawing, painting, crayon, sketch, graphite, impressionist, noisy, blurry, soft, deformed, ugly \n", "prompt_strength": 0.8, "num_inference_steps": 50 }, "logs": "Using seed: 23554\nPrompt: muscular human-sized anthropomorphic orange cat wearing a muscle shirt and spandex flexing in the mirror at the gym\nimg2img mode\n 0%| | 0/40 [00:00<?, ?it/s]\n 2%|▎ | 1/40 [00:01<00:44, 1.13s/it]\n 5%|▌ | 2/40 [00:02<00:42, 1.13s/it]\n 8%|▊ | 3/40 [00:03<00:41, 1.13s/it]\n 10%|█ | 4/40 [00:04<00:40, 1.13s/it]\n 12%|█▎ | 5/40 [00:05<00:39, 1.13s/it]\n 15%|█▌ | 6/40 [00:06<00:38, 1.13s/it]\n 18%|█▊ | 7/40 [00:07<00:37, 1.13s/it]\n 20%|██ | 8/40 [00:09<00:36, 1.13s/it]\n 22%|██▎ | 9/40 [00:10<00:34, 1.13s/it]\n 25%|██▌ | 10/40 [00:11<00:33, 1.13s/it]\n 28%|██▊ | 11/40 [00:12<00:32, 1.13s/it]\n 30%|███ | 12/40 [00:13<00:31, 1.13s/it]\n 32%|███▎ | 13/40 [00:14<00:30, 1.13s/it]\n 35%|███▌ | 14/40 [00:15<00:29, 1.13s/it]\n 38%|███▊ | 15/40 [00:16<00:28, 1.13s/it]\n 40%|████ | 16/40 [00:18<00:27, 1.13s/it]\n 42%|████▎ | 17/40 [00:19<00:26, 1.13s/it]\n 45%|████▌ | 18/40 [00:20<00:24, 1.13s/it]\n 48%|████▊ | 19/40 [00:21<00:23, 1.13s/it]\n 50%|█████ | 20/40 [00:22<00:22, 1.13s/it]\n 52%|█████▎ | 21/40 [00:23<00:21, 1.13s/it]\n 55%|█████▌ | 22/40 [00:24<00:20, 1.13s/it]\n 57%|█████▊ | 23/40 [00:25<00:19, 1.13s/it]\n 60%|██████ | 24/40 [00:27<00:18, 1.13s/it]\n 62%|██████▎ | 25/40 [00:28<00:17, 1.13s/it]\n 65%|██████▌ | 26/40 [00:29<00:15, 1.13s/it]\n 68%|██████▊ | 27/40 [00:30<00:14, 1.13s/it]\n 70%|███████ | 28/40 [00:31<00:13, 1.13s/it]\n 72%|███████▎ | 29/40 [00:32<00:12, 1.14s/it]\n 75%|███████▌ | 30/40 [00:33<00:11, 1.14s/it]\n 78%|███████▊ | 31/40 [00:35<00:10, 1.14s/it]\n 80%|████████ | 32/40 [00:36<00:09, 1.14s/it]\n 82%|████████▎ | 33/40 [00:37<00:07, 1.14s/it]\n 85%|████████▌ | 34/40 [00:38<00:06, 1.14s/it]\n 88%|████████▊ | 35/40 [00:39<00:05, 1.14s/it]\n 90%|█████████ | 36/40 [00:40<00:04, 1.14s/it]\n 92%|█████████▎| 37/40 [00:41<00:03, 1.14s/it]\n 95%|█████████▌| 38/40 [00:43<00:02, 1.14s/it]\n 98%|█████████▊| 39/40 [00:44<00:01, 1.14s/it]\n100%|██████████| 40/40 [00:45<00:00, 1.14s/it]\n100%|██████████| 40/40 [00:45<00:00, 1.13s/it]", "metrics": { "predict_time": 53.2743, "total_time": 921.402761 }, "output": [ "https://replicate.delivery/pbxt/A1oa1ZIfTgWpDi0qMZs1UtlxbqTa08DlDKSoG4LUHYM56KzIA/out-0.png", "https://replicate.delivery/pbxt/ZUSEBq9sQgoCL5oj7ngzwWwmDB1uTC3OkAKLOhr0qX1cdlZE/out-1.png", "https://replicate.delivery/pbxt/YEDxFRUFeV1ZXqiNVv3S5fHL2cfNhJTi770VkKYI4YeMXXZGB/out-2.png", "https://replicate.delivery/pbxt/IbDV4et5hBTTf0WIirGHbNxXksPmxaMgZDqK2jRqJq801VmRA/out-3.png" ], "started_at": "2023-09-21T02:32:31.327658Z", "status": "succeeded", "urls": { "get": "https://api.replicate.com/v1/predictions/uvgf5glbk4fjowkkvvtrzms6ji", "cancel": "https://api.replicate.com/v1/predictions/uvgf5glbk4fjowkkvvtrzms6ji/cancel" }, "version": "8d8f11f6b7d50d536fe284a5c81b0ba0fd64aafec0031accb2ab5ca5ec9aef19" }
Generated inUsing seed: 23554 Prompt: muscular human-sized anthropomorphic orange cat wearing a muscle shirt and spandex flexing in the mirror at the gym img2img mode 0%| | 0/40 [00:00<?, ?it/s] 2%|▎ | 1/40 [00:01<00:44, 1.13s/it] 5%|▌ | 2/40 [00:02<00:42, 1.13s/it] 8%|▊ | 3/40 [00:03<00:41, 1.13s/it] 10%|█ | 4/40 [00:04<00:40, 1.13s/it] 12%|█▎ | 5/40 [00:05<00:39, 1.13s/it] 15%|█▌ | 6/40 [00:06<00:38, 1.13s/it] 18%|█▊ | 7/40 [00:07<00:37, 1.13s/it] 20%|██ | 8/40 [00:09<00:36, 1.13s/it] 22%|██▎ | 9/40 [00:10<00:34, 1.13s/it] 25%|██▌ | 10/40 [00:11<00:33, 1.13s/it] 28%|██▊ | 11/40 [00:12<00:32, 1.13s/it] 30%|███ | 12/40 [00:13<00:31, 1.13s/it] 32%|███▎ | 13/40 [00:14<00:30, 1.13s/it] 35%|███▌ | 14/40 [00:15<00:29, 1.13s/it] 38%|███▊ | 15/40 [00:16<00:28, 1.13s/it] 40%|████ | 16/40 [00:18<00:27, 1.13s/it] 42%|████▎ | 17/40 [00:19<00:26, 1.13s/it] 45%|████▌ | 18/40 [00:20<00:24, 1.13s/it] 48%|████▊ | 19/40 [00:21<00:23, 1.13s/it] 50%|█████ | 20/40 [00:22<00:22, 1.13s/it] 52%|█████▎ | 21/40 [00:23<00:21, 1.13s/it] 55%|█████▌ | 22/40 [00:24<00:20, 1.13s/it] 57%|█████▊ | 23/40 [00:25<00:19, 1.13s/it] 60%|██████ | 24/40 [00:27<00:18, 1.13s/it] 62%|██████▎ | 25/40 [00:28<00:17, 1.13s/it] 65%|██████▌ | 26/40 [00:29<00:15, 1.13s/it] 68%|██████▊ | 27/40 [00:30<00:14, 1.13s/it] 70%|███████ | 28/40 [00:31<00:13, 1.13s/it] 72%|███████▎ | 29/40 [00:32<00:12, 1.14s/it] 75%|███████▌ | 30/40 [00:33<00:11, 1.14s/it] 78%|███████▊ | 31/40 [00:35<00:10, 1.14s/it] 80%|████████ | 32/40 [00:36<00:09, 1.14s/it] 82%|████████▎ | 33/40 [00:37<00:07, 1.14s/it] 85%|████████▌ | 34/40 [00:38<00:06, 1.14s/it] 88%|████████▊ | 35/40 [00:39<00:05, 1.14s/it] 90%|█████████ | 36/40 [00:40<00:04, 1.14s/it] 92%|█████████▎| 37/40 [00:41<00:03, 1.14s/it] 95%|█████████▌| 38/40 [00:43<00:02, 1.14s/it] 98%|█████████▊| 39/40 [00:44<00:01, 1.14s/it] 100%|██████████| 40/40 [00:45<00:00, 1.14s/it] 100%|██████████| 40/40 [00:45<00:00, 1.13s/it]
Want to make some of these yourself?
Run this model