grandlineai
/
instant-id-artistic
InstantID : Zero-shot Identity-Preserving Generation in Seconds. Using Dreamshaper-XL as the base model to encourage artistic generations
Prediction
grandlineai/instant-id-artistic:9cad10c7IDyizfs7db46aiwojqqow3crrwjiStatusSucceededSourceWebHardwareA40Total durationCreatedInput
- width
- 640
- height
- 640
- prompt
- In Casey Baugh's evocative style, art of a beautiful young girl cyborg with long brown hair, futuristic, scifi, intricate, elegant, highly detailed, majestic, Baugh's brushwork infuses the painting with a unique combination of realism and abstraction, greg rutkowski, surreal gold filigree, broken glass, (masterpiece, sidelighting, finely detailed beautiful eyes: 1.2), hdr, realistic painting, natural skin, textured skin, closed mouth, crystal eyes, butterfly filigree, chest armor, eye makeup, robot joints, long hair moved by the wind, window facing to another world, Baugh's distinctive style captures the essence of the girl's enigmatic nature, inviting viewers to explore the depths of her soul, award winning art
- guidance_scale
- 5
- negative_prompt
- ugly, deformed, noisy, blurry, low contrast, text, BadDream, 3d, cgi, render, fake, anime, open mouth, big forehead, long neck
- ip_adapter_scale
- 0.8
- num_inference_steps
- 30
- controlnet_conditioning_scale
- 0.8
{ "image": "https://replicate.delivery/pbxt/KHRI4GBd3FevVULAtdu7JySdF17BAXDk1bzIZeZoZ78NXXzY/chipu.jpeg", "width": 640, "height": 640, "prompt": "In Casey Baugh's evocative style, art of a beautiful young girl cyborg with long brown hair, futuristic, scifi, intricate, elegant, highly detailed, majestic, Baugh's brushwork infuses the painting with a unique combination of realism and abstraction, greg rutkowski, surreal gold filigree, broken glass, (masterpiece, sidelighting, finely detailed beautiful eyes: 1.2), hdr, realistic painting, natural skin, textured skin, closed mouth, crystal eyes, butterfly filigree, chest armor, eye makeup, robot joints, long hair moved by the wind, window facing to another world, Baugh's distinctive style captures the essence of the girl's enigmatic nature, inviting viewers to explore the depths of her soul, award winning art", "guidance_scale": 5, "negative_prompt": "ugly, deformed, noisy, blurry, low contrast, text, BadDream, 3d, cgi, render, fake, anime, open mouth, big forehead, long neck", "ip_adapter_scale": 0.8, "num_inference_steps": 30, "controlnet_conditioning_scale": 0.8 }
Install Replicate’s Node.js client library:npm install replicate
Set theREPLICATE_API_TOKEN
environment variable:export REPLICATE_API_TOKEN=<paste-your-token-here>
Find your API token in your account settings.
Import and set up the client:import Replicate from "replicate"; const replicate = new Replicate({ auth: process.env.REPLICATE_API_TOKEN, });
Run grandlineai/instant-id-artistic using Replicate’s API. Check out the model's schema for an overview of inputs and outputs.
const output = await replicate.run( "grandlineai/instant-id-artistic:9cad10c7870bac9d6b587f406aef28208f964454abff5c4152f7dec9b0212a9a", { input: { image: "https://replicate.delivery/pbxt/KHRI4GBd3FevVULAtdu7JySdF17BAXDk1bzIZeZoZ78NXXzY/chipu.jpeg", width: 640, height: 640, prompt: "In Casey Baugh's evocative style, art of a beautiful young girl cyborg with long brown hair, futuristic, scifi, intricate, elegant, highly detailed, majestic, Baugh's brushwork infuses the painting with a unique combination of realism and abstraction, greg rutkowski, surreal gold filigree, broken glass, (masterpiece, sidelighting, finely detailed beautiful eyes: 1.2), hdr, realistic painting, natural skin, textured skin, closed mouth, crystal eyes, butterfly filigree, chest armor, eye makeup, robot joints, long hair moved by the wind, window facing to another world, Baugh's distinctive style captures the essence of the girl's enigmatic nature, inviting viewers to explore the depths of her soul, award winning art", guidance_scale: 5, negative_prompt: "ugly, deformed, noisy, blurry, low contrast, text, BadDream, 3d, cgi, render, fake, anime, open mouth, big forehead, long neck", ip_adapter_scale: 0.8, num_inference_steps: 30, controlnet_conditioning_scale: 0.8 } } ); console.log(output);
To learn more, take a look at the guide on getting started with Node.js.
Install Replicate’s Python client library:pip install replicate
Set theREPLICATE_API_TOKEN
environment variable:export REPLICATE_API_TOKEN=<paste-your-token-here>
Find your API token in your account settings.
Import the client:import replicate
Run grandlineai/instant-id-artistic using Replicate’s API. Check out the model's schema for an overview of inputs and outputs.
output = replicate.run( "grandlineai/instant-id-artistic:9cad10c7870bac9d6b587f406aef28208f964454abff5c4152f7dec9b0212a9a", input={ "image": "https://replicate.delivery/pbxt/KHRI4GBd3FevVULAtdu7JySdF17BAXDk1bzIZeZoZ78NXXzY/chipu.jpeg", "width": 640, "height": 640, "prompt": "In Casey Baugh's evocative style, art of a beautiful young girl cyborg with long brown hair, futuristic, scifi, intricate, elegant, highly detailed, majestic, Baugh's brushwork infuses the painting with a unique combination of realism and abstraction, greg rutkowski, surreal gold filigree, broken glass, (masterpiece, sidelighting, finely detailed beautiful eyes: 1.2), hdr, realistic painting, natural skin, textured skin, closed mouth, crystal eyes, butterfly filigree, chest armor, eye makeup, robot joints, long hair moved by the wind, window facing to another world, Baugh's distinctive style captures the essence of the girl's enigmatic nature, inviting viewers to explore the depths of her soul, award winning art", "guidance_scale": 5, "negative_prompt": "ugly, deformed, noisy, blurry, low contrast, text, BadDream, 3d, cgi, render, fake, anime, open mouth, big forehead, long neck", "ip_adapter_scale": 0.8, "num_inference_steps": 30, "controlnet_conditioning_scale": 0.8 } ) print(output)
To learn more, take a look at the guide on getting started with Python.
Set theREPLICATE_API_TOKEN
environment variable:export REPLICATE_API_TOKEN=<paste-your-token-here>
Find your API token in your account settings.
Run grandlineai/instant-id-artistic 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": "9cad10c7870bac9d6b587f406aef28208f964454abff5c4152f7dec9b0212a9a", "input": { "image": "https://replicate.delivery/pbxt/KHRI4GBd3FevVULAtdu7JySdF17BAXDk1bzIZeZoZ78NXXzY/chipu.jpeg", "width": 640, "height": 640, "prompt": "In Casey Baugh\'s evocative style, art of a beautiful young girl cyborg with long brown hair, futuristic, scifi, intricate, elegant, highly detailed, majestic, Baugh\'s brushwork infuses the painting with a unique combination of realism and abstraction, greg rutkowski, surreal gold filigree, broken glass, (masterpiece, sidelighting, finely detailed beautiful eyes: 1.2), hdr, realistic painting, natural skin, textured skin, closed mouth, crystal eyes, butterfly filigree, chest armor, eye makeup, robot joints, long hair moved by the wind, window facing to another world, Baugh\'s distinctive style captures the essence of the girl\'s enigmatic nature, inviting viewers to explore the depths of her soul, award winning art", "guidance_scale": 5, "negative_prompt": "ugly, deformed, noisy, blurry, low contrast, text, BadDream, 3d, cgi, render, fake, anime, open mouth, big forehead, long neck", "ip_adapter_scale": 0.8, "num_inference_steps": 30, "controlnet_conditioning_scale": 0.8 } }' \ https://api.replicate.com/v1/predictions
To learn more, take a look at Replicate’s HTTP API reference docs.
Output
{ "completed_at": "2024-01-24T06:39:10.178051Z", "created_at": "2024-01-24T06:38:38.895111Z", "data_removed": false, "error": null, "id": "yizfs7db46aiwojqqow3crrwji", "input": { "image": "https://replicate.delivery/pbxt/KHRI4GBd3FevVULAtdu7JySdF17BAXDk1bzIZeZoZ78NXXzY/chipu.jpeg", "width": 640, "height": 640, "prompt": "In Casey Baugh's evocative style, art of a beautiful young girl cyborg with long brown hair, futuristic, scifi, intricate, elegant, highly detailed, majestic, Baugh's brushwork infuses the painting with a unique combination of realism and abstraction, greg rutkowski, surreal gold filigree, broken glass, (masterpiece, sidelighting, finely detailed beautiful eyes: 1.2), hdr, realistic painting, natural skin, textured skin, closed mouth, crystal eyes, butterfly filigree, chest armor, eye makeup, robot joints, long hair moved by the wind, window facing to another world, Baugh's distinctive style captures the essence of the girl's enigmatic nature, inviting viewers to explore the depths of her soul, award winning art", "guidance_scale": 5, "negative_prompt": "ugly, deformed, noisy, blurry, low contrast, text, BadDream, 3d, cgi, render, fake, anime, open mouth, big forehead, long neck", "ip_adapter_scale": 0.8, "num_inference_steps": 30, "controlnet_conditioning_scale": 0.8 }, "logs": "Token indices sequence length is longer than the specified maximum sequence length for this model (152 > 77). Running this sequence through the model will result in indexing errors\nThe following part of your input was truncated because CLIP can only handle sequences up to 77 tokens: [\"1. 2 ), hdr, realistic painting, natural skin, textured skin, closed mouth, crystal eyes, butterfly filigree, chest armor, eye makeup, robot joints, long hair moved by the wind, window facing to another world, baugh's distinctive style captures the essence of the girl's enigmatic nature, inviting viewers to explore the depths of her soul, award winning art\"]\nToken indices sequence length is longer than the specified maximum sequence length for this model (152 > 77). Running this sequence through the model will result in indexing errors\nThe following part of your input was truncated because CLIP can only handle sequences up to 77 tokens: [\"1. 2 ), hdr, realistic painting, natural skin, textured skin, closed mouth, crystal eyes, butterfly filigree, chest armor, eye makeup, robot joints, long hair moved by the wind, window facing to another world, baugh's distinctive style captures the essence of the girl's enigmatic nature, inviting viewers to explore the depths of her soul, award winning art\"]\n 0%| | 0/30 [00:00<?, ?it/s]\n 3%|▎ | 1/30 [00:00<00:14, 2.02it/s]\n 7%|▋ | 2/30 [00:00<00:13, 2.01it/s]\n 10%|█ | 3/30 [00:01<00:13, 2.01it/s]\n 13%|█▎ | 4/30 [00:01<00:12, 2.01it/s]\n 17%|█▋ | 5/30 [00:02<00:12, 2.00it/s]\n 20%|██ | 6/30 [00:02<00:11, 2.00it/s]\n 23%|██▎ | 7/30 [00:03<00:11, 2.00it/s]\n 27%|██▋ | 8/30 [00:03<00:10, 2.00it/s]\n 30%|███ | 9/30 [00:04<00:10, 2.00it/s]\n 33%|███▎ | 10/30 [00:04<00:09, 2.00it/s]\n 37%|███▋ | 11/30 [00:05<00:09, 2.00it/s]\n 40%|████ | 12/30 [00:05<00:09, 2.00it/s]\n 43%|████▎ | 13/30 [00:06<00:08, 2.00it/s]\n 47%|████▋ | 14/30 [00:06<00:08, 2.00it/s]\n 50%|█████ | 15/30 [00:07<00:07, 2.00it/s]\n 53%|█████▎ | 16/30 [00:08<00:07, 1.99it/s]\n 57%|█████▋ | 17/30 [00:08<00:06, 1.99it/s]\n 60%|██████ | 18/30 [00:09<00:06, 1.99it/s]\n 63%|██████▎ | 19/30 [00:09<00:05, 1.99it/s]\n 67%|██████▋ | 20/30 [00:10<00:05, 1.99it/s]\n 70%|███████ | 21/30 [00:10<00:04, 1.99it/s]\n 73%|███████▎ | 22/30 [00:11<00:04, 1.99it/s]\n 77%|███████▋ | 23/30 [00:11<00:03, 1.99it/s]\n 80%|████████ | 24/30 [00:12<00:03, 1.99it/s]\n 83%|████████▎ | 25/30 [00:12<00:02, 1.99it/s]\n 87%|████████▋ | 26/30 [00:13<00:02, 1.99it/s]\n 90%|█████████ | 27/30 [00:13<00:01, 1.99it/s]\n 93%|█████████▎| 28/30 [00:14<00:01, 1.99it/s]\n 97%|█████████▋| 29/30 [00:14<00:00, 1.99it/s]\n100%|██████████| 30/30 [00:15<00:00, 1.99it/s]\n100%|██████████| 30/30 [00:15<00:00, 2.00it/s]", "metrics": { "predict_time": 31.245257, "total_time": 31.28294 }, "output": "https://replicate.delivery/pbxt/NUHod1O62H7jOBt0eW0oXkl0e6tdWDuKWMfObtQyadraUMfIB/result.jpg", "started_at": "2024-01-24T06:38:38.932794Z", "status": "succeeded", "urls": { "get": "https://api.replicate.com/v1/predictions/yizfs7db46aiwojqqow3crrwji", "cancel": "https://api.replicate.com/v1/predictions/yizfs7db46aiwojqqow3crrwji/cancel" }, "version": "9cad10c7870bac9d6b587f406aef28208f964454abff5c4152f7dec9b0212a9a" }
Generated inToken indices sequence length is longer than the specified maximum sequence length for this model (152 > 77). Running this sequence through the model will result in indexing errors The following part of your input was truncated because CLIP can only handle sequences up to 77 tokens: ["1. 2 ), hdr, realistic painting, natural skin, textured skin, closed mouth, crystal eyes, butterfly filigree, chest armor, eye makeup, robot joints, long hair moved by the wind, window facing to another world, baugh's distinctive style captures the essence of the girl's enigmatic nature, inviting viewers to explore the depths of her soul, award winning art"] Token indices sequence length is longer than the specified maximum sequence length for this model (152 > 77). Running this sequence through the model will result in indexing errors The following part of your input was truncated because CLIP can only handle sequences up to 77 tokens: ["1. 2 ), hdr, realistic painting, natural skin, textured skin, closed mouth, crystal eyes, butterfly filigree, chest armor, eye makeup, robot joints, long hair moved by the wind, window facing to another world, baugh's distinctive style captures the essence of the girl's enigmatic nature, inviting viewers to explore the depths of her soul, award winning art"] 0%| | 0/30 [00:00<?, ?it/s] 3%|▎ | 1/30 [00:00<00:14, 2.02it/s] 7%|▋ | 2/30 [00:00<00:13, 2.01it/s] 10%|█ | 3/30 [00:01<00:13, 2.01it/s] 13%|█▎ | 4/30 [00:01<00:12, 2.01it/s] 17%|█▋ | 5/30 [00:02<00:12, 2.00it/s] 20%|██ | 6/30 [00:02<00:11, 2.00it/s] 23%|██▎ | 7/30 [00:03<00:11, 2.00it/s] 27%|██▋ | 8/30 [00:03<00:10, 2.00it/s] 30%|███ | 9/30 [00:04<00:10, 2.00it/s] 33%|███▎ | 10/30 [00:04<00:09, 2.00it/s] 37%|███▋ | 11/30 [00:05<00:09, 2.00it/s] 40%|████ | 12/30 [00:05<00:09, 2.00it/s] 43%|████▎ | 13/30 [00:06<00:08, 2.00it/s] 47%|████▋ | 14/30 [00:06<00:08, 2.00it/s] 50%|█████ | 15/30 [00:07<00:07, 2.00it/s] 53%|█████▎ | 16/30 [00:08<00:07, 1.99it/s] 57%|█████▋ | 17/30 [00:08<00:06, 1.99it/s] 60%|██████ | 18/30 [00:09<00:06, 1.99it/s] 63%|██████▎ | 19/30 [00:09<00:05, 1.99it/s] 67%|██████▋ | 20/30 [00:10<00:05, 1.99it/s] 70%|███████ | 21/30 [00:10<00:04, 1.99it/s] 73%|███████▎ | 22/30 [00:11<00:04, 1.99it/s] 77%|███████▋ | 23/30 [00:11<00:03, 1.99it/s] 80%|████████ | 24/30 [00:12<00:03, 1.99it/s] 83%|████████▎ | 25/30 [00:12<00:02, 1.99it/s] 87%|████████▋ | 26/30 [00:13<00:02, 1.99it/s] 90%|█████████ | 27/30 [00:13<00:01, 1.99it/s] 93%|█████████▎| 28/30 [00:14<00:01, 1.99it/s] 97%|█████████▋| 29/30 [00:14<00:00, 1.99it/s] 100%|██████████| 30/30 [00:15<00:00, 1.99it/s] 100%|██████████| 30/30 [00:15<00:00, 2.00it/s]
Prediction
grandlineai/instant-id-artistic:9cad10c7IDcs7egldbeu4a5tjhs4jpktc26yStatusSucceededSourceWebHardwareA40Total durationCreatedInput
- width
- 640
- height
- 640
- prompt
- Create an image of a happy woman in soft pastel clothes under blooming cherry blossom trees. The scene is filled with soft high_key lighting, highlighting the gentle rose petals and happy expressions on their faces. The composition should have a shallow depth of field and a romantic spring atmosphere, high quality
- guidance_scale
- 5
- negative_prompt
- bad hands, older, eyes, crowfoot, crows feet, crows foot, old, wrinkles, (lowres, low quality, worst quality:1.2), (text:1.2), watermark, painting, drawing, illustration, glitch, deformed, mutated, cross-eyed, ugly, disfigured (lowres, low quality, worst quality:1.2), (text:1.2), watermark, painting, drawing, illustration, glitch, deformed, mutated, cross-eyed, ugly, disfigured
- ip_adapter_scale
- 0.8
- num_inference_steps
- 30
- controlnet_conditioning_scale
- 0.8
{ "image": "https://replicate.delivery/pbxt/KHRI4GBd3FevVULAtdu7JySdF17BAXDk1bzIZeZoZ78NXXzY/chipu.jpeg", "width": 640, "height": 640, "prompt": "Create an image of a happy woman in soft pastel clothes under blooming cherry blossom trees. The scene is filled with soft high_key lighting, highlighting the gentle rose petals and happy expressions on their faces. The composition should have a shallow depth of field and a romantic spring atmosphere, high quality", "guidance_scale": 5, "negative_prompt": "bad hands, older, eyes, crowfoot, crows feet, crows foot, old, wrinkles, (lowres, low quality, worst quality:1.2), (text:1.2), watermark, painting, drawing, illustration, glitch, deformed, mutated, cross-eyed, ugly, disfigured (lowres, low quality, worst quality:1.2), (text:1.2), watermark, painting, drawing, illustration, glitch, deformed, mutated, cross-eyed, ugly, disfigured", "ip_adapter_scale": 0.8, "num_inference_steps": 30, "controlnet_conditioning_scale": 0.8 }
Install Replicate’s Node.js client library:npm install replicate
Set theREPLICATE_API_TOKEN
environment variable:export REPLICATE_API_TOKEN=<paste-your-token-here>
Find your API token in your account settings.
Import and set up the client:import Replicate from "replicate"; const replicate = new Replicate({ auth: process.env.REPLICATE_API_TOKEN, });
Run grandlineai/instant-id-artistic using Replicate’s API. Check out the model's schema for an overview of inputs and outputs.
const output = await replicate.run( "grandlineai/instant-id-artistic:9cad10c7870bac9d6b587f406aef28208f964454abff5c4152f7dec9b0212a9a", { input: { image: "https://replicate.delivery/pbxt/KHRI4GBd3FevVULAtdu7JySdF17BAXDk1bzIZeZoZ78NXXzY/chipu.jpeg", width: 640, height: 640, prompt: "Create an image of a happy woman in soft pastel clothes under blooming cherry blossom trees. The scene is filled with soft high_key lighting, highlighting the gentle rose petals and happy expressions on their faces. The composition should have a shallow depth of field and a romantic spring atmosphere, high quality", guidance_scale: 5, negative_prompt: "bad hands, older, eyes, crowfoot, crows feet, crows foot, old, wrinkles, (lowres, low quality, worst quality:1.2), (text:1.2), watermark, painting, drawing, illustration, glitch, deformed, mutated, cross-eyed, ugly, disfigured (lowres, low quality, worst quality:1.2), (text:1.2), watermark, painting, drawing, illustration, glitch, deformed, mutated, cross-eyed, ugly, disfigured", ip_adapter_scale: 0.8, num_inference_steps: 30, controlnet_conditioning_scale: 0.8 } } ); console.log(output);
To learn more, take a look at the guide on getting started with Node.js.
Install Replicate’s Python client library:pip install replicate
Set theREPLICATE_API_TOKEN
environment variable:export REPLICATE_API_TOKEN=<paste-your-token-here>
Find your API token in your account settings.
Import the client:import replicate
Run grandlineai/instant-id-artistic using Replicate’s API. Check out the model's schema for an overview of inputs and outputs.
output = replicate.run( "grandlineai/instant-id-artistic:9cad10c7870bac9d6b587f406aef28208f964454abff5c4152f7dec9b0212a9a", input={ "image": "https://replicate.delivery/pbxt/KHRI4GBd3FevVULAtdu7JySdF17BAXDk1bzIZeZoZ78NXXzY/chipu.jpeg", "width": 640, "height": 640, "prompt": "Create an image of a happy woman in soft pastel clothes under blooming cherry blossom trees. The scene is filled with soft high_key lighting, highlighting the gentle rose petals and happy expressions on their faces. The composition should have a shallow depth of field and a romantic spring atmosphere, high quality", "guidance_scale": 5, "negative_prompt": "bad hands, older, eyes, crowfoot, crows feet, crows foot, old, wrinkles, (lowres, low quality, worst quality:1.2), (text:1.2), watermark, painting, drawing, illustration, glitch, deformed, mutated, cross-eyed, ugly, disfigured (lowres, low quality, worst quality:1.2), (text:1.2), watermark, painting, drawing, illustration, glitch, deformed, mutated, cross-eyed, ugly, disfigured", "ip_adapter_scale": 0.8, "num_inference_steps": 30, "controlnet_conditioning_scale": 0.8 } ) print(output)
To learn more, take a look at the guide on getting started with Python.
Set theREPLICATE_API_TOKEN
environment variable:export REPLICATE_API_TOKEN=<paste-your-token-here>
Find your API token in your account settings.
Run grandlineai/instant-id-artistic 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": "9cad10c7870bac9d6b587f406aef28208f964454abff5c4152f7dec9b0212a9a", "input": { "image": "https://replicate.delivery/pbxt/KHRI4GBd3FevVULAtdu7JySdF17BAXDk1bzIZeZoZ78NXXzY/chipu.jpeg", "width": 640, "height": 640, "prompt": "Create an image of a happy woman in soft pastel clothes under blooming cherry blossom trees. The scene is filled with soft high_key lighting, highlighting the gentle rose petals and happy expressions on their faces. The composition should have a shallow depth of field and a romantic spring atmosphere, high quality", "guidance_scale": 5, "negative_prompt": "bad hands, older, eyes, crowfoot, crows feet, crows foot, old, wrinkles, (lowres, low quality, worst quality:1.2), (text:1.2), watermark, painting, drawing, illustration, glitch, deformed, mutated, cross-eyed, ugly, disfigured (lowres, low quality, worst quality:1.2), (text:1.2), watermark, painting, drawing, illustration, glitch, deformed, mutated, cross-eyed, ugly, disfigured", "ip_adapter_scale": 0.8, "num_inference_steps": 30, "controlnet_conditioning_scale": 0.8 } }' \ https://api.replicate.com/v1/predictions
To learn more, take a look at Replicate’s HTTP API reference docs.
Output
{ "completed_at": "2024-01-24T05:28:28.399288Z", "created_at": "2024-01-24T05:27:54.885361Z", "data_removed": false, "error": null, "id": "cs7egldbeu4a5tjhs4jpktc26y", "input": { "image": "https://replicate.delivery/pbxt/KHRI4GBd3FevVULAtdu7JySdF17BAXDk1bzIZeZoZ78NXXzY/chipu.jpeg", "width": 640, "height": 640, "prompt": "Create an image of a happy woman in soft pastel clothes under blooming cherry blossom trees. The scene is filled with soft high_key lighting, highlighting the gentle rose petals and happy expressions on their faces. The composition should have a shallow depth of field and a romantic spring atmosphere, high quality", "guidance_scale": 5, "negative_prompt": "bad hands, older, eyes, crowfoot, crows feet, crows foot, old, wrinkles, (lowres, low quality, worst quality:1.2), (text:1.2), watermark, painting, drawing, illustration, glitch, deformed, mutated, cross-eyed, ugly, disfigured (lowres, low quality, worst quality:1.2), (text:1.2), watermark, painting, drawing, illustration, glitch, deformed, mutated, cross-eyed, ugly, disfigured", "ip_adapter_scale": 0.8, "num_inference_steps": 30, "controlnet_conditioning_scale": 0.8 }, "logs": "0%| | 0/30 [00:00<?, ?it/s]\n 3%|▎ | 1/30 [00:00<00:14, 2.00it/s]\n 7%|▋ | 2/30 [00:01<00:14, 2.00it/s]\n 10%|█ | 3/30 [00:01<00:13, 1.99it/s]\n 13%|█▎ | 4/30 [00:02<00:13, 1.99it/s]\n 17%|█▋ | 5/30 [00:02<00:12, 1.99it/s]\n 20%|██ | 6/30 [00:03<00:12, 1.99it/s]\n 23%|██▎ | 7/30 [00:03<00:11, 2.00it/s]\n 27%|██▋ | 8/30 [00:04<00:11, 2.00it/s]\n 30%|███ | 9/30 [00:04<00:10, 2.00it/s]\n 33%|███▎ | 10/30 [00:05<00:10, 2.00it/s]\n 37%|███▋ | 11/30 [00:05<00:09, 2.00it/s]\n 40%|████ | 12/30 [00:06<00:09, 2.00it/s]\n 43%|████▎ | 13/30 [00:06<00:08, 2.00it/s]\n 47%|████▋ | 14/30 [00:07<00:08, 2.00it/s]\n 50%|█████ | 15/30 [00:07<00:07, 2.00it/s]\n 53%|█████▎ | 16/30 [00:08<00:07, 1.99it/s]\n 57%|█████▋ | 17/30 [00:08<00:06, 1.99it/s]\n 60%|██████ | 18/30 [00:09<00:06, 1.99it/s]\n 63%|██████▎ | 19/30 [00:09<00:05, 1.99it/s]\n 67%|██████▋ | 20/30 [00:10<00:05, 1.99it/s]\n 70%|███████ | 21/30 [00:10<00:04, 1.99it/s]\n 73%|███████▎ | 22/30 [00:11<00:04, 1.99it/s]\n 77%|███████▋ | 23/30 [00:11<00:03, 1.99it/s]\n 80%|████████ | 24/30 [00:12<00:03, 1.99it/s]\n 83%|████████▎ | 25/30 [00:12<00:02, 1.99it/s]\n 87%|████████▋ | 26/30 [00:13<00:02, 1.99it/s]\n 90%|█████████ | 27/30 [00:13<00:01, 1.99it/s]\n 93%|█████████▎| 28/30 [00:14<00:01, 1.99it/s]\n 97%|█████████▋| 29/30 [00:14<00:00, 1.99it/s]\n100%|██████████| 30/30 [00:15<00:00, 1.99it/s]\n100%|██████████| 30/30 [00:15<00:00, 1.99it/s]", "metrics": { "predict_time": 33.47926, "total_time": 33.513927 }, "output": "https://replicate.delivery/pbxt/I7feCwIhvZnJU0wx2zlMM0GmkGfRgnS3DnCehibcG4Cyfo8RC/result.jpg", "started_at": "2024-01-24T05:27:54.920028Z", "status": "succeeded", "urls": { "get": "https://api.replicate.com/v1/predictions/cs7egldbeu4a5tjhs4jpktc26y", "cancel": "https://api.replicate.com/v1/predictions/cs7egldbeu4a5tjhs4jpktc26y/cancel" }, "version": "9cad10c7870bac9d6b587f406aef28208f964454abff5c4152f7dec9b0212a9a" }
Generated in0%| | 0/30 [00:00<?, ?it/s] 3%|▎ | 1/30 [00:00<00:14, 2.00it/s] 7%|▋ | 2/30 [00:01<00:14, 2.00it/s] 10%|█ | 3/30 [00:01<00:13, 1.99it/s] 13%|█▎ | 4/30 [00:02<00:13, 1.99it/s] 17%|█▋ | 5/30 [00:02<00:12, 1.99it/s] 20%|██ | 6/30 [00:03<00:12, 1.99it/s] 23%|██▎ | 7/30 [00:03<00:11, 2.00it/s] 27%|██▋ | 8/30 [00:04<00:11, 2.00it/s] 30%|███ | 9/30 [00:04<00:10, 2.00it/s] 33%|███▎ | 10/30 [00:05<00:10, 2.00it/s] 37%|███▋ | 11/30 [00:05<00:09, 2.00it/s] 40%|████ | 12/30 [00:06<00:09, 2.00it/s] 43%|████▎ | 13/30 [00:06<00:08, 2.00it/s] 47%|████▋ | 14/30 [00:07<00:08, 2.00it/s] 50%|█████ | 15/30 [00:07<00:07, 2.00it/s] 53%|█████▎ | 16/30 [00:08<00:07, 1.99it/s] 57%|█████▋ | 17/30 [00:08<00:06, 1.99it/s] 60%|██████ | 18/30 [00:09<00:06, 1.99it/s] 63%|██████▎ | 19/30 [00:09<00:05, 1.99it/s] 67%|██████▋ | 20/30 [00:10<00:05, 1.99it/s] 70%|███████ | 21/30 [00:10<00:04, 1.99it/s] 73%|███████▎ | 22/30 [00:11<00:04, 1.99it/s] 77%|███████▋ | 23/30 [00:11<00:03, 1.99it/s] 80%|████████ | 24/30 [00:12<00:03, 1.99it/s] 83%|████████▎ | 25/30 [00:12<00:02, 1.99it/s] 87%|████████▋ | 26/30 [00:13<00:02, 1.99it/s] 90%|█████████ | 27/30 [00:13<00:01, 1.99it/s] 93%|█████████▎| 28/30 [00:14<00:01, 1.99it/s] 97%|█████████▋| 29/30 [00:14<00:00, 1.99it/s] 100%|██████████| 30/30 [00:15<00:00, 1.99it/s] 100%|██████████| 30/30 [00:15<00:00, 1.99it/s]
Prediction
grandlineai/instant-id-artistic:9cad10c7IDnbk762lbyg5sbk5lt4vxtqo7eaStatusSucceededSourceWebHardwareA40Total durationCreatedInput
- width
- 640
- height
- 640
- prompt
- anime girl, night, blue light behind her, ((Galaxy, Lens flare)), short hair, flower field, night sky, cinematic shot. Wallpaper. (Blue color schema), detailed background, a city in the distance
- guidance_scale
- 5
- negative_prompt
- cgi, 3d render, bad quality, worst quality, text, signature, watermark, extra limbs,
- ip_adapter_scale
- 0.8
- num_inference_steps
- 30
- controlnet_conditioning_scale
- 0.8
{ "image": "https://replicate.delivery/pbxt/KHRI4GBd3FevVULAtdu7JySdF17BAXDk1bzIZeZoZ78NXXzY/chipu.jpeg", "width": 640, "height": 640, "prompt": "anime girl, night, blue light behind her, ((Galaxy, Lens flare)), short hair, flower field, night sky, cinematic shot. Wallpaper. (Blue color schema), detailed background, a city in the distance", "guidance_scale": 5, "negative_prompt": "cgi, 3d render, bad quality, worst quality, text, signature, watermark, extra limbs,", "ip_adapter_scale": 0.8, "num_inference_steps": 30, "controlnet_conditioning_scale": 0.8 }
Install Replicate’s Node.js client library:npm install replicate
Set theREPLICATE_API_TOKEN
environment variable:export REPLICATE_API_TOKEN=<paste-your-token-here>
Find your API token in your account settings.
Import and set up the client:import Replicate from "replicate"; const replicate = new Replicate({ auth: process.env.REPLICATE_API_TOKEN, });
Run grandlineai/instant-id-artistic using Replicate’s API. Check out the model's schema for an overview of inputs and outputs.
const output = await replicate.run( "grandlineai/instant-id-artistic:9cad10c7870bac9d6b587f406aef28208f964454abff5c4152f7dec9b0212a9a", { input: { image: "https://replicate.delivery/pbxt/KHRI4GBd3FevVULAtdu7JySdF17BAXDk1bzIZeZoZ78NXXzY/chipu.jpeg", width: 640, height: 640, prompt: "anime girl, night, blue light behind her, ((Galaxy, Lens flare)), short hair, flower field, night sky, cinematic shot. Wallpaper. (Blue color schema), detailed background, a city in the distance", guidance_scale: 5, negative_prompt: "cgi, 3d render, bad quality, worst quality, text, signature, watermark, extra limbs,", ip_adapter_scale: 0.8, num_inference_steps: 30, controlnet_conditioning_scale: 0.8 } } ); console.log(output);
To learn more, take a look at the guide on getting started with Node.js.
Install Replicate’s Python client library:pip install replicate
Set theREPLICATE_API_TOKEN
environment variable:export REPLICATE_API_TOKEN=<paste-your-token-here>
Find your API token in your account settings.
Import the client:import replicate
Run grandlineai/instant-id-artistic using Replicate’s API. Check out the model's schema for an overview of inputs and outputs.
output = replicate.run( "grandlineai/instant-id-artistic:9cad10c7870bac9d6b587f406aef28208f964454abff5c4152f7dec9b0212a9a", input={ "image": "https://replicate.delivery/pbxt/KHRI4GBd3FevVULAtdu7JySdF17BAXDk1bzIZeZoZ78NXXzY/chipu.jpeg", "width": 640, "height": 640, "prompt": "anime girl, night, blue light behind her, ((Galaxy, Lens flare)), short hair, flower field, night sky, cinematic shot. Wallpaper. (Blue color schema), detailed background, a city in the distance", "guidance_scale": 5, "negative_prompt": "cgi, 3d render, bad quality, worst quality, text, signature, watermark, extra limbs,", "ip_adapter_scale": 0.8, "num_inference_steps": 30, "controlnet_conditioning_scale": 0.8 } ) print(output)
To learn more, take a look at the guide on getting started with Python.
Set theREPLICATE_API_TOKEN
environment variable:export REPLICATE_API_TOKEN=<paste-your-token-here>
Find your API token in your account settings.
Run grandlineai/instant-id-artistic 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": "9cad10c7870bac9d6b587f406aef28208f964454abff5c4152f7dec9b0212a9a", "input": { "image": "https://replicate.delivery/pbxt/KHRI4GBd3FevVULAtdu7JySdF17BAXDk1bzIZeZoZ78NXXzY/chipu.jpeg", "width": 640, "height": 640, "prompt": "anime girl, night, blue light behind her, ((Galaxy, Lens flare)), short hair, flower field, night sky, cinematic shot. Wallpaper. (Blue color schema), detailed background, a city in the distance", "guidance_scale": 5, "negative_prompt": "cgi, 3d render, bad quality, worst quality, text, signature, watermark, extra limbs,", "ip_adapter_scale": 0.8, "num_inference_steps": 30, "controlnet_conditioning_scale": 0.8 } }' \ https://api.replicate.com/v1/predictions
To learn more, take a look at Replicate’s HTTP API reference docs.
Output
{ "completed_at": "2024-01-24T06:41:13.394586Z", "created_at": "2024-01-24T06:40:44.672281Z", "data_removed": false, "error": null, "id": "nbk762lbyg5sbk5lt4vxtqo7ea", "input": { "image": "https://replicate.delivery/pbxt/KHRI4GBd3FevVULAtdu7JySdF17BAXDk1bzIZeZoZ78NXXzY/chipu.jpeg", "width": 640, "height": 640, "prompt": "anime girl, night, blue light behind her, ((Galaxy, Lens flare)), short hair, flower field, night sky, cinematic shot. Wallpaper. (Blue color schema), detailed background, a city in the distance", "guidance_scale": 5, "negative_prompt": "cgi, 3d render, bad quality, worst quality, text, signature, watermark, extra limbs,", "ip_adapter_scale": 0.8, "num_inference_steps": 30, "controlnet_conditioning_scale": 0.8 }, "logs": "0%| | 0/30 [00:00<?, ?it/s]\n 3%|▎ | 1/30 [00:00<00:14, 2.01it/s]\n 7%|▋ | 2/30 [00:00<00:13, 2.01it/s]\n 10%|█ | 3/30 [00:01<00:13, 2.01it/s]\n 13%|█▎ | 4/30 [00:01<00:12, 2.00it/s]\n 17%|█▋ | 5/30 [00:02<00:12, 2.00it/s]\n 20%|██ | 6/30 [00:02<00:11, 2.00it/s]\n 23%|██▎ | 7/30 [00:03<00:11, 2.00it/s]\n 27%|██▋ | 8/30 [00:03<00:10, 2.00it/s]\n 30%|███ | 9/30 [00:04<00:10, 2.00it/s]\n 33%|███▎ | 10/30 [00:04<00:10, 2.00it/s]\n 37%|███▋ | 11/30 [00:05<00:09, 2.00it/s]\n 40%|████ | 12/30 [00:05<00:09, 2.00it/s]\n 43%|████▎ | 13/30 [00:06<00:08, 2.00it/s]\n 47%|████▋ | 14/30 [00:06<00:08, 2.00it/s]\n 50%|█████ | 15/30 [00:07<00:07, 2.00it/s]\n 53%|█████▎ | 16/30 [00:07<00:07, 2.00it/s]\n 57%|█████▋ | 17/30 [00:08<00:06, 2.00it/s]\n 60%|██████ | 18/30 [00:08<00:06, 2.00it/s]\n 63%|██████▎ | 19/30 [00:09<00:05, 2.00it/s]\n 67%|██████▋ | 20/30 [00:10<00:05, 1.99it/s]\n 70%|███████ | 21/30 [00:10<00:04, 1.99it/s]\n 73%|███████▎ | 22/30 [00:11<00:04, 1.99it/s]\n 77%|███████▋ | 23/30 [00:11<00:03, 1.99it/s]\n 80%|████████ | 24/30 [00:12<00:03, 1.99it/s]\n 83%|████████▎ | 25/30 [00:12<00:02, 1.99it/s]\n 87%|████████▋ | 26/30 [00:13<00:02, 1.99it/s]\n 90%|█████████ | 27/30 [00:13<00:01, 2.00it/s]\n 93%|█████████▎| 28/30 [00:14<00:01, 2.00it/s]\n 97%|█████████▋| 29/30 [00:14<00:00, 2.00it/s]\n100%|██████████| 30/30 [00:15<00:00, 2.00it/s]\n100%|██████████| 30/30 [00:15<00:00, 2.00it/s]", "metrics": { "predict_time": 28.669217, "total_time": 28.722305 }, "output": "https://replicate.delivery/pbxt/zgISN4ixigYfcKLSW0eP9S9qHQzQfDIwtUDMBBLwnHZRYMfIB/result.jpg", "started_at": "2024-01-24T06:40:44.725369Z", "status": "succeeded", "urls": { "get": "https://api.replicate.com/v1/predictions/nbk762lbyg5sbk5lt4vxtqo7ea", "cancel": "https://api.replicate.com/v1/predictions/nbk762lbyg5sbk5lt4vxtqo7ea/cancel" }, "version": "9cad10c7870bac9d6b587f406aef28208f964454abff5c4152f7dec9b0212a9a" }
Generated in0%| | 0/30 [00:00<?, ?it/s] 3%|▎ | 1/30 [00:00<00:14, 2.01it/s] 7%|▋ | 2/30 [00:00<00:13, 2.01it/s] 10%|█ | 3/30 [00:01<00:13, 2.01it/s] 13%|█▎ | 4/30 [00:01<00:12, 2.00it/s] 17%|█▋ | 5/30 [00:02<00:12, 2.00it/s] 20%|██ | 6/30 [00:02<00:11, 2.00it/s] 23%|██▎ | 7/30 [00:03<00:11, 2.00it/s] 27%|██▋ | 8/30 [00:03<00:10, 2.00it/s] 30%|███ | 9/30 [00:04<00:10, 2.00it/s] 33%|███▎ | 10/30 [00:04<00:10, 2.00it/s] 37%|███▋ | 11/30 [00:05<00:09, 2.00it/s] 40%|████ | 12/30 [00:05<00:09, 2.00it/s] 43%|████▎ | 13/30 [00:06<00:08, 2.00it/s] 47%|████▋ | 14/30 [00:06<00:08, 2.00it/s] 50%|█████ | 15/30 [00:07<00:07, 2.00it/s] 53%|█████▎ | 16/30 [00:07<00:07, 2.00it/s] 57%|█████▋ | 17/30 [00:08<00:06, 2.00it/s] 60%|██████ | 18/30 [00:08<00:06, 2.00it/s] 63%|██████▎ | 19/30 [00:09<00:05, 2.00it/s] 67%|██████▋ | 20/30 [00:10<00:05, 1.99it/s] 70%|███████ | 21/30 [00:10<00:04, 1.99it/s] 73%|███████▎ | 22/30 [00:11<00:04, 1.99it/s] 77%|███████▋ | 23/30 [00:11<00:03, 1.99it/s] 80%|████████ | 24/30 [00:12<00:03, 1.99it/s] 83%|████████▎ | 25/30 [00:12<00:02, 1.99it/s] 87%|████████▋ | 26/30 [00:13<00:02, 1.99it/s] 90%|█████████ | 27/30 [00:13<00:01, 2.00it/s] 93%|█████████▎| 28/30 [00:14<00:01, 2.00it/s] 97%|█████████▋| 29/30 [00:14<00:00, 2.00it/s] 100%|██████████| 30/30 [00:15<00:00, 2.00it/s] 100%|██████████| 30/30 [00:15<00:00, 2.00it/s]
Prediction
grandlineai/instant-id-artistic:9cad10c7IDg6imvz3b44t6aitnf4nf6ris5uStatusSucceededSourceWebHardwareA40Total durationCreatedInput
- width
- 640
- height
- 640
- prompt
- 80's anime screencap, girl wearing a cropped top and short shorts, artistic rendition with wide brush strokes, anime comic
- guidance_scale
- 5
- negative_prompt
- cgi, render, bad quality, worst quality, text, signature, watermark, extra limbs, unaestheticXL_hk1, negativeXL_D
- ip_adapter_scale
- 0.8
- num_inference_steps
- 30
- controlnet_conditioning_scale
- 0.8
{ "image": "https://replicate.delivery/pbxt/KHRI4GBd3FevVULAtdu7JySdF17BAXDk1bzIZeZoZ78NXXzY/chipu.jpeg", "width": 640, "height": 640, "prompt": "80's anime screencap, girl wearing a cropped top and short shorts, artistic rendition with wide brush strokes, anime comic", "guidance_scale": 5, "negative_prompt": "cgi, render, bad quality, worst quality, text, signature, watermark, extra limbs, unaestheticXL_hk1, negativeXL_D", "ip_adapter_scale": 0.8, "num_inference_steps": 30, "controlnet_conditioning_scale": 0.8 }
Install Replicate’s Node.js client library:npm install replicate
Set theREPLICATE_API_TOKEN
environment variable:export REPLICATE_API_TOKEN=<paste-your-token-here>
Find your API token in your account settings.
Import and set up the client:import Replicate from "replicate"; const replicate = new Replicate({ auth: process.env.REPLICATE_API_TOKEN, });
Run grandlineai/instant-id-artistic using Replicate’s API. Check out the model's schema for an overview of inputs and outputs.
const output = await replicate.run( "grandlineai/instant-id-artistic:9cad10c7870bac9d6b587f406aef28208f964454abff5c4152f7dec9b0212a9a", { input: { image: "https://replicate.delivery/pbxt/KHRI4GBd3FevVULAtdu7JySdF17BAXDk1bzIZeZoZ78NXXzY/chipu.jpeg", width: 640, height: 640, prompt: "80's anime screencap, girl wearing a cropped top and short shorts, artistic rendition with wide brush strokes, anime comic", guidance_scale: 5, negative_prompt: "cgi, render, bad quality, worst quality, text, signature, watermark, extra limbs, unaestheticXL_hk1, negativeXL_D", ip_adapter_scale: 0.8, num_inference_steps: 30, controlnet_conditioning_scale: 0.8 } } ); console.log(output);
To learn more, take a look at the guide on getting started with Node.js.
Install Replicate’s Python client library:pip install replicate
Set theREPLICATE_API_TOKEN
environment variable:export REPLICATE_API_TOKEN=<paste-your-token-here>
Find your API token in your account settings.
Import the client:import replicate
Run grandlineai/instant-id-artistic using Replicate’s API. Check out the model's schema for an overview of inputs and outputs.
output = replicate.run( "grandlineai/instant-id-artistic:9cad10c7870bac9d6b587f406aef28208f964454abff5c4152f7dec9b0212a9a", input={ "image": "https://replicate.delivery/pbxt/KHRI4GBd3FevVULAtdu7JySdF17BAXDk1bzIZeZoZ78NXXzY/chipu.jpeg", "width": 640, "height": 640, "prompt": "80's anime screencap, girl wearing a cropped top and short shorts, artistic rendition with wide brush strokes, anime comic", "guidance_scale": 5, "negative_prompt": "cgi, render, bad quality, worst quality, text, signature, watermark, extra limbs, unaestheticXL_hk1, negativeXL_D", "ip_adapter_scale": 0.8, "num_inference_steps": 30, "controlnet_conditioning_scale": 0.8 } ) print(output)
To learn more, take a look at the guide on getting started with Python.
Set theREPLICATE_API_TOKEN
environment variable:export REPLICATE_API_TOKEN=<paste-your-token-here>
Find your API token in your account settings.
Run grandlineai/instant-id-artistic 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": "9cad10c7870bac9d6b587f406aef28208f964454abff5c4152f7dec9b0212a9a", "input": { "image": "https://replicate.delivery/pbxt/KHRI4GBd3FevVULAtdu7JySdF17BAXDk1bzIZeZoZ78NXXzY/chipu.jpeg", "width": 640, "height": 640, "prompt": "80\'s anime screencap, girl wearing a cropped top and short shorts, artistic rendition with wide brush strokes, anime comic", "guidance_scale": 5, "negative_prompt": "cgi, render, bad quality, worst quality, text, signature, watermark, extra limbs, unaestheticXL_hk1, negativeXL_D", "ip_adapter_scale": 0.8, "num_inference_steps": 30, "controlnet_conditioning_scale": 0.8 } }' \ https://api.replicate.com/v1/predictions
To learn more, take a look at Replicate’s HTTP API reference docs.
Output
{ "completed_at": "2024-01-24T06:43:06.673852Z", "created_at": "2024-01-24T06:42:35.258543Z", "data_removed": false, "error": null, "id": "g6imvz3b44t6aitnf4nf6ris5u", "input": { "image": "https://replicate.delivery/pbxt/KHRI4GBd3FevVULAtdu7JySdF17BAXDk1bzIZeZoZ78NXXzY/chipu.jpeg", "width": 640, "height": 640, "prompt": "80's anime screencap, girl wearing a cropped top and short shorts, artistic rendition with wide brush strokes, anime comic", "guidance_scale": 5, "negative_prompt": "cgi, render, bad quality, worst quality, text, signature, watermark, extra limbs, unaestheticXL_hk1, negativeXL_D", "ip_adapter_scale": 0.8, "num_inference_steps": 30, "controlnet_conditioning_scale": 0.8 }, "logs": "0%| | 0/30 [00:00<?, ?it/s]\n 3%|▎ | 1/30 [00:00<00:14, 2.01it/s]\n 7%|▋ | 2/30 [00:00<00:13, 2.01it/s]\n 10%|█ | 3/30 [00:01<00:13, 2.01it/s]\n 13%|█▎ | 4/30 [00:01<00:12, 2.01it/s]\n 17%|█▋ | 5/30 [00:02<00:12, 2.00it/s]\n 20%|██ | 6/30 [00:02<00:11, 2.00it/s]\n 23%|██▎ | 7/30 [00:03<00:11, 2.00it/s]\n 27%|██▋ | 8/30 [00:03<00:10, 2.00it/s]\n 30%|███ | 9/30 [00:04<00:10, 2.00it/s]\n 33%|███▎ | 10/30 [00:04<00:10, 2.00it/s]\n 37%|███▋ | 11/30 [00:05<00:09, 2.00it/s]\n 40%|████ | 12/30 [00:05<00:09, 2.00it/s]\n 43%|████▎ | 13/30 [00:06<00:08, 2.00it/s]\n 47%|████▋ | 14/30 [00:06<00:08, 2.00it/s]\n 50%|█████ | 15/30 [00:07<00:07, 2.00it/s]\n 53%|█████▎ | 16/30 [00:07<00:07, 2.00it/s]\n 57%|█████▋ | 17/30 [00:08<00:06, 2.00it/s]\n 60%|██████ | 18/30 [00:09<00:06, 2.00it/s]\n 63%|██████▎ | 19/30 [00:09<00:05, 2.00it/s]\n 67%|██████▋ | 20/30 [00:10<00:05, 1.99it/s]\n 70%|███████ | 21/30 [00:10<00:04, 1.99it/s]\n 73%|███████▎ | 22/30 [00:11<00:04, 1.99it/s]\n 77%|███████▋ | 23/30 [00:11<00:03, 1.99it/s]\n 80%|████████ | 24/30 [00:12<00:03, 1.99it/s]\n 83%|████████▎ | 25/30 [00:12<00:02, 1.99it/s]\n 87%|████████▋ | 26/30 [00:13<00:02, 1.99it/s]\n 90%|█████████ | 27/30 [00:13<00:01, 1.99it/s]\n 93%|█████████▎| 28/30 [00:14<00:01, 1.99it/s]\n 97%|█████████▋| 29/30 [00:14<00:00, 1.99it/s]\n100%|██████████| 30/30 [00:15<00:00, 1.99it/s]\n100%|██████████| 30/30 [00:15<00:00, 2.00it/s]", "metrics": { "predict_time": 31.379634, "total_time": 31.415309 }, "output": "https://replicate.delivery/pbxt/ykhhnQeOPuxFcaHmxJcKOarjkU75CaTC9Y1egJrJRMn5NmPSA/result.jpg", "started_at": "2024-01-24T06:42:35.294218Z", "status": "succeeded", "urls": { "get": "https://api.replicate.com/v1/predictions/g6imvz3b44t6aitnf4nf6ris5u", "cancel": "https://api.replicate.com/v1/predictions/g6imvz3b44t6aitnf4nf6ris5u/cancel" }, "version": "9cad10c7870bac9d6b587f406aef28208f964454abff5c4152f7dec9b0212a9a" }
Generated in0%| | 0/30 [00:00<?, ?it/s] 3%|▎ | 1/30 [00:00<00:14, 2.01it/s] 7%|▋ | 2/30 [00:00<00:13, 2.01it/s] 10%|█ | 3/30 [00:01<00:13, 2.01it/s] 13%|█▎ | 4/30 [00:01<00:12, 2.01it/s] 17%|█▋ | 5/30 [00:02<00:12, 2.00it/s] 20%|██ | 6/30 [00:02<00:11, 2.00it/s] 23%|██▎ | 7/30 [00:03<00:11, 2.00it/s] 27%|██▋ | 8/30 [00:03<00:10, 2.00it/s] 30%|███ | 9/30 [00:04<00:10, 2.00it/s] 33%|███▎ | 10/30 [00:04<00:10, 2.00it/s] 37%|███▋ | 11/30 [00:05<00:09, 2.00it/s] 40%|████ | 12/30 [00:05<00:09, 2.00it/s] 43%|████▎ | 13/30 [00:06<00:08, 2.00it/s] 47%|████▋ | 14/30 [00:06<00:08, 2.00it/s] 50%|█████ | 15/30 [00:07<00:07, 2.00it/s] 53%|█████▎ | 16/30 [00:07<00:07, 2.00it/s] 57%|█████▋ | 17/30 [00:08<00:06, 2.00it/s] 60%|██████ | 18/30 [00:09<00:06, 2.00it/s] 63%|██████▎ | 19/30 [00:09<00:05, 2.00it/s] 67%|██████▋ | 20/30 [00:10<00:05, 1.99it/s] 70%|███████ | 21/30 [00:10<00:04, 1.99it/s] 73%|███████▎ | 22/30 [00:11<00:04, 1.99it/s] 77%|███████▋ | 23/30 [00:11<00:03, 1.99it/s] 80%|████████ | 24/30 [00:12<00:03, 1.99it/s] 83%|████████▎ | 25/30 [00:12<00:02, 1.99it/s] 87%|████████▋ | 26/30 [00:13<00:02, 1.99it/s] 90%|█████████ | 27/30 [00:13<00:01, 1.99it/s] 93%|█████████▎| 28/30 [00:14<00:01, 1.99it/s] 97%|█████████▋| 29/30 [00:14<00:00, 1.99it/s] 100%|██████████| 30/30 [00:15<00:00, 1.99it/s] 100%|██████████| 30/30 [00:15<00:00, 2.00it/s]
Prediction
grandlineai/instant-id-artistic:9cad10c7IDxwwxoi3bvlcxlpnym2k75kddg4StatusSucceededSourceWebHardwareA40Total durationCreatedInput
- width
- 640
- height
- 640
- prompt
- anime girl, night, blue light behind her, ((Galaxy, Lens flare)), short hair, flower field, night sky, cinematic shot. Wallpaper. (Blue color schema), detailed background, a city in the distance
- guidance_scale
- 5
- negative_prompt
- cgi, 3d render, bad quality, worst quality, text, signature, watermark, extra limbs,
- ip_adapter_scale
- 0.8
- num_inference_steps
- 30
- controlnet_conditioning_scale
- 0.8
{ "image": "https://replicate.delivery/pbxt/KHSXnN2ul0xzjYxfgITca5LydTdL2Evygr71O4FBsjkX9X4F/demo.png", "width": 640, "height": 640, "prompt": "anime girl, night, blue light behind her, ((Galaxy, Lens flare)), short hair, flower field, night sky, cinematic shot. Wallpaper. (Blue color schema), detailed background, a city in the distance", "guidance_scale": 5, "negative_prompt": "cgi, 3d render, bad quality, worst quality, text, signature, watermark, extra limbs,", "ip_adapter_scale": 0.8, "num_inference_steps": 30, "controlnet_conditioning_scale": 0.8 }
Install Replicate’s Node.js client library:npm install replicate
Set theREPLICATE_API_TOKEN
environment variable:export REPLICATE_API_TOKEN=<paste-your-token-here>
Find your API token in your account settings.
Import and set up the client:import Replicate from "replicate"; const replicate = new Replicate({ auth: process.env.REPLICATE_API_TOKEN, });
Run grandlineai/instant-id-artistic using Replicate’s API. Check out the model's schema for an overview of inputs and outputs.
const output = await replicate.run( "grandlineai/instant-id-artistic:9cad10c7870bac9d6b587f406aef28208f964454abff5c4152f7dec9b0212a9a", { input: { image: "https://replicate.delivery/pbxt/KHSXnN2ul0xzjYxfgITca5LydTdL2Evygr71O4FBsjkX9X4F/demo.png", width: 640, height: 640, prompt: "anime girl, night, blue light behind her, ((Galaxy, Lens flare)), short hair, flower field, night sky, cinematic shot. Wallpaper. (Blue color schema), detailed background, a city in the distance", guidance_scale: 5, negative_prompt: "cgi, 3d render, bad quality, worst quality, text, signature, watermark, extra limbs,", ip_adapter_scale: 0.8, num_inference_steps: 30, controlnet_conditioning_scale: 0.8 } } ); console.log(output);
To learn more, take a look at the guide on getting started with Node.js.
Install Replicate’s Python client library:pip install replicate
Set theREPLICATE_API_TOKEN
environment variable:export REPLICATE_API_TOKEN=<paste-your-token-here>
Find your API token in your account settings.
Import the client:import replicate
Run grandlineai/instant-id-artistic using Replicate’s API. Check out the model's schema for an overview of inputs and outputs.
output = replicate.run( "grandlineai/instant-id-artistic:9cad10c7870bac9d6b587f406aef28208f964454abff5c4152f7dec9b0212a9a", input={ "image": "https://replicate.delivery/pbxt/KHSXnN2ul0xzjYxfgITca5LydTdL2Evygr71O4FBsjkX9X4F/demo.png", "width": 640, "height": 640, "prompt": "anime girl, night, blue light behind her, ((Galaxy, Lens flare)), short hair, flower field, night sky, cinematic shot. Wallpaper. (Blue color schema), detailed background, a city in the distance", "guidance_scale": 5, "negative_prompt": "cgi, 3d render, bad quality, worst quality, text, signature, watermark, extra limbs,", "ip_adapter_scale": 0.8, "num_inference_steps": 30, "controlnet_conditioning_scale": 0.8 } ) print(output)
To learn more, take a look at the guide on getting started with Python.
Set theREPLICATE_API_TOKEN
environment variable:export REPLICATE_API_TOKEN=<paste-your-token-here>
Find your API token in your account settings.
Run grandlineai/instant-id-artistic 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": "9cad10c7870bac9d6b587f406aef28208f964454abff5c4152f7dec9b0212a9a", "input": { "image": "https://replicate.delivery/pbxt/KHSXnN2ul0xzjYxfgITca5LydTdL2Evygr71O4FBsjkX9X4F/demo.png", "width": 640, "height": 640, "prompt": "anime girl, night, blue light behind her, ((Galaxy, Lens flare)), short hair, flower field, night sky, cinematic shot. Wallpaper. (Blue color schema), detailed background, a city in the distance", "guidance_scale": 5, "negative_prompt": "cgi, 3d render, bad quality, worst quality, text, signature, watermark, extra limbs,", "ip_adapter_scale": 0.8, "num_inference_steps": 30, "controlnet_conditioning_scale": 0.8 } }' \ https://api.replicate.com/v1/predictions
To learn more, take a look at Replicate’s HTTP API reference docs.
Output
{ "completed_at": "2024-01-24T06:46:05.940537Z", "created_at": "2024-01-24T06:45:28.412293Z", "data_removed": false, "error": null, "id": "xwwxoi3bvlcxlpnym2k75kddg4", "input": { "image": "https://replicate.delivery/pbxt/KHSXnN2ul0xzjYxfgITca5LydTdL2Evygr71O4FBsjkX9X4F/demo.png", "width": 640, "height": 640, "prompt": "anime girl, night, blue light behind her, ((Galaxy, Lens flare)), short hair, flower field, night sky, cinematic shot. Wallpaper. (Blue color schema), detailed background, a city in the distance", "guidance_scale": 5, "negative_prompt": "cgi, 3d render, bad quality, worst quality, text, signature, watermark, extra limbs,", "ip_adapter_scale": 0.8, "num_inference_steps": 30, "controlnet_conditioning_scale": 0.8 }, "logs": "0%| | 0/30 [00:00<?, ?it/s]\n 3%|▎ | 1/30 [00:00<00:19, 1.47it/s]\n 7%|▋ | 2/30 [00:01<00:19, 1.46it/s]\n 10%|█ | 3/30 [00:02<00:18, 1.46it/s]\n 13%|█▎ | 4/30 [00:02<00:17, 1.46it/s]\n 17%|█▋ | 5/30 [00:03<00:17, 1.46it/s]\n 20%|██ | 6/30 [00:04<00:16, 1.46it/s]\n 23%|██▎ | 7/30 [00:04<00:15, 1.46it/s]\n 27%|██▋ | 8/30 [00:05<00:15, 1.46it/s]\n 30%|███ | 9/30 [00:06<00:14, 1.46it/s]\n 33%|███▎ | 10/30 [00:06<00:13, 1.46it/s]\n 37%|███▋ | 11/30 [00:07<00:13, 1.46it/s]\n 40%|████ | 12/30 [00:08<00:12, 1.46it/s]\n 43%|████▎ | 13/30 [00:08<00:11, 1.46it/s]\n 47%|████▋ | 14/30 [00:09<00:10, 1.46it/s]\n 50%|█████ | 15/30 [00:10<00:10, 1.46it/s]\n 53%|█████▎ | 16/30 [00:10<00:09, 1.46it/s]\n 57%|█████▋ | 17/30 [00:11<00:08, 1.46it/s]\n 60%|██████ | 18/30 [00:12<00:08, 1.46it/s]\n 63%|██████▎ | 19/30 [00:13<00:07, 1.46it/s]\n 67%|██████▋ | 20/30 [00:13<00:06, 1.46it/s]\n 70%|███████ | 21/30 [00:14<00:06, 1.46it/s]\n 73%|███████▎ | 22/30 [00:15<00:05, 1.46it/s]\n 77%|███████▋ | 23/30 [00:15<00:04, 1.46it/s]\n 80%|████████ | 24/30 [00:16<00:04, 1.46it/s]\n 83%|████████▎ | 25/30 [00:17<00:03, 1.46it/s]\n 87%|████████▋ | 26/30 [00:17<00:02, 1.46it/s]\n 90%|█████████ | 27/30 [00:18<00:02, 1.46it/s]\n 93%|█████████▎| 28/30 [00:19<00:01, 1.46it/s]\n 97%|█████████▋| 29/30 [00:19<00:00, 1.46it/s]\n100%|██████████| 30/30 [00:20<00:00, 1.46it/s]\n100%|██████████| 30/30 [00:20<00:00, 1.46it/s]", "metrics": { "predict_time": 37.490917, "total_time": 37.528244 }, "output": "https://replicate.delivery/pbxt/Fo3X96YxwYIODdnKZtJU575R1QYLYWjri2wKWfTb3hetQmPSA/result.jpg", "started_at": "2024-01-24T06:45:28.449620Z", "status": "succeeded", "urls": { "get": "https://api.replicate.com/v1/predictions/xwwxoi3bvlcxlpnym2k75kddg4", "cancel": "https://api.replicate.com/v1/predictions/xwwxoi3bvlcxlpnym2k75kddg4/cancel" }, "version": "9cad10c7870bac9d6b587f406aef28208f964454abff5c4152f7dec9b0212a9a" }
Generated in0%| | 0/30 [00:00<?, ?it/s] 3%|▎ | 1/30 [00:00<00:19, 1.47it/s] 7%|▋ | 2/30 [00:01<00:19, 1.46it/s] 10%|█ | 3/30 [00:02<00:18, 1.46it/s] 13%|█▎ | 4/30 [00:02<00:17, 1.46it/s] 17%|█▋ | 5/30 [00:03<00:17, 1.46it/s] 20%|██ | 6/30 [00:04<00:16, 1.46it/s] 23%|██▎ | 7/30 [00:04<00:15, 1.46it/s] 27%|██▋ | 8/30 [00:05<00:15, 1.46it/s] 30%|███ | 9/30 [00:06<00:14, 1.46it/s] 33%|███▎ | 10/30 [00:06<00:13, 1.46it/s] 37%|███▋ | 11/30 [00:07<00:13, 1.46it/s] 40%|████ | 12/30 [00:08<00:12, 1.46it/s] 43%|████▎ | 13/30 [00:08<00:11, 1.46it/s] 47%|████▋ | 14/30 [00:09<00:10, 1.46it/s] 50%|█████ | 15/30 [00:10<00:10, 1.46it/s] 53%|█████▎ | 16/30 [00:10<00:09, 1.46it/s] 57%|█████▋ | 17/30 [00:11<00:08, 1.46it/s] 60%|██████ | 18/30 [00:12<00:08, 1.46it/s] 63%|██████▎ | 19/30 [00:13<00:07, 1.46it/s] 67%|██████▋ | 20/30 [00:13<00:06, 1.46it/s] 70%|███████ | 21/30 [00:14<00:06, 1.46it/s] 73%|███████▎ | 22/30 [00:15<00:05, 1.46it/s] 77%|███████▋ | 23/30 [00:15<00:04, 1.46it/s] 80%|████████ | 24/30 [00:16<00:04, 1.46it/s] 83%|████████▎ | 25/30 [00:17<00:03, 1.46it/s] 87%|████████▋ | 26/30 [00:17<00:02, 1.46it/s] 90%|█████████ | 27/30 [00:18<00:02, 1.46it/s] 93%|█████████▎| 28/30 [00:19<00:01, 1.46it/s] 97%|█████████▋| 29/30 [00:19<00:00, 1.46it/s] 100%|██████████| 30/30 [00:20<00:00, 1.46it/s] 100%|██████████| 30/30 [00:20<00:00, 1.46it/s]
Prediction
grandlineai/instant-id-artistic:9cad10c7IDpai7jslbpt2jp3mdkds33abiryStatusSucceededSourceWebHardwareA40Total durationCreatedInput
- width
- 640
- height
- 640
- prompt
- mysterious silhouette forest woman, by Minjae Lee, Carne Griffiths, Emily Kell, Geoffroy Thoorens, Aaron Horkey, Jordan Grimmer, Greg Rutkowski, amazing depth, masterwork, surreal, geometric patterns, intricately detailed, bokeh, perfect balanced, deep fine borders, artistic photorealism , smooth, great masterwork by head of prompt engineering <lora:add-detail-xl:2>
- guidance_scale
- 5
- negative_prompt
- boring,text,signature,logo,watermark,low quality, bad quality, loose artifacts, grainy, blurry, long neck, closed eyes, face jewellery
- ip_adapter_scale
- 0.8
- num_inference_steps
- 30
- controlnet_conditioning_scale
- 0.8
{ "image": "https://replicate.delivery/pbxt/KHSabPo4Rlrda2hgXDI9Dbukusbv2tMYj1oGrBG6VUkdvcAf/demo.png", "width": 640, "height": 640, "prompt": "mysterious silhouette forest woman, by Minjae Lee, Carne Griffiths, Emily Kell, Geoffroy Thoorens, Aaron Horkey, Jordan Grimmer, Greg Rutkowski, amazing depth, masterwork, surreal, geometric patterns, intricately detailed, bokeh, perfect balanced, deep fine borders, artistic photorealism , smooth, great masterwork by head of prompt engineering <lora:add-detail-xl:2>", "guidance_scale": 5, "negative_prompt": "boring,text,signature,logo,watermark,low quality, bad quality, loose artifacts, grainy, blurry, long neck, closed eyes, face jewellery", "ip_adapter_scale": 0.8, "num_inference_steps": 30, "controlnet_conditioning_scale": 0.8 }
Install Replicate’s Node.js client library:npm install replicate
Set theREPLICATE_API_TOKEN
environment variable:export REPLICATE_API_TOKEN=<paste-your-token-here>
Find your API token in your account settings.
Import and set up the client:import Replicate from "replicate"; const replicate = new Replicate({ auth: process.env.REPLICATE_API_TOKEN, });
Run grandlineai/instant-id-artistic using Replicate’s API. Check out the model's schema for an overview of inputs and outputs.
const output = await replicate.run( "grandlineai/instant-id-artistic:9cad10c7870bac9d6b587f406aef28208f964454abff5c4152f7dec9b0212a9a", { input: { image: "https://replicate.delivery/pbxt/KHSabPo4Rlrda2hgXDI9Dbukusbv2tMYj1oGrBG6VUkdvcAf/demo.png", width: 640, height: 640, prompt: "mysterious silhouette forest woman, by Minjae Lee, Carne Griffiths, Emily Kell, Geoffroy Thoorens, Aaron Horkey, Jordan Grimmer, Greg Rutkowski, amazing depth, masterwork, surreal, geometric patterns, intricately detailed, bokeh, perfect balanced, deep fine borders, artistic photorealism , smooth, great masterwork by head of prompt engineering <lora:add-detail-xl:2>", guidance_scale: 5, negative_prompt: "boring,text,signature,logo,watermark,low quality, bad quality, loose artifacts, grainy, blurry, long neck, closed eyes, face jewellery", ip_adapter_scale: 0.8, num_inference_steps: 30, controlnet_conditioning_scale: 0.8 } } ); console.log(output);
To learn more, take a look at the guide on getting started with Node.js.
Install Replicate’s Python client library:pip install replicate
Set theREPLICATE_API_TOKEN
environment variable:export REPLICATE_API_TOKEN=<paste-your-token-here>
Find your API token in your account settings.
Import the client:import replicate
Run grandlineai/instant-id-artistic using Replicate’s API. Check out the model's schema for an overview of inputs and outputs.
output = replicate.run( "grandlineai/instant-id-artistic:9cad10c7870bac9d6b587f406aef28208f964454abff5c4152f7dec9b0212a9a", input={ "image": "https://replicate.delivery/pbxt/KHSabPo4Rlrda2hgXDI9Dbukusbv2tMYj1oGrBG6VUkdvcAf/demo.png", "width": 640, "height": 640, "prompt": "mysterious silhouette forest woman, by Minjae Lee, Carne Griffiths, Emily Kell, Geoffroy Thoorens, Aaron Horkey, Jordan Grimmer, Greg Rutkowski, amazing depth, masterwork, surreal, geometric patterns, intricately detailed, bokeh, perfect balanced, deep fine borders, artistic photorealism , smooth, great masterwork by head of prompt engineering <lora:add-detail-xl:2>", "guidance_scale": 5, "negative_prompt": "boring,text,signature,logo,watermark,low quality, bad quality, loose artifacts, grainy, blurry, long neck, closed eyes, face jewellery", "ip_adapter_scale": 0.8, "num_inference_steps": 30, "controlnet_conditioning_scale": 0.8 } ) print(output)
To learn more, take a look at the guide on getting started with Python.
Set theREPLICATE_API_TOKEN
environment variable:export REPLICATE_API_TOKEN=<paste-your-token-here>
Find your API token in your account settings.
Run grandlineai/instant-id-artistic 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": "9cad10c7870bac9d6b587f406aef28208f964454abff5c4152f7dec9b0212a9a", "input": { "image": "https://replicate.delivery/pbxt/KHSabPo4Rlrda2hgXDI9Dbukusbv2tMYj1oGrBG6VUkdvcAf/demo.png", "width": 640, "height": 640, "prompt": "mysterious silhouette forest woman, by Minjae Lee, Carne Griffiths, Emily Kell, Geoffroy Thoorens, Aaron Horkey, Jordan Grimmer, Greg Rutkowski, amazing depth, masterwork, surreal, geometric patterns, intricately detailed, bokeh, perfect balanced, deep fine borders, artistic photorealism , smooth, great masterwork by head of prompt engineering <lora:add-detail-xl:2>", "guidance_scale": 5, "negative_prompt": "boring,text,signature,logo,watermark,low quality, bad quality, loose artifacts, grainy, blurry, long neck, closed eyes, face jewellery", "ip_adapter_scale": 0.8, "num_inference_steps": 30, "controlnet_conditioning_scale": 0.8 } }' \ https://api.replicate.com/v1/predictions
To learn more, take a look at Replicate’s HTTP API reference docs.
Output
{ "completed_at": "2024-01-24T06:49:04.065504Z", "created_at": "2024-01-24T06:48:26.077176Z", "data_removed": false, "error": null, "id": "pai7jslbpt2jp3mdkds33abiry", "input": { "image": "https://replicate.delivery/pbxt/KHSabPo4Rlrda2hgXDI9Dbukusbv2tMYj1oGrBG6VUkdvcAf/demo.png", "width": 640, "height": 640, "prompt": "mysterious silhouette forest woman, by Minjae Lee, Carne Griffiths, Emily Kell, Geoffroy Thoorens, Aaron Horkey, Jordan Grimmer, Greg Rutkowski, amazing depth, masterwork, surreal, geometric patterns, intricately detailed, bokeh, perfect balanced, deep fine borders, artistic photorealism , smooth, great masterwork by head of prompt engineering <lora:add-detail-xl:2>", "guidance_scale": 5, "negative_prompt": "boring,text,signature,logo,watermark,low quality, bad quality, loose artifacts, grainy, blurry, long neck, closed eyes, face jewellery", "ip_adapter_scale": 0.8, "num_inference_steps": 30, "controlnet_conditioning_scale": 0.8 }, "logs": "The following part of your input was truncated because CLIP can only handle sequences up to 77 tokens: ['lora : add - detail - xl : 2 >']\nThe following part of your input was truncated because CLIP can only handle sequences up to 77 tokens: ['lora : add - detail - xl : 2 >']\n 0%| | 0/30 [00:00<?, ?it/s]\n 3%|▎ | 1/30 [00:00<00:19, 1.47it/s]\n 7%|▋ | 2/30 [00:01<00:19, 1.47it/s]\n 10%|█ | 3/30 [00:02<00:18, 1.47it/s]\n 13%|█▎ | 4/30 [00:02<00:17, 1.47it/s]\n 17%|█▋ | 5/30 [00:03<00:17, 1.47it/s]\n 20%|██ | 6/30 [00:04<00:16, 1.47it/s]\n 23%|██▎ | 7/30 [00:04<00:15, 1.47it/s]\n 27%|██▋ | 8/30 [00:05<00:14, 1.47it/s]\n 30%|███ | 9/30 [00:06<00:14, 1.47it/s]\n 33%|███▎ | 10/30 [00:06<00:13, 1.47it/s]\n 37%|███▋ | 11/30 [00:07<00:12, 1.47it/s]\n 40%|████ | 12/30 [00:08<00:12, 1.47it/s]\n 43%|████▎ | 13/30 [00:08<00:11, 1.47it/s]\n 47%|████▋ | 14/30 [00:09<00:10, 1.47it/s]\n 50%|█████ | 15/30 [00:10<00:10, 1.47it/s]\n 53%|█████▎ | 16/30 [00:10<00:09, 1.47it/s]\n 57%|█████▋ | 17/30 [00:11<00:08, 1.47it/s]\n 60%|██████ | 18/30 [00:12<00:08, 1.47it/s]\n 63%|██████▎ | 19/30 [00:12<00:07, 1.47it/s]\n 67%|██████▋ | 20/30 [00:13<00:06, 1.47it/s]\n 70%|███████ | 21/30 [00:14<00:06, 1.47it/s]\n 73%|███████▎ | 22/30 [00:14<00:05, 1.47it/s]\n 77%|███████▋ | 23/30 [00:15<00:04, 1.46it/s]\n 80%|████████ | 24/30 [00:16<00:04, 1.46it/s]\n 83%|████████▎ | 25/30 [00:17<00:03, 1.46it/s]\n 87%|████████▋ | 26/30 [00:17<00:02, 1.47it/s]\n 90%|█████████ | 27/30 [00:18<00:02, 1.46it/s]\n 93%|█████████▎| 28/30 [00:19<00:01, 1.46it/s]\n 97%|█████████▋| 29/30 [00:19<00:00, 1.46it/s]\n100%|██████████| 30/30 [00:20<00:00, 1.46it/s]\n100%|██████████| 30/30 [00:20<00:00, 1.47it/s]", "metrics": { "predict_time": 37.935135, "total_time": 37.988328 }, "output": "https://replicate.delivery/pbxt/8fPHPas9zbXbJayntWS0m9Wf8YCjpnKMYCyfuTE2fa1eby8RC/result.jpg", "started_at": "2024-01-24T06:48:26.130369Z", "status": "succeeded", "urls": { "get": "https://api.replicate.com/v1/predictions/pai7jslbpt2jp3mdkds33abiry", "cancel": "https://api.replicate.com/v1/predictions/pai7jslbpt2jp3mdkds33abiry/cancel" }, "version": "9cad10c7870bac9d6b587f406aef28208f964454abff5c4152f7dec9b0212a9a" }
Generated inThe following part of your input was truncated because CLIP can only handle sequences up to 77 tokens: ['lora : add - detail - xl : 2 >'] The following part of your input was truncated because CLIP can only handle sequences up to 77 tokens: ['lora : add - detail - xl : 2 >'] 0%| | 0/30 [00:00<?, ?it/s] 3%|▎ | 1/30 [00:00<00:19, 1.47it/s] 7%|▋ | 2/30 [00:01<00:19, 1.47it/s] 10%|█ | 3/30 [00:02<00:18, 1.47it/s] 13%|█▎ | 4/30 [00:02<00:17, 1.47it/s] 17%|█▋ | 5/30 [00:03<00:17, 1.47it/s] 20%|██ | 6/30 [00:04<00:16, 1.47it/s] 23%|██▎ | 7/30 [00:04<00:15, 1.47it/s] 27%|██▋ | 8/30 [00:05<00:14, 1.47it/s] 30%|███ | 9/30 [00:06<00:14, 1.47it/s] 33%|███▎ | 10/30 [00:06<00:13, 1.47it/s] 37%|███▋ | 11/30 [00:07<00:12, 1.47it/s] 40%|████ | 12/30 [00:08<00:12, 1.47it/s] 43%|████▎ | 13/30 [00:08<00:11, 1.47it/s] 47%|████▋ | 14/30 [00:09<00:10, 1.47it/s] 50%|█████ | 15/30 [00:10<00:10, 1.47it/s] 53%|█████▎ | 16/30 [00:10<00:09, 1.47it/s] 57%|█████▋ | 17/30 [00:11<00:08, 1.47it/s] 60%|██████ | 18/30 [00:12<00:08, 1.47it/s] 63%|██████▎ | 19/30 [00:12<00:07, 1.47it/s] 67%|██████▋ | 20/30 [00:13<00:06, 1.47it/s] 70%|███████ | 21/30 [00:14<00:06, 1.47it/s] 73%|███████▎ | 22/30 [00:14<00:05, 1.47it/s] 77%|███████▋ | 23/30 [00:15<00:04, 1.46it/s] 80%|████████ | 24/30 [00:16<00:04, 1.46it/s] 83%|████████▎ | 25/30 [00:17<00:03, 1.46it/s] 87%|████████▋ | 26/30 [00:17<00:02, 1.47it/s] 90%|█████████ | 27/30 [00:18<00:02, 1.46it/s] 93%|█████████▎| 28/30 [00:19<00:01, 1.46it/s] 97%|█████████▋| 29/30 [00:19<00:00, 1.46it/s] 100%|██████████| 30/30 [00:20<00:00, 1.46it/s] 100%|██████████| 30/30 [00:20<00:00, 1.47it/s]
Want to make some of these yourself?
Run this model