pointblack / stable-interiors-v2
An enhanced version of sd-interior-design (Updated 1 month, 2 weeks ago)
- Public
- 107 runs
Prediction
pointblack/stable-interiors-v2:569b1bd6e4df6c9c900ad932d4a3a9f05585fac957dc6bc627aa1654853a97b5ID295sxfbbc5rm80cpmnxb7hj41gStatusSucceededSourceWebHardwareL40STotal durationCreatedInput
- prompt
- a fully furnished Scandinavian living room with one light wood coffee table, a neutral-toned fabric sofa, soft wool throws and cushions, white walls, minimalist shelving, a pendant lamp overhead, and minimal decor, with natural light streaming through sheer linen curtains
- guidance_scale
- 15
- negative_prompt
- lowres, watermark, banner, logo, contactinfo, text, deformed, blurry, blur, out of focus, out of frame, surreal, extra limbs, extra furniture, ugly, overlapping objects, distorted furniture, impossible layout, broken geometry, unrealistic proportions, floating furniture, furniture merging with walls or windows, warped walls, curved walls, mirrors, mirrored surfaces, plush walls, fabric walls, soft focus, poor lighting, artifacts, cut-off furniture
- prompt_strength
- 0.8
- num_inference_steps
- 50
{ "image": "https://replicate.delivery/pbxt/MxenqL56Qq36n2vEfnnl7KRyi63SrnaveKgZUORd5FzHRrcD/living_room_3.jpg", "prompt": "a fully furnished Scandinavian living room with one light wood coffee table, a neutral-toned fabric sofa, soft wool throws and cushions, white walls, minimalist shelving, a pendant lamp overhead, and minimal decor, with natural light streaming through sheer linen curtains", "guidance_scale": 15, "negative_prompt": "lowres, watermark, banner, logo, contactinfo, text, deformed, blurry, blur, out of focus, out of frame, surreal, extra limbs, extra furniture, ugly, overlapping objects, distorted furniture, impossible layout, broken geometry, unrealistic proportions, floating furniture, furniture merging with walls or windows, warped walls, curved walls, mirrors, mirrored surfaces, plush walls, fabric walls, soft focus, poor lighting, artifacts, cut-off furniture", "prompt_strength": 0.8, "num_inference_steps": 50 }
Install Replicate’s Node.js client library:npm install replicate
Import and set up the client:import Replicate from "replicate"; import fs from "node:fs"; const replicate = new Replicate({ auth: process.env.REPLICATE_API_TOKEN, });
Run pointblack/stable-interiors-v2 using Replicate’s API. Check out the model's schema for an overview of inputs and outputs.
const output = await replicate.run( "pointblack/stable-interiors-v2:569b1bd6e4df6c9c900ad932d4a3a9f05585fac957dc6bc627aa1654853a97b5", { input: { image: "https://replicate.delivery/pbxt/MxenqL56Qq36n2vEfnnl7KRyi63SrnaveKgZUORd5FzHRrcD/living_room_3.jpg", prompt: "a fully furnished Scandinavian living room with one light wood coffee table, a neutral-toned fabric sofa, soft wool throws and cushions, white walls, minimalist shelving, a pendant lamp overhead, and minimal decor, with natural light streaming through sheer linen curtains", guidance_scale: 15, negative_prompt: "lowres, watermark, banner, logo, contactinfo, text, deformed, blurry, blur, out of focus, out of frame, surreal, extra limbs, extra furniture, ugly, overlapping objects, distorted furniture, impossible layout, broken geometry, unrealistic proportions, floating furniture, furniture merging with walls or windows, warped walls, curved walls, mirrors, mirrored surfaces, plush walls, fabric walls, soft focus, poor lighting, artifacts, cut-off furniture", prompt_strength: 0.8, num_inference_steps: 50 } } ); // To access the file URL: console.log(output.url()); //=> "http://example.com" // To write the file to disk: fs.writeFile("my-image.png", 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
Import the client:import replicate
Run pointblack/stable-interiors-v2 using Replicate’s API. Check out the model's schema for an overview of inputs and outputs.
output = replicate.run( "pointblack/stable-interiors-v2:569b1bd6e4df6c9c900ad932d4a3a9f05585fac957dc6bc627aa1654853a97b5", input={ "image": "https://replicate.delivery/pbxt/MxenqL56Qq36n2vEfnnl7KRyi63SrnaveKgZUORd5FzHRrcD/living_room_3.jpg", "prompt": "a fully furnished Scandinavian living room with one light wood coffee table, a neutral-toned fabric sofa, soft wool throws and cushions, white walls, minimalist shelving, a pendant lamp overhead, and minimal decor, with natural light streaming through sheer linen curtains", "guidance_scale": 15, "negative_prompt": "lowres, watermark, banner, logo, contactinfo, text, deformed, blurry, blur, out of focus, out of frame, surreal, extra limbs, extra furniture, ugly, overlapping objects, distorted furniture, impossible layout, broken geometry, unrealistic proportions, floating furniture, furniture merging with walls or windows, warped walls, curved walls, mirrors, mirrored surfaces, plush walls, fabric walls, soft focus, poor lighting, artifacts, cut-off furniture", "prompt_strength": 0.8, "num_inference_steps": 50 } ) print(output)
To learn more, take a look at the guide on getting started with Python.
Run pointblack/stable-interiors-v2 using Replicate’s API. Check out the model's schema for an overview of inputs and outputs.
curl -s -X POST \ -H "Authorization: Bearer $REPLICATE_API_TOKEN" \ -H "Content-Type: application/json" \ -H "Prefer: wait" \ -d $'{ "version": "pointblack/stable-interiors-v2:569b1bd6e4df6c9c900ad932d4a3a9f05585fac957dc6bc627aa1654853a97b5", "input": { "image": "https://replicate.delivery/pbxt/MxenqL56Qq36n2vEfnnl7KRyi63SrnaveKgZUORd5FzHRrcD/living_room_3.jpg", "prompt": "a fully furnished Scandinavian living room with one light wood coffee table, a neutral-toned fabric sofa, soft wool throws and cushions, white walls, minimalist shelving, a pendant lamp overhead, and minimal decor, with natural light streaming through sheer linen curtains", "guidance_scale": 15, "negative_prompt": "lowres, watermark, banner, logo, contactinfo, text, deformed, blurry, blur, out of focus, out of frame, surreal, extra limbs, extra furniture, ugly, overlapping objects, distorted furniture, impossible layout, broken geometry, unrealistic proportions, floating furniture, furniture merging with walls or windows, warped walls, curved walls, mirrors, mirrored surfaces, plush walls, fabric walls, soft focus, poor lighting, artifacts, cut-off furniture", "prompt_strength": 0.8, "num_inference_steps": 50 } }' \ https://api.replicate.com/v1/predictions
To learn more, take a look at Replicate’s HTTP API reference docs.
You can run this model locally using Cog. First, install Cog:brew install cog
If you don’t have Homebrew, there are other installation options available.
Run this to download the model and run it in your local environment:
cog predict r8.im/pointblack/stable-interiors-v2@sha256:569b1bd6e4df6c9c900ad932d4a3a9f05585fac957dc6bc627aa1654853a97b5 \ -i 'image="https://replicate.delivery/pbxt/MxenqL56Qq36n2vEfnnl7KRyi63SrnaveKgZUORd5FzHRrcD/living_room_3.jpg"' \ -i 'prompt="a fully furnished Scandinavian living room with one light wood coffee table, a neutral-toned fabric sofa, soft wool throws and cushions, white walls, minimalist shelving, a pendant lamp overhead, and minimal decor, with natural light streaming through sheer linen curtains"' \ -i 'guidance_scale=15' \ -i 'negative_prompt="lowres, watermark, banner, logo, contactinfo, text, deformed, blurry, blur, out of focus, out of frame, surreal, extra limbs, extra furniture, ugly, overlapping objects, distorted furniture, impossible layout, broken geometry, unrealistic proportions, floating furniture, furniture merging with walls or windows, warped walls, curved walls, mirrors, mirrored surfaces, plush walls, fabric walls, soft focus, poor lighting, artifacts, cut-off furniture"' \ -i 'prompt_strength=0.8' \ -i 'num_inference_steps=50'
To learn more, take a look at the Cog documentation.
Run this to download the model and run it in your local environment:
docker run -d -p 5000:5000 --gpus=all r8.im/pointblack/stable-interiors-v2@sha256:569b1bd6e4df6c9c900ad932d4a3a9f05585fac957dc6bc627aa1654853a97b5
curl -s -X POST \ -H "Content-Type: application/json" \ -d $'{ "input": { "image": "https://replicate.delivery/pbxt/MxenqL56Qq36n2vEfnnl7KRyi63SrnaveKgZUORd5FzHRrcD/living_room_3.jpg", "prompt": "a fully furnished Scandinavian living room with one light wood coffee table, a neutral-toned fabric sofa, soft wool throws and cushions, white walls, minimalist shelving, a pendant lamp overhead, and minimal decor, with natural light streaming through sheer linen curtains", "guidance_scale": 15, "negative_prompt": "lowres, watermark, banner, logo, contactinfo, text, deformed, blurry, blur, out of focus, out of frame, surreal, extra limbs, extra furniture, ugly, overlapping objects, distorted furniture, impossible layout, broken geometry, unrealistic proportions, floating furniture, furniture merging with walls or windows, warped walls, curved walls, mirrors, mirrored surfaces, plush walls, fabric walls, soft focus, poor lighting, artifacts, cut-off furniture", "prompt_strength": 0.8, "num_inference_steps": 50 } }' \ http://localhost:5000/predictions
To learn more, take a look at the Cog documentation.
Output
{ "completed_at": "2025-05-06T12:04:17.521929Z", "created_at": "2025-05-06T12:03:05.697000Z", "data_removed": false, "error": null, "id": "295sxfbbc5rm80cpmnxb7hj41g", "input": { "image": "https://replicate.delivery/pbxt/MxenqL56Qq36n2vEfnnl7KRyi63SrnaveKgZUORd5FzHRrcD/living_room_3.jpg", "prompt": "a fully furnished Scandinavian living room with one light wood coffee table, a neutral-toned fabric sofa, soft wool throws and cushions, white walls, minimalist shelving, a pendant lamp overhead, and minimal decor, with natural light streaming through sheer linen curtains", "guidance_scale": 15, "negative_prompt": "lowres, watermark, banner, logo, contactinfo, text, deformed, blurry, blur, out of focus, out of frame, surreal, extra limbs, extra furniture, ugly, overlapping objects, distorted furniture, impossible layout, broken geometry, unrealistic proportions, floating furniture, furniture merging with walls or windows, warped walls, curved walls, mirrors, mirrored surfaces, plush walls, fabric walls, soft focus, poor lighting, artifacts, cut-off furniture", "prompt_strength": 0.8, "num_inference_steps": 50 }, "logs": "0%| | 0/40 [00:00<?, ?it/s]\n 2%|▎ | 1/40 [00:00<00:09, 4.19it/s]\n 8%|▊ | 3/40 [00:00<00:04, 7.59it/s]\n 12%|█▎ | 5/40 [00:00<00:03, 9.15it/s]\n 18%|█▊ | 7/40 [00:00<00:03, 9.96it/s]\n 22%|██▎ | 9/40 [00:00<00:02, 10.43it/s]\n 28%|██▊ | 11/40 [00:01<00:02, 10.71it/s]\n 32%|███▎ | 13/40 [00:01<00:02, 10.91it/s]\n 38%|███▊ | 15/40 [00:01<00:02, 11.03it/s]\n 42%|████▎ | 17/40 [00:01<00:02, 11.12it/s]\n 48%|████▊ | 19/40 [00:01<00:01, 11.17it/s]\n 52%|█████▎ | 21/40 [00:02<00:01, 11.21it/s]\n 57%|█████▊ | 23/40 [00:02<00:01, 11.23it/s]\n 62%|██████▎ | 25/40 [00:02<00:01, 11.23it/s]\n 68%|██████▊ | 27/40 [00:02<00:01, 11.25it/s]\n 72%|███████▎ | 29/40 [00:02<00:00, 11.27it/s]\n 78%|███████▊ | 31/40 [00:02<00:00, 11.27it/s]\n 82%|████████▎ | 33/40 [00:03<00:00, 11.26it/s]\n 88%|████████▊ | 35/40 [00:03<00:00, 11.26it/s]\n 92%|█████████▎| 37/40 [00:03<00:00, 11.26it/s]\n 98%|█████████▊| 39/40 [00:03<00:00, 11.25it/s]\n100%|██████████| 40/40 [00:03<00:00, 10.80it/s]", "metrics": { "predict_time": 8.739282728, "total_time": 71.824929 }, "output": "https://replicate.delivery/xezq/vzwPNLVeDfvPYUe4GeymcIX5nW1Z56YHA6xrbmlNEoaFMrnSB/tmpzwn0g2jr.png", "started_at": "2025-05-06T12:04:08.782647Z", "status": "succeeded", "urls": { "stream": "https://stream.replicate.com/v1/files/bcwr-o5xnyaegfjyguayrhjfaszahkasl2kaybbpotb7ug6ckwl2wkg3a", "get": "https://api.replicate.com/v1/predictions/295sxfbbc5rm80cpmnxb7hj41g", "cancel": "https://api.replicate.com/v1/predictions/295sxfbbc5rm80cpmnxb7hj41g/cancel" }, "version": "569b1bd6e4df6c9c900ad932d4a3a9f05585fac957dc6bc627aa1654853a97b5" }
Generated in0%| | 0/40 [00:00<?, ?it/s] 2%|▎ | 1/40 [00:00<00:09, 4.19it/s] 8%|▊ | 3/40 [00:00<00:04, 7.59it/s] 12%|█▎ | 5/40 [00:00<00:03, 9.15it/s] 18%|█▊ | 7/40 [00:00<00:03, 9.96it/s] 22%|██▎ | 9/40 [00:00<00:02, 10.43it/s] 28%|██▊ | 11/40 [00:01<00:02, 10.71it/s] 32%|███▎ | 13/40 [00:01<00:02, 10.91it/s] 38%|███▊ | 15/40 [00:01<00:02, 11.03it/s] 42%|████▎ | 17/40 [00:01<00:02, 11.12it/s] 48%|████▊ | 19/40 [00:01<00:01, 11.17it/s] 52%|█████▎ | 21/40 [00:02<00:01, 11.21it/s] 57%|█████▊ | 23/40 [00:02<00:01, 11.23it/s] 62%|██████▎ | 25/40 [00:02<00:01, 11.23it/s] 68%|██████▊ | 27/40 [00:02<00:01, 11.25it/s] 72%|███████▎ | 29/40 [00:02<00:00, 11.27it/s] 78%|███████▊ | 31/40 [00:02<00:00, 11.27it/s] 82%|████████▎ | 33/40 [00:03<00:00, 11.26it/s] 88%|████████▊ | 35/40 [00:03<00:00, 11.26it/s] 92%|█████████▎| 37/40 [00:03<00:00, 11.26it/s] 98%|█████████▊| 39/40 [00:03<00:00, 11.25it/s] 100%|██████████| 40/40 [00:03<00:00, 10.80it/s]
Prediction
pointblack/stable-interiors-v2:569b1bd6e4df6c9c900ad932d4a3a9f05585fac957dc6bc627aa1654853a97b5ID8vjmzvrcxdrmc0cpmp9v12jr60StatusSucceededSourceWebHardwareL40STotal durationCreatedInput
- prompt
- a fully furnished children's bedroom in Scandinavian style, featuring a bunk bed for kids, a small reading nook with cushions, a white wardrobe, open toy shelves, and a cozy wool rug, with natural sunlight coming through sheer curtains and white walls
- guidance_scale
- 15
- negative_prompt
- lowres, watermark, banner, logo, contactinfo, text, deformed, blurry, blur, out of focus, out of frame, surreal, extra limbs, extra furniture, ugly, overlapping objects, distorted furniture, impossible layout, broken geometry, unrealistic proportions, floating furniture, furniture merging with walls or windows, warped walls, curved walls, mirrors, mirrored surfaces, plush walls, fabric walls, soft focus, poor lighting, artifacts, cut-off furniture
- prompt_strength
- 0.8
- num_inference_steps
- 50
{ "image": "https://replicate.delivery/pbxt/MxfDqF5i1pgzh6f7A8v1bvoZ47yvGBGHjtu4kgw610lY6JkQ/bedroom_3.jpg", "prompt": "a fully furnished children's bedroom in Scandinavian style, featuring a bunk bed for kids, a small reading nook with cushions, a white wardrobe, open toy shelves, and a cozy wool rug, with natural sunlight coming through sheer curtains and white walls", "guidance_scale": 15, "negative_prompt": "lowres, watermark, banner, logo, contactinfo, text, deformed, blurry, blur, out of focus, out of frame, surreal, extra limbs, extra furniture, ugly, overlapping objects, distorted furniture, impossible layout, broken geometry, unrealistic proportions, floating furniture, furniture merging with walls or windows, warped walls, curved walls, mirrors, mirrored surfaces, plush walls, fabric walls, soft focus, poor lighting, artifacts, cut-off furniture", "prompt_strength": 0.8, "num_inference_steps": 50 }
Install Replicate’s Node.js client library:npm install replicate
Import and set up the client:import Replicate from "replicate"; import fs from "node:fs"; const replicate = new Replicate({ auth: process.env.REPLICATE_API_TOKEN, });
Run pointblack/stable-interiors-v2 using Replicate’s API. Check out the model's schema for an overview of inputs and outputs.
const output = await replicate.run( "pointblack/stable-interiors-v2:569b1bd6e4df6c9c900ad932d4a3a9f05585fac957dc6bc627aa1654853a97b5", { input: { image: "https://replicate.delivery/pbxt/MxfDqF5i1pgzh6f7A8v1bvoZ47yvGBGHjtu4kgw610lY6JkQ/bedroom_3.jpg", prompt: "a fully furnished children's bedroom in Scandinavian style, featuring a bunk bed for kids, a small reading nook with cushions, a white wardrobe, open toy shelves, and a cozy wool rug, with natural sunlight coming through sheer curtains and white walls", guidance_scale: 15, negative_prompt: "lowres, watermark, banner, logo, contactinfo, text, deformed, blurry, blur, out of focus, out of frame, surreal, extra limbs, extra furniture, ugly, overlapping objects, distorted furniture, impossible layout, broken geometry, unrealistic proportions, floating furniture, furniture merging with walls or windows, warped walls, curved walls, mirrors, mirrored surfaces, plush walls, fabric walls, soft focus, poor lighting, artifacts, cut-off furniture", prompt_strength: 0.8, num_inference_steps: 50 } } ); // To access the file URL: console.log(output.url()); //=> "http://example.com" // To write the file to disk: fs.writeFile("my-image.png", 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
Import the client:import replicate
Run pointblack/stable-interiors-v2 using Replicate’s API. Check out the model's schema for an overview of inputs and outputs.
output = replicate.run( "pointblack/stable-interiors-v2:569b1bd6e4df6c9c900ad932d4a3a9f05585fac957dc6bc627aa1654853a97b5", input={ "image": "https://replicate.delivery/pbxt/MxfDqF5i1pgzh6f7A8v1bvoZ47yvGBGHjtu4kgw610lY6JkQ/bedroom_3.jpg", "prompt": "a fully furnished children's bedroom in Scandinavian style, featuring a bunk bed for kids, a small reading nook with cushions, a white wardrobe, open toy shelves, and a cozy wool rug, with natural sunlight coming through sheer curtains and white walls", "guidance_scale": 15, "negative_prompt": "lowres, watermark, banner, logo, contactinfo, text, deformed, blurry, blur, out of focus, out of frame, surreal, extra limbs, extra furniture, ugly, overlapping objects, distorted furniture, impossible layout, broken geometry, unrealistic proportions, floating furniture, furniture merging with walls or windows, warped walls, curved walls, mirrors, mirrored surfaces, plush walls, fabric walls, soft focus, poor lighting, artifacts, cut-off furniture", "prompt_strength": 0.8, "num_inference_steps": 50 } ) print(output)
To learn more, take a look at the guide on getting started with Python.
Run pointblack/stable-interiors-v2 using Replicate’s API. Check out the model's schema for an overview of inputs and outputs.
curl -s -X POST \ -H "Authorization: Bearer $REPLICATE_API_TOKEN" \ -H "Content-Type: application/json" \ -H "Prefer: wait" \ -d $'{ "version": "pointblack/stable-interiors-v2:569b1bd6e4df6c9c900ad932d4a3a9f05585fac957dc6bc627aa1654853a97b5", "input": { "image": "https://replicate.delivery/pbxt/MxfDqF5i1pgzh6f7A8v1bvoZ47yvGBGHjtu4kgw610lY6JkQ/bedroom_3.jpg", "prompt": "a fully furnished children\'s bedroom in Scandinavian style, featuring a bunk bed for kids, a small reading nook with cushions, a white wardrobe, open toy shelves, and a cozy wool rug, with natural sunlight coming through sheer curtains and white walls", "guidance_scale": 15, "negative_prompt": "lowres, watermark, banner, logo, contactinfo, text, deformed, blurry, blur, out of focus, out of frame, surreal, extra limbs, extra furniture, ugly, overlapping objects, distorted furniture, impossible layout, broken geometry, unrealistic proportions, floating furniture, furniture merging with walls or windows, warped walls, curved walls, mirrors, mirrored surfaces, plush walls, fabric walls, soft focus, poor lighting, artifacts, cut-off furniture", "prompt_strength": 0.8, "num_inference_steps": 50 } }' \ https://api.replicate.com/v1/predictions
To learn more, take a look at Replicate’s HTTP API reference docs.
You can run this model locally using Cog. First, install Cog:brew install cog
If you don’t have Homebrew, there are other installation options available.
Run this to download the model and run it in your local environment:
cog predict r8.im/pointblack/stable-interiors-v2@sha256:569b1bd6e4df6c9c900ad932d4a3a9f05585fac957dc6bc627aa1654853a97b5 \ -i 'image="https://replicate.delivery/pbxt/MxfDqF5i1pgzh6f7A8v1bvoZ47yvGBGHjtu4kgw610lY6JkQ/bedroom_3.jpg"' \ -i $'prompt="a fully furnished children\'s bedroom in Scandinavian style, featuring a bunk bed for kids, a small reading nook with cushions, a white wardrobe, open toy shelves, and a cozy wool rug, with natural sunlight coming through sheer curtains and white walls"' \ -i 'guidance_scale=15' \ -i 'negative_prompt="lowres, watermark, banner, logo, contactinfo, text, deformed, blurry, blur, out of focus, out of frame, surreal, extra limbs, extra furniture, ugly, overlapping objects, distorted furniture, impossible layout, broken geometry, unrealistic proportions, floating furniture, furniture merging with walls or windows, warped walls, curved walls, mirrors, mirrored surfaces, plush walls, fabric walls, soft focus, poor lighting, artifacts, cut-off furniture"' \ -i 'prompt_strength=0.8' \ -i 'num_inference_steps=50'
To learn more, take a look at the Cog documentation.
Run this to download the model and run it in your local environment:
docker run -d -p 5000:5000 --gpus=all r8.im/pointblack/stable-interiors-v2@sha256:569b1bd6e4df6c9c900ad932d4a3a9f05585fac957dc6bc627aa1654853a97b5
curl -s -X POST \ -H "Content-Type: application/json" \ -d $'{ "input": { "image": "https://replicate.delivery/pbxt/MxfDqF5i1pgzh6f7A8v1bvoZ47yvGBGHjtu4kgw610lY6JkQ/bedroom_3.jpg", "prompt": "a fully furnished children\'s bedroom in Scandinavian style, featuring a bunk bed for kids, a small reading nook with cushions, a white wardrobe, open toy shelves, and a cozy wool rug, with natural sunlight coming through sheer curtains and white walls", "guidance_scale": 15, "negative_prompt": "lowres, watermark, banner, logo, contactinfo, text, deformed, blurry, blur, out of focus, out of frame, surreal, extra limbs, extra furniture, ugly, overlapping objects, distorted furniture, impossible layout, broken geometry, unrealistic proportions, floating furniture, furniture merging with walls or windows, warped walls, curved walls, mirrors, mirrored surfaces, plush walls, fabric walls, soft focus, poor lighting, artifacts, cut-off furniture", "prompt_strength": 0.8, "num_inference_steps": 50 } }' \ http://localhost:5000/predictions
To learn more, take a look at the Cog documentation.
Output
{ "completed_at": "2025-05-06T12:30:06.576741Z", "created_at": "2025-05-06T12:29:59.915000Z", "data_removed": false, "error": null, "id": "8vjmzvrcxdrmc0cpmp9v12jr60", "input": { "image": "https://replicate.delivery/pbxt/MxfDqF5i1pgzh6f7A8v1bvoZ47yvGBGHjtu4kgw610lY6JkQ/bedroom_3.jpg", "prompt": "a fully furnished children's bedroom in Scandinavian style, featuring a bunk bed for kids, a small reading nook with cushions, a white wardrobe, open toy shelves, and a cozy wool rug, with natural sunlight coming through sheer curtains and white walls", "guidance_scale": 15, "negative_prompt": "lowres, watermark, banner, logo, contactinfo, text, deformed, blurry, blur, out of focus, out of frame, surreal, extra limbs, extra furniture, ugly, overlapping objects, distorted furniture, impossible layout, broken geometry, unrealistic proportions, floating furniture, furniture merging with walls or windows, warped walls, curved walls, mirrors, mirrored surfaces, plush walls, fabric walls, soft focus, poor lighting, artifacts, cut-off furniture", "prompt_strength": 0.8, "num_inference_steps": 50 }, "logs": "0%| | 0/40 [00:00<?, ?it/s]\n 2%|▎ | 1/40 [00:00<00:05, 6.63it/s]\n 8%|▊ | 3/40 [00:00<00:04, 9.02it/s]\n 12%|█▎ | 5/40 [00:00<00:03, 9.71it/s]\n 18%|█▊ | 7/40 [00:00<00:03, 9.98it/s]\n 22%|██▎ | 9/40 [00:00<00:03, 10.13it/s]\n 28%|██▊ | 11/40 [00:01<00:02, 10.21it/s]\n 32%|███▎ | 13/40 [00:01<00:02, 10.26it/s]\n 38%|███▊ | 15/40 [00:01<00:02, 10.32it/s]\n 42%|████▎ | 17/40 [00:01<00:02, 10.34it/s]\n 48%|████▊ | 19/40 [00:01<00:02, 10.33it/s]\n 52%|█████▎ | 21/40 [00:02<00:01, 10.36it/s]\n 57%|█████▊ | 23/40 [00:02<00:01, 10.36it/s]\n 62%|██████▎ | 25/40 [00:02<00:01, 10.36it/s]\n 68%|██████▊ | 27/40 [00:02<00:01, 10.38it/s]\n 72%|███████▎ | 29/40 [00:02<00:01, 10.37it/s]\n 78%|███████▊ | 31/40 [00:03<00:00, 10.37it/s]\n 82%|████████▎ | 33/40 [00:03<00:00, 10.38it/s]\n 88%|████████▊ | 35/40 [00:03<00:00, 10.37it/s]\n 92%|█████████▎| 37/40 [00:03<00:00, 10.39it/s]\n 98%|█████████▊| 39/40 [00:03<00:00, 10.39it/s]\n100%|██████████| 40/40 [00:03<00:00, 10.24it/s]", "metrics": { "predict_time": 6.654874974, "total_time": 6.661741 }, "output": "https://replicate.delivery/xezq/QhtEWIH8my4VLNVChSEu4cCReAfe9NX6jXfgxTr8LLR6ssnSB/tmpjx8vuewk.png", "started_at": "2025-05-06T12:29:59.921866Z", "status": "succeeded", "urls": { "stream": "https://stream.replicate.com/v1/files/bcwr-6ep24fyyzpr67myqn4mxf5ikcfhys5hw72737as4q4qzuu6trp3a", "get": "https://api.replicate.com/v1/predictions/8vjmzvrcxdrmc0cpmp9v12jr60", "cancel": "https://api.replicate.com/v1/predictions/8vjmzvrcxdrmc0cpmp9v12jr60/cancel" }, "version": "569b1bd6e4df6c9c900ad932d4a3a9f05585fac957dc6bc627aa1654853a97b5" }
Generated in0%| | 0/40 [00:00<?, ?it/s] 2%|▎ | 1/40 [00:00<00:05, 6.63it/s] 8%|▊ | 3/40 [00:00<00:04, 9.02it/s] 12%|█▎ | 5/40 [00:00<00:03, 9.71it/s] 18%|█▊ | 7/40 [00:00<00:03, 9.98it/s] 22%|██▎ | 9/40 [00:00<00:03, 10.13it/s] 28%|██▊ | 11/40 [00:01<00:02, 10.21it/s] 32%|███▎ | 13/40 [00:01<00:02, 10.26it/s] 38%|███▊ | 15/40 [00:01<00:02, 10.32it/s] 42%|████▎ | 17/40 [00:01<00:02, 10.34it/s] 48%|████▊ | 19/40 [00:01<00:02, 10.33it/s] 52%|█████▎ | 21/40 [00:02<00:01, 10.36it/s] 57%|█████▊ | 23/40 [00:02<00:01, 10.36it/s] 62%|██████▎ | 25/40 [00:02<00:01, 10.36it/s] 68%|██████▊ | 27/40 [00:02<00:01, 10.38it/s] 72%|███████▎ | 29/40 [00:02<00:01, 10.37it/s] 78%|███████▊ | 31/40 [00:03<00:00, 10.37it/s] 82%|████████▎ | 33/40 [00:03<00:00, 10.38it/s] 88%|████████▊ | 35/40 [00:03<00:00, 10.37it/s] 92%|█████████▎| 37/40 [00:03<00:00, 10.39it/s] 98%|█████████▊| 39/40 [00:03<00:00, 10.39it/s] 100%|██████████| 40/40 [00:03<00:00, 10.24it/s]
Want to make some of these yourself?
Run this model