Readme
This model doesn't have a readme.
Run this model in Node.js with one line of code:
npm install replicate
REPLICATE_API_TOKEN
environment variable:export REPLICATE_API_TOKEN=<paste-your-token-here>
Find your API token in your account settings.
import Replicate from "replicate";
import fs from "node:fs";
const replicate = new Replicate({
auth: process.env.REPLICATE_API_TOKEN,
});
Run biggpt1/osdress-one using Replicate’s API. Check out the model's schema for an overview of inputs and outputs.
const output = await replicate.run(
"biggpt1/osdress-one:30ecc43fece87d3f7171e18e80a38242f7a00f12393c7d062d976052c2bcc6b3",
{
input: {
model: "dev",
prompt: "ALTSB it white A beautiful woman ALTSB in a traditional Ossetian white dress TOK, standing gracefully in a serene outdoor setting. The dress is intricately embroidered with delicate silver patterns, flowing elegantly around her as a gentle breeze lifts its edges. She wears a matching white headscarf adorned with subtle lace, framing her striking features—high cheekbones, deep brown eyes, and a poised expression. Her long, dark hair cascades beneath the scarf, partially visible.\n\nThe setting is a picturesque Ossetian mountain landscape bathed in soft, golden sunlight, with lush green meadows and distant snow-capped peaks in the background. The scene is captured in the style of a vintage Kodak film photograph, evoking a warm, nostalgic atmosphere with rich yet slightly muted tones. Light leaks and a soft grain texture add to the authenticity of the film aesthetic.\n\nHer pose is elegant yet natural, with her hands gently clasped in front of her. A sense of quiet dignity and cultural pride emanates from her stance, as the folds of her traditional dress catch the light, revealing intricate embroidery. The shallow depth of field emphasizes her as the central focus, while the blurred background enhances the dreamlike quality of the image. The overall composition blends timeless elegance with a cinematic, old-film charm.",
go_fast: false,
extra_lora: "biguloff/alina-tseba",
lora_scale: 0.88,
megapixels: "1",
num_outputs: 3,
aspect_ratio: "1:1",
output_format: "webp",
guidance_scale: 3,
output_quality: 80,
prompt_strength: 0.8,
extra_lora_scale: 0.79,
num_inference_steps: 28
}
}
);
// To access the file URL:
console.log(output[0].url()); //=> "http://example.com"
// To write the file to disk:
fs.writeFile("my-image.png", output[0]);
To learn more, take a look at the guide on getting started with Node.js.
pip install replicate
REPLICATE_API_TOKEN
environment variable:export REPLICATE_API_TOKEN=<paste-your-token-here>
Find your API token in your account settings.
import replicate
Run biggpt1/osdress-one using Replicate’s API. Check out the model's schema for an overview of inputs and outputs.
output = replicate.run(
"biggpt1/osdress-one:30ecc43fece87d3f7171e18e80a38242f7a00f12393c7d062d976052c2bcc6b3",
input={
"model": "dev",
"prompt": "ALTSB it white A beautiful woman ALTSB in a traditional Ossetian white dress TOK, standing gracefully in a serene outdoor setting. The dress is intricately embroidered with delicate silver patterns, flowing elegantly around her as a gentle breeze lifts its edges. She wears a matching white headscarf adorned with subtle lace, framing her striking features—high cheekbones, deep brown eyes, and a poised expression. Her long, dark hair cascades beneath the scarf, partially visible.\n\nThe setting is a picturesque Ossetian mountain landscape bathed in soft, golden sunlight, with lush green meadows and distant snow-capped peaks in the background. The scene is captured in the style of a vintage Kodak film photograph, evoking a warm, nostalgic atmosphere with rich yet slightly muted tones. Light leaks and a soft grain texture add to the authenticity of the film aesthetic.\n\nHer pose is elegant yet natural, with her hands gently clasped in front of her. A sense of quiet dignity and cultural pride emanates from her stance, as the folds of her traditional dress catch the light, revealing intricate embroidery. The shallow depth of field emphasizes her as the central focus, while the blurred background enhances the dreamlike quality of the image. The overall composition blends timeless elegance with a cinematic, old-film charm.",
"go_fast": False,
"extra_lora": "biguloff/alina-tseba",
"lora_scale": 0.88,
"megapixels": "1",
"num_outputs": 3,
"aspect_ratio": "1:1",
"output_format": "webp",
"guidance_scale": 3,
"output_quality": 80,
"prompt_strength": 0.8,
"extra_lora_scale": 0.79,
"num_inference_steps": 28
}
)
print(output)
To learn more, take a look at the guide on getting started with Python.
REPLICATE_API_TOKEN
environment variable:export REPLICATE_API_TOKEN=<paste-your-token-here>
Find your API token in your account settings.
Run biggpt1/osdress-one 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": "biggpt1/osdress-one:30ecc43fece87d3f7171e18e80a38242f7a00f12393c7d062d976052c2bcc6b3",
"input": {
"model": "dev",
"prompt": "ALTSB it white A beautiful woman ALTSB in a traditional Ossetian white dress TOK, standing gracefully in a serene outdoor setting. The dress is intricately embroidered with delicate silver patterns, flowing elegantly around her as a gentle breeze lifts its edges. She wears a matching white headscarf adorned with subtle lace, framing her striking features—high cheekbones, deep brown eyes, and a poised expression. Her long, dark hair cascades beneath the scarf, partially visible.\\n\\nThe setting is a picturesque Ossetian mountain landscape bathed in soft, golden sunlight, with lush green meadows and distant snow-capped peaks in the background. The scene is captured in the style of a vintage Kodak film photograph, evoking a warm, nostalgic atmosphere with rich yet slightly muted tones. Light leaks and a soft grain texture add to the authenticity of the film aesthetic.\\n\\nHer pose is elegant yet natural, with her hands gently clasped in front of her. A sense of quiet dignity and cultural pride emanates from her stance, as the folds of her traditional dress catch the light, revealing intricate embroidery. The shallow depth of field emphasizes her as the central focus, while the blurred background enhances the dreamlike quality of the image. The overall composition blends timeless elegance with a cinematic, old-film charm.",
"go_fast": false,
"extra_lora": "biguloff/alina-tseba",
"lora_scale": 0.88,
"megapixels": "1",
"num_outputs": 3,
"aspect_ratio": "1:1",
"output_format": "webp",
"guidance_scale": 3,
"output_quality": 80,
"prompt_strength": 0.8,
"extra_lora_scale": 0.79,
"num_inference_steps": 28
}
}' \
https://api.replicate.com/v1/predictions
To learn more, take a look at Replicate’s HTTP API reference docs.
Add a payment method to run this model.
By signing in, you agree to our
terms of service and privacy policy
{
"completed_at": "2025-02-05T21:11:22.192457Z",
"created_at": "2025-02-05T21:10:47.595000Z",
"data_removed": false,
"error": null,
"id": "3bxakww25drme0cmtzsr1xqb50",
"input": {
"model": "dev",
"prompt": "ALTSB it white A beautiful woman ALTSB in a traditional Ossetian white dress TOK, standing gracefully in a serene outdoor setting. The dress is intricately embroidered with delicate silver patterns, flowing elegantly around her as a gentle breeze lifts its edges. She wears a matching white headscarf adorned with subtle lace, framing her striking features—high cheekbones, deep brown eyes, and a poised expression. Her long, dark hair cascades beneath the scarf, partially visible.\n\nThe setting is a picturesque Ossetian mountain landscape bathed in soft, golden sunlight, with lush green meadows and distant snow-capped peaks in the background. The scene is captured in the style of a vintage Kodak film photograph, evoking a warm, nostalgic atmosphere with rich yet slightly muted tones. Light leaks and a soft grain texture add to the authenticity of the film aesthetic.\n\nHer pose is elegant yet natural, with her hands gently clasped in front of her. A sense of quiet dignity and cultural pride emanates from her stance, as the folds of her traditional dress catch the light, revealing intricate embroidery. The shallow depth of field emphasizes her as the central focus, while the blurred background enhances the dreamlike quality of the image. The overall composition blends timeless elegance with a cinematic, old-film charm.",
"go_fast": false,
"extra_lora": "biguloff/alina-tseba",
"lora_scale": 0.88,
"megapixels": "1",
"num_outputs": 3,
"aspect_ratio": "1:1",
"output_format": "webp",
"guidance_scale": 3,
"output_quality": 80,
"prompt_strength": 0.8,
"extra_lora_scale": 0.79,
"num_inference_steps": 28
},
"logs": "free=28863928610816\nDownloading weights\n2025-02-05T21:10:47Z | INFO | [ Initiating ] chunk_size=150M dest=/tmp/tmpjvrh9_4m/weights url=https://replicate.delivery/xezq/Qssp4kEFTiKNL5UWfH5U2R9YcuEp3Uhz4Ssgfqj4QBkDMVMUA/trained_model.tar\n2025-02-05T21:10:50Z | INFO | [ Complete ] dest=/tmp/tmpjvrh9_4m/weights size=\"355 MB\" total_elapsed=2.473s url=https://replicate.delivery/xezq/Qssp4kEFTiKNL5UWfH5U2R9YcuEp3Uhz4Ssgfqj4QBkDMVMUA/trained_model.tar\nDownloaded weights in 2.50s\nfree=28863572684800\nDownloading weights\n2025-02-05T21:10:50Z | INFO | [ Initiating ] chunk_size=150M dest=/tmp/tmp4h1944ms/weights url=https://replicate.com/biguloff/alina-tseba/_weights\n2025-02-05T21:10:51Z | INFO | [ Redirect ] redirect_url=https://replicate.delivery/yhqm/X9bP4Eu4u1YBOBQVEQ5mbfcUvADnLvuFojFD1S3krgmoUP1JA/trained_model.tar url=https://replicate.com/biguloff/alina-tseba/_weights\n2025-02-05T21:10:57Z | INFO | [ Complete ] dest=/tmp/tmp4h1944ms/weights size=\"344 MB\" total_elapsed=6.732s url=https://replicate.com/biguloff/alina-tseba/_weights\nDownloaded weights in 6.76s\nLoaded LoRAs in 10.72s\nUsing seed: 19742\nPrompt: ALTSB it white A beautiful woman ALTSB in a traditional Ossetian white dress TOK, standing gracefully in a serene outdoor setting. The dress is intricately embroidered with delicate silver patterns, flowing elegantly around her as a gentle breeze lifts its edges. She wears a matching white headscarf adorned with subtle lace, framing her striking features—high cheekbones, deep brown eyes, and a poised expression. Her long, dark hair cascades beneath the scarf, partially visible.\nThe setting is a picturesque Ossetian mountain landscape bathed in soft, golden sunlight, with lush green meadows and distant snow-capped peaks in the background. The scene is captured in the style of a vintage Kodak film photograph, evoking a warm, nostalgic atmosphere with rich yet slightly muted tones. Light leaks and a soft grain texture add to the authenticity of the film aesthetic.\nHer pose is elegant yet natural, with her hands gently clasped in front of her. A sense of quiet dignity and cultural pride emanates from her stance, as the folds of her traditional dress catch the light, revealing intricate embroidery. The shallow depth of field emphasizes her as the central focus, while the blurred background enhances the dreamlike quality of the image. The overall composition blends timeless elegance with a cinematic, old-film charm.\n[!] txt2img mode\n 0%| | 0/28 [00:00<?, ?it/s]\n 4%|▎ | 1/28 [00:00<00:22, 1.21it/s]\n 7%|▋ | 2/28 [00:01<00:19, 1.32it/s]\n 11%|█ | 3/28 [00:02<00:19, 1.26it/s]\n 14%|█▍ | 4/28 [00:03<00:19, 1.24it/s]\n 18%|█▊ | 5/28 [00:04<00:18, 1.23it/s]\n 21%|██▏ | 6/28 [00:04<00:18, 1.22it/s]\n 25%|██▌ | 7/28 [00:05<00:17, 1.22it/s]\n 29%|██▊ | 8/28 [00:06<00:16, 1.21it/s]\n 32%|███▏ | 9/28 [00:07<00:15, 1.21it/s]\n 36%|███▌ | 10/28 [00:08<00:14, 1.21it/s]\n 39%|███▉ | 11/28 [00:09<00:14, 1.21it/s]\n 43%|████▎ | 12/28 [00:09<00:13, 1.21it/s]\n 46%|████▋ | 13/28 [00:10<00:12, 1.21it/s]\n 50%|█████ | 14/28 [00:11<00:11, 1.20it/s]\n 54%|█████▎ | 15/28 [00:12<00:10, 1.20it/s]\n 57%|█████▋ | 16/28 [00:13<00:09, 1.20it/s]\n 61%|██████ | 17/28 [00:13<00:09, 1.20it/s]\n 64%|██████▍ | 18/28 [00:14<00:08, 1.21it/s]\n 68%|██████▊ | 19/28 [00:15<00:07, 1.20it/s]\n 71%|███████▏ | 20/28 [00:16<00:06, 1.21it/s]\n 75%|███████▌ | 21/28 [00:17<00:05, 1.21it/s]\n 79%|███████▊ | 22/28 [00:18<00:04, 1.21it/s]\n 82%|████████▏ | 23/28 [00:18<00:04, 1.20it/s]\n 86%|████████▌ | 24/28 [00:19<00:03, 1.20it/s]\n 89%|████████▉ | 25/28 [00:20<00:02, 1.21it/s]\n 93%|█████████▎| 26/28 [00:21<00:01, 1.20it/s]\n 96%|█████████▋| 27/28 [00:22<00:00, 1.20it/s]\n100%|██████████| 28/28 [00:23<00:00, 1.20it/s]\n100%|██████████| 28/28 [00:23<00:00, 1.21it/s]\nTotal safe images: 3 out of 3",
"metrics": {
"predict_time": 34.582065543,
"total_time": 34.597457
},
"output": [
"https://replicate.delivery/xezq/UFsM29lzzD4IMpfeHOadmi0DxDIdCNWVSseE3eHax5XqfCjhC/out-0.webp",
"https://replicate.delivery/xezq/kBTeZ6F8OsR3NyefHVGoubdQnweuhdfOgs5X7zYWrpzXfFGDF/out-1.webp",
"https://replicate.delivery/xezq/bIZiLrNFdz6SG1e3e46NcX8uKcU3OX1qA1gUpXYYxel0vwYoA/out-2.webp"
],
"started_at": "2025-02-05T21:10:47.610391Z",
"status": "succeeded",
"urls": {
"stream": "https://stream.replicate.com/v1/files/bcwr-jlvhxk4sls3qs5p3s27wkw7errjhh54agk7du5z3kye7tnwfwsrq",
"get": "https://api.replicate.com/v1/predictions/3bxakww25drme0cmtzsr1xqb50",
"cancel": "https://api.replicate.com/v1/predictions/3bxakww25drme0cmtzsr1xqb50/cancel"
},
"version": "30ecc43fece87d3f7171e18e80a38242f7a00f12393c7d062d976052c2bcc6b3"
}
free=28863928610816
Downloading weights
2025-02-05T21:10:47Z | INFO | [ Initiating ] chunk_size=150M dest=/tmp/tmpjvrh9_4m/weights url=https://replicate.delivery/xezq/Qssp4kEFTiKNL5UWfH5U2R9YcuEp3Uhz4Ssgfqj4QBkDMVMUA/trained_model.tar
2025-02-05T21:10:50Z | INFO | [ Complete ] dest=/tmp/tmpjvrh9_4m/weights size="355 MB" total_elapsed=2.473s url=https://replicate.delivery/xezq/Qssp4kEFTiKNL5UWfH5U2R9YcuEp3Uhz4Ssgfqj4QBkDMVMUA/trained_model.tar
Downloaded weights in 2.50s
free=28863572684800
Downloading weights
2025-02-05T21:10:50Z | INFO | [ Initiating ] chunk_size=150M dest=/tmp/tmp4h1944ms/weights url=https://replicate.com/biguloff/alina-tseba/_weights
2025-02-05T21:10:51Z | INFO | [ Redirect ] redirect_url=https://replicate.delivery/yhqm/X9bP4Eu4u1YBOBQVEQ5mbfcUvADnLvuFojFD1S3krgmoUP1JA/trained_model.tar url=https://replicate.com/biguloff/alina-tseba/_weights
2025-02-05T21:10:57Z | INFO | [ Complete ] dest=/tmp/tmp4h1944ms/weights size="344 MB" total_elapsed=6.732s url=https://replicate.com/biguloff/alina-tseba/_weights
Downloaded weights in 6.76s
Loaded LoRAs in 10.72s
Using seed: 19742
Prompt: ALTSB it white A beautiful woman ALTSB in a traditional Ossetian white dress TOK, standing gracefully in a serene outdoor setting. The dress is intricately embroidered with delicate silver patterns, flowing elegantly around her as a gentle breeze lifts its edges. She wears a matching white headscarf adorned with subtle lace, framing her striking features—high cheekbones, deep brown eyes, and a poised expression. Her long, dark hair cascades beneath the scarf, partially visible.
The setting is a picturesque Ossetian mountain landscape bathed in soft, golden sunlight, with lush green meadows and distant snow-capped peaks in the background. The scene is captured in the style of a vintage Kodak film photograph, evoking a warm, nostalgic atmosphere with rich yet slightly muted tones. Light leaks and a soft grain texture add to the authenticity of the film aesthetic.
Her pose is elegant yet natural, with her hands gently clasped in front of her. A sense of quiet dignity and cultural pride emanates from her stance, as the folds of her traditional dress catch the light, revealing intricate embroidery. The shallow depth of field emphasizes her as the central focus, while the blurred background enhances the dreamlike quality of the image. The overall composition blends timeless elegance with a cinematic, old-film charm.
[!] txt2img mode
0%| | 0/28 [00:00<?, ?it/s]
4%|▎ | 1/28 [00:00<00:22, 1.21it/s]
7%|▋ | 2/28 [00:01<00:19, 1.32it/s]
11%|█ | 3/28 [00:02<00:19, 1.26it/s]
14%|█▍ | 4/28 [00:03<00:19, 1.24it/s]
18%|█▊ | 5/28 [00:04<00:18, 1.23it/s]
21%|██▏ | 6/28 [00:04<00:18, 1.22it/s]
25%|██▌ | 7/28 [00:05<00:17, 1.22it/s]
29%|██▊ | 8/28 [00:06<00:16, 1.21it/s]
32%|███▏ | 9/28 [00:07<00:15, 1.21it/s]
36%|███▌ | 10/28 [00:08<00:14, 1.21it/s]
39%|███▉ | 11/28 [00:09<00:14, 1.21it/s]
43%|████▎ | 12/28 [00:09<00:13, 1.21it/s]
46%|████▋ | 13/28 [00:10<00:12, 1.21it/s]
50%|█████ | 14/28 [00:11<00:11, 1.20it/s]
54%|█████▎ | 15/28 [00:12<00:10, 1.20it/s]
57%|█████▋ | 16/28 [00:13<00:09, 1.20it/s]
61%|██████ | 17/28 [00:13<00:09, 1.20it/s]
64%|██████▍ | 18/28 [00:14<00:08, 1.21it/s]
68%|██████▊ | 19/28 [00:15<00:07, 1.20it/s]
71%|███████▏ | 20/28 [00:16<00:06, 1.21it/s]
75%|███████▌ | 21/28 [00:17<00:05, 1.21it/s]
79%|███████▊ | 22/28 [00:18<00:04, 1.21it/s]
82%|████████▏ | 23/28 [00:18<00:04, 1.20it/s]
86%|████████▌ | 24/28 [00:19<00:03, 1.20it/s]
89%|████████▉ | 25/28 [00:20<00:02, 1.21it/s]
93%|█████████▎| 26/28 [00:21<00:01, 1.20it/s]
96%|█████████▋| 27/28 [00:22<00:00, 1.20it/s]
100%|██████████| 28/28 [00:23<00:00, 1.20it/s]
100%|██████████| 28/28 [00:23<00:00, 1.21it/s]
Total safe images: 3 out of 3
This model runs on Nvidia H100 GPU hardware. We don't yet have enough runs of this model to provide performance information.
This model doesn't have a readme.
This model is warm. You'll get a fast response if the model is warm and already running, and a slower response if the model is cold and starting up.
This model runs on H100 hardware which costs $0.001525 per second. View more.
Choose a file from your machine
Hint: you can also drag files onto the input
Choose a file from your machine
Hint: you can also drag files onto the input
free=28863928610816
Downloading weights
2025-02-05T21:10:47Z | INFO | [ Initiating ] chunk_size=150M dest=/tmp/tmpjvrh9_4m/weights url=https://replicate.delivery/xezq/Qssp4kEFTiKNL5UWfH5U2R9YcuEp3Uhz4Ssgfqj4QBkDMVMUA/trained_model.tar
2025-02-05T21:10:50Z | INFO | [ Complete ] dest=/tmp/tmpjvrh9_4m/weights size="355 MB" total_elapsed=2.473s url=https://replicate.delivery/xezq/Qssp4kEFTiKNL5UWfH5U2R9YcuEp3Uhz4Ssgfqj4QBkDMVMUA/trained_model.tar
Downloaded weights in 2.50s
free=28863572684800
Downloading weights
2025-02-05T21:10:50Z | INFO | [ Initiating ] chunk_size=150M dest=/tmp/tmp4h1944ms/weights url=https://replicate.com/biguloff/alina-tseba/_weights
2025-02-05T21:10:51Z | INFO | [ Redirect ] redirect_url=https://replicate.delivery/yhqm/X9bP4Eu4u1YBOBQVEQ5mbfcUvADnLvuFojFD1S3krgmoUP1JA/trained_model.tar url=https://replicate.com/biguloff/alina-tseba/_weights
2025-02-05T21:10:57Z | INFO | [ Complete ] dest=/tmp/tmp4h1944ms/weights size="344 MB" total_elapsed=6.732s url=https://replicate.com/biguloff/alina-tseba/_weights
Downloaded weights in 6.76s
Loaded LoRAs in 10.72s
Using seed: 19742
Prompt: ALTSB it white A beautiful woman ALTSB in a traditional Ossetian white dress TOK, standing gracefully in a serene outdoor setting. The dress is intricately embroidered with delicate silver patterns, flowing elegantly around her as a gentle breeze lifts its edges. She wears a matching white headscarf adorned with subtle lace, framing her striking features—high cheekbones, deep brown eyes, and a poised expression. Her long, dark hair cascades beneath the scarf, partially visible.
The setting is a picturesque Ossetian mountain landscape bathed in soft, golden sunlight, with lush green meadows and distant snow-capped peaks in the background. The scene is captured in the style of a vintage Kodak film photograph, evoking a warm, nostalgic atmosphere with rich yet slightly muted tones. Light leaks and a soft grain texture add to the authenticity of the film aesthetic.
Her pose is elegant yet natural, with her hands gently clasped in front of her. A sense of quiet dignity and cultural pride emanates from her stance, as the folds of her traditional dress catch the light, revealing intricate embroidery. The shallow depth of field emphasizes her as the central focus, while the blurred background enhances the dreamlike quality of the image. The overall composition blends timeless elegance with a cinematic, old-film charm.
[!] txt2img mode
0%| | 0/28 [00:00<?, ?it/s]
4%|▎ | 1/28 [00:00<00:22, 1.21it/s]
7%|▋ | 2/28 [00:01<00:19, 1.32it/s]
11%|█ | 3/28 [00:02<00:19, 1.26it/s]
14%|█▍ | 4/28 [00:03<00:19, 1.24it/s]
18%|█▊ | 5/28 [00:04<00:18, 1.23it/s]
21%|██▏ | 6/28 [00:04<00:18, 1.22it/s]
25%|██▌ | 7/28 [00:05<00:17, 1.22it/s]
29%|██▊ | 8/28 [00:06<00:16, 1.21it/s]
32%|███▏ | 9/28 [00:07<00:15, 1.21it/s]
36%|███▌ | 10/28 [00:08<00:14, 1.21it/s]
39%|███▉ | 11/28 [00:09<00:14, 1.21it/s]
43%|████▎ | 12/28 [00:09<00:13, 1.21it/s]
46%|████▋ | 13/28 [00:10<00:12, 1.21it/s]
50%|█████ | 14/28 [00:11<00:11, 1.20it/s]
54%|█████▎ | 15/28 [00:12<00:10, 1.20it/s]
57%|█████▋ | 16/28 [00:13<00:09, 1.20it/s]
61%|██████ | 17/28 [00:13<00:09, 1.20it/s]
64%|██████▍ | 18/28 [00:14<00:08, 1.21it/s]
68%|██████▊ | 19/28 [00:15<00:07, 1.20it/s]
71%|███████▏ | 20/28 [00:16<00:06, 1.21it/s]
75%|███████▌ | 21/28 [00:17<00:05, 1.21it/s]
79%|███████▊ | 22/28 [00:18<00:04, 1.21it/s]
82%|████████▏ | 23/28 [00:18<00:04, 1.20it/s]
86%|████████▌ | 24/28 [00:19<00:03, 1.20it/s]
89%|████████▉ | 25/28 [00:20<00:02, 1.21it/s]
93%|█████████▎| 26/28 [00:21<00:01, 1.20it/s]
96%|█████████▋| 27/28 [00:22<00:00, 1.20it/s]
100%|██████████| 28/28 [00:23<00:00, 1.20it/s]
100%|██████████| 28/28 [00:23<00:00, 1.21it/s]
Total safe images: 3 out of 3