asiryan / blue-pencil-xl-v2
Blue Pencil XL v2 Model (Text2Img, Img2Img and Inpainting)
Prediction
asiryan/blue-pencil-xl-v2:425769673acfb18c25ad6a5eaa568387b5003bdcfeb66d059555510115478bdbIDz25gowlbl6o5pjotaay2tkq7kiStatusSucceededSourceWebHardwareA40 (Large)Total durationCreatedInput
- width
- 768
- height
- 1024
- prompt
- anime, pastel colors, girl, sitting on bed, wearing vr goggle, HTC Vive, blonde hair, long hair, casual clothes, bedroom, bokeh, dynamic, from below
- strength
- 0.8
- scheduler
- K_EULER_ANCESTRAL
- lora_scale
- 0.6
- num_outputs
- 1
- guidance_scale
- 7
- negative_prompt
- photo, 3d, realistic, cartoon, disfigured, kitsch, ugly, oversaturated, greain, low-res, deformed, blurry, bad anatomy, poorly drawn face, mutation, mutated, extra limb, poorly drawn hands, missing limb, floating limbs, disconnected limbs, malformed hands, blur, out of focus, long neck, long body, disgusting, poorly drawn, childish, mutilated, mangled, old, surreal, calligraphy, sign, writing, watermark, text, body out of frame, extra legs, extra arms, extra feet, out of frame, poorly drawn feet, cross-eye
- num_inference_steps
- 40
{ "width": 768, "height": 1024, "prompt": "anime, pastel colors, girl, sitting on bed, wearing vr goggle, HTC Vive, blonde hair, long hair, casual clothes, bedroom, bokeh, dynamic, from below", "strength": 0.8, "scheduler": "K_EULER_ANCESTRAL", "lora_scale": 0.6, "num_outputs": 1, "guidance_scale": 7, "negative_prompt": "photo, 3d, realistic, cartoon, disfigured, kitsch, ugly, oversaturated, greain, low-res, deformed, blurry, bad anatomy, poorly drawn face, mutation, mutated, extra limb, poorly drawn hands, missing limb, floating limbs, disconnected limbs, malformed hands, blur, out of focus, long neck, long body, disgusting, poorly drawn, childish, mutilated, mangled, old, surreal, calligraphy, sign, writing, watermark, text, body out of frame, extra legs, extra arms, extra feet, out of frame, poorly drawn feet, cross-eye", "num_inference_steps": 40 }
Install Replicate’s Node.js client library:npm install replicate
Import and set up the client:import Replicate from "replicate"; const replicate = new Replicate({ auth: process.env.REPLICATE_API_TOKEN, });
Run asiryan/blue-pencil-xl-v2 using Replicate’s API. Check out the model's schema for an overview of inputs and outputs.
const output = await replicate.run( "asiryan/blue-pencil-xl-v2:425769673acfb18c25ad6a5eaa568387b5003bdcfeb66d059555510115478bdb", { input: { width: 768, height: 1024, prompt: "anime, pastel colors, girl, sitting on bed, wearing vr goggle, HTC Vive, blonde hair, long hair, casual clothes, bedroom, bokeh, dynamic, from below", strength: 0.8, scheduler: "K_EULER_ANCESTRAL", lora_scale: 0.6, num_outputs: 1, guidance_scale: 7, negative_prompt: "photo, 3d, realistic, cartoon, disfigured, kitsch, ugly, oversaturated, greain, low-res, deformed, blurry, bad anatomy, poorly drawn face, mutation, mutated, extra limb, poorly drawn hands, missing limb, floating limbs, disconnected limbs, malformed hands, blur, out of focus, long neck, long body, disgusting, poorly drawn, childish, mutilated, mangled, old, surreal, calligraphy, sign, writing, watermark, text, body out of frame, extra legs, extra arms, extra feet, out of frame, poorly drawn feet, cross-eye", num_inference_steps: 40 } } ); // 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 asiryan/blue-pencil-xl-v2 using Replicate’s API. Check out the model's schema for an overview of inputs and outputs.
output = replicate.run( "asiryan/blue-pencil-xl-v2:425769673acfb18c25ad6a5eaa568387b5003bdcfeb66d059555510115478bdb", input={ "width": 768, "height": 1024, "prompt": "anime, pastel colors, girl, sitting on bed, wearing vr goggle, HTC Vive, blonde hair, long hair, casual clothes, bedroom, bokeh, dynamic, from below", "strength": 0.8, "scheduler": "K_EULER_ANCESTRAL", "lora_scale": 0.6, "num_outputs": 1, "guidance_scale": 7, "negative_prompt": "photo, 3d, realistic, cartoon, disfigured, kitsch, ugly, oversaturated, greain, low-res, deformed, blurry, bad anatomy, poorly drawn face, mutation, mutated, extra limb, poorly drawn hands, missing limb, floating limbs, disconnected limbs, malformed hands, blur, out of focus, long neck, long body, disgusting, poorly drawn, childish, mutilated, mangled, old, surreal, calligraphy, sign, writing, watermark, text, body out of frame, extra legs, extra arms, extra feet, out of frame, poorly drawn feet, cross-eye", "num_inference_steps": 40 } ) print(output)
To learn more, take a look at the guide on getting started with Python.
Run asiryan/blue-pencil-xl-v2 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": "asiryan/blue-pencil-xl-v2:425769673acfb18c25ad6a5eaa568387b5003bdcfeb66d059555510115478bdb", "input": { "width": 768, "height": 1024, "prompt": "anime, pastel colors, girl, sitting on bed, wearing vr goggle, HTC Vive, blonde hair, long hair, casual clothes, bedroom, bokeh, dynamic, from below", "strength": 0.8, "scheduler": "K_EULER_ANCESTRAL", "lora_scale": 0.6, "num_outputs": 1, "guidance_scale": 7, "negative_prompt": "photo, 3d, realistic, cartoon, disfigured, kitsch, ugly, oversaturated, greain, low-res, deformed, blurry, bad anatomy, poorly drawn face, mutation, mutated, extra limb, poorly drawn hands, missing limb, floating limbs, disconnected limbs, malformed hands, blur, out of focus, long neck, long body, disgusting, poorly drawn, childish, mutilated, mangled, old, surreal, calligraphy, sign, writing, watermark, text, body out of frame, extra legs, extra arms, extra feet, out of frame, poorly drawn feet, cross-eye", "num_inference_steps": 40 } }' \ https://api.replicate.com/v1/predictions
To learn more, take a look at Replicate’s HTTP API reference docs.
Output
{ "completed_at": "2023-12-16T23:05:59.335603Z", "created_at": "2023-12-16T23:05:51.597733Z", "data_removed": false, "error": null, "id": "z25gowlbl6o5pjotaay2tkq7ki", "input": { "width": 768, "height": 1024, "prompt": "anime, pastel colors, girl, sitting on bed, wearing vr goggle, HTC Vive, blonde hair, long hair, casual clothes, bedroom, bokeh, dynamic, from below", "strength": 0.8, "scheduler": "K_EULER_ANCESTRAL", "lora_scale": 0.6, "num_outputs": 1, "guidance_scale": 7, "negative_prompt": "photo, 3d, realistic, cartoon, disfigured, kitsch, ugly, oversaturated, greain, low-res, deformed, blurry, bad anatomy, poorly drawn face, mutation, mutated, extra limb, poorly drawn hands, missing limb, floating limbs, disconnected limbs, malformed hands, blur, out of focus, long neck, long body, disgusting, poorly drawn, childish, mutilated, mangled, old, surreal, calligraphy, sign, writing, watermark, text, body out of frame, extra legs, extra arms, extra feet, out of frame, poorly drawn feet, cross-eye", "num_inference_steps": 40 }, "logs": "Using seed: 47873\nPrompt: anime, pastel colors, girl, sitting on bed, wearing vr goggle, HTC Vive, blonde hair, long hair, casual clothes, bedroom, bokeh, dynamic, from below\ntxt2img mode\n 0%| | 0/40 [00:00<?, ?it/s]\n 2%|▎ | 1/40 [00:00<00:05, 6.72it/s]\n 5%|▌ | 2/40 [00:00<00:05, 6.67it/s]\n 8%|▊ | 3/40 [00:00<00:05, 6.65it/s]\n 10%|█ | 4/40 [00:00<00:05, 6.64it/s]\n 12%|█▎ | 5/40 [00:00<00:05, 6.63it/s]\n 15%|█▌ | 6/40 [00:00<00:05, 6.63it/s]\n 18%|█▊ | 7/40 [00:01<00:05, 6.60it/s]\n 20%|██ | 8/40 [00:01<00:04, 6.59it/s]\n 22%|██▎ | 9/40 [00:01<00:04, 6.60it/s]\n 25%|██▌ | 10/40 [00:01<00:04, 6.60it/s]\n 28%|██▊ | 11/40 [00:01<00:04, 6.60it/s]\n 30%|███ | 12/40 [00:01<00:04, 6.60it/s]\n 32%|███▎ | 13/40 [00:01<00:04, 6.59it/s]\n 35%|███▌ | 14/40 [00:02<00:03, 6.58it/s]\n 38%|███▊ | 15/40 [00:02<00:03, 6.58it/s]\n 40%|████ | 16/40 [00:02<00:03, 6.58it/s]\n 42%|████▎ | 17/40 [00:02<00:03, 6.58it/s]\n 45%|████▌ | 18/40 [00:02<00:03, 6.58it/s]\n 48%|████▊ | 19/40 [00:02<00:03, 6.58it/s]\n 50%|█████ | 20/40 [00:03<00:03, 6.58it/s]\n 52%|█████▎ | 21/40 [00:03<00:02, 6.57it/s]\n 55%|█████▌ | 22/40 [00:03<00:02, 6.57it/s]\n 57%|█████▊ | 23/40 [00:03<00:02, 6.57it/s]\n 60%|██████ | 24/40 [00:03<00:02, 6.58it/s]\n 62%|██████▎ | 25/40 [00:03<00:02, 6.58it/s]\n 65%|██████▌ | 26/40 [00:03<00:02, 6.58it/s]\n 68%|██████▊ | 27/40 [00:04<00:01, 6.58it/s]\n 70%|███████ | 28/40 [00:04<00:01, 6.57it/s]\n 72%|███████▎ | 29/40 [00:04<00:01, 6.58it/s]\n 75%|███████▌ | 30/40 [00:04<00:01, 6.60it/s]\n 78%|███████▊ | 31/40 [00:04<00:01, 6.61it/s]\n 80%|████████ | 32/40 [00:04<00:01, 6.61it/s]\n 82%|████████▎ | 33/40 [00:05<00:01, 6.62it/s]\n 85%|████████▌ | 34/40 [00:05<00:00, 6.62it/s]\n 88%|████████▊ | 35/40 [00:05<00:00, 6.62it/s]\n 90%|█████████ | 36/40 [00:05<00:00, 6.62it/s]\n 92%|█████████▎| 37/40 [00:05<00:00, 6.62it/s]\n 95%|█████████▌| 38/40 [00:05<00:00, 6.62it/s]\n 98%|█████████▊| 39/40 [00:05<00:00, 6.63it/s]\n100%|██████████| 40/40 [00:06<00:00, 6.63it/s]\n100%|██████████| 40/40 [00:06<00:00, 6.60it/s]", "metrics": { "predict_time": 7.702919, "total_time": 7.73787 }, "output": [ "https://replicate.delivery/pbxt/nPbLItvXMP5zMtVIx3QVIoyQu40fotpYcwQZPQHLKVfW99CSA/out-0.png" ], "started_at": "2023-12-16T23:05:51.632684Z", "status": "succeeded", "urls": { "get": "https://api.replicate.com/v1/predictions/z25gowlbl6o5pjotaay2tkq7ki", "cancel": "https://api.replicate.com/v1/predictions/z25gowlbl6o5pjotaay2tkq7ki/cancel" }, "version": "425769673acfb18c25ad6a5eaa568387b5003bdcfeb66d059555510115478bdb" }
Generated inUsing seed: 47873 Prompt: anime, pastel colors, girl, sitting on bed, wearing vr goggle, HTC Vive, blonde hair, long hair, casual clothes, bedroom, bokeh, dynamic, from below txt2img mode 0%| | 0/40 [00:00<?, ?it/s] 2%|▎ | 1/40 [00:00<00:05, 6.72it/s] 5%|▌ | 2/40 [00:00<00:05, 6.67it/s] 8%|▊ | 3/40 [00:00<00:05, 6.65it/s] 10%|█ | 4/40 [00:00<00:05, 6.64it/s] 12%|█▎ | 5/40 [00:00<00:05, 6.63it/s] 15%|█▌ | 6/40 [00:00<00:05, 6.63it/s] 18%|█▊ | 7/40 [00:01<00:05, 6.60it/s] 20%|██ | 8/40 [00:01<00:04, 6.59it/s] 22%|██▎ | 9/40 [00:01<00:04, 6.60it/s] 25%|██▌ | 10/40 [00:01<00:04, 6.60it/s] 28%|██▊ | 11/40 [00:01<00:04, 6.60it/s] 30%|███ | 12/40 [00:01<00:04, 6.60it/s] 32%|███▎ | 13/40 [00:01<00:04, 6.59it/s] 35%|███▌ | 14/40 [00:02<00:03, 6.58it/s] 38%|███▊ | 15/40 [00:02<00:03, 6.58it/s] 40%|████ | 16/40 [00:02<00:03, 6.58it/s] 42%|████▎ | 17/40 [00:02<00:03, 6.58it/s] 45%|████▌ | 18/40 [00:02<00:03, 6.58it/s] 48%|████▊ | 19/40 [00:02<00:03, 6.58it/s] 50%|█████ | 20/40 [00:03<00:03, 6.58it/s] 52%|█████▎ | 21/40 [00:03<00:02, 6.57it/s] 55%|█████▌ | 22/40 [00:03<00:02, 6.57it/s] 57%|█████▊ | 23/40 [00:03<00:02, 6.57it/s] 60%|██████ | 24/40 [00:03<00:02, 6.58it/s] 62%|██████▎ | 25/40 [00:03<00:02, 6.58it/s] 65%|██████▌ | 26/40 [00:03<00:02, 6.58it/s] 68%|██████▊ | 27/40 [00:04<00:01, 6.58it/s] 70%|███████ | 28/40 [00:04<00:01, 6.57it/s] 72%|███████▎ | 29/40 [00:04<00:01, 6.58it/s] 75%|███████▌ | 30/40 [00:04<00:01, 6.60it/s] 78%|███████▊ | 31/40 [00:04<00:01, 6.61it/s] 80%|████████ | 32/40 [00:04<00:01, 6.61it/s] 82%|████████▎ | 33/40 [00:05<00:01, 6.62it/s] 85%|████████▌ | 34/40 [00:05<00:00, 6.62it/s] 88%|████████▊ | 35/40 [00:05<00:00, 6.62it/s] 90%|█████████ | 36/40 [00:05<00:00, 6.62it/s] 92%|█████████▎| 37/40 [00:05<00:00, 6.62it/s] 95%|█████████▌| 38/40 [00:05<00:00, 6.62it/s] 98%|█████████▊| 39/40 [00:05<00:00, 6.63it/s] 100%|██████████| 40/40 [00:06<00:00, 6.63it/s] 100%|██████████| 40/40 [00:06<00:00, 6.60it/s]
Prediction
asiryan/blue-pencil-xl-v2:425769673acfb18c25ad6a5eaa568387b5003bdcfeb66d059555510115478bdbID7ac6hg3bqfwqciyxeppzhf2okaStatusSucceededSourceWebHardwareA40 (Large)Total durationCreatedInput
- width
- 1024
- height
- 1024
- prompt
- 1girl, dragon
- strength
- 0.8
- scheduler
- K_EULER_ANCESTRAL
- lora_scale
- 0.6
- num_outputs
- 1
- guidance_scale
- 7
- negative_prompt
- photo, 3d, realistic, disfigured, kitsch, ugly, oversaturated, greain, low-res, deformed, blurry, bad anatomy, poorly drawn face, mutation, mutated, extra limb, poorly drawn hands, missing limb, floating limbs, disconnected limbs, malformed hands, blur, out of focus, long neck, long body, disgusting, poorly drawn, childish, mutilated, mangled, old, surreal, calligraphy, sign, writing, watermark, text, body out of frame, extra legs, extra arms, extra feet, out of frame, poorly drawn feet, cross-eye
- num_inference_steps
- 40
{ "width": 1024, "height": 1024, "prompt": "1girl, dragon", "strength": 0.8, "scheduler": "K_EULER_ANCESTRAL", "lora_scale": 0.6, "num_outputs": 1, "guidance_scale": 7, "negative_prompt": "photo, 3d, realistic, disfigured, kitsch, ugly, oversaturated, greain, low-res, deformed, blurry, bad anatomy, poorly drawn face, mutation, mutated, extra limb, poorly drawn hands, missing limb, floating limbs, disconnected limbs, malformed hands, blur, out of focus, long neck, long body, disgusting, poorly drawn, childish, mutilated, mangled, old, surreal, calligraphy, sign, writing, watermark, text, body out of frame, extra legs, extra arms, extra feet, out of frame, poorly drawn feet, cross-eye", "num_inference_steps": 40 }
Install Replicate’s Node.js client library:npm install replicate
Import and set up the client:import Replicate from "replicate"; const replicate = new Replicate({ auth: process.env.REPLICATE_API_TOKEN, });
Run asiryan/blue-pencil-xl-v2 using Replicate’s API. Check out the model's schema for an overview of inputs and outputs.
const output = await replicate.run( "asiryan/blue-pencil-xl-v2:425769673acfb18c25ad6a5eaa568387b5003bdcfeb66d059555510115478bdb", { input: { width: 1024, height: 1024, prompt: "1girl, dragon", strength: 0.8, scheduler: "K_EULER_ANCESTRAL", lora_scale: 0.6, num_outputs: 1, guidance_scale: 7, negative_prompt: "photo, 3d, realistic, disfigured, kitsch, ugly, oversaturated, greain, low-res, deformed, blurry, bad anatomy, poorly drawn face, mutation, mutated, extra limb, poorly drawn hands, missing limb, floating limbs, disconnected limbs, malformed hands, blur, out of focus, long neck, long body, disgusting, poorly drawn, childish, mutilated, mangled, old, surreal, calligraphy, sign, writing, watermark, text, body out of frame, extra legs, extra arms, extra feet, out of frame, poorly drawn feet, cross-eye", num_inference_steps: 40 } } ); // 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 asiryan/blue-pencil-xl-v2 using Replicate’s API. Check out the model's schema for an overview of inputs and outputs.
output = replicate.run( "asiryan/blue-pencil-xl-v2:425769673acfb18c25ad6a5eaa568387b5003bdcfeb66d059555510115478bdb", input={ "width": 1024, "height": 1024, "prompt": "1girl, dragon", "strength": 0.8, "scheduler": "K_EULER_ANCESTRAL", "lora_scale": 0.6, "num_outputs": 1, "guidance_scale": 7, "negative_prompt": "photo, 3d, realistic, disfigured, kitsch, ugly, oversaturated, greain, low-res, deformed, blurry, bad anatomy, poorly drawn face, mutation, mutated, extra limb, poorly drawn hands, missing limb, floating limbs, disconnected limbs, malformed hands, blur, out of focus, long neck, long body, disgusting, poorly drawn, childish, mutilated, mangled, old, surreal, calligraphy, sign, writing, watermark, text, body out of frame, extra legs, extra arms, extra feet, out of frame, poorly drawn feet, cross-eye", "num_inference_steps": 40 } ) print(output)
To learn more, take a look at the guide on getting started with Python.
Run asiryan/blue-pencil-xl-v2 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": "asiryan/blue-pencil-xl-v2:425769673acfb18c25ad6a5eaa568387b5003bdcfeb66d059555510115478bdb", "input": { "width": 1024, "height": 1024, "prompt": "1girl, dragon", "strength": 0.8, "scheduler": "K_EULER_ANCESTRAL", "lora_scale": 0.6, "num_outputs": 1, "guidance_scale": 7, "negative_prompt": "photo, 3d, realistic, disfigured, kitsch, ugly, oversaturated, greain, low-res, deformed, blurry, bad anatomy, poorly drawn face, mutation, mutated, extra limb, poorly drawn hands, missing limb, floating limbs, disconnected limbs, malformed hands, blur, out of focus, long neck, long body, disgusting, poorly drawn, childish, mutilated, mangled, old, surreal, calligraphy, sign, writing, watermark, text, body out of frame, extra legs, extra arms, extra feet, out of frame, poorly drawn feet, cross-eye", "num_inference_steps": 40 } }' \ https://api.replicate.com/v1/predictions
To learn more, take a look at Replicate’s HTTP API reference docs.
Output
{ "completed_at": "2023-12-16T23:10:07.611959Z", "created_at": "2023-12-16T23:09:57.648920Z", "data_removed": false, "error": null, "id": "7ac6hg3bqfwqciyxeppzhf2oka", "input": { "width": 1024, "height": 1024, "prompt": "1girl, dragon", "strength": 0.8, "scheduler": "K_EULER_ANCESTRAL", "lora_scale": 0.6, "num_outputs": 1, "guidance_scale": 7, "negative_prompt": "photo, 3d, realistic, disfigured, kitsch, ugly, oversaturated, greain, low-res, deformed, blurry, bad anatomy, poorly drawn face, mutation, mutated, extra limb, poorly drawn hands, missing limb, floating limbs, disconnected limbs, malformed hands, blur, out of focus, long neck, long body, disgusting, poorly drawn, childish, mutilated, mangled, old, surreal, calligraphy, sign, writing, watermark, text, body out of frame, extra legs, extra arms, extra feet, out of frame, poorly drawn feet, cross-eye", "num_inference_steps": 40 }, "logs": "Using seed: 55807\nPrompt: 1girl, dragon\ntxt2img mode\n 0%| | 0/40 [00:00<?, ?it/s]\n 2%|▎ | 1/40 [00:00<00:07, 5.02it/s]\n 5%|▌ | 2/40 [00:00<00:07, 4.99it/s]\n 8%|▊ | 3/40 [00:00<00:07, 4.98it/s]\n 10%|█ | 4/40 [00:00<00:07, 4.97it/s]\n 12%|█▎ | 5/40 [00:01<00:07, 4.94it/s]\n 15%|█▌ | 6/40 [00:01<00:06, 4.94it/s]\n 18%|█▊ | 7/40 [00:01<00:06, 4.94it/s]\n 20%|██ | 8/40 [00:01<00:06, 4.95it/s]\n 22%|██▎ | 9/40 [00:01<00:06, 4.94it/s]\n 25%|██▌ | 10/40 [00:02<00:06, 4.93it/s]\n 28%|██▊ | 11/40 [00:02<00:05, 4.93it/s]\n 30%|███ | 12/40 [00:02<00:05, 4.93it/s]\n 32%|███▎ | 13/40 [00:02<00:05, 4.93it/s]\n 35%|███▌ | 14/40 [00:02<00:05, 4.93it/s]\n 38%|███▊ | 15/40 [00:03<00:05, 4.93it/s]\n 40%|████ | 16/40 [00:03<00:04, 4.93it/s]\n 42%|████▎ | 17/40 [00:03<00:04, 4.92it/s]\n 45%|████▌ | 18/40 [00:03<00:04, 4.92it/s]\n 48%|████▊ | 19/40 [00:03<00:04, 4.92it/s]\n 50%|█████ | 20/40 [00:04<00:04, 4.92it/s]\n 52%|█████▎ | 21/40 [00:04<00:03, 4.92it/s]\n 55%|█████▌ | 22/40 [00:04<00:03, 4.93it/s]\n 57%|█████▊ | 23/40 [00:04<00:03, 4.92it/s]\n 60%|██████ | 24/40 [00:04<00:03, 4.91it/s]\n 62%|██████▎ | 25/40 [00:05<00:03, 4.91it/s]\n 65%|██████▌ | 26/40 [00:05<00:02, 4.92it/s]\n 68%|██████▊ | 27/40 [00:05<00:02, 4.92it/s]\n 70%|███████ | 28/40 [00:05<00:02, 4.92it/s]\n 72%|███████▎ | 29/40 [00:05<00:02, 4.91it/s]\n 75%|███████▌ | 30/40 [00:06<00:02, 4.92it/s]\n 78%|███████▊ | 31/40 [00:06<00:01, 4.92it/s]\n 80%|████████ | 32/40 [00:06<00:01, 4.94it/s]\n 82%|████████▎ | 33/40 [00:06<00:01, 4.95it/s]\n 85%|████████▌ | 34/40 [00:06<00:01, 4.95it/s]\n 88%|████████▊ | 35/40 [00:07<00:01, 4.95it/s]\n 90%|█████████ | 36/40 [00:07<00:00, 4.94it/s]\n 92%|█████████▎| 37/40 [00:07<00:00, 4.94it/s]\n 95%|█████████▌| 38/40 [00:07<00:00, 4.94it/s]\n 98%|█████████▊| 39/40 [00:07<00:00, 4.94it/s]\n100%|██████████| 40/40 [00:08<00:00, 4.95it/s]\n100%|██████████| 40/40 [00:08<00:00, 4.93it/s]", "metrics": { "predict_time": 9.925185, "total_time": 9.963039 }, "output": [ "https://replicate.delivery/pbxt/5qZf14QTXS13X6l5Hn77YgtzEeoLfo88UwxZUtUXPLtcC8FkA/out-0.png" ], "started_at": "2023-12-16T23:09:57.686774Z", "status": "succeeded", "urls": { "get": "https://api.replicate.com/v1/predictions/7ac6hg3bqfwqciyxeppzhf2oka", "cancel": "https://api.replicate.com/v1/predictions/7ac6hg3bqfwqciyxeppzhf2oka/cancel" }, "version": "425769673acfb18c25ad6a5eaa568387b5003bdcfeb66d059555510115478bdb" }
Generated inUsing seed: 55807 Prompt: 1girl, dragon txt2img mode 0%| | 0/40 [00:00<?, ?it/s] 2%|▎ | 1/40 [00:00<00:07, 5.02it/s] 5%|▌ | 2/40 [00:00<00:07, 4.99it/s] 8%|▊ | 3/40 [00:00<00:07, 4.98it/s] 10%|█ | 4/40 [00:00<00:07, 4.97it/s] 12%|█▎ | 5/40 [00:01<00:07, 4.94it/s] 15%|█▌ | 6/40 [00:01<00:06, 4.94it/s] 18%|█▊ | 7/40 [00:01<00:06, 4.94it/s] 20%|██ | 8/40 [00:01<00:06, 4.95it/s] 22%|██▎ | 9/40 [00:01<00:06, 4.94it/s] 25%|██▌ | 10/40 [00:02<00:06, 4.93it/s] 28%|██▊ | 11/40 [00:02<00:05, 4.93it/s] 30%|███ | 12/40 [00:02<00:05, 4.93it/s] 32%|███▎ | 13/40 [00:02<00:05, 4.93it/s] 35%|███▌ | 14/40 [00:02<00:05, 4.93it/s] 38%|███▊ | 15/40 [00:03<00:05, 4.93it/s] 40%|████ | 16/40 [00:03<00:04, 4.93it/s] 42%|████▎ | 17/40 [00:03<00:04, 4.92it/s] 45%|████▌ | 18/40 [00:03<00:04, 4.92it/s] 48%|████▊ | 19/40 [00:03<00:04, 4.92it/s] 50%|█████ | 20/40 [00:04<00:04, 4.92it/s] 52%|█████▎ | 21/40 [00:04<00:03, 4.92it/s] 55%|█████▌ | 22/40 [00:04<00:03, 4.93it/s] 57%|█████▊ | 23/40 [00:04<00:03, 4.92it/s] 60%|██████ | 24/40 [00:04<00:03, 4.91it/s] 62%|██████▎ | 25/40 [00:05<00:03, 4.91it/s] 65%|██████▌ | 26/40 [00:05<00:02, 4.92it/s] 68%|██████▊ | 27/40 [00:05<00:02, 4.92it/s] 70%|███████ | 28/40 [00:05<00:02, 4.92it/s] 72%|███████▎ | 29/40 [00:05<00:02, 4.91it/s] 75%|███████▌ | 30/40 [00:06<00:02, 4.92it/s] 78%|███████▊ | 31/40 [00:06<00:01, 4.92it/s] 80%|████████ | 32/40 [00:06<00:01, 4.94it/s] 82%|████████▎ | 33/40 [00:06<00:01, 4.95it/s] 85%|████████▌ | 34/40 [00:06<00:01, 4.95it/s] 88%|████████▊ | 35/40 [00:07<00:01, 4.95it/s] 90%|█████████ | 36/40 [00:07<00:00, 4.94it/s] 92%|█████████▎| 37/40 [00:07<00:00, 4.94it/s] 95%|█████████▌| 38/40 [00:07<00:00, 4.94it/s] 98%|█████████▊| 39/40 [00:07<00:00, 4.94it/s] 100%|██████████| 40/40 [00:08<00:00, 4.95it/s] 100%|██████████| 40/40 [00:08<00:00, 4.93it/s]
Prediction
asiryan/blue-pencil-xl-v2:06db33e3cd56700e2b0de541e65e2fc377604bebc97eb87b40e1d190fafa7ef4IDdryujtlbrzim7imdszicj44a2mStatusSucceededSourceAPIHardwareA40 (Large)Total durationCreatedInput
- seed
- 2089584936
- width
- 1024
- height
- 1024
- prompt
- anime, illustration, sketch, girl, little smile, scenery, seaside, wind
- strength
- 0.75
- guidance_scale
- 7.5
- num_inference_steps
- 50
{ "seed": 2089584936, "width": 1024, "height": 1024, "prompt": "anime, illustration, sketch, girl, little smile, scenery, seaside, wind", "strength": 0.75, "guidance_scale": 7.5, "num_inference_steps": 50 }
Install Replicate’s Node.js client library:npm install replicate
Import and set up the client:import Replicate from "replicate"; const replicate = new Replicate({ auth: process.env.REPLICATE_API_TOKEN, });
Run asiryan/blue-pencil-xl-v2 using Replicate’s API. Check out the model's schema for an overview of inputs and outputs.
const output = await replicate.run( "asiryan/blue-pencil-xl-v2:06db33e3cd56700e2b0de541e65e2fc377604bebc97eb87b40e1d190fafa7ef4", { input: { seed: 2089584936, width: 1024, height: 1024, prompt: "anime, illustration, sketch, girl, little smile, scenery, seaside, wind", strength: 0.75, guidance_scale: 7.5, 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 asiryan/blue-pencil-xl-v2 using Replicate’s API. Check out the model's schema for an overview of inputs and outputs.
output = replicate.run( "asiryan/blue-pencil-xl-v2:06db33e3cd56700e2b0de541e65e2fc377604bebc97eb87b40e1d190fafa7ef4", input={ "seed": 2089584936, "width": 1024, "height": 1024, "prompt": "anime, illustration, sketch, girl, little smile, scenery, seaside, wind", "strength": 0.75, "guidance_scale": 7.5, "num_inference_steps": 50 } ) print(output)
To learn more, take a look at the guide on getting started with Python.
Run asiryan/blue-pencil-xl-v2 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": "asiryan/blue-pencil-xl-v2:06db33e3cd56700e2b0de541e65e2fc377604bebc97eb87b40e1d190fafa7ef4", "input": { "seed": 2089584936, "width": 1024, "height": 1024, "prompt": "anime, illustration, sketch, girl, little smile, scenery, seaside, wind", "strength": 0.75, "guidance_scale": 7.5, "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-12-16T23:36:51.621039Z", "created_at": "2023-12-16T23:34:59.628190Z", "data_removed": false, "error": null, "id": "dryujtlbrzim7imdszicj44a2m", "input": { "seed": 2089584936, "width": 1024, "height": 1024, "prompt": "anime, illustration, sketch, girl, little smile, scenery, seaside, wind", "strength": 0.75, "guidance_scale": 7.5, "num_inference_steps": 50 }, "logs": "Using seed: 2089584936\nPrompt: anime, illustration, sketch, girl, little smile, scenery, seaside, wind\ntxt2img mode\n 0%| | 0/50 [00:00<?, ?it/s]\n 2%|▏ | 1/50 [00:00<00:45, 1.07it/s]\n 4%|▍ | 2/50 [00:01<00:24, 2.00it/s]\n 6%|▌ | 3/50 [00:01<00:17, 2.76it/s]\n 8%|▊ | 4/50 [00:01<00:13, 3.35it/s]\n 10%|█ | 5/50 [00:01<00:11, 3.80it/s]\n 12%|█▏ | 6/50 [00:01<00:10, 4.14it/s]\n 14%|█▍ | 7/50 [00:02<00:09, 4.39it/s]\n 16%|█▌ | 8/50 [00:02<00:09, 4.57it/s]\n 18%|█▊ | 9/50 [00:02<00:08, 4.69it/s]\n 20%|██ | 10/50 [00:02<00:08, 4.77it/s]\n 22%|██▏ | 11/50 [00:02<00:08, 4.83it/s]\n 24%|██▍ | 12/50 [00:03<00:07, 4.88it/s]\n 26%|██▌ | 13/50 [00:03<00:07, 4.92it/s]\n 28%|██▊ | 14/50 [00:03<00:07, 4.94it/s]\n 30%|███ | 15/50 [00:03<00:07, 4.95it/s]\n 32%|███▏ | 16/50 [00:03<00:06, 4.96it/s]\n 34%|███▍ | 17/50 [00:04<00:06, 4.96it/s]\n 36%|███▌ | 18/50 [00:04<00:06, 4.97it/s]\n 38%|███▊ | 19/50 [00:04<00:06, 4.98it/s]\n 40%|████ | 20/50 [00:04<00:06, 4.99it/s]\n 42%|████▏ | 21/50 [00:04<00:05, 4.99it/s]\n 44%|████▍ | 22/50 [00:05<00:05, 4.98it/s]\n 46%|████▌ | 23/50 [00:05<00:05, 4.98it/s]\n 48%|████▊ | 24/50 [00:05<00:05, 4.98it/s]\n 50%|█████ | 25/50 [00:05<00:05, 4.98it/s]\n 52%|█████▏ | 26/50 [00:05<00:04, 4.98it/s]\n 54%|█████▍ | 27/50 [00:06<00:04, 4.98it/s]\n 56%|█████▌ | 28/50 [00:06<00:04, 4.97it/s]\n 58%|█████▊ | 29/50 [00:06<00:04, 4.97it/s]\n 60%|██████ | 30/50 [00:06<00:04, 4.97it/s]\n 62%|██████▏ | 31/50 [00:06<00:03, 4.97it/s]\n 64%|██████▍ | 32/50 [00:07<00:03, 4.96it/s]\n 66%|██████▌ | 33/50 [00:07<00:03, 4.96it/s]\n 68%|██████▊ | 34/50 [00:07<00:03, 4.96it/s]\n 70%|███████ | 35/50 [00:07<00:03, 4.96it/s]\n 72%|███████▏ | 36/50 [00:07<00:02, 4.96it/s]\n 74%|███████▍ | 37/50 [00:08<00:02, 4.96it/s]\n 76%|███████▌ | 38/50 [00:08<00:02, 4.96it/s]\n 78%|███████▊ | 39/50 [00:08<00:02, 4.97it/s]\n 80%|████████ | 40/50 [00:08<00:02, 4.97it/s]\n 82%|████████▏ | 41/50 [00:08<00:01, 4.97it/s]\n 84%|████████▍ | 42/50 [00:09<00:01, 4.96it/s]\n 86%|████████▌ | 43/50 [00:09<00:01, 4.96it/s]\n 88%|████████▊ | 44/50 [00:09<00:01, 4.95it/s]\n 90%|█████████ | 45/50 [00:09<00:01, 4.96it/s]\n 92%|█████████▏| 46/50 [00:09<00:00, 4.96it/s]\n 94%|█████████▍| 47/50 [00:10<00:00, 4.96it/s]\n 96%|█████████▌| 48/50 [00:10<00:00, 4.96it/s]\n 98%|█████████▊| 49/50 [00:10<00:00, 4.96it/s]\n100%|██████████| 50/50 [00:10<00:00, 4.96it/s]\n100%|██████████| 50/50 [00:10<00:00, 4.64it/s]", "metrics": { "predict_time": 13.301593, "total_time": 111.992849 }, "output": [ "https://replicate.delivery/pbxt/TqPFjy8QykJWJNuD12zGKpOojMnRe9ehSTymsYCsUztSaeFkA/out-0.png" ], "started_at": "2023-12-16T23:36:38.319446Z", "status": "succeeded", "urls": { "get": "https://api.replicate.com/v1/predictions/dryujtlbrzim7imdszicj44a2m", "cancel": "https://api.replicate.com/v1/predictions/dryujtlbrzim7imdszicj44a2m/cancel" }, "version": "06db33e3cd56700e2b0de541e65e2fc377604bebc97eb87b40e1d190fafa7ef4" }
Generated inUsing seed: 2089584936 Prompt: anime, illustration, sketch, girl, little smile, scenery, seaside, wind txt2img mode 0%| | 0/50 [00:00<?, ?it/s] 2%|▏ | 1/50 [00:00<00:45, 1.07it/s] 4%|▍ | 2/50 [00:01<00:24, 2.00it/s] 6%|▌ | 3/50 [00:01<00:17, 2.76it/s] 8%|▊ | 4/50 [00:01<00:13, 3.35it/s] 10%|█ | 5/50 [00:01<00:11, 3.80it/s] 12%|█▏ | 6/50 [00:01<00:10, 4.14it/s] 14%|█▍ | 7/50 [00:02<00:09, 4.39it/s] 16%|█▌ | 8/50 [00:02<00:09, 4.57it/s] 18%|█▊ | 9/50 [00:02<00:08, 4.69it/s] 20%|██ | 10/50 [00:02<00:08, 4.77it/s] 22%|██▏ | 11/50 [00:02<00:08, 4.83it/s] 24%|██▍ | 12/50 [00:03<00:07, 4.88it/s] 26%|██▌ | 13/50 [00:03<00:07, 4.92it/s] 28%|██▊ | 14/50 [00:03<00:07, 4.94it/s] 30%|███ | 15/50 [00:03<00:07, 4.95it/s] 32%|███▏ | 16/50 [00:03<00:06, 4.96it/s] 34%|███▍ | 17/50 [00:04<00:06, 4.96it/s] 36%|███▌ | 18/50 [00:04<00:06, 4.97it/s] 38%|███▊ | 19/50 [00:04<00:06, 4.98it/s] 40%|████ | 20/50 [00:04<00:06, 4.99it/s] 42%|████▏ | 21/50 [00:04<00:05, 4.99it/s] 44%|████▍ | 22/50 [00:05<00:05, 4.98it/s] 46%|████▌ | 23/50 [00:05<00:05, 4.98it/s] 48%|████▊ | 24/50 [00:05<00:05, 4.98it/s] 50%|█████ | 25/50 [00:05<00:05, 4.98it/s] 52%|█████▏ | 26/50 [00:05<00:04, 4.98it/s] 54%|█████▍ | 27/50 [00:06<00:04, 4.98it/s] 56%|█████▌ | 28/50 [00:06<00:04, 4.97it/s] 58%|█████▊ | 29/50 [00:06<00:04, 4.97it/s] 60%|██████ | 30/50 [00:06<00:04, 4.97it/s] 62%|██████▏ | 31/50 [00:06<00:03, 4.97it/s] 64%|██████▍ | 32/50 [00:07<00:03, 4.96it/s] 66%|██████▌ | 33/50 [00:07<00:03, 4.96it/s] 68%|██████▊ | 34/50 [00:07<00:03, 4.96it/s] 70%|███████ | 35/50 [00:07<00:03, 4.96it/s] 72%|███████▏ | 36/50 [00:07<00:02, 4.96it/s] 74%|███████▍ | 37/50 [00:08<00:02, 4.96it/s] 76%|███████▌ | 38/50 [00:08<00:02, 4.96it/s] 78%|███████▊ | 39/50 [00:08<00:02, 4.97it/s] 80%|████████ | 40/50 [00:08<00:02, 4.97it/s] 82%|████████▏ | 41/50 [00:08<00:01, 4.97it/s] 84%|████████▍ | 42/50 [00:09<00:01, 4.96it/s] 86%|████████▌ | 43/50 [00:09<00:01, 4.96it/s] 88%|████████▊ | 44/50 [00:09<00:01, 4.95it/s] 90%|█████████ | 45/50 [00:09<00:01, 4.96it/s] 92%|█████████▏| 46/50 [00:09<00:00, 4.96it/s] 94%|█████████▍| 47/50 [00:10<00:00, 4.96it/s] 96%|█████████▌| 48/50 [00:10<00:00, 4.96it/s] 98%|█████████▊| 49/50 [00:10<00:00, 4.96it/s] 100%|██████████| 50/50 [00:10<00:00, 4.96it/s] 100%|██████████| 50/50 [00:10<00:00, 4.64it/s]
Want to make some of these yourself?
Run this model