aisha-ai-official / alchemist-mix-illustrious-realism-v4
(Updated 3 months, 1 week ago)
Prediction
aisha-ai-official/alchemist-mix-illustrious-realism-v4:7ad86f1e6919326d7237f0e67015a8438f140cc0882e9300437c0093f6633ceaID8rp5s414x5rma0cndz78drhdfmStatusSucceededSourceWebHardwareL40STotal durationCreatedInput
- vae
- default
- seed
- 1328132913
- model
- Alchemist-Mix-Illustrious-Realism-v4
- steps
- 30
- width
- 1024
- height
- 1024
- prompt
- cafe, waifu, 1girl, blonde, blue eyes, beauty, bunny cosplay, waitress, seductive
- cfg_scale
- 5
- clip_skip
- 1
- pag_scale
- 0
- scheduler
- Euler a
- batch_size
- 1
- adetailer_face
- adetailer_hand
- negative_prompt
- nsfw, naked
- adetailer_person
- guidance_rescale
- 1
- prepend_preprompt
{ "vae": "default", "seed": 1328132913, "model": "Alchemist-Mix-Illustrious-Realism-v4", "steps": 30, "width": 1024, "height": 1024, "prompt": "cafe, waifu, 1girl, blonde, blue eyes, beauty, bunny cosplay, waitress, seductive", "cfg_scale": 5, "clip_skip": 1, "pag_scale": 0, "scheduler": "Euler a", "batch_size": 1, "adetailer_face": true, "adetailer_hand": false, "negative_prompt": "nsfw, naked", "adetailer_person": false, "guidance_rescale": 1, "prepend_preprompt": true }
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 aisha-ai-official/alchemist-mix-illustrious-realism-v4 using Replicate’s API. Check out the model's schema for an overview of inputs and outputs.
const output = await replicate.run( "aisha-ai-official/alchemist-mix-illustrious-realism-v4:7ad86f1e6919326d7237f0e67015a8438f140cc0882e9300437c0093f6633cea", { input: { vae: "default", seed: 1328132913, model: "Alchemist-Mix-Illustrious-Realism-v4", steps: 30, width: 1024, height: 1024, prompt: "cafe, waifu, 1girl, blonde, blue eyes, beauty, bunny cosplay, waitress, seductive", cfg_scale: 5, clip_skip: 1, pag_scale: 0, scheduler: "Euler a", batch_size: 1, adetailer_face: true, adetailer_hand: false, negative_prompt: "nsfw, naked", adetailer_person: false, guidance_rescale: 1, prepend_preprompt: true } } ); // 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 aisha-ai-official/alchemist-mix-illustrious-realism-v4 using Replicate’s API. Check out the model's schema for an overview of inputs and outputs.
output = replicate.run( "aisha-ai-official/alchemist-mix-illustrious-realism-v4:7ad86f1e6919326d7237f0e67015a8438f140cc0882e9300437c0093f6633cea", input={ "vae": "default", "seed": 1328132913, "model": "Alchemist-Mix-Illustrious-Realism-v4", "steps": 30, "width": 1024, "height": 1024, "prompt": "cafe, waifu, 1girl, blonde, blue eyes, beauty, bunny cosplay, waitress, seductive", "cfg_scale": 5, "clip_skip": 1, "pag_scale": 0, "scheduler": "Euler a", "batch_size": 1, "adetailer_face": True, "adetailer_hand": False, "negative_prompt": "nsfw, naked", "adetailer_person": False, "guidance_rescale": 1, "prepend_preprompt": True } ) print(output)
To learn more, take a look at the guide on getting started with Python.
Run aisha-ai-official/alchemist-mix-illustrious-realism-v4 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": "aisha-ai-official/alchemist-mix-illustrious-realism-v4:7ad86f1e6919326d7237f0e67015a8438f140cc0882e9300437c0093f6633cea", "input": { "vae": "default", "seed": 1328132913, "model": "Alchemist-Mix-Illustrious-Realism-v4", "steps": 30, "width": 1024, "height": 1024, "prompt": "cafe, waifu, 1girl, blonde, blue eyes, beauty, bunny cosplay, waitress, seductive", "cfg_scale": 5, "clip_skip": 1, "pag_scale": 0, "scheduler": "Euler a", "batch_size": 1, "adetailer_face": true, "adetailer_hand": false, "negative_prompt": "nsfw, naked", "adetailer_person": false, "guidance_rescale": 1, "prepend_preprompt": true } }' \ 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/aisha-ai-official/alchemist-mix-illustrious-realism-v4@sha256:7ad86f1e6919326d7237f0e67015a8438f140cc0882e9300437c0093f6633cea \ -i 'vae="default"' \ -i 'seed=1328132913' \ -i 'model="Alchemist-Mix-Illustrious-Realism-v4"' \ -i 'steps=30' \ -i 'width=1024' \ -i 'height=1024' \ -i 'prompt="cafe, waifu, 1girl, blonde, blue eyes, beauty, bunny cosplay, waitress, seductive"' \ -i 'cfg_scale=5' \ -i 'clip_skip=1' \ -i 'pag_scale=0' \ -i 'scheduler="Euler a"' \ -i 'batch_size=1' \ -i 'adetailer_face=true' \ -i 'adetailer_hand=false' \ -i 'negative_prompt="nsfw, naked"' \ -i 'adetailer_person=false' \ -i 'guidance_rescale=1' \ -i 'prepend_preprompt=true'
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/aisha-ai-official/alchemist-mix-illustrious-realism-v4@sha256:7ad86f1e6919326d7237f0e67015a8438f140cc0882e9300437c0093f6633cea
curl -s -X POST \ -H "Content-Type: application/json" \ -d $'{ "input": { "vae": "default", "seed": 1328132913, "model": "Alchemist-Mix-Illustrious-Realism-v4", "steps": 30, "width": 1024, "height": 1024, "prompt": "cafe, waifu, 1girl, blonde, blue eyes, beauty, bunny cosplay, waitress, seductive", "cfg_scale": 5, "clip_skip": 1, "pag_scale": 0, "scheduler": "Euler a", "batch_size": 1, "adetailer_face": true, "adetailer_hand": false, "negative_prompt": "nsfw, naked", "adetailer_person": false, "guidance_rescale": 1, "prepend_preprompt": true } }' \ http://localhost:5000/predictions
To learn more, take a look at the Cog documentation.
Output
{ "completed_at": "2025-03-07T08:53:00.916254Z", "created_at": "2025-03-07T08:52:15.721000Z", "data_removed": false, "error": null, "id": "8rp5s414x5rma0cndz78drhdfm", "input": { "vae": "default", "seed": 1328132913, "model": "Alchemist-Mix-Illustrious-Realism-v4", "steps": 30, "width": 1024, "height": 1024, "prompt": "cafe, waifu, 1girl, blonde, blue eyes, beauty, bunny cosplay, waitress, seductive", "cfg_scale": 5, "clip_skip": 1, "pag_scale": 0, "scheduler": "Euler a", "batch_size": 1, "adetailer_face": true, "adetailer_hand": false, "negative_prompt": "nsfw, naked", "adetailer_person": false, "guidance_rescale": 1, "prepend_preprompt": true }, "logs": "Using text to image mode.\nUsing seed: 1328132913\n 0%| | 0/30 [00:00<?, ?it/s]\n 3%|▎ | 1/30 [00:00<00:08, 3.25it/s]\n 10%|█ | 3/30 [00:00<00:03, 6.94it/s]\n 13%|█▎ | 4/30 [00:00<00:03, 7.41it/s]\n 17%|█▋ | 5/30 [00:00<00:03, 7.73it/s]\n 20%|██ | 6/30 [00:00<00:03, 7.96it/s]\n 23%|██▎ | 7/30 [00:00<00:02, 8.11it/s]\n 27%|██▋ | 8/30 [00:01<00:02, 8.22it/s]\n 30%|███ | 9/30 [00:01<00:02, 8.30it/s]\n 33%|███▎ | 10/30 [00:01<00:02, 8.34it/s]\n 37%|███▋ | 11/30 [00:01<00:02, 8.37it/s]\n 40%|████ | 12/30 [00:01<00:02, 8.39it/s]\n 43%|████▎ | 13/30 [00:01<00:02, 8.41it/s]\n 47%|████▋ | 14/30 [00:01<00:01, 8.41it/s]\n 50%|█████ | 15/30 [00:01<00:01, 8.40it/s]\n 53%|█████▎ | 16/30 [00:02<00:01, 8.41it/s]\n 57%|█████▋ | 17/30 [00:02<00:01, 8.42it/s]\n 60%|██████ | 18/30 [00:02<00:01, 8.41it/s]\n 63%|██████▎ | 19/30 [00:02<00:01, 8.42it/s]\n 67%|██████▋ | 20/30 [00:02<00:01, 8.41it/s]\n 70%|███████ | 21/30 [00:02<00:01, 8.42it/s]\n 73%|███████▎ | 22/30 [00:02<00:00, 8.43it/s]\n 77%|███████▋ | 23/30 [00:02<00:00, 8.43it/s]\n 80%|████████ | 24/30 [00:02<00:00, 8.43it/s]\n 83%|████████▎ | 25/30 [00:03<00:00, 8.43it/s]\n 87%|████████▋ | 26/30 [00:03<00:00, 8.44it/s]\n 90%|█████████ | 27/30 [00:03<00:00, 8.43it/s]\n 93%|█████████▎| 28/30 [00:03<00:00, 8.43it/s]\n 97%|█████████▋| 29/30 [00:03<00:00, 8.44it/s]\n100%|██████████| 30/30 [00:03<00:00, 8.44it/s]\n100%|██████████| 30/30 [00:03<00:00, 8.15it/s]\n/root/.pyenv/versions/3.12.8/lib/python3.12/site-packages/huggingface_hub/file_download.py:834: UserWarning: `local_dir_use_symlinks` parameter is deprecated and will be ignored. The process to download files to a local folder has been updated and do not rely on symlinks anymore. You only need to pass a destination folder as`local_dir`.\nFor more details, check out https://huggingface.co/docs/huggingface_hub/main/en/guides/download#download-files-to-local-folder.\nwarnings.warn(\nInpainting...\n0: 640x640 1 face, 5.6ms\nSpeed: 4.1ms preprocess, 5.6ms inference, 29.1ms postprocess per image at shape (1, 3, 640, 640)\npadded dim: (np.int64(243), np.int64(171), np.int64(623), np.int64(584))\nLoading StableDiffusionXLInpaintPipeline\n 0%| | 0/3 [00:00<?, ?it/s]\n 33%|███▎ | 1/3 [00:00<00:00, 8.86it/s]\n 67%|██████▋ | 2/3 [00:00<00:00, 8.61it/s]\n100%|██████████| 3/3 [00:00<00:00, 9.41it/s]\ngenerated inpaint dim: (1024, 1024)", "metrics": { "predict_time": 7.81742688, "total_time": 45.195254 }, "output": [ "https://replicate.delivery/xezq/TdN3ed7VOwxxOSrp46Efz4PeFsnSoGtc8KgiidkOK2JYvMsoA/0.png" ], "started_at": "2025-03-07T08:52:53.098827Z", "status": "succeeded", "urls": { "stream": "https://stream.replicate.com/v1/files/bcwr-fh6i3fmktomz4jc2qfb7isqrlblgifkmw3th6mvazdwo3lpsvroq", "get": "https://api.replicate.com/v1/predictions/8rp5s414x5rma0cndz78drhdfm", "cancel": "https://api.replicate.com/v1/predictions/8rp5s414x5rma0cndz78drhdfm/cancel" }, "version": "7ad86f1e6919326d7237f0e67015a8438f140cc0882e9300437c0093f6633cea" }
Generated inUsing text to image mode. Using seed: 1328132913 0%| | 0/30 [00:00<?, ?it/s] 3%|▎ | 1/30 [00:00<00:08, 3.25it/s] 10%|█ | 3/30 [00:00<00:03, 6.94it/s] 13%|█▎ | 4/30 [00:00<00:03, 7.41it/s] 17%|█▋ | 5/30 [00:00<00:03, 7.73it/s] 20%|██ | 6/30 [00:00<00:03, 7.96it/s] 23%|██▎ | 7/30 [00:00<00:02, 8.11it/s] 27%|██▋ | 8/30 [00:01<00:02, 8.22it/s] 30%|███ | 9/30 [00:01<00:02, 8.30it/s] 33%|███▎ | 10/30 [00:01<00:02, 8.34it/s] 37%|███▋ | 11/30 [00:01<00:02, 8.37it/s] 40%|████ | 12/30 [00:01<00:02, 8.39it/s] 43%|████▎ | 13/30 [00:01<00:02, 8.41it/s] 47%|████▋ | 14/30 [00:01<00:01, 8.41it/s] 50%|█████ | 15/30 [00:01<00:01, 8.40it/s] 53%|█████▎ | 16/30 [00:02<00:01, 8.41it/s] 57%|█████▋ | 17/30 [00:02<00:01, 8.42it/s] 60%|██████ | 18/30 [00:02<00:01, 8.41it/s] 63%|██████▎ | 19/30 [00:02<00:01, 8.42it/s] 67%|██████▋ | 20/30 [00:02<00:01, 8.41it/s] 70%|███████ | 21/30 [00:02<00:01, 8.42it/s] 73%|███████▎ | 22/30 [00:02<00:00, 8.43it/s] 77%|███████▋ | 23/30 [00:02<00:00, 8.43it/s] 80%|████████ | 24/30 [00:02<00:00, 8.43it/s] 83%|████████▎ | 25/30 [00:03<00:00, 8.43it/s] 87%|████████▋ | 26/30 [00:03<00:00, 8.44it/s] 90%|█████████ | 27/30 [00:03<00:00, 8.43it/s] 93%|█████████▎| 28/30 [00:03<00:00, 8.43it/s] 97%|█████████▋| 29/30 [00:03<00:00, 8.44it/s] 100%|██████████| 30/30 [00:03<00:00, 8.44it/s] 100%|██████████| 30/30 [00:03<00:00, 8.15it/s] /root/.pyenv/versions/3.12.8/lib/python3.12/site-packages/huggingface_hub/file_download.py:834: UserWarning: `local_dir_use_symlinks` parameter is deprecated and will be ignored. The process to download files to a local folder has been updated and do not rely on symlinks anymore. You only need to pass a destination folder as`local_dir`. For more details, check out https://huggingface.co/docs/huggingface_hub/main/en/guides/download#download-files-to-local-folder. warnings.warn( Inpainting... 0: 640x640 1 face, 5.6ms Speed: 4.1ms preprocess, 5.6ms inference, 29.1ms postprocess per image at shape (1, 3, 640, 640) padded dim: (np.int64(243), np.int64(171), np.int64(623), np.int64(584)) Loading StableDiffusionXLInpaintPipeline 0%| | 0/3 [00:00<?, ?it/s] 33%|███▎ | 1/3 [00:00<00:00, 8.86it/s] 67%|██████▋ | 2/3 [00:00<00:00, 8.61it/s] 100%|██████████| 3/3 [00:00<00:00, 9.41it/s] generated inpaint dim: (1024, 1024)
Prediction
aisha-ai-official/alchemist-mix-illustrious-realism-v4:7ad86f1e6919326d7237f0e67015a8438f140cc0882e9300437c0093f6633ceaIDjhgckv7mcxrme0cndz7r8zatpcStatusSucceededSourceWebHardwareL40STotal durationCreatedInput
- vae
- default
- seed
- 1328132913
- model
- Alchemist-Mix-Illustrious-Realism-v4
- steps
- 30
- width
- 1024
- height
- 1024
- prompt
- Ada Wong from Resident Evil 4, smile, low light
- cfg_scale
- 5
- clip_skip
- 1
- pag_scale
- 0
- scheduler
- Euler a
- batch_size
- 1
- adetailer_face
- adetailer_hand
- negative_prompt
- nsfw, naked
- adetailer_person
- guidance_rescale
- 1
- prepend_preprompt
{ "vae": "default", "seed": 1328132913, "model": "Alchemist-Mix-Illustrious-Realism-v4", "steps": 30, "width": 1024, "height": 1024, "prompt": "Ada Wong from Resident Evil 4, smile, low light", "cfg_scale": 5, "clip_skip": 1, "pag_scale": 0, "scheduler": "Euler a", "batch_size": 1, "adetailer_face": true, "adetailer_hand": false, "negative_prompt": "nsfw, naked", "adetailer_person": false, "guidance_rescale": 1, "prepend_preprompt": true }
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 aisha-ai-official/alchemist-mix-illustrious-realism-v4 using Replicate’s API. Check out the model's schema for an overview of inputs and outputs.
const output = await replicate.run( "aisha-ai-official/alchemist-mix-illustrious-realism-v4:7ad86f1e6919326d7237f0e67015a8438f140cc0882e9300437c0093f6633cea", { input: { vae: "default", seed: 1328132913, model: "Alchemist-Mix-Illustrious-Realism-v4", steps: 30, width: 1024, height: 1024, prompt: "Ada Wong from Resident Evil 4, smile, low light", cfg_scale: 5, clip_skip: 1, pag_scale: 0, scheduler: "Euler a", batch_size: 1, adetailer_face: true, adetailer_hand: false, negative_prompt: "nsfw, naked", adetailer_person: false, guidance_rescale: 1, prepend_preprompt: true } } ); // 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 aisha-ai-official/alchemist-mix-illustrious-realism-v4 using Replicate’s API. Check out the model's schema for an overview of inputs and outputs.
output = replicate.run( "aisha-ai-official/alchemist-mix-illustrious-realism-v4:7ad86f1e6919326d7237f0e67015a8438f140cc0882e9300437c0093f6633cea", input={ "vae": "default", "seed": 1328132913, "model": "Alchemist-Mix-Illustrious-Realism-v4", "steps": 30, "width": 1024, "height": 1024, "prompt": "Ada Wong from Resident Evil 4, smile, low light", "cfg_scale": 5, "clip_skip": 1, "pag_scale": 0, "scheduler": "Euler a", "batch_size": 1, "adetailer_face": True, "adetailer_hand": False, "negative_prompt": "nsfw, naked", "adetailer_person": False, "guidance_rescale": 1, "prepend_preprompt": True } ) print(output)
To learn more, take a look at the guide on getting started with Python.
Run aisha-ai-official/alchemist-mix-illustrious-realism-v4 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": "aisha-ai-official/alchemist-mix-illustrious-realism-v4:7ad86f1e6919326d7237f0e67015a8438f140cc0882e9300437c0093f6633cea", "input": { "vae": "default", "seed": 1328132913, "model": "Alchemist-Mix-Illustrious-Realism-v4", "steps": 30, "width": 1024, "height": 1024, "prompt": "Ada Wong from Resident Evil 4, smile, low light", "cfg_scale": 5, "clip_skip": 1, "pag_scale": 0, "scheduler": "Euler a", "batch_size": 1, "adetailer_face": true, "adetailer_hand": false, "negative_prompt": "nsfw, naked", "adetailer_person": false, "guidance_rescale": 1, "prepend_preprompt": true } }' \ 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/aisha-ai-official/alchemist-mix-illustrious-realism-v4@sha256:7ad86f1e6919326d7237f0e67015a8438f140cc0882e9300437c0093f6633cea \ -i 'vae="default"' \ -i 'seed=1328132913' \ -i 'model="Alchemist-Mix-Illustrious-Realism-v4"' \ -i 'steps=30' \ -i 'width=1024' \ -i 'height=1024' \ -i 'prompt="Ada Wong from Resident Evil 4, smile, low light"' \ -i 'cfg_scale=5' \ -i 'clip_skip=1' \ -i 'pag_scale=0' \ -i 'scheduler="Euler a"' \ -i 'batch_size=1' \ -i 'adetailer_face=true' \ -i 'adetailer_hand=false' \ -i 'negative_prompt="nsfw, naked"' \ -i 'adetailer_person=false' \ -i 'guidance_rescale=1' \ -i 'prepend_preprompt=true'
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/aisha-ai-official/alchemist-mix-illustrious-realism-v4@sha256:7ad86f1e6919326d7237f0e67015a8438f140cc0882e9300437c0093f6633cea
curl -s -X POST \ -H "Content-Type: application/json" \ -d $'{ "input": { "vae": "default", "seed": 1328132913, "model": "Alchemist-Mix-Illustrious-Realism-v4", "steps": 30, "width": 1024, "height": 1024, "prompt": "Ada Wong from Resident Evil 4, smile, low light", "cfg_scale": 5, "clip_skip": 1, "pag_scale": 0, "scheduler": "Euler a", "batch_size": 1, "adetailer_face": true, "adetailer_hand": false, "negative_prompt": "nsfw, naked", "adetailer_person": false, "guidance_rescale": 1, "prepend_preprompt": true } }' \ http://localhost:5000/predictions
To learn more, take a look at the Cog documentation.
Output
{ "completed_at": "2025-03-07T08:54:55.232481Z", "created_at": "2025-03-07T08:54:14.375000Z", "data_removed": false, "error": null, "id": "jhgckv7mcxrme0cndz7r8zatpc", "input": { "vae": "default", "seed": 1328132913, "model": "Alchemist-Mix-Illustrious-Realism-v4", "steps": 30, "width": 1024, "height": 1024, "prompt": "Ada Wong from Resident Evil 4, smile, low light", "cfg_scale": 5, "clip_skip": 1, "pag_scale": 0, "scheduler": "Euler a", "batch_size": 1, "adetailer_face": true, "adetailer_hand": false, "negative_prompt": "nsfw, naked", "adetailer_person": false, "guidance_rescale": 1, "prepend_preprompt": true }, "logs": "Using text to image mode.\nUsing seed: 1328132913\n 0%| | 0/30 [00:00<?, ?it/s]\n 3%|▎ | 1/30 [00:00<00:09, 3.06it/s]\n 10%|█ | 3/30 [00:00<00:03, 6.75it/s]\n 13%|█▎ | 4/30 [00:00<00:03, 7.29it/s]\n 17%|█▋ | 5/30 [00:00<00:03, 7.68it/s]\n 20%|██ | 6/30 [00:00<00:03, 7.94it/s]\n 23%|██▎ | 7/30 [00:00<00:02, 8.13it/s]\n 27%|██▋ | 8/30 [00:01<00:02, 8.26it/s]\n 30%|███ | 9/30 [00:01<00:02, 8.35it/s]\n 33%|███▎ | 10/30 [00:01<00:02, 8.41it/s]\n 37%|███▋ | 11/30 [00:01<00:02, 8.46it/s]\n 40%|████ | 12/30 [00:01<00:02, 8.49it/s]\n 43%|████▎ | 13/30 [00:01<00:01, 8.51it/s]\n 47%|████▋ | 14/30 [00:01<00:01, 8.53it/s]\n 50%|█████ | 15/30 [00:01<00:01, 8.54it/s]\n 53%|█████▎ | 16/30 [00:02<00:01, 8.53it/s]\n 57%|█████▋ | 17/30 [00:02<00:01, 8.54it/s]\n 60%|██████ | 18/30 [00:02<00:01, 8.55it/s]\n 63%|██████▎ | 19/30 [00:02<00:01, 8.54it/s]\n 67%|██████▋ | 20/30 [00:02<00:01, 8.54it/s]\n 70%|███████ | 21/30 [00:02<00:01, 8.55it/s]\n 73%|███████▎ | 22/30 [00:02<00:00, 8.54it/s]\n 77%|███████▋ | 23/30 [00:02<00:00, 8.54it/s]\n 80%|████████ | 24/30 [00:02<00:00, 8.54it/s]\n 83%|████████▎ | 25/30 [00:03<00:00, 8.54it/s]\n 87%|████████▋ | 26/30 [00:03<00:00, 8.54it/s]\n 90%|█████████ | 27/30 [00:03<00:00, 8.54it/s]\n 93%|█████████▎| 28/30 [00:03<00:00, 8.55it/s]\n 97%|█████████▋| 29/30 [00:03<00:00, 8.54it/s]\n100%|██████████| 30/30 [00:03<00:00, 8.54it/s]\n100%|██████████| 30/30 [00:03<00:00, 8.21it/s]\n/root/.pyenv/versions/3.12.8/lib/python3.12/site-packages/huggingface_hub/file_download.py:834: UserWarning: `local_dir_use_symlinks` parameter is deprecated and will be ignored. The process to download files to a local folder has been updated and do not rely on symlinks anymore. You only need to pass a destination folder as`local_dir`.\nFor more details, check out https://huggingface.co/docs/huggingface_hub/main/en/guides/download#download-files-to-local-folder.\nwarnings.warn(\nInpainting...\n0: 640x640 1 face, 5.5ms\nSpeed: 9.8ms preprocess, 5.5ms inference, 26.9ms postprocess per image at shape (1, 3, 640, 640)\npadded dim: (np.int64(283), np.int64(1), np.int64(738), np.int64(599))\nLoading StableDiffusionXLInpaintPipeline\n 0%| | 0/3 [00:00<?, ?it/s]\n 33%|███▎ | 1/3 [00:00<00:00, 9.07it/s]\n 67%|██████▋ | 2/3 [00:00<00:00, 8.76it/s]\n100%|██████████| 3/3 [00:00<00:00, 9.57it/s]\ngenerated inpaint dim: (1024, 1024)", "metrics": { "predict_time": 8.262980918, "total_time": 40.857481 }, "output": [ "https://replicate.delivery/xezq/xfPbsAihJWxwL6kh0pef2IIjXaeuA9DbYUct4v2lEjafLzwiC/0.png" ], "started_at": "2025-03-07T08:54:46.969500Z", "status": "succeeded", "urls": { "stream": "https://stream.replicate.com/v1/files/bcwr-qk5gr6bjgolfeeta7akcdsrzpotyfn2xsg4k7sqrdi35s3dlg54q", "get": "https://api.replicate.com/v1/predictions/jhgckv7mcxrme0cndz7r8zatpc", "cancel": "https://api.replicate.com/v1/predictions/jhgckv7mcxrme0cndz7r8zatpc/cancel" }, "version": "7ad86f1e6919326d7237f0e67015a8438f140cc0882e9300437c0093f6633cea" }
Generated inUsing text to image mode. Using seed: 1328132913 0%| | 0/30 [00:00<?, ?it/s] 3%|▎ | 1/30 [00:00<00:09, 3.06it/s] 10%|█ | 3/30 [00:00<00:03, 6.75it/s] 13%|█▎ | 4/30 [00:00<00:03, 7.29it/s] 17%|█▋ | 5/30 [00:00<00:03, 7.68it/s] 20%|██ | 6/30 [00:00<00:03, 7.94it/s] 23%|██▎ | 7/30 [00:00<00:02, 8.13it/s] 27%|██▋ | 8/30 [00:01<00:02, 8.26it/s] 30%|███ | 9/30 [00:01<00:02, 8.35it/s] 33%|███▎ | 10/30 [00:01<00:02, 8.41it/s] 37%|███▋ | 11/30 [00:01<00:02, 8.46it/s] 40%|████ | 12/30 [00:01<00:02, 8.49it/s] 43%|████▎ | 13/30 [00:01<00:01, 8.51it/s] 47%|████▋ | 14/30 [00:01<00:01, 8.53it/s] 50%|█████ | 15/30 [00:01<00:01, 8.54it/s] 53%|█████▎ | 16/30 [00:02<00:01, 8.53it/s] 57%|█████▋ | 17/30 [00:02<00:01, 8.54it/s] 60%|██████ | 18/30 [00:02<00:01, 8.55it/s] 63%|██████▎ | 19/30 [00:02<00:01, 8.54it/s] 67%|██████▋ | 20/30 [00:02<00:01, 8.54it/s] 70%|███████ | 21/30 [00:02<00:01, 8.55it/s] 73%|███████▎ | 22/30 [00:02<00:00, 8.54it/s] 77%|███████▋ | 23/30 [00:02<00:00, 8.54it/s] 80%|████████ | 24/30 [00:02<00:00, 8.54it/s] 83%|████████▎ | 25/30 [00:03<00:00, 8.54it/s] 87%|████████▋ | 26/30 [00:03<00:00, 8.54it/s] 90%|█████████ | 27/30 [00:03<00:00, 8.54it/s] 93%|█████████▎| 28/30 [00:03<00:00, 8.55it/s] 97%|█████████▋| 29/30 [00:03<00:00, 8.54it/s] 100%|██████████| 30/30 [00:03<00:00, 8.54it/s] 100%|██████████| 30/30 [00:03<00:00, 8.21it/s] /root/.pyenv/versions/3.12.8/lib/python3.12/site-packages/huggingface_hub/file_download.py:834: UserWarning: `local_dir_use_symlinks` parameter is deprecated and will be ignored. The process to download files to a local folder has been updated and do not rely on symlinks anymore. You only need to pass a destination folder as`local_dir`. For more details, check out https://huggingface.co/docs/huggingface_hub/main/en/guides/download#download-files-to-local-folder. warnings.warn( Inpainting... 0: 640x640 1 face, 5.5ms Speed: 9.8ms preprocess, 5.5ms inference, 26.9ms postprocess per image at shape (1, 3, 640, 640) padded dim: (np.int64(283), np.int64(1), np.int64(738), np.int64(599)) Loading StableDiffusionXLInpaintPipeline 0%| | 0/3 [00:00<?, ?it/s] 33%|███▎ | 1/3 [00:00<00:00, 9.07it/s] 67%|██████▋ | 2/3 [00:00<00:00, 8.76it/s] 100%|██████████| 3/3 [00:00<00:00, 9.57it/s] generated inpaint dim: (1024, 1024)
Prediction
aisha-ai-official/alchemist-mix-illustrious-realism-v4:7ad86f1e6919326d7237f0e67015a8438f140cc0882e9300437c0093f6633ceaIDjsq63p5p1drme0cndz2btp5z04StatusSucceededSourceWebHardwareL40STotal durationCreatedInput
- vae
- default
- seed
- 1328132913
- model
- Alchemist-Mix-Illustrious-Realism-v4
- steps
- 30
- width
- 1024
- height
- 1024
- prompt
- street, 1girl, dark-purple short hair, purple eyes, medium breasts, cleavage, casual clothes, smile, V
- cfg_scale
- 5
- clip_skip
- 1
- pag_scale
- 0
- scheduler
- Euler a
- batch_size
- 1
- adetailer_face
- adetailer_hand
- negative_prompt
- nsfw, naked
- adetailer_person
- guidance_rescale
- 1
- prepend_preprompt
{ "vae": "default", "seed": 1328132913, "model": "Alchemist-Mix-Illustrious-Realism-v4", "steps": 30, "width": 1024, "height": 1024, "prompt": "street, 1girl, dark-purple short hair, purple eyes, medium breasts, cleavage, casual clothes, smile, V", "cfg_scale": 5, "clip_skip": 1, "pag_scale": 0, "scheduler": "Euler a", "batch_size": 1, "adetailer_face": true, "adetailer_hand": false, "negative_prompt": "nsfw, naked", "adetailer_person": false, "guidance_rescale": 1, "prepend_preprompt": true }
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 aisha-ai-official/alchemist-mix-illustrious-realism-v4 using Replicate’s API. Check out the model's schema for an overview of inputs and outputs.
const output = await replicate.run( "aisha-ai-official/alchemist-mix-illustrious-realism-v4:7ad86f1e6919326d7237f0e67015a8438f140cc0882e9300437c0093f6633cea", { input: { vae: "default", seed: 1328132913, model: "Alchemist-Mix-Illustrious-Realism-v4", steps: 30, width: 1024, height: 1024, prompt: "street, 1girl, dark-purple short hair, purple eyes, medium breasts, cleavage, casual clothes, smile, V", cfg_scale: 5, clip_skip: 1, pag_scale: 0, scheduler: "Euler a", batch_size: 1, adetailer_face: true, adetailer_hand: false, negative_prompt: "nsfw, naked", adetailer_person: false, guidance_rescale: 1, prepend_preprompt: true } } ); // 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 aisha-ai-official/alchemist-mix-illustrious-realism-v4 using Replicate’s API. Check out the model's schema for an overview of inputs and outputs.
output = replicate.run( "aisha-ai-official/alchemist-mix-illustrious-realism-v4:7ad86f1e6919326d7237f0e67015a8438f140cc0882e9300437c0093f6633cea", input={ "vae": "default", "seed": 1328132913, "model": "Alchemist-Mix-Illustrious-Realism-v4", "steps": 30, "width": 1024, "height": 1024, "prompt": "street, 1girl, dark-purple short hair, purple eyes, medium breasts, cleavage, casual clothes, smile, V", "cfg_scale": 5, "clip_skip": 1, "pag_scale": 0, "scheduler": "Euler a", "batch_size": 1, "adetailer_face": True, "adetailer_hand": False, "negative_prompt": "nsfw, naked", "adetailer_person": False, "guidance_rescale": 1, "prepend_preprompt": True } ) print(output)
To learn more, take a look at the guide on getting started with Python.
Run aisha-ai-official/alchemist-mix-illustrious-realism-v4 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": "aisha-ai-official/alchemist-mix-illustrious-realism-v4:7ad86f1e6919326d7237f0e67015a8438f140cc0882e9300437c0093f6633cea", "input": { "vae": "default", "seed": 1328132913, "model": "Alchemist-Mix-Illustrious-Realism-v4", "steps": 30, "width": 1024, "height": 1024, "prompt": "street, 1girl, dark-purple short hair, purple eyes, medium breasts, cleavage, casual clothes, smile, V", "cfg_scale": 5, "clip_skip": 1, "pag_scale": 0, "scheduler": "Euler a", "batch_size": 1, "adetailer_face": true, "adetailer_hand": false, "negative_prompt": "nsfw, naked", "adetailer_person": false, "guidance_rescale": 1, "prepend_preprompt": true } }' \ 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/aisha-ai-official/alchemist-mix-illustrious-realism-v4@sha256:7ad86f1e6919326d7237f0e67015a8438f140cc0882e9300437c0093f6633cea \ -i 'vae="default"' \ -i 'seed=1328132913' \ -i 'model="Alchemist-Mix-Illustrious-Realism-v4"' \ -i 'steps=30' \ -i 'width=1024' \ -i 'height=1024' \ -i 'prompt="street, 1girl, dark-purple short hair, purple eyes, medium breasts, cleavage, casual clothes, smile, V"' \ -i 'cfg_scale=5' \ -i 'clip_skip=1' \ -i 'pag_scale=0' \ -i 'scheduler="Euler a"' \ -i 'batch_size=1' \ -i 'adetailer_face=true' \ -i 'adetailer_hand=false' \ -i 'negative_prompt="nsfw, naked"' \ -i 'adetailer_person=false' \ -i 'guidance_rescale=1' \ -i 'prepend_preprompt=true'
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/aisha-ai-official/alchemist-mix-illustrious-realism-v4@sha256:7ad86f1e6919326d7237f0e67015a8438f140cc0882e9300437c0093f6633cea
curl -s -X POST \ -H "Content-Type: application/json" \ -d $'{ "input": { "vae": "default", "seed": 1328132913, "model": "Alchemist-Mix-Illustrious-Realism-v4", "steps": 30, "width": 1024, "height": 1024, "prompt": "street, 1girl, dark-purple short hair, purple eyes, medium breasts, cleavage, casual clothes, smile, V", "cfg_scale": 5, "clip_skip": 1, "pag_scale": 0, "scheduler": "Euler a", "batch_size": 1, "adetailer_face": true, "adetailer_hand": false, "negative_prompt": "nsfw, naked", "adetailer_person": false, "guidance_rescale": 1, "prepend_preprompt": true } }' \ http://localhost:5000/predictions
To learn more, take a look at the Cog documentation.
Output
{ "completed_at": "2025-03-07T08:42:40.305088Z", "created_at": "2025-03-07T08:41:57.515000Z", "data_removed": false, "error": null, "id": "jsq63p5p1drme0cndz2btp5z04", "input": { "vae": "default", "seed": 1328132913, "model": "Alchemist-Mix-Illustrious-Realism-v4", "steps": 30, "width": 1024, "height": 1024, "prompt": "street, 1girl, dark-purple short hair, purple eyes, medium breasts, cleavage, casual clothes, smile, V", "cfg_scale": 5, "clip_skip": 1, "pag_scale": 0, "scheduler": "Euler a", "batch_size": 1, "adetailer_face": true, "adetailer_hand": false, "negative_prompt": "nsfw, naked", "adetailer_person": false, "guidance_rescale": 1, "prepend_preprompt": true }, "logs": "Using text to image mode.\nUsing seed: 1328132913\n 0%| | 0/30 [00:00<?, ?it/s]\n 3%|▎ | 1/30 [00:00<00:09, 3.04it/s]\n 10%|█ | 3/30 [00:00<00:04, 6.58it/s]\n 13%|█▎ | 4/30 [00:00<00:03, 7.06it/s]\n 17%|█▋ | 5/30 [00:00<00:03, 7.38it/s]\n 20%|██ | 6/30 [00:00<00:03, 7.60it/s]\n 23%|██▎ | 7/30 [00:01<00:02, 7.76it/s]\n 27%|██▋ | 8/30 [00:01<00:02, 7.86it/s]\n 30%|███ | 9/30 [00:01<00:02, 7.93it/s]\n 33%|███▎ | 10/30 [00:01<00:02, 7.98it/s]\n 37%|███▋ | 11/30 [00:01<00:02, 8.02it/s]\n 40%|████ | 12/30 [00:01<00:02, 8.05it/s]\n 43%|████▎ | 13/30 [00:01<00:02, 8.06it/s]\n 47%|████▋ | 14/30 [00:01<00:01, 8.07it/s]\n 50%|█████ | 15/30 [00:01<00:01, 8.08it/s]\n 53%|█████▎ | 16/30 [00:02<00:01, 8.09it/s]\n 57%|█████▋ | 17/30 [00:02<00:01, 8.08it/s]\n 60%|██████ | 18/30 [00:02<00:01, 8.07it/s]\n 63%|██████▎ | 19/30 [00:02<00:01, 8.07it/s]\n 67%|██████▋ | 20/30 [00:02<00:01, 8.07it/s]\n 70%|███████ | 21/30 [00:02<00:01, 8.07it/s]\n 73%|███████▎ | 22/30 [00:02<00:00, 8.06it/s]\n 77%|███████▋ | 23/30 [00:02<00:00, 8.07it/s]\n 80%|████████ | 24/30 [00:03<00:00, 8.05it/s]\n 83%|████████▎ | 25/30 [00:03<00:00, 8.06it/s]\n 87%|████████▋ | 26/30 [00:03<00:00, 8.06it/s]\n 90%|█████████ | 27/30 [00:03<00:00, 8.06it/s]\n 93%|█████████▎| 28/30 [00:03<00:00, 8.05it/s]\n 97%|█████████▋| 29/30 [00:03<00:00, 8.04it/s]\n100%|██████████| 30/30 [00:03<00:00, 8.04it/s]\n100%|██████████| 30/30 [00:03<00:00, 7.79it/s]\n/root/.pyenv/versions/3.12.8/lib/python3.12/site-packages/huggingface_hub/file_download.py:834: UserWarning: `local_dir_use_symlinks` parameter is deprecated and will be ignored. The process to download files to a local folder has been updated and do not rely on symlinks anymore. You only need to pass a destination folder as`local_dir`.\nFor more details, check out https://huggingface.co/docs/huggingface_hub/main/en/guides/download#download-files-to-local-folder.\nwarnings.warn(\nInpainting...\n0: 640x640 1 face, 6.1ms\nSpeed: 9.8ms preprocess, 6.1ms inference, 38.6ms postprocess per image at shape (1, 3, 640, 640)\npadded dim: (np.int64(235), np.int64(145), np.int64(681), np.int64(638))\nLoading StableDiffusionXLInpaintPipeline\n 0%| | 0/3 [00:00<?, ?it/s]\n 33%|███▎ | 1/3 [00:00<00:00, 8.62it/s]\n 67%|██████▋ | 2/3 [00:00<00:00, 8.27it/s]\n100%|██████████| 3/3 [00:00<00:00, 9.18it/s]\ngenerated inpaint dim: (1024, 1024)", "metrics": { "predict_time": 7.932779249, "total_time": 42.790088 }, "output": [ "https://replicate.delivery/xezq/yS9oDssf1w1lW6amt2j4a2DupBaUq09UZhRYPlf7HcDAOGWUA/0.png" ], "started_at": "2025-03-07T08:42:32.372309Z", "status": "succeeded", "urls": { "stream": "https://stream.replicate.com/v1/files/bcwr-lzhgigqyfuuaxzxjfgrsl4isy333qykvbiaxb3uqcdn56a62k5jq", "get": "https://api.replicate.com/v1/predictions/jsq63p5p1drme0cndz2btp5z04", "cancel": "https://api.replicate.com/v1/predictions/jsq63p5p1drme0cndz2btp5z04/cancel" }, "version": "7ad86f1e6919326d7237f0e67015a8438f140cc0882e9300437c0093f6633cea" }
Generated inUsing text to image mode. Using seed: 1328132913 0%| | 0/30 [00:00<?, ?it/s] 3%|▎ | 1/30 [00:00<00:09, 3.04it/s] 10%|█ | 3/30 [00:00<00:04, 6.58it/s] 13%|█▎ | 4/30 [00:00<00:03, 7.06it/s] 17%|█▋ | 5/30 [00:00<00:03, 7.38it/s] 20%|██ | 6/30 [00:00<00:03, 7.60it/s] 23%|██▎ | 7/30 [00:01<00:02, 7.76it/s] 27%|██▋ | 8/30 [00:01<00:02, 7.86it/s] 30%|███ | 9/30 [00:01<00:02, 7.93it/s] 33%|███▎ | 10/30 [00:01<00:02, 7.98it/s] 37%|███▋ | 11/30 [00:01<00:02, 8.02it/s] 40%|████ | 12/30 [00:01<00:02, 8.05it/s] 43%|████▎ | 13/30 [00:01<00:02, 8.06it/s] 47%|████▋ | 14/30 [00:01<00:01, 8.07it/s] 50%|█████ | 15/30 [00:01<00:01, 8.08it/s] 53%|█████▎ | 16/30 [00:02<00:01, 8.09it/s] 57%|█████▋ | 17/30 [00:02<00:01, 8.08it/s] 60%|██████ | 18/30 [00:02<00:01, 8.07it/s] 63%|██████▎ | 19/30 [00:02<00:01, 8.07it/s] 67%|██████▋ | 20/30 [00:02<00:01, 8.07it/s] 70%|███████ | 21/30 [00:02<00:01, 8.07it/s] 73%|███████▎ | 22/30 [00:02<00:00, 8.06it/s] 77%|███████▋ | 23/30 [00:02<00:00, 8.07it/s] 80%|████████ | 24/30 [00:03<00:00, 8.05it/s] 83%|████████▎ | 25/30 [00:03<00:00, 8.06it/s] 87%|████████▋ | 26/30 [00:03<00:00, 8.06it/s] 90%|█████████ | 27/30 [00:03<00:00, 8.06it/s] 93%|█████████▎| 28/30 [00:03<00:00, 8.05it/s] 97%|█████████▋| 29/30 [00:03<00:00, 8.04it/s] 100%|██████████| 30/30 [00:03<00:00, 8.04it/s] 100%|██████████| 30/30 [00:03<00:00, 7.79it/s] /root/.pyenv/versions/3.12.8/lib/python3.12/site-packages/huggingface_hub/file_download.py:834: UserWarning: `local_dir_use_symlinks` parameter is deprecated and will be ignored. The process to download files to a local folder has been updated and do not rely on symlinks anymore. You only need to pass a destination folder as`local_dir`. For more details, check out https://huggingface.co/docs/huggingface_hub/main/en/guides/download#download-files-to-local-folder. warnings.warn( Inpainting... 0: 640x640 1 face, 6.1ms Speed: 9.8ms preprocess, 6.1ms inference, 38.6ms postprocess per image at shape (1, 3, 640, 640) padded dim: (np.int64(235), np.int64(145), np.int64(681), np.int64(638)) Loading StableDiffusionXLInpaintPipeline 0%| | 0/3 [00:00<?, ?it/s] 33%|███▎ | 1/3 [00:00<00:00, 8.62it/s] 67%|██████▋ | 2/3 [00:00<00:00, 8.27it/s] 100%|██████████| 3/3 [00:00<00:00, 9.18it/s] generated inpaint dim: (1024, 1024)
Want to make some of these yourself?
Run this model