darionaviar / cinthia
- Public
- 1.4K runs
-
H100
Prediction
darionaviar/cinthia:b26a56abd9f014712559f3e6a79f172235742fda77ebbc4cfca5fa573c4db3c3IDc35qygevj5rm00chwh3vqfq368StatusSucceededSourceWebHardwareH100Total durationCreatedInput
- model
- dev
- prompt
- CINTHIA walking with determination in a peaceful, natural setting, wearing stylish athletic wear in deep purple (#4A148C), symbolizing power and femininity. The background features lush greenery with hints of emerald green (#009688), representing health and renewal, while soft sunlight filters through the trees, casting gentle shadows. The scene includes light gray (#E0E0E0) elements, like a walking path or distant rocks, for a neutral base, and soft golden accents (#FFD700) in subtle details, like accessories or the glow of the sunlight, adding a touch of success and empowerment. The sky and open spaces are complemented by bright white (#FFFFFF), giving a sense of clarity and freshness. The image is hyper-realistic, emphasizing CINTHIA’s focus and strength, perfectly embodying empowerment and motivation.
- lora_scale
- 1
- num_outputs
- 2
- aspect_ratio
- 1:1
- output_format
- jpg
- guidance_scale
- 3.5
- output_quality
- 100
- prompt_strength
- 0.8
- extra_lora_scale
- 1
- num_inference_steps
- 40
{ "model": "dev", "prompt": "CINTHIA walking with determination in a peaceful, natural setting, wearing stylish athletic wear in deep purple (#4A148C), symbolizing power and femininity. The background features lush greenery with hints of emerald green (#009688), representing health and renewal, while soft sunlight filters through the trees, casting gentle shadows. The scene includes light gray (#E0E0E0) elements, like a walking path or distant rocks, for a neutral base, and soft golden accents (#FFD700) in subtle details, like accessories or the glow of the sunlight, adding a touch of success and empowerment. The sky and open spaces are complemented by bright white (#FFFFFF), giving a sense of clarity and freshness. The image is hyper-realistic, emphasizing CINTHIA’s focus and strength, perfectly embodying empowerment and motivation.", "lora_scale": 1, "num_outputs": 2, "aspect_ratio": "1:1", "output_format": "jpg", "guidance_scale": 3.5, "output_quality": 100, "prompt_strength": 0.8, "extra_lora_scale": 1, "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 darionaviar/cinthia using Replicate’s API. Check out the model's schema for an overview of inputs and outputs.
const output = await replicate.run( "darionaviar/cinthia:b26a56abd9f014712559f3e6a79f172235742fda77ebbc4cfca5fa573c4db3c3", { input: { model: "dev", prompt: "CINTHIA walking with determination in a peaceful, natural setting, wearing stylish athletic wear in deep purple (#4A148C), symbolizing power and femininity. The background features lush greenery with hints of emerald green (#009688), representing health and renewal, while soft sunlight filters through the trees, casting gentle shadows. The scene includes light gray (#E0E0E0) elements, like a walking path or distant rocks, for a neutral base, and soft golden accents (#FFD700) in subtle details, like accessories or the glow of the sunlight, adding a touch of success and empowerment. The sky and open spaces are complemented by bright white (#FFFFFF), giving a sense of clarity and freshness. The image is hyper-realistic, emphasizing CINTHIA’s focus and strength, perfectly embodying empowerment and motivation.", lora_scale: 1, num_outputs: 2, aspect_ratio: "1:1", output_format: "jpg", guidance_scale: 3.5, output_quality: 100, prompt_strength: 0.8, extra_lora_scale: 1, 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 darionaviar/cinthia using Replicate’s API. Check out the model's schema for an overview of inputs and outputs.
output = replicate.run( "darionaviar/cinthia:b26a56abd9f014712559f3e6a79f172235742fda77ebbc4cfca5fa573c4db3c3", input={ "model": "dev", "prompt": "CINTHIA walking with determination in a peaceful, natural setting, wearing stylish athletic wear in deep purple (#4A148C), symbolizing power and femininity. The background features lush greenery with hints of emerald green (#009688), representing health and renewal, while soft sunlight filters through the trees, casting gentle shadows. The scene includes light gray (#E0E0E0) elements, like a walking path or distant rocks, for a neutral base, and soft golden accents (#FFD700) in subtle details, like accessories or the glow of the sunlight, adding a touch of success and empowerment. The sky and open spaces are complemented by bright white (#FFFFFF), giving a sense of clarity and freshness. The image is hyper-realistic, emphasizing CINTHIA’s focus and strength, perfectly embodying empowerment and motivation.", "lora_scale": 1, "num_outputs": 2, "aspect_ratio": "1:1", "output_format": "jpg", "guidance_scale": 3.5, "output_quality": 100, "prompt_strength": 0.8, "extra_lora_scale": 1, "num_inference_steps": 40 } ) print(output)
To learn more, take a look at the guide on getting started with Python.
Run darionaviar/cinthia 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": "darionaviar/cinthia:b26a56abd9f014712559f3e6a79f172235742fda77ebbc4cfca5fa573c4db3c3", "input": { "model": "dev", "prompt": "CINTHIA walking with determination in a peaceful, natural setting, wearing stylish athletic wear in deep purple (#4A148C), symbolizing power and femininity. The background features lush greenery with hints of emerald green (#009688), representing health and renewal, while soft sunlight filters through the trees, casting gentle shadows. The scene includes light gray (#E0E0E0) elements, like a walking path or distant rocks, for a neutral base, and soft golden accents (#FFD700) in subtle details, like accessories or the glow of the sunlight, adding a touch of success and empowerment. The sky and open spaces are complemented by bright white (#FFFFFF), giving a sense of clarity and freshness. The image is hyper-realistic, emphasizing CINTHIA’s focus and strength, perfectly embodying empowerment and motivation.", "lora_scale": 1, "num_outputs": 2, "aspect_ratio": "1:1", "output_format": "jpg", "guidance_scale": 3.5, "output_quality": 100, "prompt_strength": 0.8, "extra_lora_scale": 1, "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": "2024-09-12T03:30:33.551615Z", "created_at": "2024-09-12T03:30:00.209000Z", "data_removed": false, "error": null, "id": "c35qygevj5rm00chwh3vqfq368", "input": { "model": "dev", "prompt": "CINTHIA walking with determination in a peaceful, natural setting, wearing stylish athletic wear in deep purple (#4A148C), symbolizing power and femininity. The background features lush greenery with hints of emerald green (#009688), representing health and renewal, while soft sunlight filters through the trees, casting gentle shadows. The scene includes light gray (#E0E0E0) elements, like a walking path or distant rocks, for a neutral base, and soft golden accents (#FFD700) in subtle details, like accessories or the glow of the sunlight, adding a touch of success and empowerment. The sky and open spaces are complemented by bright white (#FFFFFF), giving a sense of clarity and freshness. The image is hyper-realistic, emphasizing CINTHIA’s focus and strength, perfectly embodying empowerment and motivation.", "lora_scale": 1, "num_outputs": 2, "aspect_ratio": "1:1", "output_format": "jpg", "guidance_scale": 3.5, "output_quality": 100, "prompt_strength": 0.8, "extra_lora_scale": 1, "num_inference_steps": 40 }, "logs": "Using seed: 39509\nPrompt: CINTHIA walking with determination in a peaceful, natural setting, wearing stylish athletic wear in deep purple (#4A148C), symbolizing power and femininity. The background features lush greenery with hints of emerald green (#009688), representing health and renewal, while soft sunlight filters through the trees, casting gentle shadows. The scene includes light gray (#E0E0E0) elements, like a walking path or distant rocks, for a neutral base, and soft golden accents (#FFD700) in subtle details, like accessories or the glow of the sunlight, adding a touch of success and empowerment. The sky and open spaces are complemented by bright white (#FFFFFF), giving a sense of clarity and freshness. The image is hyper-realistic, emphasizing CINTHIA’s focus and strength, perfectly embodying empowerment and motivation.\n[!] txt2img mode\nUsing dev model\nfree=8013230866432\nDownloading weights\n2024-09-12T03:30:00Z | INFO | [ Initiating ] chunk_size=150M dest=/tmp/tmpgouy5e5r/weights url=https://replicate.delivery/yhqm/mlriPeRDZjQ3CKoDe2HlSm9vazau0m4u5pUBfYUzuHXW793mA/trained_model.tar\n2024-09-12T03:30:03Z | INFO | [ Complete ] dest=/tmp/tmpgouy5e5r/weights size=\"215 MB\" total_elapsed=3.416s url=https://replicate.delivery/yhqm/mlriPeRDZjQ3CKoDe2HlSm9vazau0m4u5pUBfYUzuHXW793mA/trained_model.tar\nDownloaded weights in 3.45s\nLoaded LoRAs in 12.22s\n 0%| | 0/40 [00:00<?, ?it/s]\n 2%|▎ | 1/40 [00:00<00:19, 1.97it/s]\n 5%|▌ | 2/40 [00:00<00:17, 2.22it/s]\n 8%|▊ | 3/40 [00:01<00:17, 2.09it/s]\n 10%|█ | 4/40 [00:01<00:17, 2.04it/s]\n 12%|█▎ | 5/40 [00:02<00:17, 2.01it/s]\n 15%|█▌ | 6/40 [00:02<00:17, 1.99it/s]\n 18%|█▊ | 7/40 [00:03<00:16, 1.98it/s]\n 20%|██ | 8/40 [00:03<00:16, 1.98it/s]\n 22%|██▎ | 9/40 [00:04<00:15, 1.97it/s]\n 25%|██▌ | 10/40 [00:04<00:15, 1.97it/s]\n 28%|██▊ | 11/40 [00:05<00:14, 1.96it/s]\n 30%|███ | 12/40 [00:06<00:14, 1.96it/s]\n 32%|███▎ | 13/40 [00:06<00:13, 1.96it/s]\n 35%|███▌ | 14/40 [00:07<00:13, 1.96it/s]\n 38%|███▊ | 15/40 [00:07<00:12, 1.96it/s]\n 40%|████ | 16/40 [00:08<00:12, 1.96it/s]\n 42%|████▎ | 17/40 [00:08<00:11, 1.96it/s]\n 45%|████▌ | 18/40 [00:09<00:11, 1.96it/s]\n 48%|████▊ | 19/40 [00:09<00:10, 1.96it/s]\n 50%|█████ | 20/40 [00:10<00:10, 1.96it/s]\n 52%|█████▎ | 21/40 [00:10<00:09, 1.96it/s]\n 55%|█████▌ | 22/40 [00:11<00:09, 1.96it/s]\n 57%|█████▊ | 23/40 [00:11<00:08, 1.96it/s]\n 60%|██████ | 24/40 [00:12<00:08, 1.96it/s]\n 62%|██████▎ | 25/40 [00:12<00:07, 1.96it/s]\n 65%|██████▌ | 26/40 [00:13<00:07, 1.96it/s]\n 68%|██████▊ | 27/40 [00:13<00:06, 1.96it/s]\n 70%|███████ | 28/40 [00:14<00:06, 1.96it/s]\n 72%|███████▎ | 29/40 [00:14<00:05, 1.96it/s]\n 75%|███████▌ | 30/40 [00:15<00:05, 1.96it/s]\n 78%|███████▊ | 31/40 [00:15<00:04, 1.96it/s]\n 80%|████████ | 32/40 [00:16<00:04, 1.96it/s]\n 82%|████████▎ | 33/40 [00:16<00:03, 1.96it/s]\n 85%|████████▌ | 34/40 [00:17<00:03, 1.96it/s]\n 88%|████████▊ | 35/40 [00:17<00:02, 1.96it/s]\n 90%|█████████ | 36/40 [00:18<00:02, 1.96it/s]\n 92%|█████████▎| 37/40 [00:18<00:01, 1.95it/s]\n 95%|█████████▌| 38/40 [00:19<00:01, 1.95it/s]\n 98%|█████████▊| 39/40 [00:19<00:00, 1.96it/s]\n100%|██████████| 40/40 [00:20<00:00, 1.96it/s]\n100%|██████████| 40/40 [00:20<00:00, 1.97it/s]", "metrics": { "predict_time": 33.330854987, "total_time": 33.342615 }, "output": [ "https://replicate.delivery/yhqm/vU8HlQ43XaqLEZ6mLZeKYwK7A14m4KtZHN3F5htCppjskAuJA/out-0.jpg", "https://replicate.delivery/yhqm/yUYPYDOjmbrUDxSyRZjNhPyjGI9QOmagvG0K3LGcRDSWSA3E/out-1.jpg" ], "started_at": "2024-09-12T03:30:00.220760Z", "status": "succeeded", "urls": { "get": "https://api.replicate.com/v1/predictions/c35qygevj5rm00chwh3vqfq368", "cancel": "https://api.replicate.com/v1/predictions/c35qygevj5rm00chwh3vqfq368/cancel" }, "version": "b26a56abd9f014712559f3e6a79f172235742fda77ebbc4cfca5fa573c4db3c3" }
Generated inUsing seed: 39509 Prompt: CINTHIA walking with determination in a peaceful, natural setting, wearing stylish athletic wear in deep purple (#4A148C), symbolizing power and femininity. The background features lush greenery with hints of emerald green (#009688), representing health and renewal, while soft sunlight filters through the trees, casting gentle shadows. The scene includes light gray (#E0E0E0) elements, like a walking path or distant rocks, for a neutral base, and soft golden accents (#FFD700) in subtle details, like accessories or the glow of the sunlight, adding a touch of success and empowerment. The sky and open spaces are complemented by bright white (#FFFFFF), giving a sense of clarity and freshness. The image is hyper-realistic, emphasizing CINTHIA’s focus and strength, perfectly embodying empowerment and motivation. [!] txt2img mode Using dev model free=8013230866432 Downloading weights 2024-09-12T03:30:00Z | INFO | [ Initiating ] chunk_size=150M dest=/tmp/tmpgouy5e5r/weights url=https://replicate.delivery/yhqm/mlriPeRDZjQ3CKoDe2HlSm9vazau0m4u5pUBfYUzuHXW793mA/trained_model.tar 2024-09-12T03:30:03Z | INFO | [ Complete ] dest=/tmp/tmpgouy5e5r/weights size="215 MB" total_elapsed=3.416s url=https://replicate.delivery/yhqm/mlriPeRDZjQ3CKoDe2HlSm9vazau0m4u5pUBfYUzuHXW793mA/trained_model.tar Downloaded weights in 3.45s Loaded LoRAs in 12.22s 0%| | 0/40 [00:00<?, ?it/s] 2%|▎ | 1/40 [00:00<00:19, 1.97it/s] 5%|▌ | 2/40 [00:00<00:17, 2.22it/s] 8%|▊ | 3/40 [00:01<00:17, 2.09it/s] 10%|█ | 4/40 [00:01<00:17, 2.04it/s] 12%|█▎ | 5/40 [00:02<00:17, 2.01it/s] 15%|█▌ | 6/40 [00:02<00:17, 1.99it/s] 18%|█▊ | 7/40 [00:03<00:16, 1.98it/s] 20%|██ | 8/40 [00:03<00:16, 1.98it/s] 22%|██▎ | 9/40 [00:04<00:15, 1.97it/s] 25%|██▌ | 10/40 [00:04<00:15, 1.97it/s] 28%|██▊ | 11/40 [00:05<00:14, 1.96it/s] 30%|███ | 12/40 [00:06<00:14, 1.96it/s] 32%|███▎ | 13/40 [00:06<00:13, 1.96it/s] 35%|███▌ | 14/40 [00:07<00:13, 1.96it/s] 38%|███▊ | 15/40 [00:07<00:12, 1.96it/s] 40%|████ | 16/40 [00:08<00:12, 1.96it/s] 42%|████▎ | 17/40 [00:08<00:11, 1.96it/s] 45%|████▌ | 18/40 [00:09<00:11, 1.96it/s] 48%|████▊ | 19/40 [00:09<00:10, 1.96it/s] 50%|█████ | 20/40 [00:10<00:10, 1.96it/s] 52%|█████▎ | 21/40 [00:10<00:09, 1.96it/s] 55%|█████▌ | 22/40 [00:11<00:09, 1.96it/s] 57%|█████▊ | 23/40 [00:11<00:08, 1.96it/s] 60%|██████ | 24/40 [00:12<00:08, 1.96it/s] 62%|██████▎ | 25/40 [00:12<00:07, 1.96it/s] 65%|██████▌ | 26/40 [00:13<00:07, 1.96it/s] 68%|██████▊ | 27/40 [00:13<00:06, 1.96it/s] 70%|███████ | 28/40 [00:14<00:06, 1.96it/s] 72%|███████▎ | 29/40 [00:14<00:05, 1.96it/s] 75%|███████▌ | 30/40 [00:15<00:05, 1.96it/s] 78%|███████▊ | 31/40 [00:15<00:04, 1.96it/s] 80%|████████ | 32/40 [00:16<00:04, 1.96it/s] 82%|████████▎ | 33/40 [00:16<00:03, 1.96it/s] 85%|████████▌ | 34/40 [00:17<00:03, 1.96it/s] 88%|████████▊ | 35/40 [00:17<00:02, 1.96it/s] 90%|█████████ | 36/40 [00:18<00:02, 1.96it/s] 92%|█████████▎| 37/40 [00:18<00:01, 1.95it/s] 95%|█████████▌| 38/40 [00:19<00:01, 1.95it/s] 98%|█████████▊| 39/40 [00:19<00:00, 1.96it/s] 100%|██████████| 40/40 [00:20<00:00, 1.96it/s] 100%|██████████| 40/40 [00:20<00:00, 1.97it/s]
Prediction
darionaviar/cinthia:b26a56abd9f014712559f3e6a79f172235742fda77ebbc4cfca5fa573c4db3c3IDh7ct4sf4jdrm40chwh8vvy80kmStatusSucceededSourceWebHardwareH100Total durationCreatedInput
- model
- dev
- prompt
- CINTHIA sitting
- lora_scale
- 1
- num_outputs
- 2
- aspect_ratio
- 1:1
- output_format
- jpg
- guidance_scale
- 3.5
- output_quality
- 100
- prompt_strength
- 0.8
- extra_lora_scale
- 0.8
- num_inference_steps
- 28
{ "image": "https://replicate.delivery/pbxt/LblPrpkqWtH7Vy879nDbAXeYw6jQlYdNypGr5sv4QM2U3bJ2/A_photo_of_Cinthia_Vega_034.jpg", "model": "dev", "prompt": "CINTHIA sitting ", "lora_scale": 1, "num_outputs": 2, "aspect_ratio": "1:1", "output_format": "jpg", "guidance_scale": 3.5, "output_quality": 100, "prompt_strength": 0.8, "extra_lora_scale": 0.8, "num_inference_steps": 28 }
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 darionaviar/cinthia using Replicate’s API. Check out the model's schema for an overview of inputs and outputs.
const output = await replicate.run( "darionaviar/cinthia:b26a56abd9f014712559f3e6a79f172235742fda77ebbc4cfca5fa573c4db3c3", { input: { image: "https://replicate.delivery/pbxt/LblPrpkqWtH7Vy879nDbAXeYw6jQlYdNypGr5sv4QM2U3bJ2/A_photo_of_Cinthia_Vega_034.jpg", model: "dev", prompt: "CINTHIA sitting ", lora_scale: 1, num_outputs: 2, aspect_ratio: "1:1", output_format: "jpg", guidance_scale: 3.5, output_quality: 100, prompt_strength: 0.8, extra_lora_scale: 0.8, num_inference_steps: 28 } } ); // 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 darionaviar/cinthia using Replicate’s API. Check out the model's schema for an overview of inputs and outputs.
output = replicate.run( "darionaviar/cinthia:b26a56abd9f014712559f3e6a79f172235742fda77ebbc4cfca5fa573c4db3c3", input={ "image": "https://replicate.delivery/pbxt/LblPrpkqWtH7Vy879nDbAXeYw6jQlYdNypGr5sv4QM2U3bJ2/A_photo_of_Cinthia_Vega_034.jpg", "model": "dev", "prompt": "CINTHIA sitting ", "lora_scale": 1, "num_outputs": 2, "aspect_ratio": "1:1", "output_format": "jpg", "guidance_scale": 3.5, "output_quality": 100, "prompt_strength": 0.8, "extra_lora_scale": 0.8, "num_inference_steps": 28 } ) print(output)
To learn more, take a look at the guide on getting started with Python.
Run darionaviar/cinthia 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": "darionaviar/cinthia:b26a56abd9f014712559f3e6a79f172235742fda77ebbc4cfca5fa573c4db3c3", "input": { "image": "https://replicate.delivery/pbxt/LblPrpkqWtH7Vy879nDbAXeYw6jQlYdNypGr5sv4QM2U3bJ2/A_photo_of_Cinthia_Vega_034.jpg", "model": "dev", "prompt": "CINTHIA sitting ", "lora_scale": 1, "num_outputs": 2, "aspect_ratio": "1:1", "output_format": "jpg", "guidance_scale": 3.5, "output_quality": 100, "prompt_strength": 0.8, "extra_lora_scale": 0.8, "num_inference_steps": 28 } }' \ https://api.replicate.com/v1/predictions
To learn more, take a look at Replicate’s HTTP API reference docs.
Output
{ "completed_at": "2024-09-12T03:41:22.342545Z", "created_at": "2024-09-12T03:40:57.875000Z", "data_removed": false, "error": null, "id": "h7ct4sf4jdrm40chwh8vvy80km", "input": { "image": "https://replicate.delivery/pbxt/LblPrpkqWtH7Vy879nDbAXeYw6jQlYdNypGr5sv4QM2U3bJ2/A_photo_of_Cinthia_Vega_034.jpg", "model": "dev", "prompt": "CINTHIA sitting ", "lora_scale": 1, "num_outputs": 2, "aspect_ratio": "1:1", "output_format": "jpg", "guidance_scale": 3.5, "output_quality": 100, "prompt_strength": 0.8, "extra_lora_scale": 0.8, "num_inference_steps": 28 }, "logs": "Using seed: 51269\nPrompt: CINTHIA sitting\n[!] img2img mode\nUsing dev model for img2img\nUsing dev model\nfree=7516089495552\nDownloading weights\n2024-09-12T03:40:58Z | INFO | [ Initiating ] chunk_size=150M dest=/tmp/tmpa8crk3gp/weights url=https://replicate.delivery/yhqm/mlriPeRDZjQ3CKoDe2HlSm9vazau0m4u5pUBfYUzuHXW793mA/trained_model.tar\n2024-09-12T03:41:02Z | INFO | [ Complete ] dest=/tmp/tmpa8crk3gp/weights size=\"215 MB\" total_elapsed=3.622s url=https://replicate.delivery/yhqm/mlriPeRDZjQ3CKoDe2HlSm9vazau0m4u5pUBfYUzuHXW793mA/trained_model.tar\nDownloaded weights in 3.65s\nLoaded LoRAs in 11.42s\n 0%| | 0/23 [00:00<?, ?it/s]\n 4%|▍ | 1/23 [00:00<00:09, 2.44it/s]\n 9%|▊ | 2/23 [00:00<00:09, 2.13it/s]\n 13%|█▎ | 3/23 [00:01<00:09, 2.04it/s]\n 17%|█▋ | 4/23 [00:01<00:09, 2.01it/s]\n 22%|██▏ | 5/23 [00:02<00:09, 1.99it/s]\n 26%|██▌ | 6/23 [00:02<00:08, 1.98it/s]\n 30%|███ | 7/23 [00:03<00:08, 1.97it/s]\n 35%|███▍ | 8/23 [00:03<00:07, 1.96it/s]\n 39%|███▉ | 9/23 [00:04<00:07, 1.96it/s]\n 43%|████▎ | 10/23 [00:05<00:06, 1.96it/s]\n 48%|████▊ | 11/23 [00:05<00:06, 1.96it/s]\n 52%|█████▏ | 12/23 [00:06<00:05, 1.96it/s]\n 57%|█████▋ | 13/23 [00:06<00:05, 1.96it/s]\n 61%|██████ | 14/23 [00:07<00:04, 1.95it/s]\n 65%|██████▌ | 15/23 [00:07<00:04, 1.95it/s]\n 70%|██████▉ | 16/23 [00:08<00:03, 1.95it/s]\n 74%|███████▍ | 17/23 [00:08<00:03, 1.95it/s]\n 78%|███████▊ | 18/23 [00:09<00:02, 1.95it/s]\n 83%|████████▎ | 19/23 [00:09<00:02, 1.95it/s]\n 87%|████████▋ | 20/23 [00:10<00:01, 1.95it/s]\n 91%|█████████▏| 21/23 [00:10<00:01, 1.95it/s]\n 96%|█████████▌| 22/23 [00:11<00:00, 1.95it/s]\n100%|██████████| 23/23 [00:11<00:00, 1.96it/s]\n100%|██████████| 23/23 [00:11<00:00, 1.97it/s]", "metrics": { "predict_time": 24.459933778, "total_time": 24.467545 }, "output": [ "https://replicate.delivery/yhqm/z8YznWf5xIVzGiOsg6fjxDDyYhYR9z7Pf096AjCyv9SEnC4mA/out-0.jpg", "https://replicate.delivery/yhqm/xsO8ehzJWa2EHSWD29Yrk9cggNX4zfXmAGecYwZIWI5EnC4mA/out-1.jpg" ], "started_at": "2024-09-12T03:40:57.882612Z", "status": "succeeded", "urls": { "get": "https://api.replicate.com/v1/predictions/h7ct4sf4jdrm40chwh8vvy80km", "cancel": "https://api.replicate.com/v1/predictions/h7ct4sf4jdrm40chwh8vvy80km/cancel" }, "version": "b26a56abd9f014712559f3e6a79f172235742fda77ebbc4cfca5fa573c4db3c3" }
Generated inUsing seed: 51269 Prompt: CINTHIA sitting [!] img2img mode Using dev model for img2img Using dev model free=7516089495552 Downloading weights 2024-09-12T03:40:58Z | INFO | [ Initiating ] chunk_size=150M dest=/tmp/tmpa8crk3gp/weights url=https://replicate.delivery/yhqm/mlriPeRDZjQ3CKoDe2HlSm9vazau0m4u5pUBfYUzuHXW793mA/trained_model.tar 2024-09-12T03:41:02Z | INFO | [ Complete ] dest=/tmp/tmpa8crk3gp/weights size="215 MB" total_elapsed=3.622s url=https://replicate.delivery/yhqm/mlriPeRDZjQ3CKoDe2HlSm9vazau0m4u5pUBfYUzuHXW793mA/trained_model.tar Downloaded weights in 3.65s Loaded LoRAs in 11.42s 0%| | 0/23 [00:00<?, ?it/s] 4%|▍ | 1/23 [00:00<00:09, 2.44it/s] 9%|▊ | 2/23 [00:00<00:09, 2.13it/s] 13%|█▎ | 3/23 [00:01<00:09, 2.04it/s] 17%|█▋ | 4/23 [00:01<00:09, 2.01it/s] 22%|██▏ | 5/23 [00:02<00:09, 1.99it/s] 26%|██▌ | 6/23 [00:02<00:08, 1.98it/s] 30%|███ | 7/23 [00:03<00:08, 1.97it/s] 35%|███▍ | 8/23 [00:03<00:07, 1.96it/s] 39%|███▉ | 9/23 [00:04<00:07, 1.96it/s] 43%|████▎ | 10/23 [00:05<00:06, 1.96it/s] 48%|████▊ | 11/23 [00:05<00:06, 1.96it/s] 52%|█████▏ | 12/23 [00:06<00:05, 1.96it/s] 57%|█████▋ | 13/23 [00:06<00:05, 1.96it/s] 61%|██████ | 14/23 [00:07<00:04, 1.95it/s] 65%|██████▌ | 15/23 [00:07<00:04, 1.95it/s] 70%|██████▉ | 16/23 [00:08<00:03, 1.95it/s] 74%|███████▍ | 17/23 [00:08<00:03, 1.95it/s] 78%|███████▊ | 18/23 [00:09<00:02, 1.95it/s] 83%|████████▎ | 19/23 [00:09<00:02, 1.95it/s] 87%|████████▋ | 20/23 [00:10<00:01, 1.95it/s] 91%|█████████▏| 21/23 [00:10<00:01, 1.95it/s] 96%|█████████▌| 22/23 [00:11<00:00, 1.95it/s] 100%|██████████| 23/23 [00:11<00:00, 1.96it/s] 100%|██████████| 23/23 [00:11<00:00, 1.97it/s]
Prediction
darionaviar/cinthia:f74c3d7d732384b93ed7f4d5661ae48781e873522b32e267e4d7421029868a91ID7377w0k30drm00chqpq9g8azawStatusSucceededSourceWebHardwareH100Total durationCreatedInput
- model
- dev
- prompt
- CINTHIA sitting or reclining on a park bench, viewed from above. She extends her right hand towards the camera, creating a dynamic, slightly out-of-focus effect in the foreground. She looks up at the camera with a bright smile, wearing a casual outfit consisting of a light denim jacket and athletic leggings. The natural setting around her features trees and soft sunlight filtering through the leaves. The image is hyper-realistic, with detailed textures, capturing the fresh outdoor atmosphere and CINTHIA's approachable energy.
- lora_scale
- 1
- num_outputs
- 2
- aspect_ratio
- 1:1
- output_format
- jpg
- guidance_scale
- 3.5
- output_quality
- 80
- prompt_strength
- 0.8
- extra_lora_scale
- 0.8
- num_inference_steps
- 28
{ "model": "dev", "prompt": "CINTHIA sitting or reclining on a park bench, viewed from above. She extends her right hand towards the camera, creating a dynamic, slightly out-of-focus effect in the foreground. She looks up at the camera with a bright smile, wearing a casual outfit consisting of a light denim jacket and athletic leggings. The natural setting around her features trees and soft sunlight filtering through the leaves. The image is hyper-realistic, with detailed textures, capturing the fresh outdoor atmosphere and CINTHIA's approachable energy.", "lora_scale": 1, "num_outputs": 2, "aspect_ratio": "1:1", "output_format": "jpg", "guidance_scale": 3.5, "output_quality": 80, "prompt_strength": 0.8, "extra_lora_scale": 0.8, "num_inference_steps": 28 }
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 darionaviar/cinthia using Replicate’s API. Check out the model's schema for an overview of inputs and outputs.
const output = await replicate.run( "darionaviar/cinthia:f74c3d7d732384b93ed7f4d5661ae48781e873522b32e267e4d7421029868a91", { input: { model: "dev", prompt: "CINTHIA sitting or reclining on a park bench, viewed from above. She extends her right hand towards the camera, creating a dynamic, slightly out-of-focus effect in the foreground. She looks up at the camera with a bright smile, wearing a casual outfit consisting of a light denim jacket and athletic leggings. The natural setting around her features trees and soft sunlight filtering through the leaves. The image is hyper-realistic, with detailed textures, capturing the fresh outdoor atmosphere and CINTHIA's approachable energy.", lora_scale: 1, num_outputs: 2, aspect_ratio: "1:1", output_format: "jpg", guidance_scale: 3.5, output_quality: 80, prompt_strength: 0.8, extra_lora_scale: 0.8, num_inference_steps: 28 } } ); // 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 darionaviar/cinthia using Replicate’s API. Check out the model's schema for an overview of inputs and outputs.
output = replicate.run( "darionaviar/cinthia:f74c3d7d732384b93ed7f4d5661ae48781e873522b32e267e4d7421029868a91", input={ "model": "dev", "prompt": "CINTHIA sitting or reclining on a park bench, viewed from above. She extends her right hand towards the camera, creating a dynamic, slightly out-of-focus effect in the foreground. She looks up at the camera with a bright smile, wearing a casual outfit consisting of a light denim jacket and athletic leggings. The natural setting around her features trees and soft sunlight filtering through the leaves. The image is hyper-realistic, with detailed textures, capturing the fresh outdoor atmosphere and CINTHIA's approachable energy.", "lora_scale": 1, "num_outputs": 2, "aspect_ratio": "1:1", "output_format": "jpg", "guidance_scale": 3.5, "output_quality": 80, "prompt_strength": 0.8, "extra_lora_scale": 0.8, "num_inference_steps": 28 } ) print(output)
To learn more, take a look at the guide on getting started with Python.
Run darionaviar/cinthia 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": "darionaviar/cinthia:f74c3d7d732384b93ed7f4d5661ae48781e873522b32e267e4d7421029868a91", "input": { "model": "dev", "prompt": "CINTHIA sitting or reclining on a park bench, viewed from above. She extends her right hand towards the camera, creating a dynamic, slightly out-of-focus effect in the foreground. She looks up at the camera with a bright smile, wearing a casual outfit consisting of a light denim jacket and athletic leggings. The natural setting around her features trees and soft sunlight filtering through the leaves. The image is hyper-realistic, with detailed textures, capturing the fresh outdoor atmosphere and CINTHIA\'s approachable energy.", "lora_scale": 1, "num_outputs": 2, "aspect_ratio": "1:1", "output_format": "jpg", "guidance_scale": 3.5, "output_quality": 80, "prompt_strength": 0.8, "extra_lora_scale": 0.8, "num_inference_steps": 28 } }' \ https://api.replicate.com/v1/predictions
To learn more, take a look at Replicate’s HTTP API reference docs.
Output
{ "completed_at": "2024-09-04T15:37:42.008367Z", "created_at": "2024-09-04T15:36:48.131000Z", "data_removed": false, "error": null, "id": "7377w0k30drm00chqpq9g8azaw", "input": { "model": "dev", "prompt": "CINTHIA sitting or reclining on a park bench, viewed from above. She extends her right hand towards the camera, creating a dynamic, slightly out-of-focus effect in the foreground. She looks up at the camera with a bright smile, wearing a casual outfit consisting of a light denim jacket and athletic leggings. The natural setting around her features trees and soft sunlight filtering through the leaves. The image is hyper-realistic, with detailed textures, capturing the fresh outdoor atmosphere and CINTHIA's approachable energy.", "lora_scale": 1, "num_outputs": 2, "aspect_ratio": "1:1", "output_format": "jpg", "guidance_scale": 3.5, "output_quality": 80, "prompt_strength": 0.8, "extra_lora_scale": 0.8, "num_inference_steps": 28 }, "logs": "Using seed: 9762\nPrompt: CINTHIA sitting or reclining on a park bench, viewed from above. She extends her right hand towards the camera, creating a dynamic, slightly out-of-focus effect in the foreground. She looks up at the camera with a bright smile, wearing a casual outfit consisting of a light denim jacket and athletic leggings. The natural setting around her features trees and soft sunlight filtering through the leaves. The image is hyper-realistic, with detailed textures, capturing the fresh outdoor atmosphere and CINTHIA's approachable energy.\ntxt2img mode\nUsing dev model\nLoaded LoRAs in 24.17s\nThe following part of your input was truncated because CLIP can only handle sequences up to 77 tokens: [\"through the leaves. the image is hyper - realistic, with detailed textures, capturing the fresh outdoor atmosphere and cinthia's approachable energy.\", \"through the leaves. the image is hyper - realistic, with detailed textures, capturing the fresh outdoor atmosphere and cinthia's approachable energy.\"]\n 0%| | 0/28 [00:00<?, ?it/s]\n 4%|▎ | 1/28 [00:00<00:14, 1.83it/s]\n 7%|▋ | 2/28 [00:00<00:12, 2.07it/s]\n 11%|█ | 3/28 [00:01<00:12, 1.95it/s]\n 14%|█▍ | 4/28 [00:02<00:12, 1.90it/s]\n 18%|█▊ | 5/28 [00:02<00:12, 1.87it/s]\n 21%|██▏ | 6/28 [00:03<00:11, 1.85it/s]\n 25%|██▌ | 7/28 [00:03<00:11, 1.84it/s]\n 29%|██▊ | 8/28 [00:04<00:10, 1.83it/s]\n 32%|███▏ | 9/28 [00:04<00:10, 1.83it/s]\n 36%|███▌ | 10/28 [00:05<00:09, 1.83it/s]\n 39%|███▉ | 11/28 [00:05<00:09, 1.82it/s]\n 43%|████▎ | 12/28 [00:06<00:08, 1.82it/s]\n 46%|████▋ | 13/28 [00:07<00:08, 1.82it/s]\n 50%|█████ | 14/28 [00:07<00:07, 1.82it/s]\n 54%|█████▎ | 15/28 [00:08<00:07, 1.82it/s]\n 57%|█████▋ | 16/28 [00:08<00:06, 1.82it/s]\n 61%|██████ | 17/28 [00:09<00:06, 1.82it/s]\n 64%|██████▍ | 18/28 [00:09<00:05, 1.82it/s]\n 68%|██████▊ | 19/28 [00:10<00:04, 1.82it/s]\n 71%|███████▏ | 20/28 [00:10<00:04, 1.82it/s]\n 75%|███████▌ | 21/28 [00:11<00:03, 1.82it/s]\n 79%|███████▊ | 22/28 [00:11<00:03, 1.82it/s]\n 82%|████████▏ | 23/28 [00:12<00:02, 1.82it/s]\n 86%|████████▌ | 24/28 [00:13<00:02, 1.82it/s]\n 89%|████████▉ | 25/28 [00:13<00:01, 1.82it/s]\n 93%|█████████▎| 26/28 [00:14<00:01, 1.82it/s]\n 96%|█████████▋| 27/28 [00:14<00:00, 1.82it/s]\n100%|██████████| 28/28 [00:15<00:00, 1.82it/s]\n100%|██████████| 28/28 [00:15<00:00, 1.83it/s]", "metrics": { "predict_time": 40.221601076, "total_time": 53.877367 }, "output": [ "https://replicate.delivery/yhqm/JW6elxJty3ztGarOA1l8uWMjDQpTn95Vk4aeZiefy10XMMmNB/out-0.jpg", "https://replicate.delivery/yhqm/ZpFUZ49Qf1x3GSNKxs9jm620ANdMrfXFezXdcNnxOo3KGGzmA/out-1.jpg" ], "started_at": "2024-09-04T15:37:01.786765Z", "status": "succeeded", "urls": { "get": "https://api.replicate.com/v1/predictions/7377w0k30drm00chqpq9g8azaw", "cancel": "https://api.replicate.com/v1/predictions/7377w0k30drm00chqpq9g8azaw/cancel" }, "version": "f74c3d7d732384b93ed7f4d5661ae48781e873522b32e267e4d7421029868a91" }
Generated inUsing seed: 9762 Prompt: CINTHIA sitting or reclining on a park bench, viewed from above. She extends her right hand towards the camera, creating a dynamic, slightly out-of-focus effect in the foreground. She looks up at the camera with a bright smile, wearing a casual outfit consisting of a light denim jacket and athletic leggings. The natural setting around her features trees and soft sunlight filtering through the leaves. The image is hyper-realistic, with detailed textures, capturing the fresh outdoor atmosphere and CINTHIA's approachable energy. txt2img mode Using dev model Loaded LoRAs in 24.17s The following part of your input was truncated because CLIP can only handle sequences up to 77 tokens: ["through the leaves. the image is hyper - realistic, with detailed textures, capturing the fresh outdoor atmosphere and cinthia's approachable energy.", "through the leaves. the image is hyper - realistic, with detailed textures, capturing the fresh outdoor atmosphere and cinthia's approachable energy."] 0%| | 0/28 [00:00<?, ?it/s] 4%|▎ | 1/28 [00:00<00:14, 1.83it/s] 7%|▋ | 2/28 [00:00<00:12, 2.07it/s] 11%|█ | 3/28 [00:01<00:12, 1.95it/s] 14%|█▍ | 4/28 [00:02<00:12, 1.90it/s] 18%|█▊ | 5/28 [00:02<00:12, 1.87it/s] 21%|██▏ | 6/28 [00:03<00:11, 1.85it/s] 25%|██▌ | 7/28 [00:03<00:11, 1.84it/s] 29%|██▊ | 8/28 [00:04<00:10, 1.83it/s] 32%|███▏ | 9/28 [00:04<00:10, 1.83it/s] 36%|███▌ | 10/28 [00:05<00:09, 1.83it/s] 39%|███▉ | 11/28 [00:05<00:09, 1.82it/s] 43%|████▎ | 12/28 [00:06<00:08, 1.82it/s] 46%|████▋ | 13/28 [00:07<00:08, 1.82it/s] 50%|█████ | 14/28 [00:07<00:07, 1.82it/s] 54%|█████▎ | 15/28 [00:08<00:07, 1.82it/s] 57%|█████▋ | 16/28 [00:08<00:06, 1.82it/s] 61%|██████ | 17/28 [00:09<00:06, 1.82it/s] 64%|██████▍ | 18/28 [00:09<00:05, 1.82it/s] 68%|██████▊ | 19/28 [00:10<00:04, 1.82it/s] 71%|███████▏ | 20/28 [00:10<00:04, 1.82it/s] 75%|███████▌ | 21/28 [00:11<00:03, 1.82it/s] 79%|███████▊ | 22/28 [00:11<00:03, 1.82it/s] 82%|████████▏ | 23/28 [00:12<00:02, 1.82it/s] 86%|████████▌ | 24/28 [00:13<00:02, 1.82it/s] 89%|████████▉ | 25/28 [00:13<00:01, 1.82it/s] 93%|█████████▎| 26/28 [00:14<00:01, 1.82it/s] 96%|█████████▋| 27/28 [00:14<00:00, 1.82it/s] 100%|██████████| 28/28 [00:15<00:00, 1.82it/s] 100%|██████████| 28/28 [00:15<00:00, 1.83it/s]
Prediction
darionaviar/cinthia:f74c3d7d732384b93ed7f4d5661ae48781e873522b32e267e4d7421029868a91IDw3s84e50fsrm20chqq6ta50mdwStatusSucceededSourceWebHardwareH100Total durationCreatedInput
- model
- dev
- prompt
- CINTHIA sitting or reclining on a beachside boardwalk, viewed from above. She reaches towards the camera with her right hand, creating a dynamic perspective, with her hand slightly out of focus due to the proximity to the lens. Her face is turned upwards, looking directly at the camera with a calm and confident expression. CINTHIA is dressed in a light, summery outfit with a loose, flowy blouse and casual shorts, perfect for the beach setting. Her hair is loose, flowing naturally around her shoulders. The image is hyper-realistic, with smooth lighting and detailed textures, capturing the depth of the scene and the natural interaction with the camera, with the ocean and sandy beach subtly visible in the background.
- lora_scale
- 1
- num_outputs
- 2
- aspect_ratio
- 1:1
- output_format
- jpg
- guidance_scale
- 3.5
- output_quality
- 80
- prompt_strength
- 0.8
- extra_lora_scale
- 0.8
- num_inference_steps
- 28
{ "model": "dev", "prompt": "CINTHIA sitting or reclining on a beachside boardwalk, viewed from above. She reaches towards the camera with her right hand, creating a dynamic perspective, with her hand slightly out of focus due to the proximity to the lens. Her face is turned upwards, looking directly at the camera with a calm and confident expression. CINTHIA is dressed in a light, summery outfit with a loose, flowy blouse and casual shorts, perfect for the beach setting. Her hair is loose, flowing naturally around her shoulders. The image is hyper-realistic, with smooth lighting and detailed textures, capturing the depth of the scene and the natural interaction with the camera, with the ocean and sandy beach subtly visible in the background.", "lora_scale": 1, "num_outputs": 2, "aspect_ratio": "1:1", "output_format": "jpg", "guidance_scale": 3.5, "output_quality": 80, "prompt_strength": 0.8, "extra_lora_scale": 0.8, "num_inference_steps": 28 }
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 darionaviar/cinthia using Replicate’s API. Check out the model's schema for an overview of inputs and outputs.
const output = await replicate.run( "darionaviar/cinthia:f74c3d7d732384b93ed7f4d5661ae48781e873522b32e267e4d7421029868a91", { input: { model: "dev", prompt: "CINTHIA sitting or reclining on a beachside boardwalk, viewed from above. She reaches towards the camera with her right hand, creating a dynamic perspective, with her hand slightly out of focus due to the proximity to the lens. Her face is turned upwards, looking directly at the camera with a calm and confident expression. CINTHIA is dressed in a light, summery outfit with a loose, flowy blouse and casual shorts, perfect for the beach setting. Her hair is loose, flowing naturally around her shoulders. The image is hyper-realistic, with smooth lighting and detailed textures, capturing the depth of the scene and the natural interaction with the camera, with the ocean and sandy beach subtly visible in the background.", lora_scale: 1, num_outputs: 2, aspect_ratio: "1:1", output_format: "jpg", guidance_scale: 3.5, output_quality: 80, prompt_strength: 0.8, extra_lora_scale: 0.8, num_inference_steps: 28 } } ); // 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 darionaviar/cinthia using Replicate’s API. Check out the model's schema for an overview of inputs and outputs.
output = replicate.run( "darionaviar/cinthia:f74c3d7d732384b93ed7f4d5661ae48781e873522b32e267e4d7421029868a91", input={ "model": "dev", "prompt": "CINTHIA sitting or reclining on a beachside boardwalk, viewed from above. She reaches towards the camera with her right hand, creating a dynamic perspective, with her hand slightly out of focus due to the proximity to the lens. Her face is turned upwards, looking directly at the camera with a calm and confident expression. CINTHIA is dressed in a light, summery outfit with a loose, flowy blouse and casual shorts, perfect for the beach setting. Her hair is loose, flowing naturally around her shoulders. The image is hyper-realistic, with smooth lighting and detailed textures, capturing the depth of the scene and the natural interaction with the camera, with the ocean and sandy beach subtly visible in the background.", "lora_scale": 1, "num_outputs": 2, "aspect_ratio": "1:1", "output_format": "jpg", "guidance_scale": 3.5, "output_quality": 80, "prompt_strength": 0.8, "extra_lora_scale": 0.8, "num_inference_steps": 28 } ) print(output)
To learn more, take a look at the guide on getting started with Python.
Run darionaviar/cinthia 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": "darionaviar/cinthia:f74c3d7d732384b93ed7f4d5661ae48781e873522b32e267e4d7421029868a91", "input": { "model": "dev", "prompt": "CINTHIA sitting or reclining on a beachside boardwalk, viewed from above. She reaches towards the camera with her right hand, creating a dynamic perspective, with her hand slightly out of focus due to the proximity to the lens. Her face is turned upwards, looking directly at the camera with a calm and confident expression. CINTHIA is dressed in a light, summery outfit with a loose, flowy blouse and casual shorts, perfect for the beach setting. Her hair is loose, flowing naturally around her shoulders. The image is hyper-realistic, with smooth lighting and detailed textures, capturing the depth of the scene and the natural interaction with the camera, with the ocean and sandy beach subtly visible in the background.", "lora_scale": 1, "num_outputs": 2, "aspect_ratio": "1:1", "output_format": "jpg", "guidance_scale": 3.5, "output_quality": 80, "prompt_strength": 0.8, "extra_lora_scale": 0.8, "num_inference_steps": 28 } }' \ https://api.replicate.com/v1/predictions
To learn more, take a look at Replicate’s HTTP API reference docs.
Output
{ "completed_at": "2024-09-04T16:11:20.816886Z", "created_at": "2024-09-04T16:10:55.486000Z", "data_removed": false, "error": null, "id": "w3s84e50fsrm20chqq6ta50mdw", "input": { "model": "dev", "prompt": "CINTHIA sitting or reclining on a beachside boardwalk, viewed from above. She reaches towards the camera with her right hand, creating a dynamic perspective, with her hand slightly out of focus due to the proximity to the lens. Her face is turned upwards, looking directly at the camera with a calm and confident expression. CINTHIA is dressed in a light, summery outfit with a loose, flowy blouse and casual shorts, perfect for the beach setting. Her hair is loose, flowing naturally around her shoulders. The image is hyper-realistic, with smooth lighting and detailed textures, capturing the depth of the scene and the natural interaction with the camera, with the ocean and sandy beach subtly visible in the background.", "lora_scale": 1, "num_outputs": 2, "aspect_ratio": "1:1", "output_format": "jpg", "guidance_scale": 3.5, "output_quality": 80, "prompt_strength": 0.8, "extra_lora_scale": 0.8, "num_inference_steps": 28 }, "logs": "Using seed: 8460\nPrompt: CINTHIA sitting or reclining on a beachside boardwalk, viewed from above. She reaches towards the camera with her right hand, creating a dynamic perspective, with her hand slightly out of focus due to the proximity to the lens. Her face is turned upwards, looking directly at the camera with a calm and confident expression. CINTHIA is dressed in a light, summery outfit with a loose, flowy blouse and casual shorts, perfect for the beach setting. Her hair is loose, flowing naturally around her shoulders. The image is hyper-realistic, with smooth lighting and detailed textures, capturing the depth of the scene and the natural interaction with the camera, with the ocean and sandy beach subtly visible in the background.\ntxt2img mode\nUsing dev model\nLoaded LoRAs in 9.38s\nThe following part of your input was truncated because CLIP can only handle sequences up to 77 tokens: ['with a loose, flowy blouse and casual shorts, perfect for the beach setting. her hair is loose, flowing naturally around her shoulders. the image is hyper - realistic, with smooth lighting and detailed textures, capturing the depth of the scene and the natural interaction with the camera, with the ocean and sandy beach subtly visible in the background.', 'with a loose, flowy blouse and casual shorts, perfect for the beach setting. her hair is loose, flowing naturally around her shoulders. the image is hyper - realistic, with smooth lighting and detailed textures, capturing the depth of the scene and the natural interaction with the camera, with the ocean and sandy beach subtly visible in the background.']\n 0%| | 0/28 [00:00<?, ?it/s]\n 4%|▎ | 1/28 [00:00<00:14, 1.84it/s]\n 7%|▋ | 2/28 [00:00<00:12, 2.09it/s]\n 11%|█ | 3/28 [00:01<00:12, 1.97it/s]\n 14%|█▍ | 4/28 [00:02<00:12, 1.91it/s]\n 18%|█▊ | 5/28 [00:02<00:12, 1.89it/s]\n 21%|██▏ | 6/28 [00:03<00:11, 1.87it/s]\n 25%|██▌ | 7/28 [00:03<00:11, 1.86it/s]\n 29%|██▊ | 8/28 [00:04<00:10, 1.86it/s]\n 32%|███▏ | 9/28 [00:04<00:10, 1.85it/s]\n 36%|███▌ | 10/28 [00:05<00:09, 1.85it/s]\n 39%|███▉ | 11/28 [00:05<00:09, 1.84it/s]\n 43%|████▎ | 12/28 [00:06<00:08, 1.84it/s]\n 46%|████▋ | 13/28 [00:06<00:08, 1.84it/s]\n 50%|█████ | 14/28 [00:07<00:07, 1.84it/s]\n 54%|█████▎ | 15/28 [00:08<00:07, 1.84it/s]\n 57%|█████▋ | 16/28 [00:08<00:06, 1.84it/s]\n 61%|██████ | 17/28 [00:09<00:05, 1.84it/s]\n 64%|██████▍ | 18/28 [00:09<00:05, 1.84it/s]\n 68%|██████▊ | 19/28 [00:10<00:04, 1.84it/s]\n 71%|███████▏ | 20/28 [00:10<00:04, 1.84it/s]\n 75%|███████▌ | 21/28 [00:11<00:03, 1.84it/s]\n 79%|███████▊ | 22/28 [00:11<00:03, 1.84it/s]\n 82%|████████▏ | 23/28 [00:12<00:02, 1.84it/s]\n 86%|████████▌ | 24/28 [00:12<00:02, 1.84it/s]\n 89%|████████▉ | 25/28 [00:13<00:01, 1.84it/s]\n 93%|█████████▎| 26/28 [00:14<00:01, 1.84it/s]\n 96%|█████████▋| 27/28 [00:14<00:00, 1.84it/s]\n100%|██████████| 28/28 [00:15<00:00, 1.84it/s]\n100%|██████████| 28/28 [00:15<00:00, 1.85it/s]", "metrics": { "predict_time": 25.321503066, "total_time": 25.330886 }, "output": [ "https://replicate.delivery/yhqm/p4sWjjeUPDRfcULGOWK7LPVdvNyeBuwqPuTft4fXY8iCVcMbC/out-0.jpg", "https://replicate.delivery/yhqm/t1SThhYWfIW9Na7no4c68JtXHvsqWWXZGCOfHMFeW87RFHzmA/out-1.jpg" ], "started_at": "2024-09-04T16:10:55.495383Z", "status": "succeeded", "urls": { "get": "https://api.replicate.com/v1/predictions/w3s84e50fsrm20chqq6ta50mdw", "cancel": "https://api.replicate.com/v1/predictions/w3s84e50fsrm20chqq6ta50mdw/cancel" }, "version": "f74c3d7d732384b93ed7f4d5661ae48781e873522b32e267e4d7421029868a91" }
Generated inUsing seed: 8460 Prompt: CINTHIA sitting or reclining on a beachside boardwalk, viewed from above. She reaches towards the camera with her right hand, creating a dynamic perspective, with her hand slightly out of focus due to the proximity to the lens. Her face is turned upwards, looking directly at the camera with a calm and confident expression. CINTHIA is dressed in a light, summery outfit with a loose, flowy blouse and casual shorts, perfect for the beach setting. Her hair is loose, flowing naturally around her shoulders. The image is hyper-realistic, with smooth lighting and detailed textures, capturing the depth of the scene and the natural interaction with the camera, with the ocean and sandy beach subtly visible in the background. txt2img mode Using dev model Loaded LoRAs in 9.38s The following part of your input was truncated because CLIP can only handle sequences up to 77 tokens: ['with a loose, flowy blouse and casual shorts, perfect for the beach setting. her hair is loose, flowing naturally around her shoulders. the image is hyper - realistic, with smooth lighting and detailed textures, capturing the depth of the scene and the natural interaction with the camera, with the ocean and sandy beach subtly visible in the background.', 'with a loose, flowy blouse and casual shorts, perfect for the beach setting. her hair is loose, flowing naturally around her shoulders. the image is hyper - realistic, with smooth lighting and detailed textures, capturing the depth of the scene and the natural interaction with the camera, with the ocean and sandy beach subtly visible in the background.'] 0%| | 0/28 [00:00<?, ?it/s] 4%|▎ | 1/28 [00:00<00:14, 1.84it/s] 7%|▋ | 2/28 [00:00<00:12, 2.09it/s] 11%|█ | 3/28 [00:01<00:12, 1.97it/s] 14%|█▍ | 4/28 [00:02<00:12, 1.91it/s] 18%|█▊ | 5/28 [00:02<00:12, 1.89it/s] 21%|██▏ | 6/28 [00:03<00:11, 1.87it/s] 25%|██▌ | 7/28 [00:03<00:11, 1.86it/s] 29%|██▊ | 8/28 [00:04<00:10, 1.86it/s] 32%|███▏ | 9/28 [00:04<00:10, 1.85it/s] 36%|███▌ | 10/28 [00:05<00:09, 1.85it/s] 39%|███▉ | 11/28 [00:05<00:09, 1.84it/s] 43%|████▎ | 12/28 [00:06<00:08, 1.84it/s] 46%|████▋ | 13/28 [00:06<00:08, 1.84it/s] 50%|█████ | 14/28 [00:07<00:07, 1.84it/s] 54%|█████▎ | 15/28 [00:08<00:07, 1.84it/s] 57%|█████▋ | 16/28 [00:08<00:06, 1.84it/s] 61%|██████ | 17/28 [00:09<00:05, 1.84it/s] 64%|██████▍ | 18/28 [00:09<00:05, 1.84it/s] 68%|██████▊ | 19/28 [00:10<00:04, 1.84it/s] 71%|███████▏ | 20/28 [00:10<00:04, 1.84it/s] 75%|███████▌ | 21/28 [00:11<00:03, 1.84it/s] 79%|███████▊ | 22/28 [00:11<00:03, 1.84it/s] 82%|████████▏ | 23/28 [00:12<00:02, 1.84it/s] 86%|████████▌ | 24/28 [00:12<00:02, 1.84it/s] 89%|████████▉ | 25/28 [00:13<00:01, 1.84it/s] 93%|█████████▎| 26/28 [00:14<00:01, 1.84it/s] 96%|█████████▋| 27/28 [00:14<00:00, 1.84it/s] 100%|██████████| 28/28 [00:15<00:00, 1.84it/s] 100%|██████████| 28/28 [00:15<00:00, 1.85it/s]
Prediction
darionaviar/cinthia:b26a56abd9f014712559f3e6a79f172235742fda77ebbc4cfca5fa573c4db3c3IDd62pfyad9drm60chwvwvfv2ehgStatusSucceededSourceWebHardwareH100Total durationCreatedInput
- model
- dev
- prompt
- CINTHIA posing in an urban setting, with her left leg propped up on a low wall and her right leg firmly on the pavement. She is wearing a stylish deep purple athletic outfit, featuring form-fitting leggings and a sporty crop top. Her body is turned slightly towards the camera, her hair flowing down her back, and her gaze is confident. The background includes a sleek, minimalist urban landscape with modern architecture, and the natural light creates a cinematic feel. The image is hyper-realistic, highlighting the sharp contrasts and details of the city environment.
- lora_scale
- 1
- num_outputs
- 2
- aspect_ratio
- 4:5
- output_format
- jpg
- guidance_scale
- 3.5
- output_quality
- 100
- prompt_strength
- 0.8
- extra_lora_scale
- 0.8
- num_inference_steps
- 40
{ "model": "dev", "prompt": "CINTHIA posing in an urban setting, with her left leg propped up on a low wall and her right leg firmly on the pavement. She is wearing a stylish deep purple athletic outfit, featuring form-fitting leggings and a sporty crop top. Her body is turned slightly towards the camera, her hair flowing down her back, and her gaze is confident. The background includes a sleek, minimalist urban landscape with modern architecture, and the natural light creates a cinematic feel. The image is hyper-realistic, highlighting the sharp contrasts and details of the city environment.", "lora_scale": 1, "num_outputs": 2, "aspect_ratio": "4:5", "output_format": "jpg", "guidance_scale": 3.5, "output_quality": 100, "prompt_strength": 0.8, "extra_lora_scale": 0.8, "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 darionaviar/cinthia using Replicate’s API. Check out the model's schema for an overview of inputs and outputs.
const output = await replicate.run( "darionaviar/cinthia:b26a56abd9f014712559f3e6a79f172235742fda77ebbc4cfca5fa573c4db3c3", { input: { model: "dev", prompt: "CINTHIA posing in an urban setting, with her left leg propped up on a low wall and her right leg firmly on the pavement. She is wearing a stylish deep purple athletic outfit, featuring form-fitting leggings and a sporty crop top. Her body is turned slightly towards the camera, her hair flowing down her back, and her gaze is confident. The background includes a sleek, minimalist urban landscape with modern architecture, and the natural light creates a cinematic feel. The image is hyper-realistic, highlighting the sharp contrasts and details of the city environment.", lora_scale: 1, num_outputs: 2, aspect_ratio: "4:5", output_format: "jpg", guidance_scale: 3.5, output_quality: 100, prompt_strength: 0.8, extra_lora_scale: 0.8, 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 darionaviar/cinthia using Replicate’s API. Check out the model's schema for an overview of inputs and outputs.
output = replicate.run( "darionaviar/cinthia:b26a56abd9f014712559f3e6a79f172235742fda77ebbc4cfca5fa573c4db3c3", input={ "model": "dev", "prompt": "CINTHIA posing in an urban setting, with her left leg propped up on a low wall and her right leg firmly on the pavement. She is wearing a stylish deep purple athletic outfit, featuring form-fitting leggings and a sporty crop top. Her body is turned slightly towards the camera, her hair flowing down her back, and her gaze is confident. The background includes a sleek, minimalist urban landscape with modern architecture, and the natural light creates a cinematic feel. The image is hyper-realistic, highlighting the sharp contrasts and details of the city environment.", "lora_scale": 1, "num_outputs": 2, "aspect_ratio": "4:5", "output_format": "jpg", "guidance_scale": 3.5, "output_quality": 100, "prompt_strength": 0.8, "extra_lora_scale": 0.8, "num_inference_steps": 40 } ) print(output)
To learn more, take a look at the guide on getting started with Python.
Run darionaviar/cinthia 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": "darionaviar/cinthia:b26a56abd9f014712559f3e6a79f172235742fda77ebbc4cfca5fa573c4db3c3", "input": { "model": "dev", "prompt": "CINTHIA posing in an urban setting, with her left leg propped up on a low wall and her right leg firmly on the pavement. She is wearing a stylish deep purple athletic outfit, featuring form-fitting leggings and a sporty crop top. Her body is turned slightly towards the camera, her hair flowing down her back, and her gaze is confident. The background includes a sleek, minimalist urban landscape with modern architecture, and the natural light creates a cinematic feel. The image is hyper-realistic, highlighting the sharp contrasts and details of the city environment.", "lora_scale": 1, "num_outputs": 2, "aspect_ratio": "4:5", "output_format": "jpg", "guidance_scale": 3.5, "output_quality": 100, "prompt_strength": 0.8, "extra_lora_scale": 0.8, "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": "2024-09-12T16:03:38.797748Z", "created_at": "2024-09-12T16:03:03.627000Z", "data_removed": false, "error": null, "id": "d62pfyad9drm60chwvwvfv2ehg", "input": { "model": "dev", "prompt": "CINTHIA posing in an urban setting, with her left leg propped up on a low wall and her right leg firmly on the pavement. She is wearing a stylish deep purple athletic outfit, featuring form-fitting leggings and a sporty crop top. Her body is turned slightly towards the camera, her hair flowing down her back, and her gaze is confident. The background includes a sleek, minimalist urban landscape with modern architecture, and the natural light creates a cinematic feel. The image is hyper-realistic, highlighting the sharp contrasts and details of the city environment.", "lora_scale": 1, "num_outputs": 2, "aspect_ratio": "4:5", "output_format": "jpg", "guidance_scale": 3.5, "output_quality": 100, "prompt_strength": 0.8, "extra_lora_scale": 0.8, "num_inference_steps": 40 }, "logs": "Using seed: 46625\nPrompt: CINTHIA posing in an urban setting, with her left leg propped up on a low wall and her right leg firmly on the pavement. She is wearing a stylish deep purple athletic outfit, featuring form-fitting leggings and a sporty crop top. Her body is turned slightly towards the camera, her hair flowing down her back, and her gaze is confident. The background includes a sleek, minimalist urban landscape with modern architecture, and the natural light creates a cinematic feel. The image is hyper-realistic, highlighting the sharp contrasts and details of the city environment.\n[!] txt2img mode\nUsing dev model\nfree=6763897704448\nDownloading weights\n2024-09-12T16:03:03Z | INFO | [ Initiating ] chunk_size=150M dest=/tmp/tmpkr3l2apm/weights url=https://replicate.delivery/yhqm/mlriPeRDZjQ3CKoDe2HlSm9vazau0m4u5pUBfYUzuHXW793mA/trained_model.tar\n2024-09-12T16:03:05Z | INFO | [ Complete ] dest=/tmp/tmpkr3l2apm/weights size=\"215 MB\" total_elapsed=1.790s url=https://replicate.delivery/yhqm/mlriPeRDZjQ3CKoDe2HlSm9vazau0m4u5pUBfYUzuHXW793mA/trained_model.tar\nDownloaded weights in 1.82s\nLoaded LoRAs in 15.03s\n 0%| | 0/40 [00:00<?, ?it/s]\n 2%|▎ | 1/40 [00:00<00:18, 2.07it/s]\n 5%|▌ | 2/40 [00:00<00:16, 2.34it/s]\n 8%|▊ | 3/40 [00:01<00:16, 2.21it/s]\n 10%|█ | 4/40 [00:01<00:16, 2.15it/s]\n 12%|█▎ | 5/40 [00:02<00:16, 2.12it/s]\n 15%|█▌ | 6/40 [00:02<00:16, 2.10it/s]\n 18%|█▊ | 7/40 [00:03<00:15, 2.09it/s]\n 20%|██ | 8/40 [00:03<00:15, 2.08it/s]\n 22%|██▎ | 9/40 [00:04<00:14, 2.08it/s]\n 25%|██▌ | 10/40 [00:04<00:14, 2.07it/s]\n 28%|██▊ | 11/40 [00:05<00:14, 2.07it/s]\n 30%|███ | 12/40 [00:05<00:13, 2.07it/s]\n 32%|███▎ | 13/40 [00:06<00:13, 2.07it/s]\n 35%|███▌ | 14/40 [00:06<00:12, 2.07it/s]\n 38%|███▊ | 15/40 [00:07<00:12, 2.07it/s]\n 40%|████ | 16/40 [00:07<00:11, 2.06it/s]\n 42%|████▎ | 17/40 [00:08<00:11, 2.06it/s]\n 45%|████▌ | 18/40 [00:08<00:10, 2.06it/s]\n 48%|████▊ | 19/40 [00:09<00:10, 2.06it/s]\n 50%|█████ | 20/40 [00:09<00:09, 2.06it/s]\n 52%|█████▎ | 21/40 [00:10<00:09, 2.06it/s]\n 55%|█████▌ | 22/40 [00:10<00:08, 2.06it/s]\n 57%|█████▊ | 23/40 [00:11<00:08, 2.06it/s]\n 60%|██████ | 24/40 [00:11<00:07, 2.06it/s]\n 62%|██████▎ | 25/40 [00:12<00:07, 2.06it/s]\n 65%|██████▌ | 26/40 [00:12<00:06, 2.06it/s]\n 68%|██████▊ | 27/40 [00:12<00:06, 2.06it/s]\n 70%|███████ | 28/40 [00:13<00:05, 2.06it/s]\n 72%|███████▎ | 29/40 [00:13<00:05, 2.06it/s]\n 75%|███████▌ | 30/40 [00:14<00:04, 2.06it/s]\n 78%|███████▊ | 31/40 [00:14<00:04, 2.06it/s]\n 80%|████████ | 32/40 [00:15<00:03, 2.06it/s]\n 82%|████████▎ | 33/40 [00:15<00:03, 2.06it/s]\n 85%|████████▌ | 34/40 [00:16<00:02, 2.06it/s]\n 88%|████████▊ | 35/40 [00:16<00:02, 2.06it/s]\n 90%|█████████ | 36/40 [00:17<00:01, 2.06it/s]\n 92%|█████████▎| 37/40 [00:17<00:01, 2.06it/s]\n 95%|█████████▌| 38/40 [00:18<00:00, 2.06it/s]\n 98%|█████████▊| 39/40 [00:18<00:00, 2.06it/s]\n100%|██████████| 40/40 [00:19<00:00, 2.06it/s]\n100%|██████████| 40/40 [00:19<00:00, 2.07it/s]", "metrics": { "predict_time": 35.162479429, "total_time": 35.170748 }, "output": [ "https://replicate.delivery/yhqm/7YoXSRbWewX3Ra91RVuAr5zJOHQ5Tj4vnPf9cQOsb1QaLMcTA/out-0.jpg", "https://replicate.delivery/yhqm/ITOBT2RfQxQgDi9PXsfb0vVyoHgcJlzE32p4deu20ZX0WY4mA/out-1.jpg" ], "started_at": "2024-09-12T16:03:03.635269Z", "status": "succeeded", "urls": { "get": "https://api.replicate.com/v1/predictions/d62pfyad9drm60chwvwvfv2ehg", "cancel": "https://api.replicate.com/v1/predictions/d62pfyad9drm60chwvwvfv2ehg/cancel" }, "version": "b26a56abd9f014712559f3e6a79f172235742fda77ebbc4cfca5fa573c4db3c3" }
Generated inUsing seed: 46625 Prompt: CINTHIA posing in an urban setting, with her left leg propped up on a low wall and her right leg firmly on the pavement. She is wearing a stylish deep purple athletic outfit, featuring form-fitting leggings and a sporty crop top. Her body is turned slightly towards the camera, her hair flowing down her back, and her gaze is confident. The background includes a sleek, minimalist urban landscape with modern architecture, and the natural light creates a cinematic feel. The image is hyper-realistic, highlighting the sharp contrasts and details of the city environment. [!] txt2img mode Using dev model free=6763897704448 Downloading weights 2024-09-12T16:03:03Z | INFO | [ Initiating ] chunk_size=150M dest=/tmp/tmpkr3l2apm/weights url=https://replicate.delivery/yhqm/mlriPeRDZjQ3CKoDe2HlSm9vazau0m4u5pUBfYUzuHXW793mA/trained_model.tar 2024-09-12T16:03:05Z | INFO | [ Complete ] dest=/tmp/tmpkr3l2apm/weights size="215 MB" total_elapsed=1.790s url=https://replicate.delivery/yhqm/mlriPeRDZjQ3CKoDe2HlSm9vazau0m4u5pUBfYUzuHXW793mA/trained_model.tar Downloaded weights in 1.82s Loaded LoRAs in 15.03s 0%| | 0/40 [00:00<?, ?it/s] 2%|▎ | 1/40 [00:00<00:18, 2.07it/s] 5%|▌ | 2/40 [00:00<00:16, 2.34it/s] 8%|▊ | 3/40 [00:01<00:16, 2.21it/s] 10%|█ | 4/40 [00:01<00:16, 2.15it/s] 12%|█▎ | 5/40 [00:02<00:16, 2.12it/s] 15%|█▌ | 6/40 [00:02<00:16, 2.10it/s] 18%|█▊ | 7/40 [00:03<00:15, 2.09it/s] 20%|██ | 8/40 [00:03<00:15, 2.08it/s] 22%|██▎ | 9/40 [00:04<00:14, 2.08it/s] 25%|██▌ | 10/40 [00:04<00:14, 2.07it/s] 28%|██▊ | 11/40 [00:05<00:14, 2.07it/s] 30%|███ | 12/40 [00:05<00:13, 2.07it/s] 32%|███▎ | 13/40 [00:06<00:13, 2.07it/s] 35%|███▌ | 14/40 [00:06<00:12, 2.07it/s] 38%|███▊ | 15/40 [00:07<00:12, 2.07it/s] 40%|████ | 16/40 [00:07<00:11, 2.06it/s] 42%|████▎ | 17/40 [00:08<00:11, 2.06it/s] 45%|████▌ | 18/40 [00:08<00:10, 2.06it/s] 48%|████▊ | 19/40 [00:09<00:10, 2.06it/s] 50%|█████ | 20/40 [00:09<00:09, 2.06it/s] 52%|█████▎ | 21/40 [00:10<00:09, 2.06it/s] 55%|█████▌ | 22/40 [00:10<00:08, 2.06it/s] 57%|█████▊ | 23/40 [00:11<00:08, 2.06it/s] 60%|██████ | 24/40 [00:11<00:07, 2.06it/s] 62%|██████▎ | 25/40 [00:12<00:07, 2.06it/s] 65%|██████▌ | 26/40 [00:12<00:06, 2.06it/s] 68%|██████▊ | 27/40 [00:12<00:06, 2.06it/s] 70%|███████ | 28/40 [00:13<00:05, 2.06it/s] 72%|███████▎ | 29/40 [00:13<00:05, 2.06it/s] 75%|███████▌ | 30/40 [00:14<00:04, 2.06it/s] 78%|███████▊ | 31/40 [00:14<00:04, 2.06it/s] 80%|████████ | 32/40 [00:15<00:03, 2.06it/s] 82%|████████▎ | 33/40 [00:15<00:03, 2.06it/s] 85%|████████▌ | 34/40 [00:16<00:02, 2.06it/s] 88%|████████▊ | 35/40 [00:16<00:02, 2.06it/s] 90%|█████████ | 36/40 [00:17<00:01, 2.06it/s] 92%|█████████▎| 37/40 [00:17<00:01, 2.06it/s] 95%|█████████▌| 38/40 [00:18<00:00, 2.06it/s] 98%|█████████▊| 39/40 [00:18<00:00, 2.06it/s] 100%|██████████| 40/40 [00:19<00:00, 2.06it/s] 100%|██████████| 40/40 [00:19<00:00, 2.07it/s]
Prediction
darionaviar/cinthia:b26a56abd9f014712559f3e6a79f172235742fda77ebbc4cfca5fa573c4db3c3IDczt0mjy0xnrm20chwftt3ercb4StatusSucceededSourceWebHardwareH100Total durationCreatedInput
- model
- dev
- prompt
- CINTHIA standing in a modern kitchen, sipping a protein shake from a clear shaker cup. She is dressed in stylish, deep purple athletic wear, and her slightly tired expression suggests she just finished a workout. The scene captures her in a relaxed moment, with soft, natural lighting illuminating the sleek kitchen countertops and modern appliances in the background. CINTHIA's hair is slightly messy, and a light sheen of sweat on her skin adds to the realism of the post-workout look. The image is hyper-realistic, focusing on the textures of her outfit, the kitchen setting, and the subtle expression of exhaustion mixed with satisfaction after her training
- lora_scale
- 1
- num_outputs
- 2
- aspect_ratio
- 1:1
- output_format
- jpg
- guidance_scale
- 3.5
- output_quality
- 100
- prompt_strength
- 0.8
- extra_lora_scale
- 1
- num_inference_steps
- 40
{ "model": "dev", "prompt": "CINTHIA standing in a modern kitchen, sipping a protein shake from a clear shaker cup. She is dressed in stylish, deep purple athletic wear, and her slightly tired expression suggests she just finished a workout. The scene captures her in a relaxed moment, with soft, natural lighting illuminating the sleek kitchen countertops and modern appliances in the background. CINTHIA's hair is slightly messy, and a light sheen of sweat on her skin adds to the realism of the post-workout look. The image is hyper-realistic, focusing on the textures of her outfit, the kitchen setting, and the subtle expression of exhaustion mixed with satisfaction after her training", "lora_scale": 1, "num_outputs": 2, "aspect_ratio": "1:1", "output_format": "jpg", "guidance_scale": 3.5, "output_quality": 100, "prompt_strength": 0.8, "extra_lora_scale": 1, "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 darionaviar/cinthia using Replicate’s API. Check out the model's schema for an overview of inputs and outputs.
const output = await replicate.run( "darionaviar/cinthia:b26a56abd9f014712559f3e6a79f172235742fda77ebbc4cfca5fa573c4db3c3", { input: { model: "dev", prompt: "CINTHIA standing in a modern kitchen, sipping a protein shake from a clear shaker cup. She is dressed in stylish, deep purple athletic wear, and her slightly tired expression suggests she just finished a workout. The scene captures her in a relaxed moment, with soft, natural lighting illuminating the sleek kitchen countertops and modern appliances in the background. CINTHIA's hair is slightly messy, and a light sheen of sweat on her skin adds to the realism of the post-workout look. The image is hyper-realistic, focusing on the textures of her outfit, the kitchen setting, and the subtle expression of exhaustion mixed with satisfaction after her training", lora_scale: 1, num_outputs: 2, aspect_ratio: "1:1", output_format: "jpg", guidance_scale: 3.5, output_quality: 100, prompt_strength: 0.8, extra_lora_scale: 1, 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 darionaviar/cinthia using Replicate’s API. Check out the model's schema for an overview of inputs and outputs.
output = replicate.run( "darionaviar/cinthia:b26a56abd9f014712559f3e6a79f172235742fda77ebbc4cfca5fa573c4db3c3", input={ "model": "dev", "prompt": "CINTHIA standing in a modern kitchen, sipping a protein shake from a clear shaker cup. She is dressed in stylish, deep purple athletic wear, and her slightly tired expression suggests she just finished a workout. The scene captures her in a relaxed moment, with soft, natural lighting illuminating the sleek kitchen countertops and modern appliances in the background. CINTHIA's hair is slightly messy, and a light sheen of sweat on her skin adds to the realism of the post-workout look. The image is hyper-realistic, focusing on the textures of her outfit, the kitchen setting, and the subtle expression of exhaustion mixed with satisfaction after her training", "lora_scale": 1, "num_outputs": 2, "aspect_ratio": "1:1", "output_format": "jpg", "guidance_scale": 3.5, "output_quality": 100, "prompt_strength": 0.8, "extra_lora_scale": 1, "num_inference_steps": 40 } ) print(output)
To learn more, take a look at the guide on getting started with Python.
Run darionaviar/cinthia 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": "darionaviar/cinthia:b26a56abd9f014712559f3e6a79f172235742fda77ebbc4cfca5fa573c4db3c3", "input": { "model": "dev", "prompt": "CINTHIA standing in a modern kitchen, sipping a protein shake from a clear shaker cup. She is dressed in stylish, deep purple athletic wear, and her slightly tired expression suggests she just finished a workout. The scene captures her in a relaxed moment, with soft, natural lighting illuminating the sleek kitchen countertops and modern appliances in the background. CINTHIA\'s hair is slightly messy, and a light sheen of sweat on her skin adds to the realism of the post-workout look. The image is hyper-realistic, focusing on the textures of her outfit, the kitchen setting, and the subtle expression of exhaustion mixed with satisfaction after her training", "lora_scale": 1, "num_outputs": 2, "aspect_ratio": "1:1", "output_format": "jpg", "guidance_scale": 3.5, "output_quality": 100, "prompt_strength": 0.8, "extra_lora_scale": 1, "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": "2024-09-12T02:01:21.518477Z", "created_at": "2024-09-12T02:00:19.437000Z", "data_removed": false, "error": null, "id": "czt0mjy0xnrm20chwftt3ercb4", "input": { "model": "dev", "prompt": "CINTHIA standing in a modern kitchen, sipping a protein shake from a clear shaker cup. She is dressed in stylish, deep purple athletic wear, and her slightly tired expression suggests she just finished a workout. The scene captures her in a relaxed moment, with soft, natural lighting illuminating the sleek kitchen countertops and modern appliances in the background. CINTHIA's hair is slightly messy, and a light sheen of sweat on her skin adds to the realism of the post-workout look. The image is hyper-realistic, focusing on the textures of her outfit, the kitchen setting, and the subtle expression of exhaustion mixed with satisfaction after her training", "lora_scale": 1, "num_outputs": 2, "aspect_ratio": "1:1", "output_format": "jpg", "guidance_scale": 3.5, "output_quality": 100, "prompt_strength": 0.8, "extra_lora_scale": 1, "num_inference_steps": 40 }, "logs": "Using seed: 10562\nPrompt: CINTHIA standing in a modern kitchen, sipping a protein shake from a clear shaker cup. She is dressed in stylish, deep purple athletic wear, and her slightly tired expression suggests she just finished a workout. The scene captures her in a relaxed moment, with soft, natural lighting illuminating the sleek kitchen countertops and modern appliances in the background. CINTHIA's hair is slightly messy, and a light sheen of sweat on her skin adds to the realism of the post-workout look. The image is hyper-realistic, focusing on the textures of her outfit, the kitchen setting, and the subtle expression of exhaustion mixed with satisfaction after her training\n[!] txt2img mode\nUsing dev model\nfree=7177021825024\nDownloading weights\n2024-09-12T02:00:46Z | INFO | [ Initiating ] chunk_size=150M dest=/tmp/tmptkyxsw2_/weights url=https://replicate.delivery/yhqm/mlriPeRDZjQ3CKoDe2HlSm9vazau0m4u5pUBfYUzuHXW793mA/trained_model.tar\n2024-09-12T02:00:50Z | INFO | [ Complete ] dest=/tmp/tmptkyxsw2_/weights size=\"215 MB\" total_elapsed=3.701s url=https://replicate.delivery/yhqm/mlriPeRDZjQ3CKoDe2HlSm9vazau0m4u5pUBfYUzuHXW793mA/trained_model.tar\nDownloaded weights in 3.73s\nLoaded LoRAs in 13.33s\n 0%| | 0/40 [00:00<?, ?it/s]\n 2%|▎ | 1/40 [00:00<00:19, 1.96it/s]\n 5%|▌ | 2/40 [00:00<00:17, 2.21it/s]\n 8%|▊ | 3/40 [00:01<00:17, 2.09it/s]\n 10%|█ | 4/40 [00:01<00:17, 2.03it/s]\n 12%|█▎ | 5/40 [00:02<00:17, 2.00it/s]\n 15%|█▌ | 6/40 [00:02<00:17, 1.98it/s]\n 18%|█▊ | 7/40 [00:03<00:16, 1.97it/s]\n 20%|██ | 8/40 [00:03<00:16, 1.97it/s]\n 22%|██▎ | 9/40 [00:04<00:15, 1.96it/s]\n 25%|██▌ | 10/40 [00:05<00:15, 1.96it/s]\n 28%|██▊ | 11/40 [00:05<00:14, 1.96it/s]\n 30%|███ | 12/40 [00:06<00:14, 1.96it/s]\n 32%|███▎ | 13/40 [00:06<00:13, 1.96it/s]\n 35%|███▌ | 14/40 [00:07<00:13, 1.95it/s]\n 38%|███▊ | 15/40 [00:07<00:12, 1.95it/s]\n 40%|████ | 16/40 [00:08<00:12, 1.95it/s]\n 42%|████▎ | 17/40 [00:08<00:11, 1.95it/s]\n 45%|████▌ | 18/40 [00:09<00:11, 1.95it/s]\n 48%|████▊ | 19/40 [00:09<00:10, 1.95it/s]\n 50%|█████ | 20/40 [00:10<00:10, 1.95it/s]\n 52%|█████▎ | 21/40 [00:10<00:09, 1.95it/s]\n 55%|█████▌ | 22/40 [00:11<00:09, 1.95it/s]\n 57%|█████▊ | 23/40 [00:11<00:08, 1.95it/s]\n 60%|██████ | 24/40 [00:12<00:08, 1.95it/s]\n 62%|██████▎ | 25/40 [00:12<00:07, 1.95it/s]\n 65%|██████▌ | 26/40 [00:13<00:07, 1.95it/s]\n 68%|██████▊ | 27/40 [00:13<00:06, 1.95it/s]\n 70%|███████ | 28/40 [00:14<00:06, 1.95it/s]\n 72%|███████▎ | 29/40 [00:14<00:05, 1.95it/s]\n 75%|███████▌ | 30/40 [00:15<00:05, 1.95it/s]\n 78%|███████▊ | 31/40 [00:15<00:04, 1.95it/s]\n 80%|████████ | 32/40 [00:16<00:04, 1.95it/s]\n 82%|████████▎ | 33/40 [00:16<00:03, 1.95it/s]\n 85%|████████▌ | 34/40 [00:17<00:03, 1.95it/s]\n 88%|████████▊ | 35/40 [00:17<00:02, 1.96it/s]\n 90%|█████████ | 36/40 [00:18<00:02, 1.96it/s]\n 92%|█████████▎| 37/40 [00:18<00:01, 1.96it/s]\n 95%|█████████▌| 38/40 [00:19<00:01, 1.96it/s]\n 98%|█████████▊| 39/40 [00:19<00:00, 1.96it/s]\n100%|██████████| 40/40 [00:20<00:00, 1.96it/s]\n100%|██████████| 40/40 [00:20<00:00, 1.96it/s]", "metrics": { "predict_time": 34.575134595, "total_time": 62.081477 }, "output": [ "https://replicate.delivery/yhqm/hvLXkJZ8AzIedS1emOmg6O7fh0vWCt53WkWPAi3kcgHjrfvNB/out-0.jpg", "https://replicate.delivery/yhqm/hCS5h56eikzcdSXAhF55jZ5BRv7CeIK2fy0NS5WfbobFXff2E/out-1.jpg" ], "started_at": "2024-09-12T02:00:46.943343Z", "status": "succeeded", "urls": { "get": "https://api.replicate.com/v1/predictions/czt0mjy0xnrm20chwftt3ercb4", "cancel": "https://api.replicate.com/v1/predictions/czt0mjy0xnrm20chwftt3ercb4/cancel" }, "version": "b26a56abd9f014712559f3e6a79f172235742fda77ebbc4cfca5fa573c4db3c3" }
Generated inUsing seed: 10562 Prompt: CINTHIA standing in a modern kitchen, sipping a protein shake from a clear shaker cup. She is dressed in stylish, deep purple athletic wear, and her slightly tired expression suggests she just finished a workout. The scene captures her in a relaxed moment, with soft, natural lighting illuminating the sleek kitchen countertops and modern appliances in the background. CINTHIA's hair is slightly messy, and a light sheen of sweat on her skin adds to the realism of the post-workout look. The image is hyper-realistic, focusing on the textures of her outfit, the kitchen setting, and the subtle expression of exhaustion mixed with satisfaction after her training [!] txt2img mode Using dev model free=7177021825024 Downloading weights 2024-09-12T02:00:46Z | INFO | [ Initiating ] chunk_size=150M dest=/tmp/tmptkyxsw2_/weights url=https://replicate.delivery/yhqm/mlriPeRDZjQ3CKoDe2HlSm9vazau0m4u5pUBfYUzuHXW793mA/trained_model.tar 2024-09-12T02:00:50Z | INFO | [ Complete ] dest=/tmp/tmptkyxsw2_/weights size="215 MB" total_elapsed=3.701s url=https://replicate.delivery/yhqm/mlriPeRDZjQ3CKoDe2HlSm9vazau0m4u5pUBfYUzuHXW793mA/trained_model.tar Downloaded weights in 3.73s Loaded LoRAs in 13.33s 0%| | 0/40 [00:00<?, ?it/s] 2%|▎ | 1/40 [00:00<00:19, 1.96it/s] 5%|▌ | 2/40 [00:00<00:17, 2.21it/s] 8%|▊ | 3/40 [00:01<00:17, 2.09it/s] 10%|█ | 4/40 [00:01<00:17, 2.03it/s] 12%|█▎ | 5/40 [00:02<00:17, 2.00it/s] 15%|█▌ | 6/40 [00:02<00:17, 1.98it/s] 18%|█▊ | 7/40 [00:03<00:16, 1.97it/s] 20%|██ | 8/40 [00:03<00:16, 1.97it/s] 22%|██▎ | 9/40 [00:04<00:15, 1.96it/s] 25%|██▌ | 10/40 [00:05<00:15, 1.96it/s] 28%|██▊ | 11/40 [00:05<00:14, 1.96it/s] 30%|███ | 12/40 [00:06<00:14, 1.96it/s] 32%|███▎ | 13/40 [00:06<00:13, 1.96it/s] 35%|███▌ | 14/40 [00:07<00:13, 1.95it/s] 38%|███▊ | 15/40 [00:07<00:12, 1.95it/s] 40%|████ | 16/40 [00:08<00:12, 1.95it/s] 42%|████▎ | 17/40 [00:08<00:11, 1.95it/s] 45%|████▌ | 18/40 [00:09<00:11, 1.95it/s] 48%|████▊ | 19/40 [00:09<00:10, 1.95it/s] 50%|█████ | 20/40 [00:10<00:10, 1.95it/s] 52%|█████▎ | 21/40 [00:10<00:09, 1.95it/s] 55%|█████▌ | 22/40 [00:11<00:09, 1.95it/s] 57%|█████▊ | 23/40 [00:11<00:08, 1.95it/s] 60%|██████ | 24/40 [00:12<00:08, 1.95it/s] 62%|██████▎ | 25/40 [00:12<00:07, 1.95it/s] 65%|██████▌ | 26/40 [00:13<00:07, 1.95it/s] 68%|██████▊ | 27/40 [00:13<00:06, 1.95it/s] 70%|███████ | 28/40 [00:14<00:06, 1.95it/s] 72%|███████▎ | 29/40 [00:14<00:05, 1.95it/s] 75%|███████▌ | 30/40 [00:15<00:05, 1.95it/s] 78%|███████▊ | 31/40 [00:15<00:04, 1.95it/s] 80%|████████ | 32/40 [00:16<00:04, 1.95it/s] 82%|████████▎ | 33/40 [00:16<00:03, 1.95it/s] 85%|████████▌ | 34/40 [00:17<00:03, 1.95it/s] 88%|████████▊ | 35/40 [00:17<00:02, 1.96it/s] 90%|█████████ | 36/40 [00:18<00:02, 1.96it/s] 92%|█████████▎| 37/40 [00:18<00:01, 1.96it/s] 95%|█████████▌| 38/40 [00:19<00:01, 1.96it/s] 98%|█████████▊| 39/40 [00:19<00:00, 1.96it/s] 100%|██████████| 40/40 [00:20<00:00, 1.96it/s] 100%|██████████| 40/40 [00:20<00:00, 1.96it/s]
Want to make some of these yourself?
Run this model