Prediction
mikejamesla/livvy:ad5152212a382f9128e60bf652cfc62f88181ea515492f61d845072c2c917d05IDns1zr3fvexrma0cq80errag4cmStatusSucceededSourceWebHardwareH100Total durationCreatedInput
- model
- dev
- prompt
- A realistic ((((wide angle shot)))) (((fully body photo))) entire body in the frame, of a young woman livvy 16 years old, she has an extremely athletic body with serious curves, big hips, and small waist. she has a natural, glowing complexion with deep caramel dewy skin and subtly highlighted cheekbones. Her expressive eyes are accented with long lashes a hint of soft eyeshadow, her full lips are painted in a hyper-glossy pink shade, her (((silver and pink braces))) are a cute accent when she smiles. Her straight silky black hair is in pigtails. Her school track uniform, pink mesh shorts with a white drawstring, pink tank top with her school letters "BBC" across the the front in bold black embossed letters, white socks, and white converse hightop sneakers, big gold hoop earrings and cute gold hoop nose ring piercing in her septum. She’s in the (((locker room shower))), smiling, about to go to practice, bright studio lighting, The overall aesthetic is hyperrealistic, capturing intricate details like the texture of her skin, 8K
- go_fast
- lora_scale
- 1
- megapixels
- 1
- num_outputs
- 4
- aspect_ratio
- 9:21
- output_format
- webp
- guidance_scale
- 3
- output_quality
- 100
- prompt_strength
- 0.8
- extra_lora_scale
- 1
- num_inference_steps
- 50
{ "model": "dev", "prompt": "A realistic ((((wide angle shot)))) (((fully body photo))) entire body in the frame, of a young woman livvy 16 years old, she has an extremely athletic body with serious curves, big hips, and small waist. she has a natural, glowing complexion with deep caramel dewy skin and subtly highlighted cheekbones. Her expressive eyes are accented with long lashes a hint of soft eyeshadow, her full lips are painted in a hyper-glossy pink shade, her (((silver and pink braces))) are a cute accent when she smiles. Her straight silky black hair is in pigtails. Her school track uniform, pink mesh shorts with a white drawstring, pink tank top with her school letters \"BBC\" across the the front in bold black embossed letters, white socks, and white converse hightop sneakers, big gold hoop earrings and cute gold hoop nose ring piercing in her septum. She’s in the (((locker room shower))), smiling, about to go to practice, bright studio lighting, The overall aesthetic is hyperrealistic, capturing intricate details like the texture of her skin, 8K", "go_fast": false, "lora_scale": 1, "megapixels": "1", "num_outputs": 4, "aspect_ratio": "9:21", "output_format": "webp", "guidance_scale": 3, "output_quality": 100, "prompt_strength": 0.8, "extra_lora_scale": 1, "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 mikejamesla/livvy using Replicate’s API. Check out the model's schema for an overview of inputs and outputs.
const output = await replicate.run( "mikejamesla/livvy:ad5152212a382f9128e60bf652cfc62f88181ea515492f61d845072c2c917d05", { input: { model: "dev", prompt: "A realistic ((((wide angle shot)))) (((fully body photo))) entire body in the frame, of a young woman livvy 16 years old, she has an extremely athletic body with serious curves, big hips, and small waist. she has a natural, glowing complexion with deep caramel dewy skin and subtly highlighted cheekbones. Her expressive eyes are accented with long lashes a hint of soft eyeshadow, her full lips are painted in a hyper-glossy pink shade, her (((silver and pink braces))) are a cute accent when she smiles. Her straight silky black hair is in pigtails. Her school track uniform, pink mesh shorts with a white drawstring, pink tank top with her school letters \"BBC\" across the the front in bold black embossed letters, white socks, and white converse hightop sneakers, big gold hoop earrings and cute gold hoop nose ring piercing in her septum. She’s in the (((locker room shower))), smiling, about to go to practice, bright studio lighting, The overall aesthetic is hyperrealistic, capturing intricate details like the texture of her skin, 8K", go_fast: false, lora_scale: 1, megapixels: "1", num_outputs: 4, aspect_ratio: "9:21", output_format: "webp", guidance_scale: 3, output_quality: 100, prompt_strength: 0.8, extra_lora_scale: 1, num_inference_steps: 50 } } ); // To access the file URL: console.log(output[0].url()); //=> "http://example.com" // To write the file to disk: fs.writeFile("my-image.png", output[0]);
To learn more, take a look at the guide on getting started with Node.js.
Install Replicate’s Python client library:pip install replicate
Import the client:import replicate
Run mikejamesla/livvy using Replicate’s API. Check out the model's schema for an overview of inputs and outputs.
output = replicate.run( "mikejamesla/livvy:ad5152212a382f9128e60bf652cfc62f88181ea515492f61d845072c2c917d05", input={ "model": "dev", "prompt": "A realistic ((((wide angle shot)))) (((fully body photo))) entire body in the frame, of a young woman livvy 16 years old, she has an extremely athletic body with serious curves, big hips, and small waist. she has a natural, glowing complexion with deep caramel dewy skin and subtly highlighted cheekbones. Her expressive eyes are accented with long lashes a hint of soft eyeshadow, her full lips are painted in a hyper-glossy pink shade, her (((silver and pink braces))) are a cute accent when she smiles. Her straight silky black hair is in pigtails. Her school track uniform, pink mesh shorts with a white drawstring, pink tank top with her school letters \"BBC\" across the the front in bold black embossed letters, white socks, and white converse hightop sneakers, big gold hoop earrings and cute gold hoop nose ring piercing in her septum. She’s in the (((locker room shower))), smiling, about to go to practice, bright studio lighting, The overall aesthetic is hyperrealistic, capturing intricate details like the texture of her skin, 8K", "go_fast": False, "lora_scale": 1, "megapixels": "1", "num_outputs": 4, "aspect_ratio": "9:21", "output_format": "webp", "guidance_scale": 3, "output_quality": 100, "prompt_strength": 0.8, "extra_lora_scale": 1, "num_inference_steps": 50 } ) # To access the file URL: print(output[0].url()) #=> "http://example.com" # To write the file to disk: with open("my-image.png", "wb") as file: file.write(output[0].read())
To learn more, take a look at the guide on getting started with Python.
Run mikejamesla/livvy 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": "mikejamesla/livvy:ad5152212a382f9128e60bf652cfc62f88181ea515492f61d845072c2c917d05", "input": { "model": "dev", "prompt": "A realistic ((((wide angle shot)))) (((fully body photo))) entire body in the frame, of a young woman livvy 16 years old, she has an extremely athletic body with serious curves, big hips, and small waist. she has a natural, glowing complexion with deep caramel dewy skin and subtly highlighted cheekbones. Her expressive eyes are accented with long lashes a hint of soft eyeshadow, her full lips are painted in a hyper-glossy pink shade, her (((silver and pink braces))) are a cute accent when she smiles. Her straight silky black hair is in pigtails. Her school track uniform, pink mesh shorts with a white drawstring, pink tank top with her school letters \\"BBC\\" across the the front in bold black embossed letters, white socks, and white converse hightop sneakers, big gold hoop earrings and cute gold hoop nose ring piercing in her septum. She’s in the (((locker room shower))), smiling, about to go to practice, bright studio lighting, The overall aesthetic is hyperrealistic, capturing intricate details like the texture of her skin, 8K", "go_fast": false, "lora_scale": 1, "megapixels": "1", "num_outputs": 4, "aspect_ratio": "9:21", "output_format": "webp", "guidance_scale": 3, "output_quality": 100, "prompt_strength": 0.8, "extra_lora_scale": 1, "num_inference_steps": 50 } }' \ https://api.replicate.com/v1/predictions
To learn more, take a look at Replicate’s HTTP API reference docs.
Output
{ "completed_at": "2025-06-05T12:44:05.696802Z", "created_at": "2025-06-05T12:43:16.215000Z", "data_removed": false, "error": null, "id": "ns1zr3fvexrma0cq80errag4cm", "input": { "model": "dev", "prompt": "A realistic ((((wide angle shot)))) (((fully body photo))) entire body in the frame, of a young woman livvy 16 years old, she has an extremely athletic body with serious curves, big hips, and small waist. she has a natural, glowing complexion with deep caramel dewy skin and subtly highlighted cheekbones. Her expressive eyes are accented with long lashes a hint of soft eyeshadow, her full lips are painted in a hyper-glossy pink shade, her (((silver and pink braces))) are a cute accent when she smiles. Her straight silky black hair is in pigtails. Her school track uniform, pink mesh shorts with a white drawstring, pink tank top with her school letters \"BBC\" across the the front in bold black embossed letters, white socks, and white converse hightop sneakers, big gold hoop earrings and cute gold hoop nose ring piercing in her septum. She’s in the (((locker room shower))), smiling, about to go to practice, bright studio lighting, The overall aesthetic is hyperrealistic, capturing intricate details like the texture of her skin, 8K", "go_fast": false, "lora_scale": 1, "megapixels": "1", "num_outputs": 4, "aspect_ratio": "9:21", "output_format": "webp", "guidance_scale": 3, "output_quality": 100, "prompt_strength": 0.8, "extra_lora_scale": 1, "num_inference_steps": 50 }, "logs": "free=26131603087360\nDownloading weights\n2025-06-05T12:43:16Z | INFO | [ Initiating ] chunk_size=150M dest=/tmp/tmp0ig5zro0/weights url=https://replicate.delivery/xezq/yRf6mKN4urSZTCs0ihBOPiwJGb9HuDuiJXBTu53qDK4QF6ZKA/flux-lora.tar\n2025-06-05T12:43:16Z | INFO | [ Cache Service ] enabled=true scheme=http target=hermes.services.svc.cluster.local\n2025-06-05T12:43:16Z | INFO | [ Cache URL Rewrite ] enabled=true target_url=http://hermes.services.svc.cluster.local/replicate.delivery/xezq/yRf6mKN4urSZTCs0ihBOPiwJGb9HuDuiJXBTu53qDK4QF6ZKA/flux-lora.tar url=https://replicate.delivery/xezq/yRf6mKN4urSZTCs0ihBOPiwJGb9HuDuiJXBTu53qDK4QF6ZKA/flux-lora.tar\n2025-06-05T12:43:16Z | INFO | [ Redirect ] redirect_url=https://replicate.delivery/xezq/yRf6mKN4urSZTCs0ihBOPiwJGb9HuDuiJXBTu53qDK4QF6ZKA/flux-lora.tar url=http://hermes.services.svc.cluster.local/replicate.delivery/xezq/yRf6mKN4urSZTCs0ihBOPiwJGb9HuDuiJXBTu53qDK4QF6ZKA/flux-lora.tar\n2025-06-05T12:43:18Z | INFO | [ Complete ] dest=/tmp/tmp0ig5zro0/weights size=\"172 MB\" total_elapsed=2.417s url=https://replicate.delivery/xezq/yRf6mKN4urSZTCs0ihBOPiwJGb9HuDuiJXBTu53qDK4QF6ZKA/flux-lora.tar\nDownloaded weights in 2.48s\nLoaded LoRAs in 3.04s\nUsing seed: 42492\nPrompt: A realistic ((((wide angle shot)))) (((fully body photo))) entire body in the frame, of a young woman livvy 16 years old, she has an extremely athletic body with serious curves, big hips, and small waist. she has a natural, glowing complexion with deep caramel dewy skin and subtly highlighted cheekbones. Her expressive eyes are accented with long lashes a hint of soft eyeshadow, her full lips are painted in a hyper-glossy pink shade, her (((silver and pink braces))) are a cute accent when she smiles. Her straight silky black hair is in pigtails. Her school track uniform, pink mesh shorts with a white drawstring, pink tank top with her school letters \"BBC\" across the the front in bold black embossed letters, white socks, and white converse hightop sneakers, big gold hoop earrings and cute gold hoop nose ring piercing in her septum. She’s in the (((locker room shower))), smiling, about to go to practice, bright studio lighting, The overall aesthetic is hyperrealistic, capturing intricate details like the texture of her skin, 8K\n[!] txt2img mode\n 0%| | 0/50 [00:00<?, ?it/s]\n 2%|▏ | 1/50 [00:00<00:44, 1.11it/s]\n 4%|▍ | 2/50 [00:01<00:38, 1.25it/s]\n 6%|▌ | 3/50 [00:02<00:39, 1.18it/s]\n 8%|▊ | 4/50 [00:03<00:40, 1.15it/s]\n 10%|█ | 5/50 [00:04<00:39, 1.13it/s]\n 12%|█▏ | 6/50 [00:05<00:39, 1.12it/s]\n 14%|█▍ | 7/50 [00:06<00:38, 1.12it/s]\n 16%|█▌ | 8/50 [00:07<00:37, 1.11it/s]\n 18%|█▊ | 9/50 [00:07<00:37, 1.11it/s]\n 20%|██ | 10/50 [00:08<00:36, 1.11it/s]\n 22%|██▏ | 11/50 [00:09<00:35, 1.10it/s]\n 24%|██▍ | 12/50 [00:10<00:34, 1.10it/s]\n 26%|██▌ | 13/50 [00:11<00:33, 1.10it/s]\n 28%|██▊ | 14/50 [00:12<00:32, 1.10it/s]\n 30%|███ | 15/50 [00:13<00:31, 1.10it/s]\n 32%|███▏ | 16/50 [00:14<00:30, 1.10it/s]\n 34%|███▍ | 17/50 [00:15<00:29, 1.10it/s]\n 36%|███▌ | 18/50 [00:16<00:29, 1.10it/s]\n 38%|███▊ | 19/50 [00:17<00:28, 1.10it/s]\n 40%|████ | 20/50 [00:17<00:27, 1.10it/s]\n 42%|████▏ | 21/50 [00:18<00:26, 1.10it/s]\n 44%|████▍ | 22/50 [00:19<00:25, 1.10it/s]\n 46%|████▌ | 23/50 [00:20<00:24, 1.10it/s]\n 48%|████▊ | 24/50 [00:21<00:23, 1.10it/s]\n 50%|█████ | 25/50 [00:22<00:22, 1.10it/s]\n 52%|█████▏ | 26/50 [00:23<00:21, 1.10it/s]\n 54%|█████▍ | 27/50 [00:24<00:20, 1.10it/s]\n 56%|█████▌ | 28/50 [00:25<00:20, 1.10it/s]\n 58%|█████▊ | 29/50 [00:26<00:19, 1.10it/s]\n 60%|██████ | 30/50 [00:27<00:18, 1.10it/s]\n 62%|██████▏ | 31/50 [00:27<00:17, 1.10it/s]\n 64%|██████▍ | 32/50 [00:28<00:16, 1.10it/s]\n 66%|██████▌ | 33/50 [00:29<00:15, 1.10it/s]\n 68%|██████▊ | 34/50 [00:30<00:14, 1.10it/s]\n 70%|███████ | 35/50 [00:31<00:13, 1.10it/s]\n 72%|███████▏ | 36/50 [00:32<00:12, 1.10it/s]\n 74%|███████▍ | 37/50 [00:33<00:11, 1.10it/s]\n 76%|███████▌ | 38/50 [00:34<00:10, 1.10it/s]\n 78%|███████▊ | 39/50 [00:35<00:10, 1.10it/s]\n 80%|████████ | 40/50 [00:36<00:09, 1.10it/s]\n 82%|████████▏ | 41/50 [00:37<00:08, 1.10it/s]\n 84%|████████▍ | 42/50 [00:38<00:07, 1.10it/s]\n 86%|████████▌ | 43/50 [00:38<00:06, 1.09it/s]\n 88%|████████▊ | 44/50 [00:39<00:05, 1.10it/s]\n 90%|█████████ | 45/50 [00:40<00:04, 1.10it/s]\n 92%|█████████▏| 46/50 [00:41<00:03, 1.10it/s]\n 94%|█████████▍| 47/50 [00:42<00:02, 1.10it/s]\n 96%|█████████▌| 48/50 [00:43<00:01, 1.10it/s]\n 98%|█████████▊| 49/50 [00:44<00:00, 1.10it/s]\n100%|██████████| 50/50 [00:45<00:00, 1.10it/s]\n100%|██████████| 50/50 [00:45<00:00, 1.10it/s]\nTotal safe images: 4 out of 4", "metrics": { "predict_time": 49.426540647, "total_time": 49.481802 }, "output": [ "https://replicate.delivery/xezq/UkgmKLWz9Q4XD5seoxyYPhuUmFwz85FwtjG2aTWoHQqKG6ZKA/out-0.webp", "https://replicate.delivery/xezq/xYXrc2TvhU77Et1eNfVrYQ7ePjzgomso35AW5JbKfGpUxQPTB/out-1.webp", "https://replicate.delivery/xezq/77N7tAZIJw7QJ9VymQ7hgOh8Tr8SRFy9Decb1BW784eVM0zUA/out-2.webp", "https://replicate.delivery/xezq/fdgHNMqfJSktWUh9zaQ9Df7ewBeCHg26A5DsE0WFRnouiheMF/out-3.webp" ], "started_at": "2025-06-05T12:43:16.270262Z", "status": "succeeded", "urls": { "stream": "https://stream.replicate.com/v1/files/bcwr-6bx4p4vtxgadf4gwk34g3ipojluckas2ay7synmfbvgn63qxc4oq", "get": "https://api.replicate.com/v1/predictions/ns1zr3fvexrma0cq80errag4cm", "cancel": "https://api.replicate.com/v1/predictions/ns1zr3fvexrma0cq80errag4cm/cancel" }, "version": "ad5152212a382f9128e60bf652cfc62f88181ea515492f61d845072c2c917d05" }
Generated infree=26131603087360 Downloading weights 2025-06-05T12:43:16Z | INFO | [ Initiating ] chunk_size=150M dest=/tmp/tmp0ig5zro0/weights url=https://replicate.delivery/xezq/yRf6mKN4urSZTCs0ihBOPiwJGb9HuDuiJXBTu53qDK4QF6ZKA/flux-lora.tar 2025-06-05T12:43:16Z | INFO | [ Cache Service ] enabled=true scheme=http target=hermes.services.svc.cluster.local 2025-06-05T12:43:16Z | INFO | [ Cache URL Rewrite ] enabled=true target_url=http://hermes.services.svc.cluster.local/replicate.delivery/xezq/yRf6mKN4urSZTCs0ihBOPiwJGb9HuDuiJXBTu53qDK4QF6ZKA/flux-lora.tar url=https://replicate.delivery/xezq/yRf6mKN4urSZTCs0ihBOPiwJGb9HuDuiJXBTu53qDK4QF6ZKA/flux-lora.tar 2025-06-05T12:43:16Z | INFO | [ Redirect ] redirect_url=https://replicate.delivery/xezq/yRf6mKN4urSZTCs0ihBOPiwJGb9HuDuiJXBTu53qDK4QF6ZKA/flux-lora.tar url=http://hermes.services.svc.cluster.local/replicate.delivery/xezq/yRf6mKN4urSZTCs0ihBOPiwJGb9HuDuiJXBTu53qDK4QF6ZKA/flux-lora.tar 2025-06-05T12:43:18Z | INFO | [ Complete ] dest=/tmp/tmp0ig5zro0/weights size="172 MB" total_elapsed=2.417s url=https://replicate.delivery/xezq/yRf6mKN4urSZTCs0ihBOPiwJGb9HuDuiJXBTu53qDK4QF6ZKA/flux-lora.tar Downloaded weights in 2.48s Loaded LoRAs in 3.04s Using seed: 42492 Prompt: A realistic ((((wide angle shot)))) (((fully body photo))) entire body in the frame, of a young woman livvy 16 years old, she has an extremely athletic body with serious curves, big hips, and small waist. she has a natural, glowing complexion with deep caramel dewy skin and subtly highlighted cheekbones. Her expressive eyes are accented with long lashes a hint of soft eyeshadow, her full lips are painted in a hyper-glossy pink shade, her (((silver and pink braces))) are a cute accent when she smiles. Her straight silky black hair is in pigtails. Her school track uniform, pink mesh shorts with a white drawstring, pink tank top with her school letters "BBC" across the the front in bold black embossed letters, white socks, and white converse hightop sneakers, big gold hoop earrings and cute gold hoop nose ring piercing in her septum. She’s in the (((locker room shower))), smiling, about to go to practice, bright studio lighting, The overall aesthetic is hyperrealistic, capturing intricate details like the texture of her skin, 8K [!] txt2img mode 0%| | 0/50 [00:00<?, ?it/s] 2%|▏ | 1/50 [00:00<00:44, 1.11it/s] 4%|▍ | 2/50 [00:01<00:38, 1.25it/s] 6%|▌ | 3/50 [00:02<00:39, 1.18it/s] 8%|▊ | 4/50 [00:03<00:40, 1.15it/s] 10%|█ | 5/50 [00:04<00:39, 1.13it/s] 12%|█▏ | 6/50 [00:05<00:39, 1.12it/s] 14%|█▍ | 7/50 [00:06<00:38, 1.12it/s] 16%|█▌ | 8/50 [00:07<00:37, 1.11it/s] 18%|█▊ | 9/50 [00:07<00:37, 1.11it/s] 20%|██ | 10/50 [00:08<00:36, 1.11it/s] 22%|██▏ | 11/50 [00:09<00:35, 1.10it/s] 24%|██▍ | 12/50 [00:10<00:34, 1.10it/s] 26%|██▌ | 13/50 [00:11<00:33, 1.10it/s] 28%|██▊ | 14/50 [00:12<00:32, 1.10it/s] 30%|███ | 15/50 [00:13<00:31, 1.10it/s] 32%|███▏ | 16/50 [00:14<00:30, 1.10it/s] 34%|███▍ | 17/50 [00:15<00:29, 1.10it/s] 36%|███▌ | 18/50 [00:16<00:29, 1.10it/s] 38%|███▊ | 19/50 [00:17<00:28, 1.10it/s] 40%|████ | 20/50 [00:17<00:27, 1.10it/s] 42%|████▏ | 21/50 [00:18<00:26, 1.10it/s] 44%|████▍ | 22/50 [00:19<00:25, 1.10it/s] 46%|████▌ | 23/50 [00:20<00:24, 1.10it/s] 48%|████▊ | 24/50 [00:21<00:23, 1.10it/s] 50%|█████ | 25/50 [00:22<00:22, 1.10it/s] 52%|█████▏ | 26/50 [00:23<00:21, 1.10it/s] 54%|█████▍ | 27/50 [00:24<00:20, 1.10it/s] 56%|█████▌ | 28/50 [00:25<00:20, 1.10it/s] 58%|█████▊ | 29/50 [00:26<00:19, 1.10it/s] 60%|██████ | 30/50 [00:27<00:18, 1.10it/s] 62%|██████▏ | 31/50 [00:27<00:17, 1.10it/s] 64%|██████▍ | 32/50 [00:28<00:16, 1.10it/s] 66%|██████▌ | 33/50 [00:29<00:15, 1.10it/s] 68%|██████▊ | 34/50 [00:30<00:14, 1.10it/s] 70%|███████ | 35/50 [00:31<00:13, 1.10it/s] 72%|███████▏ | 36/50 [00:32<00:12, 1.10it/s] 74%|███████▍ | 37/50 [00:33<00:11, 1.10it/s] 76%|███████▌ | 38/50 [00:34<00:10, 1.10it/s] 78%|███████▊ | 39/50 [00:35<00:10, 1.10it/s] 80%|████████ | 40/50 [00:36<00:09, 1.10it/s] 82%|████████▏ | 41/50 [00:37<00:08, 1.10it/s] 84%|████████▍ | 42/50 [00:38<00:07, 1.10it/s] 86%|████████▌ | 43/50 [00:38<00:06, 1.09it/s] 88%|████████▊ | 44/50 [00:39<00:05, 1.10it/s] 90%|█████████ | 45/50 [00:40<00:04, 1.10it/s] 92%|█████████▏| 46/50 [00:41<00:03, 1.10it/s] 94%|█████████▍| 47/50 [00:42<00:02, 1.10it/s] 96%|█████████▌| 48/50 [00:43<00:01, 1.10it/s] 98%|█████████▊| 49/50 [00:44<00:00, 1.10it/s] 100%|██████████| 50/50 [00:45<00:00, 1.10it/s] 100%|██████████| 50/50 [00:45<00:00, 1.10it/s] Total safe images: 4 out of 4
Prediction
mikejamesla/livvy:ad5152212a382f9128e60bf652cfc62f88181ea515492f61d845072c2c917d05ID9wpza9wqt1rma0cq80fv6p87v0StatusSucceededSourceWebHardwareH100Total durationCreatedInput
- model
- dev
- prompt
- A realistic ((((wide angle shot)))) (((fully body photo))) entire body in the frame, of a young woman livvy 16 years old, she has an extremely athletic body with serious curves, big hips, and small waist. she has a natural, glowing complexion with glowing sweaty dewy skin and subtly highlighted cheekbones. Her expressive eyes are accented with long lashes a hint of soft eyeshadow, her full lips are painted in a hyper-glossy pink shade, her (((silver and pink braces))) are a cute accent when she smiles. Her straight silky blonde hair is in pigtails. Her school track uniform, pink mesh shorts with a white drawstring, pink tank top with her school letters "BBC" across the the front in bold black embossed letters, white socks, and white converse hightop sneakers, big gold hoop earrings and cute gold hoop nose ring piercing in her septum. She’s in the (((locker room shower))), smiling, about to go to practice, bright studio lighting, The overall aesthetic is hyperrealistic, capturing intricate details like the texture of her skin, 8K
- go_fast
- lora_scale
- 1
- megapixels
- 1
- num_outputs
- 4
- aspect_ratio
- 9:21
- output_format
- webp
- guidance_scale
- 3
- output_quality
- 100
- prompt_strength
- 0.8
- extra_lora_scale
- 1
- num_inference_steps
- 50
{ "model": "dev", "prompt": "A realistic ((((wide angle shot)))) (((fully body photo))) entire body in the frame, of a young woman livvy 16 years old, she has an extremely athletic body with serious curves, big hips, and small waist. she has a natural, glowing complexion with glowing sweaty dewy skin and subtly highlighted cheekbones. Her expressive eyes are accented with long lashes a hint of soft eyeshadow, her full lips are painted in a hyper-glossy pink shade, her (((silver and pink braces))) are a cute accent when she smiles. Her straight silky blonde hair is in pigtails. Her school track uniform, pink mesh shorts with a white drawstring, pink tank top with her school letters \"BBC\" across the the front in bold black embossed letters, white socks, and white converse hightop sneakers, big gold hoop earrings and cute gold hoop nose ring piercing in her septum. She’s in the (((locker room shower))), smiling, about to go to practice, bright studio lighting, The overall aesthetic is hyperrealistic, capturing intricate details like the texture of her skin, 8K", "go_fast": false, "lora_scale": 1, "megapixels": "1", "num_outputs": 4, "aspect_ratio": "9:21", "output_format": "webp", "guidance_scale": 3, "output_quality": 100, "prompt_strength": 0.8, "extra_lora_scale": 1, "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 mikejamesla/livvy using Replicate’s API. Check out the model's schema for an overview of inputs and outputs.
const output = await replicate.run( "mikejamesla/livvy:ad5152212a382f9128e60bf652cfc62f88181ea515492f61d845072c2c917d05", { input: { model: "dev", prompt: "A realistic ((((wide angle shot)))) (((fully body photo))) entire body in the frame, of a young woman livvy 16 years old, she has an extremely athletic body with serious curves, big hips, and small waist. she has a natural, glowing complexion with glowing sweaty dewy skin and subtly highlighted cheekbones. Her expressive eyes are accented with long lashes a hint of soft eyeshadow, her full lips are painted in a hyper-glossy pink shade, her (((silver and pink braces))) are a cute accent when she smiles. Her straight silky blonde hair is in pigtails. Her school track uniform, pink mesh shorts with a white drawstring, pink tank top with her school letters \"BBC\" across the the front in bold black embossed letters, white socks, and white converse hightop sneakers, big gold hoop earrings and cute gold hoop nose ring piercing in her septum. She’s in the (((locker room shower))), smiling, about to go to practice, bright studio lighting, The overall aesthetic is hyperrealistic, capturing intricate details like the texture of her skin, 8K", go_fast: false, lora_scale: 1, megapixels: "1", num_outputs: 4, aspect_ratio: "9:21", output_format: "webp", guidance_scale: 3, output_quality: 100, prompt_strength: 0.8, extra_lora_scale: 1, num_inference_steps: 50 } } ); // To access the file URL: console.log(output[0].url()); //=> "http://example.com" // To write the file to disk: fs.writeFile("my-image.png", output[0]);
To learn more, take a look at the guide on getting started with Node.js.
Install Replicate’s Python client library:pip install replicate
Import the client:import replicate
Run mikejamesla/livvy using Replicate’s API. Check out the model's schema for an overview of inputs and outputs.
output = replicate.run( "mikejamesla/livvy:ad5152212a382f9128e60bf652cfc62f88181ea515492f61d845072c2c917d05", input={ "model": "dev", "prompt": "A realistic ((((wide angle shot)))) (((fully body photo))) entire body in the frame, of a young woman livvy 16 years old, she has an extremely athletic body with serious curves, big hips, and small waist. she has a natural, glowing complexion with glowing sweaty dewy skin and subtly highlighted cheekbones. Her expressive eyes are accented with long lashes a hint of soft eyeshadow, her full lips are painted in a hyper-glossy pink shade, her (((silver and pink braces))) are a cute accent when she smiles. Her straight silky blonde hair is in pigtails. Her school track uniform, pink mesh shorts with a white drawstring, pink tank top with her school letters \"BBC\" across the the front in bold black embossed letters, white socks, and white converse hightop sneakers, big gold hoop earrings and cute gold hoop nose ring piercing in her septum. She’s in the (((locker room shower))), smiling, about to go to practice, bright studio lighting, The overall aesthetic is hyperrealistic, capturing intricate details like the texture of her skin, 8K", "go_fast": False, "lora_scale": 1, "megapixels": "1", "num_outputs": 4, "aspect_ratio": "9:21", "output_format": "webp", "guidance_scale": 3, "output_quality": 100, "prompt_strength": 0.8, "extra_lora_scale": 1, "num_inference_steps": 50 } ) # To access the file URL: print(output[0].url()) #=> "http://example.com" # To write the file to disk: with open("my-image.png", "wb") as file: file.write(output[0].read())
To learn more, take a look at the guide on getting started with Python.
Run mikejamesla/livvy 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": "mikejamesla/livvy:ad5152212a382f9128e60bf652cfc62f88181ea515492f61d845072c2c917d05", "input": { "model": "dev", "prompt": "A realistic ((((wide angle shot)))) (((fully body photo))) entire body in the frame, of a young woman livvy 16 years old, she has an extremely athletic body with serious curves, big hips, and small waist. she has a natural, glowing complexion with glowing sweaty dewy skin and subtly highlighted cheekbones. Her expressive eyes are accented with long lashes a hint of soft eyeshadow, her full lips are painted in a hyper-glossy pink shade, her (((silver and pink braces))) are a cute accent when she smiles. Her straight silky blonde hair is in pigtails. Her school track uniform, pink mesh shorts with a white drawstring, pink tank top with her school letters \\"BBC\\" across the the front in bold black embossed letters, white socks, and white converse hightop sneakers, big gold hoop earrings and cute gold hoop nose ring piercing in her septum. She’s in the (((locker room shower))), smiling, about to go to practice, bright studio lighting, The overall aesthetic is hyperrealistic, capturing intricate details like the texture of her skin, 8K", "go_fast": false, "lora_scale": 1, "megapixels": "1", "num_outputs": 4, "aspect_ratio": "9:21", "output_format": "webp", "guidance_scale": 3, "output_quality": 100, "prompt_strength": 0.8, "extra_lora_scale": 1, "num_inference_steps": 50 } }' \ https://api.replicate.com/v1/predictions
To learn more, take a look at Replicate’s HTTP API reference docs.
Output
{ "completed_at": "2025-06-05T12:45:51.714514Z", "created_at": "2025-06-05T12:45:01.776000Z", "data_removed": false, "error": null, "id": "9wpza9wqt1rma0cq80fv6p87v0", "input": { "model": "dev", "prompt": "A realistic ((((wide angle shot)))) (((fully body photo))) entire body in the frame, of a young woman livvy 16 years old, she has an extremely athletic body with serious curves, big hips, and small waist. she has a natural, glowing complexion with glowing sweaty dewy skin and subtly highlighted cheekbones. Her expressive eyes are accented with long lashes a hint of soft eyeshadow, her full lips are painted in a hyper-glossy pink shade, her (((silver and pink braces))) are a cute accent when she smiles. Her straight silky blonde hair is in pigtails. Her school track uniform, pink mesh shorts with a white drawstring, pink tank top with her school letters \"BBC\" across the the front in bold black embossed letters, white socks, and white converse hightop sneakers, big gold hoop earrings and cute gold hoop nose ring piercing in her septum. She’s in the (((locker room shower))), smiling, about to go to practice, bright studio lighting, The overall aesthetic is hyperrealistic, capturing intricate details like the texture of her skin, 8K", "go_fast": false, "lora_scale": 1, "megapixels": "1", "num_outputs": 4, "aspect_ratio": "9:21", "output_format": "webp", "guidance_scale": 3, "output_quality": 100, "prompt_strength": 0.8, "extra_lora_scale": 1, "num_inference_steps": 50 }, "logs": "free=27417813590016\nDownloading weights\n2025-06-05T12:45:04Z | INFO | [ Initiating ] chunk_size=150M dest=/tmp/tmp341sqcxz/weights url=https://replicate.delivery/xezq/yRf6mKN4urSZTCs0ihBOPiwJGb9HuDuiJXBTu53qDK4QF6ZKA/flux-lora.tar\n2025-06-05T12:45:04Z | INFO | [ Cache Service ] enabled=true scheme=http target=hermes.services.svc.cluster.local\n2025-06-05T12:45:04Z | INFO | [ Cache URL Rewrite ] enabled=true target_url=http://hermes.services.svc.cluster.local/replicate.delivery/xezq/yRf6mKN4urSZTCs0ihBOPiwJGb9HuDuiJXBTu53qDK4QF6ZKA/flux-lora.tar url=https://replicate.delivery/xezq/yRf6mKN4urSZTCs0ihBOPiwJGb9HuDuiJXBTu53qDK4QF6ZKA/flux-lora.tar\n2025-06-05T12:45:04Z | INFO | [ Redirect ] redirect_url=http://r8-east4-loras-ric1.cwlota.com/9bd58f8698a74f6246114640ebcbf65c461e82776b6fff63a49c1d0fb89cc3bf?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Checksum-Mode=ENABLED&X-Amz-Credential=CWNZUVKLDHXVHEZN%2F20250605%2FUS-EAST-04A%2Fs3%2Faws4_request&X-Amz-Date=20250605T124504Z&X-Amz-Expires=600&X-Amz-SignedHeaders=host&x-id=GetObject&X-Amz-Signature=ceaf7fa294b1c094f3e2640d86d987bd2231729f00b9e81f659172fa94e017ba url=http://hermes.services.svc.cluster.local/replicate.delivery/xezq/yRf6mKN4urSZTCs0ihBOPiwJGb9HuDuiJXBTu53qDK4QF6ZKA/flux-lora.tar\n2025-06-05T12:45:04Z | INFO | [ Complete ] dest=/tmp/tmp341sqcxz/weights size=\"172 MB\" total_elapsed=0.416s url=https://replicate.delivery/xezq/yRf6mKN4urSZTCs0ihBOPiwJGb9HuDuiJXBTu53qDK4QF6ZKA/flux-lora.tar\nDownloaded weights in 0.48s\nLoaded LoRAs in 1.04s\nUsing seed: 25427\nPrompt: A realistic ((((wide angle shot)))) (((fully body photo))) entire body in the frame, of a young woman livvy 16 years old, she has an extremely athletic body with serious curves, big hips, and small waist. she has a natural, glowing complexion with glowing sweaty dewy skin and subtly highlighted cheekbones. Her expressive eyes are accented with long lashes a hint of soft eyeshadow, her full lips are painted in a hyper-glossy pink shade, her (((silver and pink braces))) are a cute accent when she smiles. Her straight silky blonde hair is in pigtails. Her school track uniform, pink mesh shorts with a white drawstring, pink tank top with her school letters \"BBC\" across the the front in bold black embossed letters, white socks, and white converse hightop sneakers, big gold hoop earrings and cute gold hoop nose ring piercing in her septum. She’s in the (((locker room shower))), smiling, about to go to practice, bright studio lighting, The overall aesthetic is hyperrealistic, capturing intricate details like the texture of her skin, 8K\n[!] txt2img mode\n 0%| | 0/50 [00:00<?, ?it/s]\n 2%|▏ | 1/50 [00:00<00:44, 1.10it/s]\n 4%|▍ | 2/50 [00:01<00:38, 1.24it/s]\n 6%|▌ | 3/50 [00:02<00:40, 1.16it/s]\n 8%|▊ | 4/50 [00:03<00:40, 1.13it/s]\n 10%|█ | 5/50 [00:04<00:40, 1.12it/s]\n 12%|█▏ | 6/50 [00:05<00:39, 1.11it/s]\n 14%|█▍ | 7/50 [00:06<00:39, 1.10it/s]\n 16%|█▌ | 8/50 [00:07<00:38, 1.10it/s]\n 18%|█▊ | 9/50 [00:08<00:37, 1.09it/s]\n 20%|██ | 10/50 [00:08<00:36, 1.09it/s]\n 22%|██▏ | 11/50 [00:09<00:35, 1.09it/s]\n 24%|██▍ | 12/50 [00:10<00:34, 1.09it/s]\n 26%|██▌ | 13/50 [00:11<00:33, 1.09it/s]\n 28%|██▊ | 14/50 [00:12<00:33, 1.09it/s]\n 30%|███ | 15/50 [00:13<00:32, 1.09it/s]\n 32%|███▏ | 16/50 [00:14<00:31, 1.09it/s]\n 34%|███▍ | 17/50 [00:15<00:30, 1.09it/s]\n 36%|███▌ | 18/50 [00:16<00:29, 1.09it/s]\n 38%|███▊ | 19/50 [00:17<00:28, 1.09it/s]\n 40%|████ | 20/50 [00:18<00:27, 1.09it/s]\n 42%|████▏ | 21/50 [00:19<00:26, 1.09it/s]\n 44%|████▍ | 22/50 [00:20<00:25, 1.09it/s]\n 46%|████▌ | 23/50 [00:20<00:24, 1.09it/s]\n 48%|████▊ | 24/50 [00:21<00:23, 1.09it/s]\n 50%|█████ | 25/50 [00:22<00:22, 1.09it/s]\n 52%|█████▏ | 26/50 [00:23<00:22, 1.09it/s]\n 54%|█████▍ | 27/50 [00:24<00:21, 1.09it/s]\n 56%|█████▌ | 28/50 [00:25<00:20, 1.09it/s]\n 58%|█████▊ | 29/50 [00:26<00:19, 1.09it/s]\n 60%|██████ | 30/50 [00:27<00:18, 1.09it/s]\n 62%|██████▏ | 31/50 [00:28<00:17, 1.09it/s]\n 64%|██████▍ | 32/50 [00:29<00:16, 1.09it/s]\n 66%|██████▌ | 33/50 [00:30<00:15, 1.09it/s]\n 68%|██████▊ | 34/50 [00:31<00:14, 1.09it/s]\n 70%|███████ | 35/50 [00:31<00:13, 1.09it/s]\n 72%|███████▏ | 36/50 [00:32<00:12, 1.09it/s]\n 74%|███████▍ | 37/50 [00:33<00:11, 1.09it/s]\n 76%|███████▌ | 38/50 [00:34<00:11, 1.09it/s]\n 78%|███████▊ | 39/50 [00:35<00:10, 1.09it/s]\n 80%|████████ | 40/50 [00:36<00:09, 1.09it/s]\n 82%|████████▏ | 41/50 [00:37<00:08, 1.09it/s]\n 84%|████████▍ | 42/50 [00:38<00:07, 1.09it/s]\n 86%|████████▌ | 43/50 [00:39<00:06, 1.09it/s]\n 88%|████████▊ | 44/50 [00:40<00:05, 1.09it/s]\n 90%|█████████ | 45/50 [00:41<00:04, 1.09it/s]\n 92%|█████████▏| 46/50 [00:42<00:03, 1.09it/s]\n 94%|█████████▍| 47/50 [00:42<00:02, 1.09it/s]\n 96%|█████████▌| 48/50 [00:43<00:01, 1.09it/s]\n 98%|█████████▊| 49/50 [00:44<00:00, 1.09it/s]\n100%|██████████| 50/50 [00:45<00:00, 1.09it/s]\n100%|██████████| 50/50 [00:45<00:00, 1.09it/s]\nTotal safe images: 4 out of 4", "metrics": { "predict_time": 47.804420752, "total_time": 49.938514 }, "output": [ "https://replicate.delivery/xezq/xlB6n8shxNYOA5Qbh3LBeulF6avKWhjwM064b8tA4BtfN0zUA/out-0.webp", "https://replicate.delivery/xezq/K2si6r0xNewuNihEI5LdSgD9bhPPiWdartjiCVEIxBtfN0zUA/out-1.webp", "https://replicate.delivery/xezq/MAJs4AIj4QolDVXLMOE00j8EX3AWLkZ0hQpkBXFzFa4fG6ZKA/out-2.webp", "https://replicate.delivery/xezq/lHqYeNF7zU1mdqavlWHG1fvM9a1mzK85Pobe6NJiSOZe3QPTB/out-3.webp" ], "started_at": "2025-06-05T12:45:03.910093Z", "status": "succeeded", "urls": { "stream": "https://stream.replicate.com/v1/files/bcwr-cfqhqm27vgmgort5ua5v6gag7wcxftjwrgux26bgbkbgtckwuhma", "get": "https://api.replicate.com/v1/predictions/9wpza9wqt1rma0cq80fv6p87v0", "cancel": "https://api.replicate.com/v1/predictions/9wpza9wqt1rma0cq80fv6p87v0/cancel" }, "version": "ad5152212a382f9128e60bf652cfc62f88181ea515492f61d845072c2c917d05" }
Generated infree=27417813590016 Downloading weights 2025-06-05T12:45:04Z | INFO | [ Initiating ] chunk_size=150M dest=/tmp/tmp341sqcxz/weights url=https://replicate.delivery/xezq/yRf6mKN4urSZTCs0ihBOPiwJGb9HuDuiJXBTu53qDK4QF6ZKA/flux-lora.tar 2025-06-05T12:45:04Z | INFO | [ Cache Service ] enabled=true scheme=http target=hermes.services.svc.cluster.local 2025-06-05T12:45:04Z | INFO | [ Cache URL Rewrite ] enabled=true target_url=http://hermes.services.svc.cluster.local/replicate.delivery/xezq/yRf6mKN4urSZTCs0ihBOPiwJGb9HuDuiJXBTu53qDK4QF6ZKA/flux-lora.tar url=https://replicate.delivery/xezq/yRf6mKN4urSZTCs0ihBOPiwJGb9HuDuiJXBTu53qDK4QF6ZKA/flux-lora.tar 2025-06-05T12:45:04Z | INFO | [ Redirect ] redirect_url=http://r8-east4-loras-ric1.cwlota.com/9bd58f8698a74f6246114640ebcbf65c461e82776b6fff63a49c1d0fb89cc3bf?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Checksum-Mode=ENABLED&X-Amz-Credential=CWNZUVKLDHXVHEZN%2F20250605%2FUS-EAST-04A%2Fs3%2Faws4_request&X-Amz-Date=20250605T124504Z&X-Amz-Expires=600&X-Amz-SignedHeaders=host&x-id=GetObject&X-Amz-Signature=ceaf7fa294b1c094f3e2640d86d987bd2231729f00b9e81f659172fa94e017ba url=http://hermes.services.svc.cluster.local/replicate.delivery/xezq/yRf6mKN4urSZTCs0ihBOPiwJGb9HuDuiJXBTu53qDK4QF6ZKA/flux-lora.tar 2025-06-05T12:45:04Z | INFO | [ Complete ] dest=/tmp/tmp341sqcxz/weights size="172 MB" total_elapsed=0.416s url=https://replicate.delivery/xezq/yRf6mKN4urSZTCs0ihBOPiwJGb9HuDuiJXBTu53qDK4QF6ZKA/flux-lora.tar Downloaded weights in 0.48s Loaded LoRAs in 1.04s Using seed: 25427 Prompt: A realistic ((((wide angle shot)))) (((fully body photo))) entire body in the frame, of a young woman livvy 16 years old, she has an extremely athletic body with serious curves, big hips, and small waist. she has a natural, glowing complexion with glowing sweaty dewy skin and subtly highlighted cheekbones. Her expressive eyes are accented with long lashes a hint of soft eyeshadow, her full lips are painted in a hyper-glossy pink shade, her (((silver and pink braces))) are a cute accent when she smiles. Her straight silky blonde hair is in pigtails. Her school track uniform, pink mesh shorts with a white drawstring, pink tank top with her school letters "BBC" across the the front in bold black embossed letters, white socks, and white converse hightop sneakers, big gold hoop earrings and cute gold hoop nose ring piercing in her septum. She’s in the (((locker room shower))), smiling, about to go to practice, bright studio lighting, The overall aesthetic is hyperrealistic, capturing intricate details like the texture of her skin, 8K [!] txt2img mode 0%| | 0/50 [00:00<?, ?it/s] 2%|▏ | 1/50 [00:00<00:44, 1.10it/s] 4%|▍ | 2/50 [00:01<00:38, 1.24it/s] 6%|▌ | 3/50 [00:02<00:40, 1.16it/s] 8%|▊ | 4/50 [00:03<00:40, 1.13it/s] 10%|█ | 5/50 [00:04<00:40, 1.12it/s] 12%|█▏ | 6/50 [00:05<00:39, 1.11it/s] 14%|█▍ | 7/50 [00:06<00:39, 1.10it/s] 16%|█▌ | 8/50 [00:07<00:38, 1.10it/s] 18%|█▊ | 9/50 [00:08<00:37, 1.09it/s] 20%|██ | 10/50 [00:08<00:36, 1.09it/s] 22%|██▏ | 11/50 [00:09<00:35, 1.09it/s] 24%|██▍ | 12/50 [00:10<00:34, 1.09it/s] 26%|██▌ | 13/50 [00:11<00:33, 1.09it/s] 28%|██▊ | 14/50 [00:12<00:33, 1.09it/s] 30%|███ | 15/50 [00:13<00:32, 1.09it/s] 32%|███▏ | 16/50 [00:14<00:31, 1.09it/s] 34%|███▍ | 17/50 [00:15<00:30, 1.09it/s] 36%|███▌ | 18/50 [00:16<00:29, 1.09it/s] 38%|███▊ | 19/50 [00:17<00:28, 1.09it/s] 40%|████ | 20/50 [00:18<00:27, 1.09it/s] 42%|████▏ | 21/50 [00:19<00:26, 1.09it/s] 44%|████▍ | 22/50 [00:20<00:25, 1.09it/s] 46%|████▌ | 23/50 [00:20<00:24, 1.09it/s] 48%|████▊ | 24/50 [00:21<00:23, 1.09it/s] 50%|█████ | 25/50 [00:22<00:22, 1.09it/s] 52%|█████▏ | 26/50 [00:23<00:22, 1.09it/s] 54%|█████▍ | 27/50 [00:24<00:21, 1.09it/s] 56%|█████▌ | 28/50 [00:25<00:20, 1.09it/s] 58%|█████▊ | 29/50 [00:26<00:19, 1.09it/s] 60%|██████ | 30/50 [00:27<00:18, 1.09it/s] 62%|██████▏ | 31/50 [00:28<00:17, 1.09it/s] 64%|██████▍ | 32/50 [00:29<00:16, 1.09it/s] 66%|██████▌ | 33/50 [00:30<00:15, 1.09it/s] 68%|██████▊ | 34/50 [00:31<00:14, 1.09it/s] 70%|███████ | 35/50 [00:31<00:13, 1.09it/s] 72%|███████▏ | 36/50 [00:32<00:12, 1.09it/s] 74%|███████▍ | 37/50 [00:33<00:11, 1.09it/s] 76%|███████▌ | 38/50 [00:34<00:11, 1.09it/s] 78%|███████▊ | 39/50 [00:35<00:10, 1.09it/s] 80%|████████ | 40/50 [00:36<00:09, 1.09it/s] 82%|████████▏ | 41/50 [00:37<00:08, 1.09it/s] 84%|████████▍ | 42/50 [00:38<00:07, 1.09it/s] 86%|████████▌ | 43/50 [00:39<00:06, 1.09it/s] 88%|████████▊ | 44/50 [00:40<00:05, 1.09it/s] 90%|█████████ | 45/50 [00:41<00:04, 1.09it/s] 92%|█████████▏| 46/50 [00:42<00:03, 1.09it/s] 94%|█████████▍| 47/50 [00:42<00:02, 1.09it/s] 96%|█████████▌| 48/50 [00:43<00:01, 1.09it/s] 98%|█████████▊| 49/50 [00:44<00:00, 1.09it/s] 100%|██████████| 50/50 [00:45<00:00, 1.09it/s] 100%|██████████| 50/50 [00:45<00:00, 1.09it/s] Total safe images: 4 out of 4
Want to make some of these yourself?
Run this model