alekseycalvin/neurealhistory3

RealvisXL3 fine-tuned on 300+ colorized 1850s-1940s photos

Preprompt thy SD spells with ‘zos’ to summon the visionary touch of generative art’s unsung arch-ancestor*, Austin Osman Spare* (1886-1956) *(more info below and in the README!)

Neurealist Tarot (v_2) Replicate Version: a Tarot card generating model trained by A.C.T. SOON® over SD v1-5, from custom data and class sets, and via Dreambooth/Cog

NeureaLenin by soon®: a V. I. Lenin SDXL fine-tuning; use "LEN" token in prompts!

SDXL fine-tuned on 100s of manually colorized historical photos

ACS token

Flux LoRa evoking the visage of poet Anna Akhmatova (1889-1966), whose voice emblematizes one self's capacity to universalize, harnessing, the pain of all, refracting it back dignified unto transcendence...
Prediction
alekseycalvin/neurealhistory3:dcdb62e88134abeb3cda7b7dae8d9f716813964cde95e822e4c91aa032bb780dIDvgsdkctboexo4hrjpuud5raqdmStatusSucceededSourceWebHardwareA40 (Large)Total durationCreatedInput
- width
- 1024
- height
- 576
- prompt
- top quality HST photograph of full height young Arthur Rimbaud in the 1870s, realistic detailed face, realistic skin texture, dslr, realistic proportions, masterpiece professional photo, detailed irised eyes, lifelike textures, realistic detailed face, detailed 1870s cityscape background,
- refine
- no_refiner
- scheduler
- DPMSolverMultistep
- lora_scale
- 0.81
- num_outputs
- 1
- guidance_scale
- 8.41
- apply_watermark
- high_noise_frac
- 0.8
- negative_prompt
- pale, unrealistic, cgi, overexposed, undersaturated, oversaturated, warped, deformed, duplicated, unrealistic anatomy, cartoon, low quality, smoothed skin, computer generated, synthetic, blur
- prompt_strength
- 0.8
- num_inference_steps
- 41
{ "width": 1024, "height": 576, "prompt": "top quality HST photograph of full height young Arthur Rimbaud in the 1870s, realistic detailed face, realistic skin texture, dslr, realistic proportions, masterpiece professional photo, detailed irised eyes, lifelike textures, realistic detailed face, detailed 1870s cityscape background,", "refine": "no_refiner", "scheduler": "DPMSolverMultistep", "lora_scale": 0.81, "num_outputs": 1, "guidance_scale": 8.41, "apply_watermark": false, "high_noise_frac": 0.8, "negative_prompt": "pale, unrealistic, cgi, overexposed, undersaturated, oversaturated, warped, deformed, duplicated, unrealistic anatomy, cartoon, low quality, smoothed skin, computer generated, synthetic, blur", "prompt_strength": 0.8, "num_inference_steps": 41 }
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 alekseycalvin/neurealhistory3 using Replicate’s API. Check out the model's schema for an overview of inputs and outputs.
const output = await replicate.run( "alekseycalvin/neurealhistory3:dcdb62e88134abeb3cda7b7dae8d9f716813964cde95e822e4c91aa032bb780d", { input: { width: 1024, height: 576, prompt: "top quality HST photograph of full height young Arthur Rimbaud in the 1870s, realistic detailed face, realistic skin texture, dslr, realistic proportions, masterpiece professional photo, detailed irised eyes, lifelike textures, realistic detailed face, detailed 1870s cityscape background,", refine: "no_refiner", scheduler: "DPMSolverMultistep", lora_scale: 0.81, num_outputs: 1, guidance_scale: 8.41, apply_watermark: false, high_noise_frac: 0.8, negative_prompt: "pale, unrealistic, cgi, overexposed, undersaturated, oversaturated, warped, deformed, duplicated, unrealistic anatomy, cartoon, low quality, smoothed skin, computer generated, synthetic, blur", prompt_strength: 0.8, num_inference_steps: 41 } } ); // 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 alekseycalvin/neurealhistory3 using Replicate’s API. Check out the model's schema for an overview of inputs and outputs.
output = replicate.run( "alekseycalvin/neurealhistory3:dcdb62e88134abeb3cda7b7dae8d9f716813964cde95e822e4c91aa032bb780d", input={ "width": 1024, "height": 576, "prompt": "top quality HST photograph of full height young Arthur Rimbaud in the 1870s, realistic detailed face, realistic skin texture, dslr, realistic proportions, masterpiece professional photo, detailed irised eyes, lifelike textures, realistic detailed face, detailed 1870s cityscape background,", "refine": "no_refiner", "scheduler": "DPMSolverMultistep", "lora_scale": 0.81, "num_outputs": 1, "guidance_scale": 8.41, "apply_watermark": False, "high_noise_frac": 0.8, "negative_prompt": "pale, unrealistic, cgi, overexposed, undersaturated, oversaturated, warped, deformed, duplicated, unrealistic anatomy, cartoon, low quality, smoothed skin, computer generated, synthetic, blur", "prompt_strength": 0.8, "num_inference_steps": 41 } ) # 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 alekseycalvin/neurealhistory3 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": "alekseycalvin/neurealhistory3:dcdb62e88134abeb3cda7b7dae8d9f716813964cde95e822e4c91aa032bb780d", "input": { "width": 1024, "height": 576, "prompt": "top quality HST photograph of full height young Arthur Rimbaud in the 1870s, realistic detailed face, realistic skin texture, dslr, realistic proportions, masterpiece professional photo, detailed irised eyes, lifelike textures, realistic detailed face, detailed 1870s cityscape background,", "refine": "no_refiner", "scheduler": "DPMSolverMultistep", "lora_scale": 0.81, "num_outputs": 1, "guidance_scale": 8.41, "apply_watermark": false, "high_noise_frac": 0.8, "negative_prompt": "pale, unrealistic, cgi, overexposed, undersaturated, oversaturated, warped, deformed, duplicated, unrealistic anatomy, cartoon, low quality, smoothed skin, computer generated, synthetic, blur", "prompt_strength": 0.8, "num_inference_steps": 41 } }' \ https://api.replicate.com/v1/predictions
To learn more, take a look at Replicate’s HTTP API reference docs.
Output
{ "completed_at": "2023-12-23T08:56:01.149348Z", "created_at": "2023-12-23T08:55:49.900982Z", "data_removed": false, "error": null, "id": "vgsdkctboexo4hrjpuud5raqdm", "input": { "width": 1024, "height": 576, "prompt": "top quality HST photograph of full height young Arthur Rimbaud in the 1870s, realistic detailed face, realistic skin texture, dslr, realistic proportions, masterpiece professional photo, detailed irised eyes, lifelike textures, realistic detailed face, detailed 1870s cityscape background,", "refine": "no_refiner", "scheduler": "DPMSolverMultistep", "lora_scale": 0.81, "num_outputs": 1, "guidance_scale": 8.41, "apply_watermark": false, "high_noise_frac": 0.8, "negative_prompt": "pale, unrealistic, cgi, overexposed, undersaturated, oversaturated, warped, deformed, duplicated, unrealistic anatomy, cartoon, low quality, smoothed skin, computer generated, synthetic, blur", "prompt_strength": 0.8, "num_inference_steps": 41 }, "logs": "Using seed: 42422\nskipping loading .. weights already loaded\nPrompt: top quality <s0><s1> photograph of full height young Arthur Rimbaud in the 1870s, realistic detailed face, realistic skin texture, dslr, realistic proportions, masterpiece professional photo, detailed irised eyes, lifelike textures, realistic detailed face, detailed 1870s cityscape background,\ntxt2img mode\n 0%| | 0/41 [00:00<?, ?it/s]\n 2%|▏ | 1/41 [00:00<00:06, 6.24it/s]\n 5%|▍ | 2/41 [00:00<00:06, 6.23it/s]\n 7%|▋ | 3/41 [00:00<00:06, 6.22it/s]\n 10%|▉ | 4/41 [00:00<00:05, 6.21it/s]\n 12%|█▏ | 5/41 [00:00<00:05, 6.20it/s]\n 15%|█▍ | 6/41 [00:00<00:05, 6.21it/s]\n 17%|█▋ | 7/41 [00:01<00:05, 6.21it/s]\n 20%|█▉ | 8/41 [00:01<00:05, 6.22it/s]\n 22%|██▏ | 9/41 [00:01<00:05, 6.21it/s]\n 24%|██▍ | 10/41 [00:01<00:04, 6.21it/s]\n 27%|██▋ | 11/41 [00:01<00:04, 6.21it/s]\n 29%|██▉ | 12/41 [00:01<00:04, 6.20it/s]\n 32%|███▏ | 13/41 [00:02<00:04, 6.20it/s]\n 34%|███▍ | 14/41 [00:02<00:04, 6.19it/s]\n 37%|███▋ | 15/41 [00:02<00:04, 6.19it/s]\n 39%|███▉ | 16/41 [00:02<00:04, 6.19it/s]\n 41%|████▏ | 17/41 [00:02<00:03, 6.19it/s]\n 44%|████▍ | 18/41 [00:02<00:03, 6.18it/s]\n 46%|████▋ | 19/41 [00:03<00:03, 6.18it/s]\n 49%|████▉ | 20/41 [00:03<00:03, 6.17it/s]\n 51%|█████ | 21/41 [00:03<00:03, 6.18it/s]\n 54%|█████▎ | 22/41 [00:03<00:03, 6.18it/s]\n 56%|█████▌ | 23/41 [00:03<00:02, 6.19it/s]\n 59%|█████▊ | 24/41 [00:03<00:02, 6.19it/s]\n 61%|██████ | 25/41 [00:04<00:02, 6.19it/s]\n 63%|██████▎ | 26/41 [00:04<00:02, 6.19it/s]\n 66%|██████▌ | 27/41 [00:04<00:02, 6.19it/s]\n 68%|██████▊ | 28/41 [00:04<00:02, 6.19it/s]\n 71%|███████ | 29/41 [00:04<00:01, 6.18it/s]\n 73%|███████▎ | 30/41 [00:04<00:01, 6.18it/s]\n 76%|███████▌ | 31/41 [00:05<00:01, 6.17it/s]\n 78%|███████▊ | 32/41 [00:05<00:01, 6.17it/s]\n 80%|████████ | 33/41 [00:05<00:01, 6.18it/s]\n 83%|████████▎ | 34/41 [00:05<00:01, 6.18it/s]\n 85%|████████▌ | 35/41 [00:05<00:00, 6.18it/s]\n 88%|████████▊ | 36/41 [00:05<00:00, 6.18it/s]\n 90%|█████████ | 37/41 [00:05<00:00, 6.18it/s]\n 93%|█████████▎| 38/41 [00:06<00:00, 6.18it/s]\n 95%|█████████▌| 39/41 [00:06<00:00, 6.17it/s]\n 98%|█████████▊| 40/41 [00:06<00:00, 6.17it/s]\n100%|██████████| 41/41 [00:06<00:00, 6.17it/s]\n100%|██████████| 41/41 [00:06<00:00, 6.19it/s]", "metrics": { "predict_time": 8.324069, "total_time": 11.248366 }, "output": [ "https://replicate.delivery/pbxt/rciBNA40yhIJIxNOj7n945ET32Nf3OeGxcusPTd9A8RgKFFSA/out-0.png" ], "started_at": "2023-12-23T08:55:52.825279Z", "status": "succeeded", "urls": { "get": "https://api.replicate.com/v1/predictions/vgsdkctboexo4hrjpuud5raqdm", "cancel": "https://api.replicate.com/v1/predictions/vgsdkctboexo4hrjpuud5raqdm/cancel" }, "version": "dcdb62e88134abeb3cda7b7dae8d9f716813964cde95e822e4c91aa032bb780d" }
Generated inUsing seed: 42422 skipping loading .. weights already loaded Prompt: top quality <s0><s1> photograph of full height young Arthur Rimbaud in the 1870s, realistic detailed face, realistic skin texture, dslr, realistic proportions, masterpiece professional photo, detailed irised eyes, lifelike textures, realistic detailed face, detailed 1870s cityscape background, txt2img mode 0%| | 0/41 [00:00<?, ?it/s] 2%|▏ | 1/41 [00:00<00:06, 6.24it/s] 5%|▍ | 2/41 [00:00<00:06, 6.23it/s] 7%|▋ | 3/41 [00:00<00:06, 6.22it/s] 10%|▉ | 4/41 [00:00<00:05, 6.21it/s] 12%|█▏ | 5/41 [00:00<00:05, 6.20it/s] 15%|█▍ | 6/41 [00:00<00:05, 6.21it/s] 17%|█▋ | 7/41 [00:01<00:05, 6.21it/s] 20%|█▉ | 8/41 [00:01<00:05, 6.22it/s] 22%|██▏ | 9/41 [00:01<00:05, 6.21it/s] 24%|██▍ | 10/41 [00:01<00:04, 6.21it/s] 27%|██▋ | 11/41 [00:01<00:04, 6.21it/s] 29%|██▉ | 12/41 [00:01<00:04, 6.20it/s] 32%|███▏ | 13/41 [00:02<00:04, 6.20it/s] 34%|███▍ | 14/41 [00:02<00:04, 6.19it/s] 37%|███▋ | 15/41 [00:02<00:04, 6.19it/s] 39%|███▉ | 16/41 [00:02<00:04, 6.19it/s] 41%|████▏ | 17/41 [00:02<00:03, 6.19it/s] 44%|████▍ | 18/41 [00:02<00:03, 6.18it/s] 46%|████▋ | 19/41 [00:03<00:03, 6.18it/s] 49%|████▉ | 20/41 [00:03<00:03, 6.17it/s] 51%|█████ | 21/41 [00:03<00:03, 6.18it/s] 54%|█████▎ | 22/41 [00:03<00:03, 6.18it/s] 56%|█████▌ | 23/41 [00:03<00:02, 6.19it/s] 59%|█████▊ | 24/41 [00:03<00:02, 6.19it/s] 61%|██████ | 25/41 [00:04<00:02, 6.19it/s] 63%|██████▎ | 26/41 [00:04<00:02, 6.19it/s] 66%|██████▌ | 27/41 [00:04<00:02, 6.19it/s] 68%|██████▊ | 28/41 [00:04<00:02, 6.19it/s] 71%|███████ | 29/41 [00:04<00:01, 6.18it/s] 73%|███████▎ | 30/41 [00:04<00:01, 6.18it/s] 76%|███████▌ | 31/41 [00:05<00:01, 6.17it/s] 78%|███████▊ | 32/41 [00:05<00:01, 6.17it/s] 80%|████████ | 33/41 [00:05<00:01, 6.18it/s] 83%|████████▎ | 34/41 [00:05<00:01, 6.18it/s] 85%|████████▌ | 35/41 [00:05<00:00, 6.18it/s] 88%|████████▊ | 36/41 [00:05<00:00, 6.18it/s] 90%|█████████ | 37/41 [00:05<00:00, 6.18it/s] 93%|█████████▎| 38/41 [00:06<00:00, 6.18it/s] 95%|█████████▌| 39/41 [00:06<00:00, 6.17it/s] 98%|█████████▊| 40/41 [00:06<00:00, 6.17it/s] 100%|██████████| 41/41 [00:06<00:00, 6.17it/s] 100%|██████████| 41/41 [00:06<00:00, 6.19it/s]
Prediction
alekseycalvin/neurealhistory3:dcdb62e88134abeb3cda7b7dae8d9f716813964cde95e822e4c91aa032bb780dID3wharutbmqt5bt6xcjfvkxgwl4StatusSucceededSourceWebHardwareA40 (Large)Total durationCreatedInput
- width
- 1024
- height
- 576
- prompt
- top quality HST photograph of full height Napoleon Bonaparte, realistic detailed face, realistic skin texture, dslr, realistic proportions, masterpiece professional photo, detailed irised eyes, lifelike textures, realistic detailed face, detailed 1810s battlefield
- refine
- no_refiner
- scheduler
- DPMSolverMultistep
- lora_scale
- 0.9
- num_outputs
- 1
- guidance_scale
- 8.41
- apply_watermark
- high_noise_frac
- 0.8
- negative_prompt
- pale, unrealistic, cgi, overbloomed, painting, overexposed, undersaturated, oversaturated, warped, deformed, duplicated, unrealistic anatomy, cartoon, low quality, smoothed skin, computer generated, synthetic, blur
- prompt_strength
- 0.8
- num_inference_steps
- 24
{ "width": 1024, "height": 576, "prompt": "top quality HST photograph of full height Napoleon Bonaparte, realistic detailed face, realistic skin texture, dslr, realistic proportions, masterpiece professional photo, detailed irised eyes, lifelike textures, realistic detailed face, detailed 1810s battlefield", "refine": "no_refiner", "scheduler": "DPMSolverMultistep", "lora_scale": 0.9, "num_outputs": 1, "guidance_scale": 8.41, "apply_watermark": false, "high_noise_frac": 0.8, "negative_prompt": "pale, unrealistic, cgi, overbloomed, painting, overexposed, undersaturated, oversaturated, warped, deformed, duplicated, unrealistic anatomy, cartoon, low quality, smoothed skin, computer generated, synthetic, blur", "prompt_strength": 0.8, "num_inference_steps": 24 }
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 alekseycalvin/neurealhistory3 using Replicate’s API. Check out the model's schema for an overview of inputs and outputs.
const output = await replicate.run( "alekseycalvin/neurealhistory3:dcdb62e88134abeb3cda7b7dae8d9f716813964cde95e822e4c91aa032bb780d", { input: { width: 1024, height: 576, prompt: "top quality HST photograph of full height Napoleon Bonaparte, realistic detailed face, realistic skin texture, dslr, realistic proportions, masterpiece professional photo, detailed irised eyes, lifelike textures, realistic detailed face, detailed 1810s battlefield", refine: "no_refiner", scheduler: "DPMSolverMultistep", lora_scale: 0.9, num_outputs: 1, guidance_scale: 8.41, apply_watermark: false, high_noise_frac: 0.8, negative_prompt: "pale, unrealistic, cgi, overbloomed, painting, overexposed, undersaturated, oversaturated, warped, deformed, duplicated, unrealistic anatomy, cartoon, low quality, smoothed skin, computer generated, synthetic, blur", prompt_strength: 0.8, num_inference_steps: 24 } } ); // 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 alekseycalvin/neurealhistory3 using Replicate’s API. Check out the model's schema for an overview of inputs and outputs.
output = replicate.run( "alekseycalvin/neurealhistory3:dcdb62e88134abeb3cda7b7dae8d9f716813964cde95e822e4c91aa032bb780d", input={ "width": 1024, "height": 576, "prompt": "top quality HST photograph of full height Napoleon Bonaparte, realistic detailed face, realistic skin texture, dslr, realistic proportions, masterpiece professional photo, detailed irised eyes, lifelike textures, realistic detailed face, detailed 1810s battlefield", "refine": "no_refiner", "scheduler": "DPMSolverMultistep", "lora_scale": 0.9, "num_outputs": 1, "guidance_scale": 8.41, "apply_watermark": False, "high_noise_frac": 0.8, "negative_prompt": "pale, unrealistic, cgi, overbloomed, painting, overexposed, undersaturated, oversaturated, warped, deformed, duplicated, unrealistic anatomy, cartoon, low quality, smoothed skin, computer generated, synthetic, blur", "prompt_strength": 0.8, "num_inference_steps": 24 } ) # 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 alekseycalvin/neurealhistory3 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": "alekseycalvin/neurealhistory3:dcdb62e88134abeb3cda7b7dae8d9f716813964cde95e822e4c91aa032bb780d", "input": { "width": 1024, "height": 576, "prompt": "top quality HST photograph of full height Napoleon Bonaparte, realistic detailed face, realistic skin texture, dslr, realistic proportions, masterpiece professional photo, detailed irised eyes, lifelike textures, realistic detailed face, detailed 1810s battlefield", "refine": "no_refiner", "scheduler": "DPMSolverMultistep", "lora_scale": 0.9, "num_outputs": 1, "guidance_scale": 8.41, "apply_watermark": false, "high_noise_frac": 0.8, "negative_prompt": "pale, unrealistic, cgi, overbloomed, painting, overexposed, undersaturated, oversaturated, warped, deformed, duplicated, unrealistic anatomy, cartoon, low quality, smoothed skin, computer generated, synthetic, blur", "prompt_strength": 0.8, "num_inference_steps": 24 } }' \ https://api.replicate.com/v1/predictions
To learn more, take a look at Replicate’s HTTP API reference docs.
Output
{ "completed_at": "2023-12-23T09:00:59.598489Z", "created_at": "2023-12-23T09:00:51.547147Z", "data_removed": false, "error": null, "id": "3wharutbmqt5bt6xcjfvkxgwl4", "input": { "width": 1024, "height": 576, "prompt": "top quality HST photograph of full height Napoleon Bonaparte, realistic detailed face, realistic skin texture, dslr, realistic proportions, masterpiece professional photo, detailed irised eyes, lifelike textures, realistic detailed face, detailed 1810s battlefield", "refine": "no_refiner", "scheduler": "DPMSolverMultistep", "lora_scale": 0.9, "num_outputs": 1, "guidance_scale": 8.41, "apply_watermark": false, "high_noise_frac": 0.8, "negative_prompt": "pale, unrealistic, cgi, overbloomed, painting, overexposed, undersaturated, oversaturated, warped, deformed, duplicated, unrealistic anatomy, cartoon, low quality, smoothed skin, computer generated, synthetic, blur", "prompt_strength": 0.8, "num_inference_steps": 24 }, "logs": "Using seed: 27607\nskipping loading .. weights already loaded\nPrompt: top quality <s0><s1> photograph of full height Napoleon Bonaparte, realistic detailed face, realistic skin texture, dslr, realistic proportions, masterpiece professional photo, detailed irised eyes, lifelike textures, realistic detailed face, detailed 1810s battlefield\ntxt2img mode\n 0%| | 0/24 [00:00<?, ?it/s]\n 4%|▍ | 1/24 [00:00<00:03, 6.29it/s]\n 8%|▊ | 2/24 [00:00<00:03, 6.27it/s]\n 12%|█▎ | 3/24 [00:00<00:03, 6.27it/s]\n 17%|█▋ | 4/24 [00:00<00:03, 6.27it/s]\n 21%|██ | 5/24 [00:00<00:03, 6.26it/s]\n 25%|██▌ | 6/24 [00:00<00:02, 6.26it/s]\n 29%|██▉ | 7/24 [00:01<00:02, 6.25it/s]\n 33%|███▎ | 8/24 [00:01<00:02, 6.25it/s]\n 38%|███▊ | 9/24 [00:01<00:02, 6.25it/s]\n 42%|████▏ | 10/24 [00:01<00:02, 6.25it/s]\n 46%|████▌ | 11/24 [00:01<00:02, 6.25it/s]\n 50%|█████ | 12/24 [00:01<00:01, 6.24it/s]\n 54%|█████▍ | 13/24 [00:02<00:01, 6.24it/s]\n 58%|█████▊ | 14/24 [00:02<00:01, 6.24it/s]\n 62%|██████▎ | 15/24 [00:02<00:01, 6.24it/s]\n 67%|██████▋ | 16/24 [00:02<00:01, 6.24it/s]\n 71%|███████ | 17/24 [00:02<00:01, 6.24it/s]\n 75%|███████▌ | 18/24 [00:02<00:00, 6.23it/s]\n 79%|███████▉ | 19/24 [00:03<00:00, 6.23it/s]\n 83%|████████▎ | 20/24 [00:03<00:00, 6.22it/s]\n 88%|████████▊ | 21/24 [00:03<00:00, 6.22it/s]\n 92%|█████████▏| 22/24 [00:03<00:00, 6.22it/s]\n 96%|█████████▌| 23/24 [00:03<00:00, 6.21it/s]\n100%|██████████| 24/24 [00:03<00:00, 6.21it/s]\n100%|██████████| 24/24 [00:03<00:00, 6.24it/s]", "metrics": { "predict_time": 5.505333, "total_time": 8.051342 }, "output": [ "https://replicate.delivery/pbxt/gzrWcqmG4MpiM5TT8hSo6jJvIAcxDP0VAfCfs8t1PDsKPFFSA/out-0.png" ], "started_at": "2023-12-23T09:00:54.093156Z", "status": "succeeded", "urls": { "get": "https://api.replicate.com/v1/predictions/3wharutbmqt5bt6xcjfvkxgwl4", "cancel": "https://api.replicate.com/v1/predictions/3wharutbmqt5bt6xcjfvkxgwl4/cancel" }, "version": "dcdb62e88134abeb3cda7b7dae8d9f716813964cde95e822e4c91aa032bb780d" }
Generated inUsing seed: 27607 skipping loading .. weights already loaded Prompt: top quality <s0><s1> photograph of full height Napoleon Bonaparte, realistic detailed face, realistic skin texture, dslr, realistic proportions, masterpiece professional photo, detailed irised eyes, lifelike textures, realistic detailed face, detailed 1810s battlefield txt2img mode 0%| | 0/24 [00:00<?, ?it/s] 4%|▍ | 1/24 [00:00<00:03, 6.29it/s] 8%|▊ | 2/24 [00:00<00:03, 6.27it/s] 12%|█▎ | 3/24 [00:00<00:03, 6.27it/s] 17%|█▋ | 4/24 [00:00<00:03, 6.27it/s] 21%|██ | 5/24 [00:00<00:03, 6.26it/s] 25%|██▌ | 6/24 [00:00<00:02, 6.26it/s] 29%|██▉ | 7/24 [00:01<00:02, 6.25it/s] 33%|███▎ | 8/24 [00:01<00:02, 6.25it/s] 38%|███▊ | 9/24 [00:01<00:02, 6.25it/s] 42%|████▏ | 10/24 [00:01<00:02, 6.25it/s] 46%|████▌ | 11/24 [00:01<00:02, 6.25it/s] 50%|█████ | 12/24 [00:01<00:01, 6.24it/s] 54%|█████▍ | 13/24 [00:02<00:01, 6.24it/s] 58%|█████▊ | 14/24 [00:02<00:01, 6.24it/s] 62%|██████▎ | 15/24 [00:02<00:01, 6.24it/s] 67%|██████▋ | 16/24 [00:02<00:01, 6.24it/s] 71%|███████ | 17/24 [00:02<00:01, 6.24it/s] 75%|███████▌ | 18/24 [00:02<00:00, 6.23it/s] 79%|███████▉ | 19/24 [00:03<00:00, 6.23it/s] 83%|████████▎ | 20/24 [00:03<00:00, 6.22it/s] 88%|████████▊ | 21/24 [00:03<00:00, 6.22it/s] 92%|█████████▏| 22/24 [00:03<00:00, 6.22it/s] 96%|█████████▌| 23/24 [00:03<00:00, 6.21it/s] 100%|██████████| 24/24 [00:03<00:00, 6.21it/s] 100%|██████████| 24/24 [00:03<00:00, 6.24it/s]
Prediction
alekseycalvin/neurealhistory3:dcdb62e88134abeb3cda7b7dae8d9f716813964cde95e822e4c91aa032bb780dID66dvhxtbnqitys3uz33imr5jzyStatusSucceededSourceWebHardwareA40 (Large)Total durationCreatedInput
- width
- 912
- height
- 512
- prompt
- top quality HST photograph of full height Napoleon Bonaparte drinking cognac with younger officers, realistic detailed face, realistic skin texture with pores, dslr, realistic proportions, realistic balanced composition, masterpiece professional photo, cinematic, action scene, detailed lifelike matching eyes, lifelike textures, (extremely photorealistic), realistic detailed face, detailed 1810s battlefield
- refine
- no_refiner
- scheduler
- DDIM
- lora_scale
- 0.99
- num_outputs
- 1
- guidance_scale
- 9.12
- apply_watermark
- high_noise_frac
- 0.8
- negative_prompt
- pale, unrealistic, cgi, overbloomed, badly drawn hands, painting, illustration, cloned faces, overexposed, duplicates, doubled, missing limbs, mangled, disfigured body, wrong anatomy, undersaturated, oversaturated, warped, deformed, duplicated, broken, unrealistic anatomy, cartoon, low quality, smoothed skin, computer generated, synthetic, blur,
- prompt_strength
- 1
- num_inference_steps
- 35
{ "width": 912, "height": 512, "prompt": "top quality HST photograph of full height Napoleon Bonaparte drinking cognac with younger officers, realistic detailed face, realistic skin texture with pores, dslr, realistic proportions, realistic balanced composition, masterpiece professional photo, cinematic, action scene, detailed lifelike matching eyes, lifelike textures, (extremely photorealistic), realistic detailed face, detailed 1810s battlefield", "refine": "no_refiner", "scheduler": "DDIM", "lora_scale": 0.99, "num_outputs": 1, "guidance_scale": 9.12, "apply_watermark": false, "high_noise_frac": 0.8, "negative_prompt": "pale, unrealistic, cgi, overbloomed, badly drawn hands, painting, illustration, cloned faces, overexposed, duplicates, doubled, missing limbs, mangled, disfigured body, wrong anatomy, undersaturated, oversaturated, warped, deformed, duplicated, broken, unrealistic anatomy, cartoon, low quality, smoothed skin, computer generated, synthetic, blur, ", "prompt_strength": 1, "num_inference_steps": 35 }
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 alekseycalvin/neurealhistory3 using Replicate’s API. Check out the model's schema for an overview of inputs and outputs.
const output = await replicate.run( "alekseycalvin/neurealhistory3:dcdb62e88134abeb3cda7b7dae8d9f716813964cde95e822e4c91aa032bb780d", { input: { width: 912, height: 512, prompt: "top quality HST photograph of full height Napoleon Bonaparte drinking cognac with younger officers, realistic detailed face, realistic skin texture with pores, dslr, realistic proportions, realistic balanced composition, masterpiece professional photo, cinematic, action scene, detailed lifelike matching eyes, lifelike textures, (extremely photorealistic), realistic detailed face, detailed 1810s battlefield", refine: "no_refiner", scheduler: "DDIM", lora_scale: 0.99, num_outputs: 1, guidance_scale: 9.12, apply_watermark: false, high_noise_frac: 0.8, negative_prompt: "pale, unrealistic, cgi, overbloomed, badly drawn hands, painting, illustration, cloned faces, overexposed, duplicates, doubled, missing limbs, mangled, disfigured body, wrong anatomy, undersaturated, oversaturated, warped, deformed, duplicated, broken, unrealistic anatomy, cartoon, low quality, smoothed skin, computer generated, synthetic, blur, ", prompt_strength: 1, num_inference_steps: 35 } } ); // 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 alekseycalvin/neurealhistory3 using Replicate’s API. Check out the model's schema for an overview of inputs and outputs.
output = replicate.run( "alekseycalvin/neurealhistory3:dcdb62e88134abeb3cda7b7dae8d9f716813964cde95e822e4c91aa032bb780d", input={ "width": 912, "height": 512, "prompt": "top quality HST photograph of full height Napoleon Bonaparte drinking cognac with younger officers, realistic detailed face, realistic skin texture with pores, dslr, realistic proportions, realistic balanced composition, masterpiece professional photo, cinematic, action scene, detailed lifelike matching eyes, lifelike textures, (extremely photorealistic), realistic detailed face, detailed 1810s battlefield", "refine": "no_refiner", "scheduler": "DDIM", "lora_scale": 0.99, "num_outputs": 1, "guidance_scale": 9.12, "apply_watermark": False, "high_noise_frac": 0.8, "negative_prompt": "pale, unrealistic, cgi, overbloomed, badly drawn hands, painting, illustration, cloned faces, overexposed, duplicates, doubled, missing limbs, mangled, disfigured body, wrong anatomy, undersaturated, oversaturated, warped, deformed, duplicated, broken, unrealistic anatomy, cartoon, low quality, smoothed skin, computer generated, synthetic, blur, ", "prompt_strength": 1, "num_inference_steps": 35 } ) # 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 alekseycalvin/neurealhistory3 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": "alekseycalvin/neurealhistory3:dcdb62e88134abeb3cda7b7dae8d9f716813964cde95e822e4c91aa032bb780d", "input": { "width": 912, "height": 512, "prompt": "top quality HST photograph of full height Napoleon Bonaparte drinking cognac with younger officers, realistic detailed face, realistic skin texture with pores, dslr, realistic proportions, realistic balanced composition, masterpiece professional photo, cinematic, action scene, detailed lifelike matching eyes, lifelike textures, (extremely photorealistic), realistic detailed face, detailed 1810s battlefield", "refine": "no_refiner", "scheduler": "DDIM", "lora_scale": 0.99, "num_outputs": 1, "guidance_scale": 9.12, "apply_watermark": false, "high_noise_frac": 0.8, "negative_prompt": "pale, unrealistic, cgi, overbloomed, badly drawn hands, painting, illustration, cloned faces, overexposed, duplicates, doubled, missing limbs, mangled, disfigured body, wrong anatomy, undersaturated, oversaturated, warped, deformed, duplicated, broken, unrealistic anatomy, cartoon, low quality, smoothed skin, computer generated, synthetic, blur, ", "prompt_strength": 1, "num_inference_steps": 35 } }' \ https://api.replicate.com/v1/predictions
To learn more, take a look at Replicate’s HTTP API reference docs.
Output
{ "completed_at": "2023-12-23T09:13:11.213638Z", "created_at": "2023-12-23T09:13:03.611008Z", "data_removed": false, "error": null, "id": "66dvhxtbnqitys3uz33imr5jzy", "input": { "width": 912, "height": 512, "prompt": "top quality HST photograph of full height Napoleon Bonaparte drinking cognac with younger officers, realistic detailed face, realistic skin texture with pores, dslr, realistic proportions, realistic balanced composition, masterpiece professional photo, cinematic, action scene, detailed lifelike matching eyes, lifelike textures, (extremely photorealistic), realistic detailed face, detailed 1810s battlefield", "refine": "no_refiner", "scheduler": "DDIM", "lora_scale": 0.99, "num_outputs": 1, "guidance_scale": 9.12, "apply_watermark": false, "high_noise_frac": 0.8, "negative_prompt": "pale, unrealistic, cgi, overbloomed, badly drawn hands, painting, illustration, cloned faces, overexposed, duplicates, doubled, missing limbs, mangled, disfigured body, wrong anatomy, undersaturated, oversaturated, warped, deformed, duplicated, broken, unrealistic anatomy, cartoon, low quality, smoothed skin, computer generated, synthetic, blur, ", "prompt_strength": 1, "num_inference_steps": 35 }, "logs": "Using seed: 63096\nskipping loading .. weights already loaded\nPrompt: top quality <s0><s1> photograph of full height Napoleon Bonaparte drinking cognac with younger officers, realistic detailed face, realistic skin texture with pores, dslr, realistic proportions, realistic balanced composition, masterpiece professional photo, cinematic, action scene, detailed lifelike matching eyes, lifelike textures, (extremely photorealistic), realistic detailed face, detailed 1810s battlefield\ntxt2img mode\n 0%| | 0/35 [00:00<?, ?it/s]\n 3%|▎ | 1/35 [00:00<00:04, 7.44it/s]\n 6%|▌ | 2/35 [00:00<00:04, 7.64it/s]\n 9%|▊ | 3/35 [00:00<00:04, 7.67it/s]\n 11%|█▏ | 4/35 [00:00<00:04, 7.70it/s]\n 14%|█▍ | 5/35 [00:00<00:03, 7.70it/s]\n 17%|█▋ | 6/35 [00:00<00:03, 7.72it/s]\n 20%|██ | 7/35 [00:00<00:03, 7.72it/s]\n 23%|██▎ | 8/35 [00:01<00:03, 7.72it/s]\n 26%|██▌ | 9/35 [00:01<00:03, 7.72it/s]\n 29%|██▊ | 10/35 [00:01<00:03, 7.72it/s]\n 31%|███▏ | 11/35 [00:01<00:03, 7.72it/s]\n 34%|███▍ | 12/35 [00:01<00:02, 7.72it/s]\n 37%|███▋ | 13/35 [00:01<00:02, 7.71it/s]\n 40%|████ | 14/35 [00:01<00:02, 7.70it/s]\n 43%|████▎ | 15/35 [00:01<00:02, 7.71it/s]\n 46%|████▌ | 16/35 [00:02<00:02, 7.73it/s]\n 49%|████▊ | 17/35 [00:02<00:02, 7.74it/s]\n 51%|█████▏ | 18/35 [00:02<00:02, 7.70it/s]\n 54%|█████▍ | 19/35 [00:02<00:02, 7.69it/s]\n 57%|█████▋ | 20/35 [00:02<00:01, 7.72it/s]\n 60%|██████ | 21/35 [00:02<00:01, 7.74it/s]\n 63%|██████▎ | 22/35 [00:02<00:01, 7.75it/s]\n 66%|██████▌ | 23/35 [00:02<00:01, 7.75it/s]\n 69%|██████▊ | 24/35 [00:03<00:01, 7.75it/s]\n 71%|███████▏ | 25/35 [00:03<00:01, 7.75it/s]\n 74%|███████▍ | 26/35 [00:03<00:01, 7.75it/s]\n 77%|███████▋ | 27/35 [00:03<00:01, 7.76it/s]\n 80%|████████ | 28/35 [00:03<00:00, 7.75it/s]\n 83%|████████▎ | 29/35 [00:03<00:00, 7.76it/s]\n 86%|████████▌ | 30/35 [00:03<00:00, 7.75it/s]\n 89%|████████▊ | 31/35 [00:04<00:00, 7.75it/s]\n 91%|█████████▏| 32/35 [00:04<00:00, 7.75it/s]\n 94%|█████████▍| 33/35 [00:04<00:00, 7.75it/s]\n 97%|█████████▋| 34/35 [00:04<00:00, 7.76it/s]\n100%|██████████| 35/35 [00:04<00:00, 7.76it/s]\n100%|██████████| 35/35 [00:04<00:00, 7.73it/s]", "metrics": { "predict_time": 6.037519, "total_time": 7.60263 }, "output": [ "https://replicate.delivery/pbxt/rbKYV0wGQcJAKRlzDgMKmJqf34IeSsVtR6XV6b1aKTeM1KKkA/out-0.png" ], "started_at": "2023-12-23T09:13:05.176119Z", "status": "succeeded", "urls": { "get": "https://api.replicate.com/v1/predictions/66dvhxtbnqitys3uz33imr5jzy", "cancel": "https://api.replicate.com/v1/predictions/66dvhxtbnqitys3uz33imr5jzy/cancel" }, "version": "dcdb62e88134abeb3cda7b7dae8d9f716813964cde95e822e4c91aa032bb780d" }
Generated inUsing seed: 63096 skipping loading .. weights already loaded Prompt: top quality <s0><s1> photograph of full height Napoleon Bonaparte drinking cognac with younger officers, realistic detailed face, realistic skin texture with pores, dslr, realistic proportions, realistic balanced composition, masterpiece professional photo, cinematic, action scene, detailed lifelike matching eyes, lifelike textures, (extremely photorealistic), realistic detailed face, detailed 1810s battlefield txt2img mode 0%| | 0/35 [00:00<?, ?it/s] 3%|▎ | 1/35 [00:00<00:04, 7.44it/s] 6%|▌ | 2/35 [00:00<00:04, 7.64it/s] 9%|▊ | 3/35 [00:00<00:04, 7.67it/s] 11%|█▏ | 4/35 [00:00<00:04, 7.70it/s] 14%|█▍ | 5/35 [00:00<00:03, 7.70it/s] 17%|█▋ | 6/35 [00:00<00:03, 7.72it/s] 20%|██ | 7/35 [00:00<00:03, 7.72it/s] 23%|██▎ | 8/35 [00:01<00:03, 7.72it/s] 26%|██▌ | 9/35 [00:01<00:03, 7.72it/s] 29%|██▊ | 10/35 [00:01<00:03, 7.72it/s] 31%|███▏ | 11/35 [00:01<00:03, 7.72it/s] 34%|███▍ | 12/35 [00:01<00:02, 7.72it/s] 37%|███▋ | 13/35 [00:01<00:02, 7.71it/s] 40%|████ | 14/35 [00:01<00:02, 7.70it/s] 43%|████▎ | 15/35 [00:01<00:02, 7.71it/s] 46%|████▌ | 16/35 [00:02<00:02, 7.73it/s] 49%|████▊ | 17/35 [00:02<00:02, 7.74it/s] 51%|█████▏ | 18/35 [00:02<00:02, 7.70it/s] 54%|█████▍ | 19/35 [00:02<00:02, 7.69it/s] 57%|█████▋ | 20/35 [00:02<00:01, 7.72it/s] 60%|██████ | 21/35 [00:02<00:01, 7.74it/s] 63%|██████▎ | 22/35 [00:02<00:01, 7.75it/s] 66%|██████▌ | 23/35 [00:02<00:01, 7.75it/s] 69%|██████▊ | 24/35 [00:03<00:01, 7.75it/s] 71%|███████▏ | 25/35 [00:03<00:01, 7.75it/s] 74%|███████▍ | 26/35 [00:03<00:01, 7.75it/s] 77%|███████▋ | 27/35 [00:03<00:01, 7.76it/s] 80%|████████ | 28/35 [00:03<00:00, 7.75it/s] 83%|████████▎ | 29/35 [00:03<00:00, 7.76it/s] 86%|████████▌ | 30/35 [00:03<00:00, 7.75it/s] 89%|████████▊ | 31/35 [00:04<00:00, 7.75it/s] 91%|█████████▏| 32/35 [00:04<00:00, 7.75it/s] 94%|█████████▍| 33/35 [00:04<00:00, 7.75it/s] 97%|█████████▋| 34/35 [00:04<00:00, 7.76it/s] 100%|██████████| 35/35 [00:04<00:00, 7.76it/s] 100%|██████████| 35/35 [00:04<00:00, 7.73it/s]
Prediction
alekseycalvin/neurealhistory3:dcdb62e88134abeb3cda7b7dae8d9f716813964cde95e822e4c91aa032bb780dIDgel6ydtbaxz5j2e5kom7cjdyg4StatusSucceededSourceWebHardwareA40 (Large)Total durationCreatedInput
- width
- 1024
- height
- 576
- prompt
- top quality HST picture of weary Pikachu in santa costume, walking stick,, post-apocalyptic cityscape backdrop
- refine
- no_refiner
- scheduler
- K_EULER_ANCESTRAL
- lora_scale
- 0.95
- num_outputs
- 1
- guidance_scale
- 9.37
- apply_watermark
- high_noise_frac
- 0.8
- negative_prompt
- pale, unrealistic, cgi, overexposed, undersaturated, oversaturated, warped, deformed, duplicated, unrealistic anatomy, cartoon, low quality, smoothed skin, computer generated, synthetic, blur
- prompt_strength
- 0.8
- num_inference_steps
- 23
{ "width": 1024, "height": 576, "prompt": "top quality HST picture of weary Pikachu in santa costume, walking stick,, post-apocalyptic cityscape backdrop", "refine": "no_refiner", "scheduler": "K_EULER_ANCESTRAL", "lora_scale": 0.95, "num_outputs": 1, "guidance_scale": 9.37, "apply_watermark": false, "high_noise_frac": 0.8, "negative_prompt": "pale, unrealistic, cgi, overexposed, undersaturated, oversaturated, warped, deformed, duplicated, unrealistic anatomy, cartoon, low quality, smoothed skin, computer generated, synthetic, blur", "prompt_strength": 0.8, "num_inference_steps": 23 }
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 alekseycalvin/neurealhistory3 using Replicate’s API. Check out the model's schema for an overview of inputs and outputs.
const output = await replicate.run( "alekseycalvin/neurealhistory3:dcdb62e88134abeb3cda7b7dae8d9f716813964cde95e822e4c91aa032bb780d", { input: { width: 1024, height: 576, prompt: "top quality HST picture of weary Pikachu in santa costume, walking stick,, post-apocalyptic cityscape backdrop", refine: "no_refiner", scheduler: "K_EULER_ANCESTRAL", lora_scale: 0.95, num_outputs: 1, guidance_scale: 9.37, apply_watermark: false, high_noise_frac: 0.8, negative_prompt: "pale, unrealistic, cgi, overexposed, undersaturated, oversaturated, warped, deformed, duplicated, unrealistic anatomy, cartoon, low quality, smoothed skin, computer generated, synthetic, blur", prompt_strength: 0.8, num_inference_steps: 23 } } ); // 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 alekseycalvin/neurealhistory3 using Replicate’s API. Check out the model's schema for an overview of inputs and outputs.
output = replicate.run( "alekseycalvin/neurealhistory3:dcdb62e88134abeb3cda7b7dae8d9f716813964cde95e822e4c91aa032bb780d", input={ "width": 1024, "height": 576, "prompt": "top quality HST picture of weary Pikachu in santa costume, walking stick,, post-apocalyptic cityscape backdrop", "refine": "no_refiner", "scheduler": "K_EULER_ANCESTRAL", "lora_scale": 0.95, "num_outputs": 1, "guidance_scale": 9.37, "apply_watermark": False, "high_noise_frac": 0.8, "negative_prompt": "pale, unrealistic, cgi, overexposed, undersaturated, oversaturated, warped, deformed, duplicated, unrealistic anatomy, cartoon, low quality, smoothed skin, computer generated, synthetic, blur", "prompt_strength": 0.8, "num_inference_steps": 23 } ) # 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 alekseycalvin/neurealhistory3 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": "alekseycalvin/neurealhistory3:dcdb62e88134abeb3cda7b7dae8d9f716813964cde95e822e4c91aa032bb780d", "input": { "width": 1024, "height": 576, "prompt": "top quality HST picture of weary Pikachu in santa costume, walking stick,, post-apocalyptic cityscape backdrop", "refine": "no_refiner", "scheduler": "K_EULER_ANCESTRAL", "lora_scale": 0.95, "num_outputs": 1, "guidance_scale": 9.37, "apply_watermark": false, "high_noise_frac": 0.8, "negative_prompt": "pale, unrealistic, cgi, overexposed, undersaturated, oversaturated, warped, deformed, duplicated, unrealistic anatomy, cartoon, low quality, smoothed skin, computer generated, synthetic, blur", "prompt_strength": 0.8, "num_inference_steps": 23 } }' \ https://api.replicate.com/v1/predictions
To learn more, take a look at Replicate’s HTTP API reference docs.
Output
{ "completed_at": "2023-12-23T09:34:35.204825Z", "created_at": "2023-12-23T09:34:29.473274Z", "data_removed": false, "error": null, "id": "gel6ydtbaxz5j2e5kom7cjdyg4", "input": { "width": 1024, "height": 576, "prompt": "top quality HST picture of weary Pikachu in santa costume, walking stick,, post-apocalyptic cityscape backdrop", "refine": "no_refiner", "scheduler": "K_EULER_ANCESTRAL", "lora_scale": 0.95, "num_outputs": 1, "guidance_scale": 9.37, "apply_watermark": false, "high_noise_frac": 0.8, "negative_prompt": "pale, unrealistic, cgi, overexposed, undersaturated, oversaturated, warped, deformed, duplicated, unrealistic anatomy, cartoon, low quality, smoothed skin, computer generated, synthetic, blur", "prompt_strength": 0.8, "num_inference_steps": 23 }, "logs": "Using seed: 21809\nskipping loading .. weights already loaded\nPrompt: top quality <s0><s1> picture of weary Pikachu in santa costume, walking stick,, post-apocalyptic cityscape backdrop\ntxt2img mode\n 0%| | 0/23 [00:00<?, ?it/s]\n 4%|▍ | 1/23 [00:00<00:03, 6.24it/s]\n 9%|▊ | 2/23 [00:00<00:03, 6.22it/s]\n 13%|█▎ | 3/23 [00:00<00:03, 6.22it/s]\n 17%|█▋ | 4/23 [00:00<00:03, 6.23it/s]\n 22%|██▏ | 5/23 [00:00<00:02, 6.24it/s]\n 26%|██▌ | 6/23 [00:00<00:02, 6.24it/s]\n 30%|███ | 7/23 [00:01<00:02, 6.25it/s]\n 35%|███▍ | 8/23 [00:01<00:02, 6.25it/s]\n 39%|███▉ | 9/23 [00:01<00:02, 6.25it/s]\n 43%|████▎ | 10/23 [00:01<00:02, 6.25it/s]\n 48%|████▊ | 11/23 [00:01<00:01, 6.25it/s]\n 52%|█████▏ | 12/23 [00:01<00:01, 6.25it/s]\n 57%|█████▋ | 13/23 [00:02<00:01, 6.25it/s]\n 61%|██████ | 14/23 [00:02<00:01, 6.24it/s]\n 65%|██████▌ | 15/23 [00:02<00:01, 6.24it/s]\n 70%|██████▉ | 16/23 [00:02<00:01, 6.24it/s]\n 74%|███████▍ | 17/23 [00:02<00:00, 6.24it/s]\n 78%|███████▊ | 18/23 [00:02<00:00, 6.24it/s]\n 83%|████████▎ | 19/23 [00:03<00:00, 6.24it/s]\n 87%|████████▋ | 20/23 [00:03<00:00, 6.24it/s]\n 91%|█████████▏| 21/23 [00:03<00:00, 6.24it/s]\n 96%|█████████▌| 22/23 [00:03<00:00, 6.24it/s]\n100%|██████████| 23/23 [00:03<00:00, 6.24it/s]\n100%|██████████| 23/23 [00:03<00:00, 6.24it/s]", "metrics": { "predict_time": 5.329795, "total_time": 5.731551 }, "output": [ "https://replicate.delivery/pbxt/0yqpQLUZ4bKnD9IMq4yKeDeDrGHjXCJXmUUADf0IHVRUdLKkA/out-0.png" ], "started_at": "2023-12-23T09:34:29.875030Z", "status": "succeeded", "urls": { "get": "https://api.replicate.com/v1/predictions/gel6ydtbaxz5j2e5kom7cjdyg4", "cancel": "https://api.replicate.com/v1/predictions/gel6ydtbaxz5j2e5kom7cjdyg4/cancel" }, "version": "dcdb62e88134abeb3cda7b7dae8d9f716813964cde95e822e4c91aa032bb780d" }
Generated inUsing seed: 21809 skipping loading .. weights already loaded Prompt: top quality <s0><s1> picture of weary Pikachu in santa costume, walking stick,, post-apocalyptic cityscape backdrop txt2img mode 0%| | 0/23 [00:00<?, ?it/s] 4%|▍ | 1/23 [00:00<00:03, 6.24it/s] 9%|▊ | 2/23 [00:00<00:03, 6.22it/s] 13%|█▎ | 3/23 [00:00<00:03, 6.22it/s] 17%|█▋ | 4/23 [00:00<00:03, 6.23it/s] 22%|██▏ | 5/23 [00:00<00:02, 6.24it/s] 26%|██▌ | 6/23 [00:00<00:02, 6.24it/s] 30%|███ | 7/23 [00:01<00:02, 6.25it/s] 35%|███▍ | 8/23 [00:01<00:02, 6.25it/s] 39%|███▉ | 9/23 [00:01<00:02, 6.25it/s] 43%|████▎ | 10/23 [00:01<00:02, 6.25it/s] 48%|████▊ | 11/23 [00:01<00:01, 6.25it/s] 52%|█████▏ | 12/23 [00:01<00:01, 6.25it/s] 57%|█████▋ | 13/23 [00:02<00:01, 6.25it/s] 61%|██████ | 14/23 [00:02<00:01, 6.24it/s] 65%|██████▌ | 15/23 [00:02<00:01, 6.24it/s] 70%|██████▉ | 16/23 [00:02<00:01, 6.24it/s] 74%|███████▍ | 17/23 [00:02<00:00, 6.24it/s] 78%|███████▊ | 18/23 [00:02<00:00, 6.24it/s] 83%|████████▎ | 19/23 [00:03<00:00, 6.24it/s] 87%|████████▋ | 20/23 [00:03<00:00, 6.24it/s] 91%|█████████▏| 21/23 [00:03<00:00, 6.24it/s] 96%|█████████▌| 22/23 [00:03<00:00, 6.24it/s] 100%|██████████| 23/23 [00:03<00:00, 6.24it/s] 100%|██████████| 23/23 [00:03<00:00, 6.24it/s]
Want to make some of these yourself?
Run this model