femkegr
/
dora
- Public
- 77 runs
-
H100
Prediction
femkegr/dora:a8d3923aID660y1cr3nhrm60cj03caz9xrm8StatusSucceededSourceWebHardwareH100Total durationCreatedInput
- model
- dev
- prompt
- A photorealistic image of dora standing in front of a mirror, taking a mirror selfie. She is wearing a stylish and elegant two-piece outfit. The top is a strapless, fitted black bodice with a smooth, matte finish, hugging the torso snugly, with subtle vertical seam details to accentuate the fit. The fabric of the top is structured, creating a sleek and minimalist look, with no embellishments, buttons, or zippers visible.The skirt starts high-waisted and is made of a lightweight, flowy fabric in pure white, featuring soft, wide pleats that create a dynamic movement as it reaches down to her mid-calf. The pleats are uniform and create an elegant, flowing silhouette that contrasts perfectly with the fitted black top. Her accessories include a small black patent leather handbag with a short strap, which she holds gracefully in her left hand. She is also wearing glossy black strappy high-heeled shoes with a closed pointed toe, adding to the refined, formal look. The setting is a modern, minimalist room, featuring a light-colored dresser with books and a small decorative vase with a single flower. The lighting is natural and soft, enhancing the simplicity and elegance of the outfit and the overall aesthetic
- lora_scale
- 1
- num_outputs
- 2
- aspect_ratio
- 9:16
- output_format
- png
- guidance_scale
- 3
- output_quality
- 90
- prompt_strength
- 0.8
- extra_lora_scale
- 1
- num_inference_steps
- 28
{ "model": "dev", "prompt": "A photorealistic image of dora standing in front of a mirror, taking a mirror selfie. She is wearing a stylish and elegant two-piece outfit. The top is a strapless, fitted black bodice with a smooth, matte finish, hugging the torso snugly, with subtle vertical seam details to accentuate the fit. The fabric of the top is structured, creating a sleek and minimalist look, with no embellishments, buttons, or zippers visible.The skirt starts high-waisted and is made of a lightweight, flowy fabric in pure white, featuring soft, wide pleats that create a dynamic movement as it reaches down to her mid-calf. The pleats are uniform and create an elegant, flowing silhouette that contrasts perfectly with the fitted black top.\n\nHer accessories include a small black patent leather handbag with a short strap, which she holds gracefully in her left hand. She is also wearing glossy black strappy high-heeled shoes with a closed pointed toe, adding to the refined, formal look.\n\nThe setting is a modern, minimalist room, featuring a light-colored dresser with books and a small decorative vase with a single flower. The lighting is natural and soft, enhancing the simplicity and elegance of the outfit and the overall aesthetic", "lora_scale": 1, "num_outputs": 2, "aspect_ratio": "9:16", "output_format": "png", "guidance_scale": 3, "output_quality": 90, "prompt_strength": 0.8, "extra_lora_scale": 1, "num_inference_steps": 28 }
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 femkegr/dora using Replicate’s API. Check out the model's schema for an overview of inputs and outputs.
const output = await replicate.run( "femkegr/dora:a8d3923a1f7d8c227a3711246cbf4bd9a12817356b6f6d496e56bfe53d8ce4cc", { input: { model: "dev", prompt: "A photorealistic image of dora standing in front of a mirror, taking a mirror selfie. She is wearing a stylish and elegant two-piece outfit. The top is a strapless, fitted black bodice with a smooth, matte finish, hugging the torso snugly, with subtle vertical seam details to accentuate the fit. The fabric of the top is structured, creating a sleek and minimalist look, with no embellishments, buttons, or zippers visible.The skirt starts high-waisted and is made of a lightweight, flowy fabric in pure white, featuring soft, wide pleats that create a dynamic movement as it reaches down to her mid-calf. The pleats are uniform and create an elegant, flowing silhouette that contrasts perfectly with the fitted black top.\n\nHer accessories include a small black patent leather handbag with a short strap, which she holds gracefully in her left hand. She is also wearing glossy black strappy high-heeled shoes with a closed pointed toe, adding to the refined, formal look.\n\nThe setting is a modern, minimalist room, featuring a light-colored dresser with books and a small decorative vase with a single flower. The lighting is natural and soft, enhancing the simplicity and elegance of the outfit and the overall aesthetic", lora_scale: 1, num_outputs: 2, aspect_ratio: "9:16", output_format: "png", guidance_scale: 3, output_quality: 90, prompt_strength: 0.8, extra_lora_scale: 1, num_inference_steps: 28 } } ); 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 femkegr/dora using Replicate’s API. Check out the model's schema for an overview of inputs and outputs.
output = replicate.run( "femkegr/dora:a8d3923a1f7d8c227a3711246cbf4bd9a12817356b6f6d496e56bfe53d8ce4cc", input={ "model": "dev", "prompt": "A photorealistic image of dora standing in front of a mirror, taking a mirror selfie. She is wearing a stylish and elegant two-piece outfit. The top is a strapless, fitted black bodice with a smooth, matte finish, hugging the torso snugly, with subtle vertical seam details to accentuate the fit. The fabric of the top is structured, creating a sleek and minimalist look, with no embellishments, buttons, or zippers visible.The skirt starts high-waisted and is made of a lightweight, flowy fabric in pure white, featuring soft, wide pleats that create a dynamic movement as it reaches down to her mid-calf. The pleats are uniform and create an elegant, flowing silhouette that contrasts perfectly with the fitted black top.\n\nHer accessories include a small black patent leather handbag with a short strap, which she holds gracefully in her left hand. She is also wearing glossy black strappy high-heeled shoes with a closed pointed toe, adding to the refined, formal look.\n\nThe setting is a modern, minimalist room, featuring a light-colored dresser with books and a small decorative vase with a single flower. The lighting is natural and soft, enhancing the simplicity and elegance of the outfit and the overall aesthetic", "lora_scale": 1, "num_outputs": 2, "aspect_ratio": "9:16", "output_format": "png", "guidance_scale": 3, "output_quality": 90, "prompt_strength": 0.8, "extra_lora_scale": 1, "num_inference_steps": 28 } ) 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 femkegr/dora 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": "a8d3923a1f7d8c227a3711246cbf4bd9a12817356b6f6d496e56bfe53d8ce4cc", "input": { "model": "dev", "prompt": "A photorealistic image of dora standing in front of a mirror, taking a mirror selfie. She is wearing a stylish and elegant two-piece outfit. The top is a strapless, fitted black bodice with a smooth, matte finish, hugging the torso snugly, with subtle vertical seam details to accentuate the fit. The fabric of the top is structured, creating a sleek and minimalist look, with no embellishments, buttons, or zippers visible.The skirt starts high-waisted and is made of a lightweight, flowy fabric in pure white, featuring soft, wide pleats that create a dynamic movement as it reaches down to her mid-calf. The pleats are uniform and create an elegant, flowing silhouette that contrasts perfectly with the fitted black top.\\n\\nHer accessories include a small black patent leather handbag with a short strap, which she holds gracefully in her left hand. She is also wearing glossy black strappy high-heeled shoes with a closed pointed toe, adding to the refined, formal look.\\n\\nThe setting is a modern, minimalist room, featuring a light-colored dresser with books and a small decorative vase with a single flower. The lighting is natural and soft, enhancing the simplicity and elegance of the outfit and the overall aesthetic", "lora_scale": 1, "num_outputs": 2, "aspect_ratio": "9:16", "output_format": "png", "guidance_scale": 3, "output_quality": 90, "prompt_strength": 0.8, "extra_lora_scale": 1, "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-17T16:39:48.814134Z", "created_at": "2024-09-17T16:36:49.708000Z", "data_removed": false, "error": null, "id": "660y1cr3nhrm60cj03caz9xrm8", "input": { "model": "dev", "prompt": "A photorealistic image of dora standing in front of a mirror, taking a mirror selfie. She is wearing a stylish and elegant two-piece outfit. The top is a strapless, fitted black bodice with a smooth, matte finish, hugging the torso snugly, with subtle vertical seam details to accentuate the fit. The fabric of the top is structured, creating a sleek and minimalist look, with no embellishments, buttons, or zippers visible.The skirt starts high-waisted and is made of a lightweight, flowy fabric in pure white, featuring soft, wide pleats that create a dynamic movement as it reaches down to her mid-calf. The pleats are uniform and create an elegant, flowing silhouette that contrasts perfectly with the fitted black top.\n\nHer accessories include a small black patent leather handbag with a short strap, which she holds gracefully in her left hand. She is also wearing glossy black strappy high-heeled shoes with a closed pointed toe, adding to the refined, formal look.\n\nThe setting is a modern, minimalist room, featuring a light-colored dresser with books and a small decorative vase with a single flower. The lighting is natural and soft, enhancing the simplicity and elegance of the outfit and the overall aesthetic", "lora_scale": 1, "num_outputs": 2, "aspect_ratio": "9:16", "output_format": "png", "guidance_scale": 3, "output_quality": 90, "prompt_strength": 0.8, "extra_lora_scale": 1, "num_inference_steps": 28 }, "logs": "Using seed: 43173\nPrompt: A photorealistic image of dora standing in front of a mirror, taking a mirror selfie. She is wearing a stylish and elegant two-piece outfit. The top is a strapless, fitted black bodice with a smooth, matte finish, hugging the torso snugly, with subtle vertical seam details to accentuate the fit. The fabric of the top is structured, creating a sleek and minimalist look, with no embellishments, buttons, or zippers visible.The skirt starts high-waisted and is made of a lightweight, flowy fabric in pure white, featuring soft, wide pleats that create a dynamic movement as it reaches down to her mid-calf. The pleats are uniform and create an elegant, flowing silhouette that contrasts perfectly with the fitted black top.\nHer accessories include a small black patent leather handbag with a short strap, which she holds gracefully in her left hand. She is also wearing glossy black strappy high-heeled shoes with a closed pointed toe, adding to the refined, formal look.\nThe setting is a modern, minimalist room, featuring a light-colored dresser with books and a small decorative vase with a single flower. The lighting is natural and soft, enhancing the simplicity and elegance of the outfit and the overall aesthetic\n[!] txt2img mode\nUsing dev model\nfree=6530853081088\nDownloading weights\n2024-09-17T16:39:23Z | INFO | [ Initiating ] chunk_size=150M dest=/tmp/tmpdciccxqx/weights url=https://replicate.delivery/yhqm/5QfG1ff0mdfOyTV1hehhkDLds5iZxqDoII5aizMcRSNqPZubC/trained_model.tar\n2024-09-17T16:39:25Z | INFO | [ Complete ] dest=/tmp/tmpdciccxqx/weights size=\"172 MB\" total_elapsed=1.940s url=https://replicate.delivery/yhqm/5QfG1ff0mdfOyTV1hehhkDLds5iZxqDoII5aizMcRSNqPZubC/trained_model.tar\nDownloaded weights in 1.97s\nLoaded LoRAs in 9.33s\n 0%| | 0/28 [00:00<?, ?it/s]\n 4%|▎ | 1/28 [00:00<00:14, 1.85it/s]\n 7%|▋ | 2/28 [00:00<00:12, 2.10it/s]\n 11%|█ | 3/28 [00:01<00:12, 1.98it/s]\n 14%|█▍ | 4/28 [00:02<00:12, 1.93it/s]\n 18%|█▊ | 5/28 [00:02<00:12, 1.90it/s]\n 21%|██▏ | 6/28 [00:03<00:11, 1.88it/s]\n 25%|██▌ | 7/28 [00:03<00:11, 1.87it/s]\n 29%|██▊ | 8/28 [00:04<00:10, 1.86it/s]\n 32%|███▏ | 9/28 [00:04<00:10, 1.86it/s]\n 36%|███▌ | 10/28 [00:05<00:09, 1.86it/s]\n 39%|███▉ | 11/28 [00:05<00:09, 1.85it/s]\n 43%|████▎ | 12/28 [00:06<00:08, 1.85it/s]\n 46%|████▋ | 13/28 [00:06<00:08, 1.85it/s]\n 50%|█████ | 14/28 [00:07<00:07, 1.85it/s]\n 54%|█████▎ | 15/28 [00:07<00:07, 1.85it/s]\n 57%|█████▋ | 16/28 [00:08<00:06, 1.85it/s]\n 61%|██████ | 17/28 [00:09<00:05, 1.85it/s]\n 64%|██████▍ | 18/28 [00:09<00:05, 1.85it/s]\n 68%|██████▊ | 19/28 [00:10<00:04, 1.85it/s]\n 71%|███████▏ | 20/28 [00:10<00:04, 1.85it/s]\n 75%|███████▌ | 21/28 [00:11<00:03, 1.85it/s]\n 79%|███████▊ | 22/28 [00:11<00:03, 1.85it/s]\n 82%|████████▏ | 23/28 [00:12<00:02, 1.85it/s]\n 86%|████████▌ | 24/28 [00:12<00:02, 1.85it/s]\n 89%|████████▉ | 25/28 [00:13<00:01, 1.85it/s]\n 93%|█████████▎| 26/28 [00:13<00:01, 1.85it/s]\n 96%|█████████▋| 27/28 [00:14<00:00, 1.85it/s]\n100%|██████████| 28/28 [00:15<00:00, 1.85it/s]\n100%|██████████| 28/28 [00:15<00:00, 1.86it/s]", "metrics": { "predict_time": 25.529055616, "total_time": 179.106134 }, "output": [ "https://replicate.delivery/yhqm/244rpxrk4CauO168f66cMfIacEbAHjSQsqfacmnshceRtY3NB/out-0.png", "https://replicate.delivery/yhqm/b0QkLilPegXZciBD47WGF1GdwsBdMUcdg0ix57mZNIPqF7uJA/out-1.png" ], "started_at": "2024-09-17T16:39:23.285079Z", "status": "succeeded", "urls": { "get": "https://api.replicate.com/v1/predictions/660y1cr3nhrm60cj03caz9xrm8", "cancel": "https://api.replicate.com/v1/predictions/660y1cr3nhrm60cj03caz9xrm8/cancel" }, "version": "a8d3923a1f7d8c227a3711246cbf4bd9a12817356b6f6d496e56bfe53d8ce4cc" }
Generated inUsing seed: 43173 Prompt: A photorealistic image of dora standing in front of a mirror, taking a mirror selfie. She is wearing a stylish and elegant two-piece outfit. The top is a strapless, fitted black bodice with a smooth, matte finish, hugging the torso snugly, with subtle vertical seam details to accentuate the fit. The fabric of the top is structured, creating a sleek and minimalist look, with no embellishments, buttons, or zippers visible.The skirt starts high-waisted and is made of a lightweight, flowy fabric in pure white, featuring soft, wide pleats that create a dynamic movement as it reaches down to her mid-calf. The pleats are uniform and create an elegant, flowing silhouette that contrasts perfectly with the fitted black top. Her accessories include a small black patent leather handbag with a short strap, which she holds gracefully in her left hand. She is also wearing glossy black strappy high-heeled shoes with a closed pointed toe, adding to the refined, formal look. The setting is a modern, minimalist room, featuring a light-colored dresser with books and a small decorative vase with a single flower. The lighting is natural and soft, enhancing the simplicity and elegance of the outfit and the overall aesthetic [!] txt2img mode Using dev model free=6530853081088 Downloading weights 2024-09-17T16:39:23Z | INFO | [ Initiating ] chunk_size=150M dest=/tmp/tmpdciccxqx/weights url=https://replicate.delivery/yhqm/5QfG1ff0mdfOyTV1hehhkDLds5iZxqDoII5aizMcRSNqPZubC/trained_model.tar 2024-09-17T16:39:25Z | INFO | [ Complete ] dest=/tmp/tmpdciccxqx/weights size="172 MB" total_elapsed=1.940s url=https://replicate.delivery/yhqm/5QfG1ff0mdfOyTV1hehhkDLds5iZxqDoII5aizMcRSNqPZubC/trained_model.tar Downloaded weights in 1.97s Loaded LoRAs in 9.33s 0%| | 0/28 [00:00<?, ?it/s] 4%|▎ | 1/28 [00:00<00:14, 1.85it/s] 7%|▋ | 2/28 [00:00<00:12, 2.10it/s] 11%|█ | 3/28 [00:01<00:12, 1.98it/s] 14%|█▍ | 4/28 [00:02<00:12, 1.93it/s] 18%|█▊ | 5/28 [00:02<00:12, 1.90it/s] 21%|██▏ | 6/28 [00:03<00:11, 1.88it/s] 25%|██▌ | 7/28 [00:03<00:11, 1.87it/s] 29%|██▊ | 8/28 [00:04<00:10, 1.86it/s] 32%|███▏ | 9/28 [00:04<00:10, 1.86it/s] 36%|███▌ | 10/28 [00:05<00:09, 1.86it/s] 39%|███▉ | 11/28 [00:05<00:09, 1.85it/s] 43%|████▎ | 12/28 [00:06<00:08, 1.85it/s] 46%|████▋ | 13/28 [00:06<00:08, 1.85it/s] 50%|█████ | 14/28 [00:07<00:07, 1.85it/s] 54%|█████▎ | 15/28 [00:07<00:07, 1.85it/s] 57%|█████▋ | 16/28 [00:08<00:06, 1.85it/s] 61%|██████ | 17/28 [00:09<00:05, 1.85it/s] 64%|██████▍ | 18/28 [00:09<00:05, 1.85it/s] 68%|██████▊ | 19/28 [00:10<00:04, 1.85it/s] 71%|███████▏ | 20/28 [00:10<00:04, 1.85it/s] 75%|███████▌ | 21/28 [00:11<00:03, 1.85it/s] 79%|███████▊ | 22/28 [00:11<00:03, 1.85it/s] 82%|████████▏ | 23/28 [00:12<00:02, 1.85it/s] 86%|████████▌ | 24/28 [00:12<00:02, 1.85it/s] 89%|████████▉ | 25/28 [00:13<00:01, 1.85it/s] 93%|█████████▎| 26/28 [00:13<00:01, 1.85it/s] 96%|█████████▋| 27/28 [00:14<00:00, 1.85it/s] 100%|██████████| 28/28 [00:15<00:00, 1.85it/s] 100%|██████████| 28/28 [00:15<00:00, 1.86it/s]
Prediction
femkegr/dora:a8d3923aIDbnmj4yege1rm20cj04fb2gbjprStatusSucceededSourceWebHardwareH100Total durationCreatedInput
- model
- dev
- prompt
- A beautiful image of a coastal scene with dora standing in the foreground, gazing off to the side. She is wearing a flowing olive-green dress with puffed short sleeves and a fitted bodice, adding a romantic, bohemian touch to her look. The background reveals a stunning view of a colorful seaside town, likely in Italy, with pastel-colored buildings stacked along the cliffside overlooking the sea. The buildings are painted in soft tones of pink, yellow, and orange, and the town is perched on a rugged coastline with a small harbor below. The calm ocean stretches out into the horizon, and the iconic coastal cliffs frame the town on the left. In the immediate foreground, there is lush greenery, with wild plants and flowers adding to the natural beauty of the scene. The lighting appears soft and warm, likely during golden hour, enhancing the serenity and charm of the picturesque coastal town. The overall atmosphere is peaceful and idyllic, capturing the beauty of both the woman and the scenic Mediterranean location.
- lora_scale
- 1
- num_outputs
- 2
- aspect_ratio
- 9:16
- output_format
- png
- guidance_scale
- 2.5
- output_quality
- 90
- prompt_strength
- 0.8
- extra_lora_scale
- 1
- num_inference_steps
- 28
{ "model": "dev", "prompt": " A beautiful image of a coastal scene with dora standing in the foreground, gazing off to the side. She is wearing a flowing olive-green dress with puffed short sleeves and a fitted bodice, adding a romantic, bohemian touch to her look.\nThe background reveals a stunning view of a colorful seaside town, likely in Italy, with pastel-colored buildings stacked along the cliffside overlooking the sea. The buildings are painted in soft tones of pink, yellow, and orange, and the town is perched on a rugged coastline with a small harbor below. The calm ocean stretches out into the horizon, and the iconic coastal cliffs frame the town on the left.\n\nIn the immediate foreground, there is lush greenery, with wild plants and flowers adding to the natural beauty of the scene. The lighting appears soft and warm, likely during golden hour, enhancing the serenity and charm of the picturesque coastal town. The overall atmosphere is peaceful and idyllic, capturing the beauty of both the woman and the scenic Mediterranean location.\n\n\n", "lora_scale": 1, "num_outputs": 2, "aspect_ratio": "9:16", "output_format": "png", "guidance_scale": 2.5, "output_quality": 90, "prompt_strength": 0.8, "extra_lora_scale": 1, "num_inference_steps": 28 }
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 femkegr/dora using Replicate’s API. Check out the model's schema for an overview of inputs and outputs.
const output = await replicate.run( "femkegr/dora:a8d3923a1f7d8c227a3711246cbf4bd9a12817356b6f6d496e56bfe53d8ce4cc", { input: { model: "dev", prompt: " A beautiful image of a coastal scene with dora standing in the foreground, gazing off to the side. She is wearing a flowing olive-green dress with puffed short sleeves and a fitted bodice, adding a romantic, bohemian touch to her look.\nThe background reveals a stunning view of a colorful seaside town, likely in Italy, with pastel-colored buildings stacked along the cliffside overlooking the sea. The buildings are painted in soft tones of pink, yellow, and orange, and the town is perched on a rugged coastline with a small harbor below. The calm ocean stretches out into the horizon, and the iconic coastal cliffs frame the town on the left.\n\nIn the immediate foreground, there is lush greenery, with wild plants and flowers adding to the natural beauty of the scene. The lighting appears soft and warm, likely during golden hour, enhancing the serenity and charm of the picturesque coastal town. The overall atmosphere is peaceful and idyllic, capturing the beauty of both the woman and the scenic Mediterranean location.\n\n\n", lora_scale: 1, num_outputs: 2, aspect_ratio: "9:16", output_format: "png", guidance_scale: 2.5, output_quality: 90, prompt_strength: 0.8, extra_lora_scale: 1, num_inference_steps: 28 } } ); 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 femkegr/dora using Replicate’s API. Check out the model's schema for an overview of inputs and outputs.
output = replicate.run( "femkegr/dora:a8d3923a1f7d8c227a3711246cbf4bd9a12817356b6f6d496e56bfe53d8ce4cc", input={ "model": "dev", "prompt": " A beautiful image of a coastal scene with dora standing in the foreground, gazing off to the side. She is wearing a flowing olive-green dress with puffed short sleeves and a fitted bodice, adding a romantic, bohemian touch to her look.\nThe background reveals a stunning view of a colorful seaside town, likely in Italy, with pastel-colored buildings stacked along the cliffside overlooking the sea. The buildings are painted in soft tones of pink, yellow, and orange, and the town is perched on a rugged coastline with a small harbor below. The calm ocean stretches out into the horizon, and the iconic coastal cliffs frame the town on the left.\n\nIn the immediate foreground, there is lush greenery, with wild plants and flowers adding to the natural beauty of the scene. The lighting appears soft and warm, likely during golden hour, enhancing the serenity and charm of the picturesque coastal town. The overall atmosphere is peaceful and idyllic, capturing the beauty of both the woman and the scenic Mediterranean location.\n\n\n", "lora_scale": 1, "num_outputs": 2, "aspect_ratio": "9:16", "output_format": "png", "guidance_scale": 2.5, "output_quality": 90, "prompt_strength": 0.8, "extra_lora_scale": 1, "num_inference_steps": 28 } ) 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 femkegr/dora 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": "a8d3923a1f7d8c227a3711246cbf4bd9a12817356b6f6d496e56bfe53d8ce4cc", "input": { "model": "dev", "prompt": " A beautiful image of a coastal scene with dora standing in the foreground, gazing off to the side. She is wearing a flowing olive-green dress with puffed short sleeves and a fitted bodice, adding a romantic, bohemian touch to her look.\\nThe background reveals a stunning view of a colorful seaside town, likely in Italy, with pastel-colored buildings stacked along the cliffside overlooking the sea. The buildings are painted in soft tones of pink, yellow, and orange, and the town is perched on a rugged coastline with a small harbor below. The calm ocean stretches out into the horizon, and the iconic coastal cliffs frame the town on the left.\\n\\nIn the immediate foreground, there is lush greenery, with wild plants and flowers adding to the natural beauty of the scene. The lighting appears soft and warm, likely during golden hour, enhancing the serenity and charm of the picturesque coastal town. The overall atmosphere is peaceful and idyllic, capturing the beauty of both the woman and the scenic Mediterranean location.\\n\\n\\n", "lora_scale": 1, "num_outputs": 2, "aspect_ratio": "9:16", "output_format": "png", "guidance_scale": 2.5, "output_quality": 90, "prompt_strength": 0.8, "extra_lora_scale": 1, "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-17T17:57:03.056925Z", "created_at": "2024-09-17T17:54:09.648000Z", "data_removed": false, "error": null, "id": "bnmj4yege1rm20cj04fb2gbjpr", "input": { "model": "dev", "prompt": " A beautiful image of a coastal scene with dora standing in the foreground, gazing off to the side. She is wearing a flowing olive-green dress with puffed short sleeves and a fitted bodice, adding a romantic, bohemian touch to her look.\nThe background reveals a stunning view of a colorful seaside town, likely in Italy, with pastel-colored buildings stacked along the cliffside overlooking the sea. The buildings are painted in soft tones of pink, yellow, and orange, and the town is perched on a rugged coastline with a small harbor below. The calm ocean stretches out into the horizon, and the iconic coastal cliffs frame the town on the left.\n\nIn the immediate foreground, there is lush greenery, with wild plants and flowers adding to the natural beauty of the scene. The lighting appears soft and warm, likely during golden hour, enhancing the serenity and charm of the picturesque coastal town. The overall atmosphere is peaceful and idyllic, capturing the beauty of both the woman and the scenic Mediterranean location.\n\n\n", "lora_scale": 1, "num_outputs": 2, "aspect_ratio": "9:16", "output_format": "png", "guidance_scale": 2.5, "output_quality": 90, "prompt_strength": 0.8, "extra_lora_scale": 1, "num_inference_steps": 28 }, "logs": "Using seed: 42419\nPrompt: A beautiful image of a coastal scene with dora standing in the foreground, gazing off to the side. She is wearing a flowing olive-green dress with puffed short sleeves and a fitted bodice, adding a romantic, bohemian touch to her look.\nThe background reveals a stunning view of a colorful seaside town, likely in Italy, with pastel-colored buildings stacked along the cliffside overlooking the sea. The buildings are painted in soft tones of pink, yellow, and orange, and the town is perched on a rugged coastline with a small harbor below. The calm ocean stretches out into the horizon, and the iconic coastal cliffs frame the town on the left.\nIn the immediate foreground, there is lush greenery, with wild plants and flowers adding to the natural beauty of the scene. The lighting appears soft and warm, likely during golden hour, enhancing the serenity and charm of the picturesque coastal town. The overall atmosphere is peaceful and idyllic, capturing the beauty of both the woman and the scenic Mediterranean location.\n[!] txt2img mode\nUsing dev model\nLoaded LoRAs in 7.74s\n 0%| | 0/28 [00:00<?, ?it/s]\n 4%|▎ | 1/28 [00:00<00:14, 1.85it/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.85it/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.83it/s]\n 89%|████████▉ | 25/28 [00:13<00:01, 1.83it/s]\n 93%|█████████▎| 26/28 [00:14<00:01, 1.83it/s]\n 96%|█████████▋| 27/28 [00:14<00:00, 1.83it/s]\n100%|██████████| 28/28 [00:15<00:00, 1.83it/s]\n100%|██████████| 28/28 [00:15<00:00, 1.85it/s]", "metrics": { "predict_time": 24.206162635, "total_time": 173.408925 }, "output": [ "https://replicate.delivery/yhqm/lrikirY8sh7dBpr74O5sB8uJyBIbf8jYx66i8nDFuK83p7uJA/out-0.png", "https://replicate.delivery/yhqm/KLodfxGMQRxsDCPebT8DnXr9wiQmLPbUKXuw5s8MdpeeOd3NB/out-1.png" ], "started_at": "2024-09-17T17:56:38.850762Z", "status": "succeeded", "urls": { "get": "https://api.replicate.com/v1/predictions/bnmj4yege1rm20cj04fb2gbjpr", "cancel": "https://api.replicate.com/v1/predictions/bnmj4yege1rm20cj04fb2gbjpr/cancel" }, "version": "a8d3923a1f7d8c227a3711246cbf4bd9a12817356b6f6d496e56bfe53d8ce4cc" }
Generated inUsing seed: 42419 Prompt: A beautiful image of a coastal scene with dora standing in the foreground, gazing off to the side. She is wearing a flowing olive-green dress with puffed short sleeves and a fitted bodice, adding a romantic, bohemian touch to her look. The background reveals a stunning view of a colorful seaside town, likely in Italy, with pastel-colored buildings stacked along the cliffside overlooking the sea. The buildings are painted in soft tones of pink, yellow, and orange, and the town is perched on a rugged coastline with a small harbor below. The calm ocean stretches out into the horizon, and the iconic coastal cliffs frame the town on the left. In the immediate foreground, there is lush greenery, with wild plants and flowers adding to the natural beauty of the scene. The lighting appears soft and warm, likely during golden hour, enhancing the serenity and charm of the picturesque coastal town. The overall atmosphere is peaceful and idyllic, capturing the beauty of both the woman and the scenic Mediterranean location. [!] txt2img mode Using dev model Loaded LoRAs in 7.74s 0%| | 0/28 [00:00<?, ?it/s] 4%|▎ | 1/28 [00:00<00:14, 1.85it/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.85it/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.83it/s] 89%|████████▉ | 25/28 [00:13<00:01, 1.83it/s] 93%|█████████▎| 26/28 [00:14<00:01, 1.83it/s] 96%|█████████▋| 27/28 [00:14<00:00, 1.83it/s] 100%|██████████| 28/28 [00:15<00:00, 1.83it/s] 100%|██████████| 28/28 [00:15<00:00, 1.85it/s]
Want to make some of these yourself?
Run this model