geeklab-ltd / app-icon-generator
Generates game icons, For full use: appiconlab.com
- Public
- 217.2K runs
-
A100 (80GB)
Prediction
geeklab-ltd/app-icon-generator:342273f7ebbf8a2dfe74e27d0ec50b42bc314887b2ee19560791b52d71093192ID3gyv4rtbcywfxuji6w3vopxztaStatusSucceededSourceWebHardwareA40 (Large)Total durationCreatedInput
- seed
- 24048
- width
- 1024
- height
- 1024
- prompt
- Close up of a fierce warrior, 3d character,image of app icon, app icon, mobile app icon, stylized, mobile game icon
- refine
- no_refiner
- scheduler
- K_EULER_ANCESTRAL
- lora_scale
- 0.6
- num_outputs
- 1
- guidance_scale
- 8
- apply_watermark
- high_noise_frac
- 0.8
- negative_prompt
- Text, logo,(worst quality:1.5), (low quality:1.5), (normal quality:1.5), lowres, bad anatomy, bad hands, multiple eyebrow, (cropped), extra limb, missing limbs, deformed hands, long neck, long body, (bad hands), signature, username, artist name, conjoined fingers, deformed fingers, ugly eyes, imperfect eyes, skewed eyes, unnatural face, unnatural body, error, painting by bad-artist,nsfw,porn,nudity,sexy
- prompt_strength
- 0.8
- num_inference_steps
- 20
{ "seed": 24048, "width": 1024, "height": 1024, "prompt": "Close up of a fierce warrior, 3d character,image of app icon, app icon, mobile app icon, stylized, mobile game icon", "refine": "no_refiner", "scheduler": "K_EULER_ANCESTRAL", "lora_scale": 0.6, "num_outputs": 1, "guidance_scale": 8, "apply_watermark": false, "high_noise_frac": 0.8, "negative_prompt": "Text, logo,(worst quality:1.5), (low quality:1.5), (normal quality:1.5), lowres, bad anatomy, bad hands, multiple eyebrow, (cropped), extra limb, missing limbs, deformed hands, long neck, long body, (bad hands), signature, username, artist name, conjoined fingers, deformed fingers, ugly eyes, imperfect eyes, skewed eyes, unnatural face, unnatural body, error, painting by bad-artist,nsfw,porn,nudity,sexy", "prompt_strength": 0.8, "num_inference_steps": 20 }
Install Replicate’s Node.js client library:npm install replicate
Import and set up the client:import Replicate from "replicate"; const replicate = new Replicate({ auth: process.env.REPLICATE_API_TOKEN, });
Run geeklab-ltd/app-icon-generator using Replicate’s API. Check out the model's schema for an overview of inputs and outputs.
const output = await replicate.run( "geeklab-ltd/app-icon-generator:342273f7ebbf8a2dfe74e27d0ec50b42bc314887b2ee19560791b52d71093192", { input: { seed: 24048, width: 1024, height: 1024, prompt: "Close up of a fierce warrior, 3d character,image of app icon, app icon, mobile app icon, stylized, mobile game icon", refine: "no_refiner", scheduler: "K_EULER_ANCESTRAL", lora_scale: 0.6, num_outputs: 1, guidance_scale: 8, apply_watermark: false, high_noise_frac: 0.8, negative_prompt: "Text, logo,(worst quality:1.5), (low quality:1.5), (normal quality:1.5), lowres, bad anatomy, bad hands, multiple eyebrow, (cropped), extra limb, missing limbs, deformed hands, long neck, long body, (bad hands), signature, username, artist name, conjoined fingers, deformed fingers, ugly eyes, imperfect eyes, skewed eyes, unnatural face, unnatural body, error, painting by bad-artist,nsfw,porn,nudity,sexy", prompt_strength: 0.8, num_inference_steps: 20 } } ); // 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 geeklab-ltd/app-icon-generator using Replicate’s API. Check out the model's schema for an overview of inputs and outputs.
output = replicate.run( "geeklab-ltd/app-icon-generator:342273f7ebbf8a2dfe74e27d0ec50b42bc314887b2ee19560791b52d71093192", input={ "seed": 24048, "width": 1024, "height": 1024, "prompt": "Close up of a fierce warrior, 3d character,image of app icon, app icon, mobile app icon, stylized, mobile game icon", "refine": "no_refiner", "scheduler": "K_EULER_ANCESTRAL", "lora_scale": 0.6, "num_outputs": 1, "guidance_scale": 8, "apply_watermark": False, "high_noise_frac": 0.8, "negative_prompt": "Text, logo,(worst quality:1.5), (low quality:1.5), (normal quality:1.5), lowres, bad anatomy, bad hands, multiple eyebrow, (cropped), extra limb, missing limbs, deformed hands, long neck, long body, (bad hands), signature, username, artist name, conjoined fingers, deformed fingers, ugly eyes, imperfect eyes, skewed eyes, unnatural face, unnatural body, error, painting by bad-artist,nsfw,porn,nudity,sexy", "prompt_strength": 0.8, "num_inference_steps": 20 } ) print(output)
To learn more, take a look at the guide on getting started with Python.
Run geeklab-ltd/app-icon-generator 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": "geeklab-ltd/app-icon-generator:342273f7ebbf8a2dfe74e27d0ec50b42bc314887b2ee19560791b52d71093192", "input": { "seed": 24048, "width": 1024, "height": 1024, "prompt": "Close up of a fierce warrior, 3d character,image of app icon, app icon, mobile app icon, stylized, mobile game icon", "refine": "no_refiner", "scheduler": "K_EULER_ANCESTRAL", "lora_scale": 0.6, "num_outputs": 1, "guidance_scale": 8, "apply_watermark": false, "high_noise_frac": 0.8, "negative_prompt": "Text, logo,(worst quality:1.5), (low quality:1.5), (normal quality:1.5), lowres, bad anatomy, bad hands, multiple eyebrow, (cropped), extra limb, missing limbs, deformed hands, long neck, long body, (bad hands), signature, username, artist name, conjoined fingers, deformed fingers, ugly eyes, imperfect eyes, skewed eyes, unnatural face, unnatural body, error, painting by bad-artist,nsfw,porn,nudity,sexy", "prompt_strength": 0.8, "num_inference_steps": 20 } }' \ https://api.replicate.com/v1/predictions
To learn more, take a look at Replicate’s HTTP API reference docs.
Output
{ "completed_at": "2023-12-11T21:04:00.261245Z", "created_at": "2023-12-11T21:03:48.215123Z", "data_removed": false, "error": null, "id": "3gyv4rtbcywfxuji6w3vopxzta", "input": { "seed": 24048, "width": 1024, "height": 1024, "prompt": "Close up of a fierce warrior, 3d character,image of app icon, app icon, mobile app icon, stylized, mobile game icon", "refine": "no_refiner", "scheduler": "K_EULER_ANCESTRAL", "lora_scale": 0.6, "num_outputs": 1, "guidance_scale": 8, "apply_watermark": false, "high_noise_frac": 0.8, "negative_prompt": "Text, logo,(worst quality:1.5), (low quality:1.5), (normal quality:1.5), lowres, bad anatomy, bad hands, multiple eyebrow, (cropped), extra limb, missing limbs, deformed hands, long neck, long body, (bad hands), signature, username, artist name, conjoined fingers, deformed fingers, ugly eyes, imperfect eyes, skewed eyes, unnatural face, unnatural body, error, painting by bad-artist,nsfw,porn,nudity,sexy", "prompt_strength": 0.8, "num_inference_steps": 20 }, "logs": "Using seed: 24048\nEnsuring enough disk space...\nFree disk space: 1530586865664\nDownloading weights: https://replicate.delivery/pbxt/GMekeZFreQWDFIHoW7g3mfUDjuweMJL0OzVbt7qWJoEMZ0JQC/trained_model.tar\nb'Downloaded 186 MB bytes in 0.347s (536 MB/s)\\nExtracted 186 MB in 0.053s (3.5 GB/s)\\n'\nDownloaded weights in 0.5257184505462646 seconds\nLoading fine-tuned model\nDoes not have Unet. assume we are using LoRA\nLoading Unet LoRA\nPrompt: Close up of a fierce warrior, 3d character,image of <s0><s1>, <s0><s1>, mobile <s0><s1>, stylized, mobile game icon\ntxt2img mode\n 0%| | 0/20 [00:00<?, ?it/s]\n 5%|▌ | 1/20 [00:00<00:05, 3.69it/s]\n 10%|█ | 2/20 [00:00<00:04, 3.68it/s]\n 15%|█▌ | 3/20 [00:00<00:04, 3.68it/s]\n 20%|██ | 4/20 [00:01<00:04, 3.67it/s]\n 25%|██▌ | 5/20 [00:01<00:04, 3.67it/s]\n 30%|███ | 6/20 [00:01<00:03, 3.66it/s]\n 35%|███▌ | 7/20 [00:01<00:03, 3.66it/s]\n 40%|████ | 8/20 [00:02<00:03, 3.66it/s]\n 45%|████▌ | 9/20 [00:02<00:03, 3.66it/s]\n 50%|█████ | 10/20 [00:02<00:02, 3.66it/s]\n 55%|█████▌ | 11/20 [00:03<00:02, 3.65it/s]\n 60%|██████ | 12/20 [00:03<00:02, 3.65it/s]\n 65%|██████▌ | 13/20 [00:03<00:01, 3.65it/s]\n 70%|███████ | 14/20 [00:03<00:01, 3.65it/s]\n 75%|███████▌ | 15/20 [00:04<00:01, 3.65it/s]\n 80%|████████ | 16/20 [00:04<00:01, 3.65it/s]\n 85%|████████▌ | 17/20 [00:04<00:00, 3.65it/s]\n 90%|█████████ | 18/20 [00:04<00:00, 3.65it/s]\n 95%|█████████▌| 19/20 [00:05<00:00, 3.64it/s]\n100%|██████████| 20/20 [00:05<00:00, 3.64it/s]\n100%|██████████| 20/20 [00:05<00:00, 3.65it/s]", "metrics": { "predict_time": 8.598155, "total_time": 12.046122 }, "output": [ "https://replicate.delivery/pbxt/DD3hVuew9fkGpkjkOgQt6Rt1l0SZv25JRg0tJuInAogfZlCkA/out-0.png" ], "started_at": "2023-12-11T21:03:51.663090Z", "status": "succeeded", "urls": { "get": "https://api.replicate.com/v1/predictions/3gyv4rtbcywfxuji6w3vopxzta", "cancel": "https://api.replicate.com/v1/predictions/3gyv4rtbcywfxuji6w3vopxzta/cancel" }, "version": "342273f7ebbf8a2dfe74e27d0ec50b42bc314887b2ee19560791b52d71093192" }
Generated inUsing seed: 24048 Ensuring enough disk space... Free disk space: 1530586865664 Downloading weights: https://replicate.delivery/pbxt/GMekeZFreQWDFIHoW7g3mfUDjuweMJL0OzVbt7qWJoEMZ0JQC/trained_model.tar b'Downloaded 186 MB bytes in 0.347s (536 MB/s)\nExtracted 186 MB in 0.053s (3.5 GB/s)\n' Downloaded weights in 0.5257184505462646 seconds Loading fine-tuned model Does not have Unet. assume we are using LoRA Loading Unet LoRA Prompt: Close up of a fierce warrior, 3d character,image of <s0><s1>, <s0><s1>, mobile <s0><s1>, stylized, mobile game icon txt2img mode 0%| | 0/20 [00:00<?, ?it/s] 5%|▌ | 1/20 [00:00<00:05, 3.69it/s] 10%|█ | 2/20 [00:00<00:04, 3.68it/s] 15%|█▌ | 3/20 [00:00<00:04, 3.68it/s] 20%|██ | 4/20 [00:01<00:04, 3.67it/s] 25%|██▌ | 5/20 [00:01<00:04, 3.67it/s] 30%|███ | 6/20 [00:01<00:03, 3.66it/s] 35%|███▌ | 7/20 [00:01<00:03, 3.66it/s] 40%|████ | 8/20 [00:02<00:03, 3.66it/s] 45%|████▌ | 9/20 [00:02<00:03, 3.66it/s] 50%|█████ | 10/20 [00:02<00:02, 3.66it/s] 55%|█████▌ | 11/20 [00:03<00:02, 3.65it/s] 60%|██████ | 12/20 [00:03<00:02, 3.65it/s] 65%|██████▌ | 13/20 [00:03<00:01, 3.65it/s] 70%|███████ | 14/20 [00:03<00:01, 3.65it/s] 75%|███████▌ | 15/20 [00:04<00:01, 3.65it/s] 80%|████████ | 16/20 [00:04<00:01, 3.65it/s] 85%|████████▌ | 17/20 [00:04<00:00, 3.65it/s] 90%|█████████ | 18/20 [00:04<00:00, 3.65it/s] 95%|█████████▌| 19/20 [00:05<00:00, 3.64it/s] 100%|██████████| 20/20 [00:05<00:00, 3.64it/s] 100%|██████████| 20/20 [00:05<00:00, 3.65it/s]
Prediction
geeklab-ltd/app-icon-generator:342273f7ebbf8a2dfe74e27d0ec50b42bc314887b2ee19560791b52d71093192IDuutlhutbf4b5jkdsl3hc3vwzcmStatusSucceededSourceWebHardwareA40 (Large)Total durationCreatedInput
- width
- 1024
- height
- 1024
- prompt
- Close up of a fierce warrior, 3d character, strategy category,image of app icon, app icon, mobile app icon, stylized, mobile game icon
- refine
- no_refiner
- scheduler
- K_EULER_ANCESTRAL
- lora_scale
- 0.6
- num_outputs
- 1
- guidance_scale
- 8
- apply_watermark
- high_noise_frac
- 0.8
- negative_prompt
- Text, logo,(worst quality:1.5), (low quality:1.5), (normal quality:1.5), lowres, bad anatomy, bad hands, multiple eyebrow, (cropped), extra limb, missing limbs, deformed hands, long neck, long body, (bad hands), signature, username, artist name, conjoined fingers, deformed fingers, ugly eyes, imperfect eyes, skewed eyes, unnatural face, unnatural body, error, painting by bad-artist,nsfw,porn,nudity,sexy
- prompt_strength
- 0.8
- num_inference_steps
- 20
{ "width": 1024, "height": 1024, "prompt": "Close up of a fierce warrior, 3d character, strategy category,image of app icon, app icon, mobile app icon, stylized, mobile game icon", "refine": "no_refiner", "scheduler": "K_EULER_ANCESTRAL", "lora_scale": 0.6, "num_outputs": 1, "guidance_scale": 8, "apply_watermark": false, "high_noise_frac": 0.8, "negative_prompt": "Text, logo,(worst quality:1.5), (low quality:1.5), (normal quality:1.5), lowres, bad anatomy, bad hands, multiple eyebrow, (cropped), extra limb, missing limbs, deformed hands, long neck, long body, (bad hands), signature, username, artist name, conjoined fingers, deformed fingers, ugly eyes, imperfect eyes, skewed eyes, unnatural face, unnatural body, error, painting by bad-artist,nsfw,porn,nudity,sexy", "prompt_strength": 0.8, "num_inference_steps": 20 }
Install Replicate’s Node.js client library:npm install replicate
Import and set up the client:import Replicate from "replicate"; const replicate = new Replicate({ auth: process.env.REPLICATE_API_TOKEN, });
Run geeklab-ltd/app-icon-generator using Replicate’s API. Check out the model's schema for an overview of inputs and outputs.
const output = await replicate.run( "geeklab-ltd/app-icon-generator:342273f7ebbf8a2dfe74e27d0ec50b42bc314887b2ee19560791b52d71093192", { input: { width: 1024, height: 1024, prompt: "Close up of a fierce warrior, 3d character, strategy category,image of app icon, app icon, mobile app icon, stylized, mobile game icon", refine: "no_refiner", scheduler: "K_EULER_ANCESTRAL", lora_scale: 0.6, num_outputs: 1, guidance_scale: 8, apply_watermark: false, high_noise_frac: 0.8, negative_prompt: "Text, logo,(worst quality:1.5), (low quality:1.5), (normal quality:1.5), lowres, bad anatomy, bad hands, multiple eyebrow, (cropped), extra limb, missing limbs, deformed hands, long neck, long body, (bad hands), signature, username, artist name, conjoined fingers, deformed fingers, ugly eyes, imperfect eyes, skewed eyes, unnatural face, unnatural body, error, painting by bad-artist,nsfw,porn,nudity,sexy", prompt_strength: 0.8, num_inference_steps: 20 } } ); // 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 geeklab-ltd/app-icon-generator using Replicate’s API. Check out the model's schema for an overview of inputs and outputs.
output = replicate.run( "geeklab-ltd/app-icon-generator:342273f7ebbf8a2dfe74e27d0ec50b42bc314887b2ee19560791b52d71093192", input={ "width": 1024, "height": 1024, "prompt": "Close up of a fierce warrior, 3d character, strategy category,image of app icon, app icon, mobile app icon, stylized, mobile game icon", "refine": "no_refiner", "scheduler": "K_EULER_ANCESTRAL", "lora_scale": 0.6, "num_outputs": 1, "guidance_scale": 8, "apply_watermark": False, "high_noise_frac": 0.8, "negative_prompt": "Text, logo,(worst quality:1.5), (low quality:1.5), (normal quality:1.5), lowres, bad anatomy, bad hands, multiple eyebrow, (cropped), extra limb, missing limbs, deformed hands, long neck, long body, (bad hands), signature, username, artist name, conjoined fingers, deformed fingers, ugly eyes, imperfect eyes, skewed eyes, unnatural face, unnatural body, error, painting by bad-artist,nsfw,porn,nudity,sexy", "prompt_strength": 0.8, "num_inference_steps": 20 } ) print(output)
To learn more, take a look at the guide on getting started with Python.
Run geeklab-ltd/app-icon-generator 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": "geeklab-ltd/app-icon-generator:342273f7ebbf8a2dfe74e27d0ec50b42bc314887b2ee19560791b52d71093192", "input": { "width": 1024, "height": 1024, "prompt": "Close up of a fierce warrior, 3d character, strategy category,image of app icon, app icon, mobile app icon, stylized, mobile game icon", "refine": "no_refiner", "scheduler": "K_EULER_ANCESTRAL", "lora_scale": 0.6, "num_outputs": 1, "guidance_scale": 8, "apply_watermark": false, "high_noise_frac": 0.8, "negative_prompt": "Text, logo,(worst quality:1.5), (low quality:1.5), (normal quality:1.5), lowres, bad anatomy, bad hands, multiple eyebrow, (cropped), extra limb, missing limbs, deformed hands, long neck, long body, (bad hands), signature, username, artist name, conjoined fingers, deformed fingers, ugly eyes, imperfect eyes, skewed eyes, unnatural face, unnatural body, error, painting by bad-artist,nsfw,porn,nudity,sexy", "prompt_strength": 0.8, "num_inference_steps": 20 } }' \ https://api.replicate.com/v1/predictions
To learn more, take a look at Replicate’s HTTP API reference docs.
Output
{ "completed_at": "2023-12-11T21:03:15.121733Z", "created_at": "2023-12-11T21:03:08.093226Z", "data_removed": false, "error": null, "id": "uutlhutbf4b5jkdsl3hc3vwzcm", "input": { "width": 1024, "height": 1024, "prompt": "Close up of a fierce warrior, 3d character, strategy category,image of app icon, app icon, mobile app icon, stylized, mobile game icon", "refine": "no_refiner", "scheduler": "K_EULER_ANCESTRAL", "lora_scale": 0.6, "num_outputs": 1, "guidance_scale": 8, "apply_watermark": false, "high_noise_frac": 0.8, "negative_prompt": "Text, logo,(worst quality:1.5), (low quality:1.5), (normal quality:1.5), lowres, bad anatomy, bad hands, multiple eyebrow, (cropped), extra limb, missing limbs, deformed hands, long neck, long body, (bad hands), signature, username, artist name, conjoined fingers, deformed fingers, ugly eyes, imperfect eyes, skewed eyes, unnatural face, unnatural body, error, painting by bad-artist,nsfw,porn,nudity,sexy", "prompt_strength": 0.8, "num_inference_steps": 20 }, "logs": "Using seed: 24048\nskipping loading .. weights already loaded\nPrompt: Close up of a fierce warrior, 3d character, strategy category,image of <s0><s1>, <s0><s1>, mobile <s0><s1>, stylized, mobile game icon\ntxt2img mode\n 0%| | 0/20 [00:00<?, ?it/s]\n 5%|▌ | 1/20 [00:00<00:05, 3.70it/s]\n 10%|█ | 2/20 [00:00<00:04, 3.68it/s]\n 15%|█▌ | 3/20 [00:00<00:04, 3.68it/s]\n 20%|██ | 4/20 [00:01<00:04, 3.67it/s]\n 25%|██▌ | 5/20 [00:01<00:04, 3.66it/s]\n 30%|███ | 6/20 [00:01<00:03, 3.66it/s]\n 35%|███▌ | 7/20 [00:01<00:03, 3.66it/s]\n 40%|████ | 8/20 [00:02<00:03, 3.66it/s]\n 45%|████▌ | 9/20 [00:02<00:03, 3.66it/s]\n 50%|█████ | 10/20 [00:02<00:02, 3.66it/s]\n 55%|█████▌ | 11/20 [00:03<00:02, 3.66it/s]\n 60%|██████ | 12/20 [00:03<00:02, 3.66it/s]\n 65%|██████▌ | 13/20 [00:03<00:01, 3.67it/s]\n 70%|███████ | 14/20 [00:03<00:01, 3.67it/s]\n 75%|███████▌ | 15/20 [00:04<00:01, 3.67it/s]\n 80%|████████ | 16/20 [00:04<00:01, 3.67it/s]\n 85%|████████▌ | 17/20 [00:04<00:00, 3.67it/s]\n 90%|█████████ | 18/20 [00:04<00:00, 3.67it/s]\n 95%|█████████▌| 19/20 [00:05<00:00, 3.67it/s]\n100%|██████████| 20/20 [00:05<00:00, 3.67it/s]\n100%|██████████| 20/20 [00:05<00:00, 3.67it/s]", "metrics": { "predict_time": 7.021635, "total_time": 7.028507 }, "output": [ "https://replicate.delivery/pbxt/sFR51IQKxrbXC1ZIXc6PdMcNZTeOGEuI16eCYJo9Tc1SsSBSA/out-0.png" ], "started_at": "2023-12-11T21:03:08.100098Z", "status": "succeeded", "urls": { "get": "https://api.replicate.com/v1/predictions/uutlhutbf4b5jkdsl3hc3vwzcm", "cancel": "https://api.replicate.com/v1/predictions/uutlhutbf4b5jkdsl3hc3vwzcm/cancel" }, "version": "342273f7ebbf8a2dfe74e27d0ec50b42bc314887b2ee19560791b52d71093192" }
Generated inUsing seed: 24048 skipping loading .. weights already loaded Prompt: Close up of a fierce warrior, 3d character, strategy category,image of <s0><s1>, <s0><s1>, mobile <s0><s1>, stylized, mobile game icon txt2img mode 0%| | 0/20 [00:00<?, ?it/s] 5%|▌ | 1/20 [00:00<00:05, 3.70it/s] 10%|█ | 2/20 [00:00<00:04, 3.68it/s] 15%|█▌ | 3/20 [00:00<00:04, 3.68it/s] 20%|██ | 4/20 [00:01<00:04, 3.67it/s] 25%|██▌ | 5/20 [00:01<00:04, 3.66it/s] 30%|███ | 6/20 [00:01<00:03, 3.66it/s] 35%|███▌ | 7/20 [00:01<00:03, 3.66it/s] 40%|████ | 8/20 [00:02<00:03, 3.66it/s] 45%|████▌ | 9/20 [00:02<00:03, 3.66it/s] 50%|█████ | 10/20 [00:02<00:02, 3.66it/s] 55%|█████▌ | 11/20 [00:03<00:02, 3.66it/s] 60%|██████ | 12/20 [00:03<00:02, 3.66it/s] 65%|██████▌ | 13/20 [00:03<00:01, 3.67it/s] 70%|███████ | 14/20 [00:03<00:01, 3.67it/s] 75%|███████▌ | 15/20 [00:04<00:01, 3.67it/s] 80%|████████ | 16/20 [00:04<00:01, 3.67it/s] 85%|████████▌ | 17/20 [00:04<00:00, 3.67it/s] 90%|█████████ | 18/20 [00:04<00:00, 3.67it/s] 95%|█████████▌| 19/20 [00:05<00:00, 3.67it/s] 100%|██████████| 20/20 [00:05<00:00, 3.67it/s] 100%|██████████| 20/20 [00:05<00:00, 3.67it/s]
Prediction
geeklab-ltd/app-icon-generator:342273f7ebbf8a2dfe74e27d0ec50b42bc314887b2ee19560791b52d71093192IDumsqnilbebpapd3ujjq3ie5briStatusSucceededSourceWebHardwareA40 (Large)Total durationCreatedInput
- seed
- 24048
- width
- 1024
- height
- 1024
- prompt
- iOS, Close up of a fierce warrior, 3d character,image of app icon, app icon, mobile app icon, stylized, mobile game icon
- refine
- no_refiner
- scheduler
- K_EULER_ANCESTRAL
- lora_scale
- 0.6
- num_outputs
- 1
- guidance_scale
- 8
- apply_watermark
- high_noise_frac
- 0.8
- negative_prompt
- Text, logo,(worst quality:1.5), (low quality:1.5), (normal quality:1.5), lowres, bad anatomy, bad hands, multiple eyebrow, (cropped), extra limb, missing limbs, deformed hands, long neck, long body, (bad hands), signature, username, artist name, conjoined fingers, deformed fingers, ugly eyes, imperfect eyes, skewed eyes, unnatural face, unnatural body, error, painting by bad-artist,nsfw,porn,nudity,sexy
- prompt_strength
- 0.8
- num_inference_steps
- 20
{ "seed": 24048, "width": 1024, "height": 1024, "prompt": "iOS, Close up of a fierce warrior, 3d character,image of app icon, app icon, mobile app icon, stylized, mobile game icon", "refine": "no_refiner", "scheduler": "K_EULER_ANCESTRAL", "lora_scale": 0.6, "num_outputs": 1, "guidance_scale": 8, "apply_watermark": false, "high_noise_frac": 0.8, "negative_prompt": "Text, logo,(worst quality:1.5), (low quality:1.5), (normal quality:1.5), lowres, bad anatomy, bad hands, multiple eyebrow, (cropped), extra limb, missing limbs, deformed hands, long neck, long body, (bad hands), signature, username, artist name, conjoined fingers, deformed fingers, ugly eyes, imperfect eyes, skewed eyes, unnatural face, unnatural body, error, painting by bad-artist,nsfw,porn,nudity,sexy", "prompt_strength": 0.8, "num_inference_steps": 20 }
Install Replicate’s Node.js client library:npm install replicate
Import and set up the client:import Replicate from "replicate"; const replicate = new Replicate({ auth: process.env.REPLICATE_API_TOKEN, });
Run geeklab-ltd/app-icon-generator using Replicate’s API. Check out the model's schema for an overview of inputs and outputs.
const output = await replicate.run( "geeklab-ltd/app-icon-generator:342273f7ebbf8a2dfe74e27d0ec50b42bc314887b2ee19560791b52d71093192", { input: { seed: 24048, width: 1024, height: 1024, prompt: "iOS, Close up of a fierce warrior, 3d character,image of app icon, app icon, mobile app icon, stylized, mobile game icon", refine: "no_refiner", scheduler: "K_EULER_ANCESTRAL", lora_scale: 0.6, num_outputs: 1, guidance_scale: 8, apply_watermark: false, high_noise_frac: 0.8, negative_prompt: "Text, logo,(worst quality:1.5), (low quality:1.5), (normal quality:1.5), lowres, bad anatomy, bad hands, multiple eyebrow, (cropped), extra limb, missing limbs, deformed hands, long neck, long body, (bad hands), signature, username, artist name, conjoined fingers, deformed fingers, ugly eyes, imperfect eyes, skewed eyes, unnatural face, unnatural body, error, painting by bad-artist,nsfw,porn,nudity,sexy", prompt_strength: 0.8, num_inference_steps: 20 } } ); // 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 geeklab-ltd/app-icon-generator using Replicate’s API. Check out the model's schema for an overview of inputs and outputs.
output = replicate.run( "geeklab-ltd/app-icon-generator:342273f7ebbf8a2dfe74e27d0ec50b42bc314887b2ee19560791b52d71093192", input={ "seed": 24048, "width": 1024, "height": 1024, "prompt": "iOS, Close up of a fierce warrior, 3d character,image of app icon, app icon, mobile app icon, stylized, mobile game icon", "refine": "no_refiner", "scheduler": "K_EULER_ANCESTRAL", "lora_scale": 0.6, "num_outputs": 1, "guidance_scale": 8, "apply_watermark": False, "high_noise_frac": 0.8, "negative_prompt": "Text, logo,(worst quality:1.5), (low quality:1.5), (normal quality:1.5), lowres, bad anatomy, bad hands, multiple eyebrow, (cropped), extra limb, missing limbs, deformed hands, long neck, long body, (bad hands), signature, username, artist name, conjoined fingers, deformed fingers, ugly eyes, imperfect eyes, skewed eyes, unnatural face, unnatural body, error, painting by bad-artist,nsfw,porn,nudity,sexy", "prompt_strength": 0.8, "num_inference_steps": 20 } ) print(output)
To learn more, take a look at the guide on getting started with Python.
Run geeklab-ltd/app-icon-generator 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": "geeklab-ltd/app-icon-generator:342273f7ebbf8a2dfe74e27d0ec50b42bc314887b2ee19560791b52d71093192", "input": { "seed": 24048, "width": 1024, "height": 1024, "prompt": "iOS, Close up of a fierce warrior, 3d character,image of app icon, app icon, mobile app icon, stylized, mobile game icon", "refine": "no_refiner", "scheduler": "K_EULER_ANCESTRAL", "lora_scale": 0.6, "num_outputs": 1, "guidance_scale": 8, "apply_watermark": false, "high_noise_frac": 0.8, "negative_prompt": "Text, logo,(worst quality:1.5), (low quality:1.5), (normal quality:1.5), lowres, bad anatomy, bad hands, multiple eyebrow, (cropped), extra limb, missing limbs, deformed hands, long neck, long body, (bad hands), signature, username, artist name, conjoined fingers, deformed fingers, ugly eyes, imperfect eyes, skewed eyes, unnatural face, unnatural body, error, painting by bad-artist,nsfw,porn,nudity,sexy", "prompt_strength": 0.8, "num_inference_steps": 20 } }' \ https://api.replicate.com/v1/predictions
To learn more, take a look at Replicate’s HTTP API reference docs.
Output
{ "completed_at": "2023-12-11T21:04:33.331421Z", "created_at": "2023-12-11T21:04:21.884136Z", "data_removed": false, "error": null, "id": "umsqnilbebpapd3ujjq3ie5bri", "input": { "seed": 24048, "width": 1024, "height": 1024, "prompt": "iOS, Close up of a fierce warrior, 3d character,image of app icon, app icon, mobile app icon, stylized, mobile game icon", "refine": "no_refiner", "scheduler": "K_EULER_ANCESTRAL", "lora_scale": 0.6, "num_outputs": 1, "guidance_scale": 8, "apply_watermark": false, "high_noise_frac": 0.8, "negative_prompt": "Text, logo,(worst quality:1.5), (low quality:1.5), (normal quality:1.5), lowres, bad anatomy, bad hands, multiple eyebrow, (cropped), extra limb, missing limbs, deformed hands, long neck, long body, (bad hands), signature, username, artist name, conjoined fingers, deformed fingers, ugly eyes, imperfect eyes, skewed eyes, unnatural face, unnatural body, error, painting by bad-artist,nsfw,porn,nudity,sexy", "prompt_strength": 0.8, "num_inference_steps": 20 }, "logs": "Using seed: 24048\nLoading fine-tuned model\nDoes not have Unet. assume we are using LoRA\nLoading Unet LoRA\nPrompt: iOS, Close up of a fierce warrior, 3d character,image of <s0><s1>, <s0><s1>, mobile <s0><s1>, stylized, mobile game icon\ntxt2img mode\n 0%| | 0/20 [00:00<?, ?it/s]\n 5%|▌ | 1/20 [00:00<00:05, 3.66it/s]\n 10%|█ | 2/20 [00:00<00:04, 3.66it/s]\n 15%|█▌ | 3/20 [00:00<00:04, 3.66it/s]\n 20%|██ | 4/20 [00:01<00:04, 3.66it/s]\n 25%|██▌ | 5/20 [00:01<00:04, 3.66it/s]\n 30%|███ | 6/20 [00:01<00:03, 3.66it/s]\n 35%|███▌ | 7/20 [00:01<00:03, 3.66it/s]\n 40%|████ | 8/20 [00:02<00:03, 3.66it/s]\n 45%|████▌ | 9/20 [00:02<00:03, 3.66it/s]\n 50%|█████ | 10/20 [00:02<00:02, 3.66it/s]\n 55%|█████▌ | 11/20 [00:03<00:02, 3.66it/s]\n 60%|██████ | 12/20 [00:03<00:02, 3.66it/s]\n 65%|██████▌ | 13/20 [00:03<00:01, 3.65it/s]\n 70%|███████ | 14/20 [00:03<00:01, 3.65it/s]\n 75%|███████▌ | 15/20 [00:04<00:01, 3.65it/s]\n 80%|████████ | 16/20 [00:04<00:01, 3.65it/s]\n 85%|████████▌ | 17/20 [00:04<00:00, 3.65it/s]\n 90%|█████████ | 18/20 [00:04<00:00, 3.65it/s]\n 95%|█████████▌| 19/20 [00:05<00:00, 3.65it/s]\n100%|██████████| 20/20 [00:05<00:00, 3.64it/s]\n100%|██████████| 20/20 [00:05<00:00, 3.65it/s]", "metrics": { "predict_time": 7.258783, "total_time": 11.447285 }, "output": [ "https://replicate.delivery/pbxt/b26AeyBgPFUSJyS1Ce6hE0w1MPrLbeiBvOwMgU8anxDCblCkA/out-0.png" ], "started_at": "2023-12-11T21:04:26.072638Z", "status": "succeeded", "urls": { "get": "https://api.replicate.com/v1/predictions/umsqnilbebpapd3ujjq3ie5bri", "cancel": "https://api.replicate.com/v1/predictions/umsqnilbebpapd3ujjq3ie5bri/cancel" }, "version": "342273f7ebbf8a2dfe74e27d0ec50b42bc314887b2ee19560791b52d71093192" }
Generated inUsing seed: 24048 Loading fine-tuned model Does not have Unet. assume we are using LoRA Loading Unet LoRA Prompt: iOS, Close up of a fierce warrior, 3d character,image of <s0><s1>, <s0><s1>, mobile <s0><s1>, stylized, mobile game icon txt2img mode 0%| | 0/20 [00:00<?, ?it/s] 5%|▌ | 1/20 [00:00<00:05, 3.66it/s] 10%|█ | 2/20 [00:00<00:04, 3.66it/s] 15%|█▌ | 3/20 [00:00<00:04, 3.66it/s] 20%|██ | 4/20 [00:01<00:04, 3.66it/s] 25%|██▌ | 5/20 [00:01<00:04, 3.66it/s] 30%|███ | 6/20 [00:01<00:03, 3.66it/s] 35%|███▌ | 7/20 [00:01<00:03, 3.66it/s] 40%|████ | 8/20 [00:02<00:03, 3.66it/s] 45%|████▌ | 9/20 [00:02<00:03, 3.66it/s] 50%|█████ | 10/20 [00:02<00:02, 3.66it/s] 55%|█████▌ | 11/20 [00:03<00:02, 3.66it/s] 60%|██████ | 12/20 [00:03<00:02, 3.66it/s] 65%|██████▌ | 13/20 [00:03<00:01, 3.65it/s] 70%|███████ | 14/20 [00:03<00:01, 3.65it/s] 75%|███████▌ | 15/20 [00:04<00:01, 3.65it/s] 80%|████████ | 16/20 [00:04<00:01, 3.65it/s] 85%|████████▌ | 17/20 [00:04<00:00, 3.65it/s] 90%|█████████ | 18/20 [00:04<00:00, 3.65it/s] 95%|█████████▌| 19/20 [00:05<00:00, 3.65it/s] 100%|██████████| 20/20 [00:05<00:00, 3.64it/s] 100%|██████████| 20/20 [00:05<00:00, 3.65it/s]
Prediction
geeklab-ltd/app-icon-generator:342273f7ebbf8a2dfe74e27d0ec50b42bc314887b2ee19560791b52d71093192ID2tqsp3lbnqf7klaiuqkwxlbaguStatusSucceededSourceWebHardwareA40 (Large)Total durationCreatedInput
- seed
- 24048
- width
- 1024
- height
- 1024
- prompt
- GP, Close up of a fierce warrior, 3d character,image of app icon, app icon, mobile app icon, stylized, mobile game icon
- refine
- no_refiner
- scheduler
- K_EULER_ANCESTRAL
- lora_scale
- 0.6
- num_outputs
- 1
- guidance_scale
- 8
- apply_watermark
- high_noise_frac
- 0.8
- negative_prompt
- Text, logo,(worst quality:1.5), (low quality:1.5), (normal quality:1.5), lowres, bad anatomy, bad hands, multiple eyebrow, (cropped), extra limb, missing limbs, deformed hands, long neck, long body, (bad hands), signature, username, artist name, conjoined fingers, deformed fingers, ugly eyes, imperfect eyes, skewed eyes, unnatural face, unnatural body, error, painting by bad-artist,nsfw,porn,nudity,sexy
- prompt_strength
- 0.8
- num_inference_steps
- 20
{ "seed": 24048, "width": 1024, "height": 1024, "prompt": "GP, Close up of a fierce warrior, 3d character,image of app icon, app icon, mobile app icon, stylized, mobile game icon", "refine": "no_refiner", "scheduler": "K_EULER_ANCESTRAL", "lora_scale": 0.6, "num_outputs": 1, "guidance_scale": 8, "apply_watermark": false, "high_noise_frac": 0.8, "negative_prompt": "Text, logo,(worst quality:1.5), (low quality:1.5), (normal quality:1.5), lowres, bad anatomy, bad hands, multiple eyebrow, (cropped), extra limb, missing limbs, deformed hands, long neck, long body, (bad hands), signature, username, artist name, conjoined fingers, deformed fingers, ugly eyes, imperfect eyes, skewed eyes, unnatural face, unnatural body, error, painting by bad-artist,nsfw,porn,nudity,sexy", "prompt_strength": 0.8, "num_inference_steps": 20 }
Install Replicate’s Node.js client library:npm install replicate
Import and set up the client:import Replicate from "replicate"; const replicate = new Replicate({ auth: process.env.REPLICATE_API_TOKEN, });
Run geeklab-ltd/app-icon-generator using Replicate’s API. Check out the model's schema for an overview of inputs and outputs.
const output = await replicate.run( "geeklab-ltd/app-icon-generator:342273f7ebbf8a2dfe74e27d0ec50b42bc314887b2ee19560791b52d71093192", { input: { seed: 24048, width: 1024, height: 1024, prompt: "GP, Close up of a fierce warrior, 3d character,image of app icon, app icon, mobile app icon, stylized, mobile game icon", refine: "no_refiner", scheduler: "K_EULER_ANCESTRAL", lora_scale: 0.6, num_outputs: 1, guidance_scale: 8, apply_watermark: false, high_noise_frac: 0.8, negative_prompt: "Text, logo,(worst quality:1.5), (low quality:1.5), (normal quality:1.5), lowres, bad anatomy, bad hands, multiple eyebrow, (cropped), extra limb, missing limbs, deformed hands, long neck, long body, (bad hands), signature, username, artist name, conjoined fingers, deformed fingers, ugly eyes, imperfect eyes, skewed eyes, unnatural face, unnatural body, error, painting by bad-artist,nsfw,porn,nudity,sexy", prompt_strength: 0.8, num_inference_steps: 20 } } ); // 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 geeklab-ltd/app-icon-generator using Replicate’s API. Check out the model's schema for an overview of inputs and outputs.
output = replicate.run( "geeklab-ltd/app-icon-generator:342273f7ebbf8a2dfe74e27d0ec50b42bc314887b2ee19560791b52d71093192", input={ "seed": 24048, "width": 1024, "height": 1024, "prompt": "GP, Close up of a fierce warrior, 3d character,image of app icon, app icon, mobile app icon, stylized, mobile game icon", "refine": "no_refiner", "scheduler": "K_EULER_ANCESTRAL", "lora_scale": 0.6, "num_outputs": 1, "guidance_scale": 8, "apply_watermark": False, "high_noise_frac": 0.8, "negative_prompt": "Text, logo,(worst quality:1.5), (low quality:1.5), (normal quality:1.5), lowres, bad anatomy, bad hands, multiple eyebrow, (cropped), extra limb, missing limbs, deformed hands, long neck, long body, (bad hands), signature, username, artist name, conjoined fingers, deformed fingers, ugly eyes, imperfect eyes, skewed eyes, unnatural face, unnatural body, error, painting by bad-artist,nsfw,porn,nudity,sexy", "prompt_strength": 0.8, "num_inference_steps": 20 } ) print(output)
To learn more, take a look at the guide on getting started with Python.
Run geeklab-ltd/app-icon-generator 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": "geeklab-ltd/app-icon-generator:342273f7ebbf8a2dfe74e27d0ec50b42bc314887b2ee19560791b52d71093192", "input": { "seed": 24048, "width": 1024, "height": 1024, "prompt": "GP, Close up of a fierce warrior, 3d character,image of app icon, app icon, mobile app icon, stylized, mobile game icon", "refine": "no_refiner", "scheduler": "K_EULER_ANCESTRAL", "lora_scale": 0.6, "num_outputs": 1, "guidance_scale": 8, "apply_watermark": false, "high_noise_frac": 0.8, "negative_prompt": "Text, logo,(worst quality:1.5), (low quality:1.5), (normal quality:1.5), lowres, bad anatomy, bad hands, multiple eyebrow, (cropped), extra limb, missing limbs, deformed hands, long neck, long body, (bad hands), signature, username, artist name, conjoined fingers, deformed fingers, ugly eyes, imperfect eyes, skewed eyes, unnatural face, unnatural body, error, painting by bad-artist,nsfw,porn,nudity,sexy", "prompt_strength": 0.8, "num_inference_steps": 20 } }' \ https://api.replicate.com/v1/predictions
To learn more, take a look at Replicate’s HTTP API reference docs.
Output
{ "completed_at": "2023-12-11T21:05:15.032939Z", "created_at": "2023-12-11T21:05:02.522048Z", "data_removed": false, "error": null, "id": "2tqsp3lbnqf7klaiuqkwxlbagu", "input": { "seed": 24048, "width": 1024, "height": 1024, "prompt": "GP, Close up of a fierce warrior, 3d character,image of app icon, app icon, mobile app icon, stylized, mobile game icon", "refine": "no_refiner", "scheduler": "K_EULER_ANCESTRAL", "lora_scale": 0.6, "num_outputs": 1, "guidance_scale": 8, "apply_watermark": false, "high_noise_frac": 0.8, "negative_prompt": "Text, logo,(worst quality:1.5), (low quality:1.5), (normal quality:1.5), lowres, bad anatomy, bad hands, multiple eyebrow, (cropped), extra limb, missing limbs, deformed hands, long neck, long body, (bad hands), signature, username, artist name, conjoined fingers, deformed fingers, ugly eyes, imperfect eyes, skewed eyes, unnatural face, unnatural body, error, painting by bad-artist,nsfw,porn,nudity,sexy", "prompt_strength": 0.8, "num_inference_steps": 20 }, "logs": "Using seed: 24048\nEnsuring enough disk space...\nFree disk space: 2209233031168\nDownloading weights: https://replicate.delivery/pbxt/GMekeZFreQWDFIHoW7g3mfUDjuweMJL0OzVbt7qWJoEMZ0JQC/trained_model.tar\nb'Downloaded 186 MB bytes in 0.240s (774 MB/s)\\nExtracted 186 MB in 0.069s (2.7 GB/s)\\n'\nDownloaded weights in 0.5054874420166016 seconds\nLoading fine-tuned model\nDoes not have Unet. assume we are using LoRA\nLoading Unet LoRA\nPrompt: GP, Close up of a fierce warrior, 3d character,image of <s0><s1>, <s0><s1>, mobile <s0><s1>, stylized, mobile game icon\ntxt2img mode\n 0%| | 0/20 [00:00<?, ?it/s]\n 5%|▌ | 1/20 [00:00<00:05, 3.66it/s]\n 10%|█ | 2/20 [00:00<00:04, 3.66it/s]\n 15%|█▌ | 3/20 [00:00<00:04, 3.66it/s]\n 20%|██ | 4/20 [00:01<00:04, 3.67it/s]\n 25%|██▌ | 5/20 [00:01<00:04, 3.67it/s]\n 30%|███ | 6/20 [00:01<00:03, 3.66it/s]\n 35%|███▌ | 7/20 [00:01<00:03, 3.66it/s]\n 40%|████ | 8/20 [00:02<00:03, 3.66it/s]\n 45%|████▌ | 9/20 [00:02<00:03, 3.66it/s]\n 50%|█████ | 10/20 [00:02<00:02, 3.66it/s]\n 55%|█████▌ | 11/20 [00:03<00:02, 3.65it/s]\n 60%|██████ | 12/20 [00:03<00:02, 3.65it/s]\n 65%|██████▌ | 13/20 [00:03<00:01, 3.65it/s]\n 70%|███████ | 14/20 [00:03<00:01, 3.65it/s]\n 75%|███████▌ | 15/20 [00:04<00:01, 3.65it/s]\n 80%|████████ | 16/20 [00:04<00:01, 3.65it/s]\n 85%|████████▌ | 17/20 [00:04<00:00, 3.65it/s]\n 90%|█████████ | 18/20 [00:04<00:00, 3.65it/s]\n 95%|█████████▌| 19/20 [00:05<00:00, 3.64it/s]\n100%|██████████| 20/20 [00:05<00:00, 3.64it/s]\n100%|██████████| 20/20 [00:05<00:00, 3.65it/s]", "metrics": { "predict_time": 8.35803, "total_time": 12.510891 }, "output": [ "https://replicate.delivery/pbxt/HNasDcLw1y5cCFveIbg3R0k1ivPEZH4BNtAOMXQfQXSKuSBSA/out-0.png" ], "started_at": "2023-12-11T21:05:06.674909Z", "status": "succeeded", "urls": { "get": "https://api.replicate.com/v1/predictions/2tqsp3lbnqf7klaiuqkwxlbagu", "cancel": "https://api.replicate.com/v1/predictions/2tqsp3lbnqf7klaiuqkwxlbagu/cancel" }, "version": "342273f7ebbf8a2dfe74e27d0ec50b42bc314887b2ee19560791b52d71093192" }
Generated inUsing seed: 24048 Ensuring enough disk space... Free disk space: 2209233031168 Downloading weights: https://replicate.delivery/pbxt/GMekeZFreQWDFIHoW7g3mfUDjuweMJL0OzVbt7qWJoEMZ0JQC/trained_model.tar b'Downloaded 186 MB bytes in 0.240s (774 MB/s)\nExtracted 186 MB in 0.069s (2.7 GB/s)\n' Downloaded weights in 0.5054874420166016 seconds Loading fine-tuned model Does not have Unet. assume we are using LoRA Loading Unet LoRA Prompt: GP, Close up of a fierce warrior, 3d character,image of <s0><s1>, <s0><s1>, mobile <s0><s1>, stylized, mobile game icon txt2img mode 0%| | 0/20 [00:00<?, ?it/s] 5%|▌ | 1/20 [00:00<00:05, 3.66it/s] 10%|█ | 2/20 [00:00<00:04, 3.66it/s] 15%|█▌ | 3/20 [00:00<00:04, 3.66it/s] 20%|██ | 4/20 [00:01<00:04, 3.67it/s] 25%|██▌ | 5/20 [00:01<00:04, 3.67it/s] 30%|███ | 6/20 [00:01<00:03, 3.66it/s] 35%|███▌ | 7/20 [00:01<00:03, 3.66it/s] 40%|████ | 8/20 [00:02<00:03, 3.66it/s] 45%|████▌ | 9/20 [00:02<00:03, 3.66it/s] 50%|█████ | 10/20 [00:02<00:02, 3.66it/s] 55%|█████▌ | 11/20 [00:03<00:02, 3.65it/s] 60%|██████ | 12/20 [00:03<00:02, 3.65it/s] 65%|██████▌ | 13/20 [00:03<00:01, 3.65it/s] 70%|███████ | 14/20 [00:03<00:01, 3.65it/s] 75%|███████▌ | 15/20 [00:04<00:01, 3.65it/s] 80%|████████ | 16/20 [00:04<00:01, 3.65it/s] 85%|████████▌ | 17/20 [00:04<00:00, 3.65it/s] 90%|█████████ | 18/20 [00:04<00:00, 3.65it/s] 95%|█████████▌| 19/20 [00:05<00:00, 3.64it/s] 100%|██████████| 20/20 [00:05<00:00, 3.64it/s] 100%|██████████| 20/20 [00:05<00:00, 3.65it/s]
Prediction
geeklab-ltd/app-icon-generator:342273f7ebbf8a2dfe74e27d0ec50b42bc314887b2ee19560791b52d71093192IDbb2tdddbrt5y3usxlordtfrmomStatusSucceededSourceWebHardwareA40 (Large)Total durationCreatedInput
- seed
- 24048
- width
- 1024
- height
- 1024
- prompt
- iOS, strategy category, Close up of a fierce warrior, 3d character,image of app icon, app icon, mobile app icon, stylized, mobile game icon
- refine
- no_refiner
- scheduler
- K_EULER_ANCESTRAL
- lora_scale
- 0.6
- num_outputs
- 1
- guidance_scale
- 8
- apply_watermark
- high_noise_frac
- 0.8
- negative_prompt
- Text, logo,(worst quality:1.5), (low quality:1.5), (normal quality:1.5), lowres, bad anatomy, bad hands, multiple eyebrow, (cropped), extra limb, missing limbs, deformed hands, long neck, long body, (bad hands), signature, username, artist name, conjoined fingers, deformed fingers, ugly eyes, imperfect eyes, skewed eyes, unnatural face, unnatural body, error, painting by bad-artist,nsfw,porn,nudity,sexy
- prompt_strength
- 0.8
- num_inference_steps
- 20
{ "seed": 24048, "width": 1024, "height": 1024, "prompt": "iOS, strategy category, Close up of a fierce warrior, 3d character,image of app icon, app icon, mobile app icon, stylized, mobile game icon", "refine": "no_refiner", "scheduler": "K_EULER_ANCESTRAL", "lora_scale": 0.6, "num_outputs": 1, "guidance_scale": 8, "apply_watermark": false, "high_noise_frac": 0.8, "negative_prompt": "Text, logo,(worst quality:1.5), (low quality:1.5), (normal quality:1.5), lowres, bad anatomy, bad hands, multiple eyebrow, (cropped), extra limb, missing limbs, deformed hands, long neck, long body, (bad hands), signature, username, artist name, conjoined fingers, deformed fingers, ugly eyes, imperfect eyes, skewed eyes, unnatural face, unnatural body, error, painting by bad-artist,nsfw,porn,nudity,sexy", "prompt_strength": 0.8, "num_inference_steps": 20 }
Install Replicate’s Node.js client library:npm install replicate
Import and set up the client:import Replicate from "replicate"; const replicate = new Replicate({ auth: process.env.REPLICATE_API_TOKEN, });
Run geeklab-ltd/app-icon-generator using Replicate’s API. Check out the model's schema for an overview of inputs and outputs.
const output = await replicate.run( "geeklab-ltd/app-icon-generator:342273f7ebbf8a2dfe74e27d0ec50b42bc314887b2ee19560791b52d71093192", { input: { seed: 24048, width: 1024, height: 1024, prompt: "iOS, strategy category, Close up of a fierce warrior, 3d character,image of app icon, app icon, mobile app icon, stylized, mobile game icon", refine: "no_refiner", scheduler: "K_EULER_ANCESTRAL", lora_scale: 0.6, num_outputs: 1, guidance_scale: 8, apply_watermark: false, high_noise_frac: 0.8, negative_prompt: "Text, logo,(worst quality:1.5), (low quality:1.5), (normal quality:1.5), lowres, bad anatomy, bad hands, multiple eyebrow, (cropped), extra limb, missing limbs, deformed hands, long neck, long body, (bad hands), signature, username, artist name, conjoined fingers, deformed fingers, ugly eyes, imperfect eyes, skewed eyes, unnatural face, unnatural body, error, painting by bad-artist,nsfw,porn,nudity,sexy", prompt_strength: 0.8, num_inference_steps: 20 } } ); // 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 geeklab-ltd/app-icon-generator using Replicate’s API. Check out the model's schema for an overview of inputs and outputs.
output = replicate.run( "geeklab-ltd/app-icon-generator:342273f7ebbf8a2dfe74e27d0ec50b42bc314887b2ee19560791b52d71093192", input={ "seed": 24048, "width": 1024, "height": 1024, "prompt": "iOS, strategy category, Close up of a fierce warrior, 3d character,image of app icon, app icon, mobile app icon, stylized, mobile game icon", "refine": "no_refiner", "scheduler": "K_EULER_ANCESTRAL", "lora_scale": 0.6, "num_outputs": 1, "guidance_scale": 8, "apply_watermark": False, "high_noise_frac": 0.8, "negative_prompt": "Text, logo,(worst quality:1.5), (low quality:1.5), (normal quality:1.5), lowres, bad anatomy, bad hands, multiple eyebrow, (cropped), extra limb, missing limbs, deformed hands, long neck, long body, (bad hands), signature, username, artist name, conjoined fingers, deformed fingers, ugly eyes, imperfect eyes, skewed eyes, unnatural face, unnatural body, error, painting by bad-artist,nsfw,porn,nudity,sexy", "prompt_strength": 0.8, "num_inference_steps": 20 } ) print(output)
To learn more, take a look at the guide on getting started with Python.
Run geeklab-ltd/app-icon-generator 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": "geeklab-ltd/app-icon-generator:342273f7ebbf8a2dfe74e27d0ec50b42bc314887b2ee19560791b52d71093192", "input": { "seed": 24048, "width": 1024, "height": 1024, "prompt": "iOS, strategy category, Close up of a fierce warrior, 3d character,image of app icon, app icon, mobile app icon, stylized, mobile game icon", "refine": "no_refiner", "scheduler": "K_EULER_ANCESTRAL", "lora_scale": 0.6, "num_outputs": 1, "guidance_scale": 8, "apply_watermark": false, "high_noise_frac": 0.8, "negative_prompt": "Text, logo,(worst quality:1.5), (low quality:1.5), (normal quality:1.5), lowres, bad anatomy, bad hands, multiple eyebrow, (cropped), extra limb, missing limbs, deformed hands, long neck, long body, (bad hands), signature, username, artist name, conjoined fingers, deformed fingers, ugly eyes, imperfect eyes, skewed eyes, unnatural face, unnatural body, error, painting by bad-artist,nsfw,porn,nudity,sexy", "prompt_strength": 0.8, "num_inference_steps": 20 } }' \ https://api.replicate.com/v1/predictions
To learn more, take a look at Replicate’s HTTP API reference docs.
Output
{ "completed_at": "2023-12-11T21:06:02.734431Z", "created_at": "2023-12-11T21:05:53.595191Z", "data_removed": false, "error": null, "id": "bb2tdddbrt5y3usxlordtfrmom", "input": { "seed": 24048, "width": 1024, "height": 1024, "prompt": "iOS, strategy category, Close up of a fierce warrior, 3d character,image of app icon, app icon, mobile app icon, stylized, mobile game icon", "refine": "no_refiner", "scheduler": "K_EULER_ANCESTRAL", "lora_scale": 0.6, "num_outputs": 1, "guidance_scale": 8, "apply_watermark": false, "high_noise_frac": 0.8, "negative_prompt": "Text, logo,(worst quality:1.5), (low quality:1.5), (normal quality:1.5), lowres, bad anatomy, bad hands, multiple eyebrow, (cropped), extra limb, missing limbs, deformed hands, long neck, long body, (bad hands), signature, username, artist name, conjoined fingers, deformed fingers, ugly eyes, imperfect eyes, skewed eyes, unnatural face, unnatural body, error, painting by bad-artist,nsfw,porn,nudity,sexy", "prompt_strength": 0.8, "num_inference_steps": 20 }, "logs": "Using seed: 24048\nLoading fine-tuned model\nDoes not have Unet. assume we are using LoRA\nLoading Unet LoRA\nPrompt: iOS, strategy category, Close up of a fierce warrior, 3d character,image of <s0><s1>, <s0><s1>, mobile <s0><s1>, stylized, mobile game icon\ntxt2img mode\n 0%| | 0/20 [00:00<?, ?it/s]\n 5%|▌ | 1/20 [00:00<00:05, 3.69it/s]\n 10%|█ | 2/20 [00:00<00:04, 3.68it/s]\n 15%|█▌ | 3/20 [00:00<00:04, 3.68it/s]\n 20%|██ | 4/20 [00:01<00:04, 3.67it/s]\n 25%|██▌ | 5/20 [00:01<00:04, 3.66it/s]\n 30%|███ | 6/20 [00:01<00:03, 3.66it/s]\n 35%|███▌ | 7/20 [00:01<00:03, 3.66it/s]\n 40%|████ | 8/20 [00:02<00:03, 3.66it/s]\n 45%|████▌ | 9/20 [00:02<00:03, 3.66it/s]\n 50%|█████ | 10/20 [00:02<00:02, 3.66it/s]\n 55%|█████▌ | 11/20 [00:03<00:02, 3.66it/s]\n 60%|██████ | 12/20 [00:03<00:02, 3.66it/s]\n 65%|██████▌ | 13/20 [00:03<00:01, 3.65it/s]\n 70%|███████ | 14/20 [00:03<00:01, 3.66it/s]\n 75%|███████▌ | 15/20 [00:04<00:01, 3.66it/s]\n 80%|████████ | 16/20 [00:04<00:01, 3.66it/s]\n 85%|████████▌ | 17/20 [00:04<00:00, 3.66it/s]\n 90%|█████████ | 18/20 [00:04<00:00, 3.67it/s]\n 95%|█████████▌| 19/20 [00:05<00:00, 3.67it/s]\n100%|██████████| 20/20 [00:05<00:00, 3.67it/s]\n100%|██████████| 20/20 [00:05<00:00, 3.66it/s]", "metrics": { "predict_time": 7.312689, "total_time": 9.13924 }, "output": [ "https://replicate.delivery/pbxt/DD0pQzFsKtZ2EV1BDFHihq5cg6kYqBWp9X3e1u5seDH6uSBSA/out-0.png" ], "started_at": "2023-12-11T21:05:55.421742Z", "status": "succeeded", "urls": { "get": "https://api.replicate.com/v1/predictions/bb2tdddbrt5y3usxlordtfrmom", "cancel": "https://api.replicate.com/v1/predictions/bb2tdddbrt5y3usxlordtfrmom/cancel" }, "version": "342273f7ebbf8a2dfe74e27d0ec50b42bc314887b2ee19560791b52d71093192" }
Generated inUsing seed: 24048 Loading fine-tuned model Does not have Unet. assume we are using LoRA Loading Unet LoRA Prompt: iOS, strategy category, Close up of a fierce warrior, 3d character,image of <s0><s1>, <s0><s1>, mobile <s0><s1>, stylized, mobile game icon txt2img mode 0%| | 0/20 [00:00<?, ?it/s] 5%|▌ | 1/20 [00:00<00:05, 3.69it/s] 10%|█ | 2/20 [00:00<00:04, 3.68it/s] 15%|█▌ | 3/20 [00:00<00:04, 3.68it/s] 20%|██ | 4/20 [00:01<00:04, 3.67it/s] 25%|██▌ | 5/20 [00:01<00:04, 3.66it/s] 30%|███ | 6/20 [00:01<00:03, 3.66it/s] 35%|███▌ | 7/20 [00:01<00:03, 3.66it/s] 40%|████ | 8/20 [00:02<00:03, 3.66it/s] 45%|████▌ | 9/20 [00:02<00:03, 3.66it/s] 50%|█████ | 10/20 [00:02<00:02, 3.66it/s] 55%|█████▌ | 11/20 [00:03<00:02, 3.66it/s] 60%|██████ | 12/20 [00:03<00:02, 3.66it/s] 65%|██████▌ | 13/20 [00:03<00:01, 3.65it/s] 70%|███████ | 14/20 [00:03<00:01, 3.66it/s] 75%|███████▌ | 15/20 [00:04<00:01, 3.66it/s] 80%|████████ | 16/20 [00:04<00:01, 3.66it/s] 85%|████████▌ | 17/20 [00:04<00:00, 3.66it/s] 90%|█████████ | 18/20 [00:04<00:00, 3.67it/s] 95%|█████████▌| 19/20 [00:05<00:00, 3.67it/s] 100%|██████████| 20/20 [00:05<00:00, 3.67it/s] 100%|██████████| 20/20 [00:05<00:00, 3.66it/s]
Prediction
geeklab-ltd/app-icon-generator:342273f7ebbf8a2dfe74e27d0ec50b42bc314887b2ee19560791b52d71093192IDdwzpzbtbssiwohpczreh3mrdiqStatusSucceededSourceWebHardwareA40 (Large)Total durationCreatedInput
- seed
- 24048
- width
- 1024
- height
- 1024
- prompt
- iOS, simulation category, Close up of a fierce warrior, 3d character,image of app icon, app icon, mobile app icon, stylized, mobile game icon
- refine
- no_refiner
- scheduler
- K_EULER_ANCESTRAL
- lora_scale
- 0.6
- num_outputs
- 1
- guidance_scale
- 8
- apply_watermark
- high_noise_frac
- 0.8
- negative_prompt
- Text, logo,(worst quality:1.5), (low quality:1.5), (normal quality:1.5), lowres, bad anatomy, bad hands, multiple eyebrow, (cropped), extra limb, missing limbs, deformed hands, long neck, long body, (bad hands), signature, username, artist name, conjoined fingers, deformed fingers, ugly eyes, imperfect eyes, skewed eyes, unnatural face, unnatural body, error, painting by bad-artist,nsfw,porn,nudity,sexy
- prompt_strength
- 0.8
- num_inference_steps
- 20
{ "seed": 24048, "width": 1024, "height": 1024, "prompt": "iOS, simulation category, Close up of a fierce warrior, 3d character,image of app icon, app icon, mobile app icon, stylized, mobile game icon", "refine": "no_refiner", "scheduler": "K_EULER_ANCESTRAL", "lora_scale": 0.6, "num_outputs": 1, "guidance_scale": 8, "apply_watermark": false, "high_noise_frac": 0.8, "negative_prompt": "Text, logo,(worst quality:1.5), (low quality:1.5), (normal quality:1.5), lowres, bad anatomy, bad hands, multiple eyebrow, (cropped), extra limb, missing limbs, deformed hands, long neck, long body, (bad hands), signature, username, artist name, conjoined fingers, deformed fingers, ugly eyes, imperfect eyes, skewed eyes, unnatural face, unnatural body, error, painting by bad-artist,nsfw,porn,nudity,sexy", "prompt_strength": 0.8, "num_inference_steps": 20 }
Install Replicate’s Node.js client library:npm install replicate
Import and set up the client:import Replicate from "replicate"; const replicate = new Replicate({ auth: process.env.REPLICATE_API_TOKEN, });
Run geeklab-ltd/app-icon-generator using Replicate’s API. Check out the model's schema for an overview of inputs and outputs.
const output = await replicate.run( "geeklab-ltd/app-icon-generator:342273f7ebbf8a2dfe74e27d0ec50b42bc314887b2ee19560791b52d71093192", { input: { seed: 24048, width: 1024, height: 1024, prompt: "iOS, simulation category, Close up of a fierce warrior, 3d character,image of app icon, app icon, mobile app icon, stylized, mobile game icon", refine: "no_refiner", scheduler: "K_EULER_ANCESTRAL", lora_scale: 0.6, num_outputs: 1, guidance_scale: 8, apply_watermark: false, high_noise_frac: 0.8, negative_prompt: "Text, logo,(worst quality:1.5), (low quality:1.5), (normal quality:1.5), lowres, bad anatomy, bad hands, multiple eyebrow, (cropped), extra limb, missing limbs, deformed hands, long neck, long body, (bad hands), signature, username, artist name, conjoined fingers, deformed fingers, ugly eyes, imperfect eyes, skewed eyes, unnatural face, unnatural body, error, painting by bad-artist,nsfw,porn,nudity,sexy", prompt_strength: 0.8, num_inference_steps: 20 } } ); // 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 geeklab-ltd/app-icon-generator using Replicate’s API. Check out the model's schema for an overview of inputs and outputs.
output = replicate.run( "geeklab-ltd/app-icon-generator:342273f7ebbf8a2dfe74e27d0ec50b42bc314887b2ee19560791b52d71093192", input={ "seed": 24048, "width": 1024, "height": 1024, "prompt": "iOS, simulation category, Close up of a fierce warrior, 3d character,image of app icon, app icon, mobile app icon, stylized, mobile game icon", "refine": "no_refiner", "scheduler": "K_EULER_ANCESTRAL", "lora_scale": 0.6, "num_outputs": 1, "guidance_scale": 8, "apply_watermark": False, "high_noise_frac": 0.8, "negative_prompt": "Text, logo,(worst quality:1.5), (low quality:1.5), (normal quality:1.5), lowres, bad anatomy, bad hands, multiple eyebrow, (cropped), extra limb, missing limbs, deformed hands, long neck, long body, (bad hands), signature, username, artist name, conjoined fingers, deformed fingers, ugly eyes, imperfect eyes, skewed eyes, unnatural face, unnatural body, error, painting by bad-artist,nsfw,porn,nudity,sexy", "prompt_strength": 0.8, "num_inference_steps": 20 } ) print(output)
To learn more, take a look at the guide on getting started with Python.
Run geeklab-ltd/app-icon-generator 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": "geeklab-ltd/app-icon-generator:342273f7ebbf8a2dfe74e27d0ec50b42bc314887b2ee19560791b52d71093192", "input": { "seed": 24048, "width": 1024, "height": 1024, "prompt": "iOS, simulation category, Close up of a fierce warrior, 3d character,image of app icon, app icon, mobile app icon, stylized, mobile game icon", "refine": "no_refiner", "scheduler": "K_EULER_ANCESTRAL", "lora_scale": 0.6, "num_outputs": 1, "guidance_scale": 8, "apply_watermark": false, "high_noise_frac": 0.8, "negative_prompt": "Text, logo,(worst quality:1.5), (low quality:1.5), (normal quality:1.5), lowres, bad anatomy, bad hands, multiple eyebrow, (cropped), extra limb, missing limbs, deformed hands, long neck, long body, (bad hands), signature, username, artist name, conjoined fingers, deformed fingers, ugly eyes, imperfect eyes, skewed eyes, unnatural face, unnatural body, error, painting by bad-artist,nsfw,porn,nudity,sexy", "prompt_strength": 0.8, "num_inference_steps": 20 } }' \ https://api.replicate.com/v1/predictions
To learn more, take a look at Replicate’s HTTP API reference docs.
Output
{ "completed_at": "2023-12-11T21:07:11.415727Z", "created_at": "2023-12-11T21:06:51.237682Z", "data_removed": false, "error": null, "id": "dwzpzbtbssiwohpczreh3mrdiq", "input": { "seed": 24048, "width": 1024, "height": 1024, "prompt": "iOS, simulation category, Close up of a fierce warrior, 3d character,image of app icon, app icon, mobile app icon, stylized, mobile game icon", "refine": "no_refiner", "scheduler": "K_EULER_ANCESTRAL", "lora_scale": 0.6, "num_outputs": 1, "guidance_scale": 8, "apply_watermark": false, "high_noise_frac": 0.8, "negative_prompt": "Text, logo,(worst quality:1.5), (low quality:1.5), (normal quality:1.5), lowres, bad anatomy, bad hands, multiple eyebrow, (cropped), extra limb, missing limbs, deformed hands, long neck, long body, (bad hands), signature, username, artist name, conjoined fingers, deformed fingers, ugly eyes, imperfect eyes, skewed eyes, unnatural face, unnatural body, error, painting by bad-artist,nsfw,porn,nudity,sexy", "prompt_strength": 0.8, "num_inference_steps": 20 }, "logs": "Using seed: 24048\nLoading fine-tuned model\nDoes not have Unet. assume we are using LoRA\nLoading Unet LoRA\nPrompt: iOS, simulation category, Close up of a fierce warrior, 3d character,image of <s0><s1>, <s0><s1>, mobile <s0><s1>, stylized, mobile game icon\ntxt2img mode\n 0%| | 0/20 [00:00<?, ?it/s]\n 5%|▌ | 1/20 [00:00<00:05, 3.66it/s]\n 10%|█ | 2/20 [00:00<00:04, 3.65it/s]\n 15%|█▌ | 3/20 [00:00<00:04, 3.65it/s]\n 20%|██ | 4/20 [00:01<00:04, 3.64it/s]\n 25%|██▌ | 5/20 [00:01<00:04, 3.64it/s]\n 30%|███ | 6/20 [00:01<00:03, 3.64it/s]\n 35%|███▌ | 7/20 [00:01<00:03, 3.64it/s]\n 40%|████ | 8/20 [00:02<00:03, 3.64it/s]\n 45%|████▌ | 9/20 [00:02<00:03, 3.63it/s]\n 50%|█████ | 10/20 [00:02<00:02, 3.64it/s]\n 55%|█████▌ | 11/20 [00:03<00:02, 3.64it/s]\n 60%|██████ | 12/20 [00:03<00:02, 3.65it/s]\n 65%|██████▌ | 13/20 [00:03<00:01, 3.65it/s]\n 70%|███████ | 14/20 [00:03<00:01, 3.65it/s]\n 75%|███████▌ | 15/20 [00:04<00:01, 3.65it/s]\n 80%|████████ | 16/20 [00:04<00:01, 3.65it/s]\n 85%|████████▌ | 17/20 [00:04<00:00, 3.65it/s]\n 90%|█████████ | 18/20 [00:04<00:00, 3.65it/s]\n 95%|█████████▌| 19/20 [00:05<00:00, 3.65it/s]\n100%|██████████| 20/20 [00:05<00:00, 3.65it/s]\n100%|██████████| 20/20 [00:05<00:00, 3.65it/s]", "metrics": { "predict_time": 7.291046, "total_time": 20.178045 }, "output": [ "https://replicate.delivery/pbxt/cY4GfQ1xjS1TTi7NP5wB6EgNoeDPHhHvfjFQi2saTFJ9fKFIB/out-0.png" ], "started_at": "2023-12-11T21:07:04.124681Z", "status": "succeeded", "urls": { "get": "https://api.replicate.com/v1/predictions/dwzpzbtbssiwohpczreh3mrdiq", "cancel": "https://api.replicate.com/v1/predictions/dwzpzbtbssiwohpczreh3mrdiq/cancel" }, "version": "342273f7ebbf8a2dfe74e27d0ec50b42bc314887b2ee19560791b52d71093192" }
Generated inUsing seed: 24048 Loading fine-tuned model Does not have Unet. assume we are using LoRA Loading Unet LoRA Prompt: iOS, simulation category, Close up of a fierce warrior, 3d character,image of <s0><s1>, <s0><s1>, mobile <s0><s1>, stylized, mobile game icon txt2img mode 0%| | 0/20 [00:00<?, ?it/s] 5%|▌ | 1/20 [00:00<00:05, 3.66it/s] 10%|█ | 2/20 [00:00<00:04, 3.65it/s] 15%|█▌ | 3/20 [00:00<00:04, 3.65it/s] 20%|██ | 4/20 [00:01<00:04, 3.64it/s] 25%|██▌ | 5/20 [00:01<00:04, 3.64it/s] 30%|███ | 6/20 [00:01<00:03, 3.64it/s] 35%|███▌ | 7/20 [00:01<00:03, 3.64it/s] 40%|████ | 8/20 [00:02<00:03, 3.64it/s] 45%|████▌ | 9/20 [00:02<00:03, 3.63it/s] 50%|█████ | 10/20 [00:02<00:02, 3.64it/s] 55%|█████▌ | 11/20 [00:03<00:02, 3.64it/s] 60%|██████ | 12/20 [00:03<00:02, 3.65it/s] 65%|██████▌ | 13/20 [00:03<00:01, 3.65it/s] 70%|███████ | 14/20 [00:03<00:01, 3.65it/s] 75%|███████▌ | 15/20 [00:04<00:01, 3.65it/s] 80%|████████ | 16/20 [00:04<00:01, 3.65it/s] 85%|████████▌ | 17/20 [00:04<00:00, 3.65it/s] 90%|█████████ | 18/20 [00:04<00:00, 3.65it/s] 95%|█████████▌| 19/20 [00:05<00:00, 3.65it/s] 100%|██████████| 20/20 [00:05<00:00, 3.65it/s] 100%|██████████| 20/20 [00:05<00:00, 3.65it/s]
Prediction
geeklab-ltd/app-icon-generator:5d87c4f7ed45e7f42272cf3c77d20c157a8f5d58b3c9194e4de34d5dd43d3880IDabldx6lb7tyh3pqlakwynk4jhiStatusSucceededSourceWebHardwareA40 (Large)Total durationCreatedInput
- width
- 1024
- height
- 1024
- prompt
- 2d pixel wizard, standing on top of a mountain, lightning striking from the top the the wizards staff, wizard holding the staff up image of app icon,mobile app icon, stylized, mobile game icon
- refine
- no_refiner
- scheduler
- K_EULER_ANCESTRAL
- lora_scale
- 0.6
- num_outputs
- 1
- guidance_scale
- 7.5
- apply_watermark
- high_noise_frac
- 0.8
- negative_prompt
- multiple characters,(worst quality:1.5), (low quality:1.5), (normal quality:1.5), lowres, bad anatomy, bad hands, multiple eyebrow, (cropped), extra limb, missing limbs, deformed hands, long neck, long body, (bad hands), signature, username, artist name, conjoined fingers, deformed fingers, ugly eyes, imperfect eyes, skewed eyes, unnatural face, unnatural body, error, painting by bad-artist,nsfw,porn,nudity,sexy
- prompt_strength
- 0.8
- num_inference_steps
- 20
{ "width": 1024, "height": 1024, "prompt": "2d pixel wizard, standing on top of a mountain, lightning striking from the top the the wizards staff, wizard holding the staff up image of app icon,mobile app icon, stylized, mobile game icon", "refine": "no_refiner", "scheduler": "K_EULER_ANCESTRAL", "lora_scale": 0.6, "num_outputs": 1, "guidance_scale": 7.5, "apply_watermark": true, "high_noise_frac": 0.8, "negative_prompt": "multiple characters,(worst quality:1.5), (low quality:1.5), (normal quality:1.5), lowres, bad anatomy, bad hands, multiple eyebrow, (cropped), extra limb, missing limbs, deformed hands, long neck, long body, (bad hands), signature, username, artist name, conjoined fingers, deformed fingers, ugly eyes, imperfect eyes, skewed eyes, unnatural face, unnatural body, error, painting by bad-artist,nsfw,porn,nudity,sexy", "prompt_strength": 0.8, "num_inference_steps": 20 }
Install Replicate’s Node.js client library:npm install replicate
Import and set up the client:import Replicate from "replicate"; const replicate = new Replicate({ auth: process.env.REPLICATE_API_TOKEN, });
Run geeklab-ltd/app-icon-generator using Replicate’s API. Check out the model's schema for an overview of inputs and outputs.
const output = await replicate.run( "geeklab-ltd/app-icon-generator:5d87c4f7ed45e7f42272cf3c77d20c157a8f5d58b3c9194e4de34d5dd43d3880", { input: { width: 1024, height: 1024, prompt: "2d pixel wizard, standing on top of a mountain, lightning striking from the top the the wizards staff, wizard holding the staff up image of app icon,mobile app icon, stylized, mobile game icon", refine: "no_refiner", scheduler: "K_EULER_ANCESTRAL", lora_scale: 0.6, num_outputs: 1, guidance_scale: 7.5, apply_watermark: true, high_noise_frac: 0.8, negative_prompt: "multiple characters,(worst quality:1.5), (low quality:1.5), (normal quality:1.5), lowres, bad anatomy, bad hands, multiple eyebrow, (cropped), extra limb, missing limbs, deformed hands, long neck, long body, (bad hands), signature, username, artist name, conjoined fingers, deformed fingers, ugly eyes, imperfect eyes, skewed eyes, unnatural face, unnatural body, error, painting by bad-artist,nsfw,porn,nudity,sexy", prompt_strength: 0.8, num_inference_steps: 20 } } ); // 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 geeklab-ltd/app-icon-generator using Replicate’s API. Check out the model's schema for an overview of inputs and outputs.
output = replicate.run( "geeklab-ltd/app-icon-generator:5d87c4f7ed45e7f42272cf3c77d20c157a8f5d58b3c9194e4de34d5dd43d3880", input={ "width": 1024, "height": 1024, "prompt": "2d pixel wizard, standing on top of a mountain, lightning striking from the top the the wizards staff, wizard holding the staff up image of app icon,mobile app icon, stylized, mobile game icon", "refine": "no_refiner", "scheduler": "K_EULER_ANCESTRAL", "lora_scale": 0.6, "num_outputs": 1, "guidance_scale": 7.5, "apply_watermark": True, "high_noise_frac": 0.8, "negative_prompt": "multiple characters,(worst quality:1.5), (low quality:1.5), (normal quality:1.5), lowres, bad anatomy, bad hands, multiple eyebrow, (cropped), extra limb, missing limbs, deformed hands, long neck, long body, (bad hands), signature, username, artist name, conjoined fingers, deformed fingers, ugly eyes, imperfect eyes, skewed eyes, unnatural face, unnatural body, error, painting by bad-artist,nsfw,porn,nudity,sexy", "prompt_strength": 0.8, "num_inference_steps": 20 } ) print(output)
To learn more, take a look at the guide on getting started with Python.
Run geeklab-ltd/app-icon-generator 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": "geeklab-ltd/app-icon-generator:5d87c4f7ed45e7f42272cf3c77d20c157a8f5d58b3c9194e4de34d5dd43d3880", "input": { "width": 1024, "height": 1024, "prompt": "2d pixel wizard, standing on top of a mountain, lightning striking from the top the the wizards staff, wizard holding the staff up image of app icon,mobile app icon, stylized, mobile game icon", "refine": "no_refiner", "scheduler": "K_EULER_ANCESTRAL", "lora_scale": 0.6, "num_outputs": 1, "guidance_scale": 7.5, "apply_watermark": true, "high_noise_frac": 0.8, "negative_prompt": "multiple characters,(worst quality:1.5), (low quality:1.5), (normal quality:1.5), lowres, bad anatomy, bad hands, multiple eyebrow, (cropped), extra limb, missing limbs, deformed hands, long neck, long body, (bad hands), signature, username, artist name, conjoined fingers, deformed fingers, ugly eyes, imperfect eyes, skewed eyes, unnatural face, unnatural body, error, painting by bad-artist,nsfw,porn,nudity,sexy", "prompt_strength": 0.8, "num_inference_steps": 20 } }' \ https://api.replicate.com/v1/predictions
To learn more, take a look at Replicate’s HTTP API reference docs.
Output
{ "completed_at": "2023-08-21T19:29:07.250503Z", "created_at": "2023-08-21T19:28:59.909159Z", "data_removed": false, "error": null, "id": "abldx6lb7tyh3pqlakwynk4jhi", "input": { "width": 1024, "height": 1024, "prompt": "2d pixel wizard, standing on top of a mountain, lightning striking from the top the the wizards staff, wizard holding the staff up image of app icon,mobile app icon, stylized, mobile game icon", "refine": "no_refiner", "scheduler": "K_EULER_ANCESTRAL", "lora_scale": 0.6, "num_outputs": 1, "guidance_scale": 7.5, "apply_watermark": true, "high_noise_frac": 0.8, "negative_prompt": "multiple characters,(worst quality:1.5), (low quality:1.5), (normal quality:1.5), lowres, bad anatomy, bad hands, multiple eyebrow, (cropped), extra limb, missing limbs, deformed hands, long neck, long body, (bad hands), signature, username, artist name, conjoined fingers, deformed fingers, ugly eyes, imperfect eyes, skewed eyes, unnatural face, unnatural body, error, painting by bad-artist,nsfw,porn,nudity,sexy", "prompt_strength": 0.8, "num_inference_steps": 20 }, "logs": "Using seed: 32323\nPrompt: 2d pixel wizard, standing on top of a mountain, lightning striking from the top the the wizards staff, wizard holding the staff up image of <s0><s1>,mobile <s0><s1>, stylized, mobile game icon\ntxt2img mode\n 0%| | 0/20 [00:00<?, ?it/s]\n 5%|▌ | 1/20 [00:00<00:05, 3.67it/s]\n 10%|█ | 2/20 [00:00<00:04, 3.67it/s]\n 15%|█▌ | 3/20 [00:00<00:04, 3.66it/s]\n 20%|██ | 4/20 [00:01<00:04, 3.66it/s]\n 25%|██▌ | 5/20 [00:01<00:04, 3.66it/s]\n 30%|███ | 6/20 [00:01<00:03, 3.67it/s]\n 35%|███▌ | 7/20 [00:01<00:03, 3.67it/s]\n 40%|████ | 8/20 [00:02<00:03, 3.67it/s]\n 45%|████▌ | 9/20 [00:02<00:03, 3.67it/s]\n 50%|█████ | 10/20 [00:02<00:02, 3.67it/s]\n 55%|█████▌ | 11/20 [00:03<00:02, 3.67it/s]\n 60%|██████ | 12/20 [00:03<00:02, 3.67it/s]\n 65%|██████▌ | 13/20 [00:03<00:01, 3.66it/s]\n 70%|███████ | 14/20 [00:03<00:01, 3.66it/s]\n 75%|███████▌ | 15/20 [00:04<00:01, 3.66it/s]\n 80%|████████ | 16/20 [00:04<00:01, 3.66it/s]\n 85%|████████▌ | 17/20 [00:04<00:00, 3.66it/s]\n 90%|█████████ | 18/20 [00:04<00:00, 3.66it/s]\n 95%|█████████▌| 19/20 [00:05<00:00, 3.66it/s]\n100%|██████████| 20/20 [00:05<00:00, 3.66it/s]\n100%|██████████| 20/20 [00:05<00:00, 3.66it/s]", "metrics": { "predict_time": 7.428876, "total_time": 7.341344 }, "output": [ "https://replicate.delivery/pbxt/e2cTX1rhfIuLfoyKbsbumfU2TU33qxTSAR9iby1IRigJQbxFB/out-0.png" ], "started_at": "2023-08-21T19:28:59.821627Z", "status": "succeeded", "urls": { "get": "https://api.replicate.com/v1/predictions/abldx6lb7tyh3pqlakwynk4jhi", "cancel": "https://api.replicate.com/v1/predictions/abldx6lb7tyh3pqlakwynk4jhi/cancel" }, "version": "5d87c4f7ed45e7f42272cf3c77d20c157a8f5d58b3c9194e4de34d5dd43d3880" }
Generated inUsing seed: 32323 Prompt: 2d pixel wizard, standing on top of a mountain, lightning striking from the top the the wizards staff, wizard holding the staff up image of <s0><s1>,mobile <s0><s1>, stylized, mobile game icon txt2img mode 0%| | 0/20 [00:00<?, ?it/s] 5%|▌ | 1/20 [00:00<00:05, 3.67it/s] 10%|█ | 2/20 [00:00<00:04, 3.67it/s] 15%|█▌ | 3/20 [00:00<00:04, 3.66it/s] 20%|██ | 4/20 [00:01<00:04, 3.66it/s] 25%|██▌ | 5/20 [00:01<00:04, 3.66it/s] 30%|███ | 6/20 [00:01<00:03, 3.67it/s] 35%|███▌ | 7/20 [00:01<00:03, 3.67it/s] 40%|████ | 8/20 [00:02<00:03, 3.67it/s] 45%|████▌ | 9/20 [00:02<00:03, 3.67it/s] 50%|█████ | 10/20 [00:02<00:02, 3.67it/s] 55%|█████▌ | 11/20 [00:03<00:02, 3.67it/s] 60%|██████ | 12/20 [00:03<00:02, 3.67it/s] 65%|██████▌ | 13/20 [00:03<00:01, 3.66it/s] 70%|███████ | 14/20 [00:03<00:01, 3.66it/s] 75%|███████▌ | 15/20 [00:04<00:01, 3.66it/s] 80%|████████ | 16/20 [00:04<00:01, 3.66it/s] 85%|████████▌ | 17/20 [00:04<00:00, 3.66it/s] 90%|█████████ | 18/20 [00:04<00:00, 3.66it/s] 95%|█████████▌| 19/20 [00:05<00:00, 3.66it/s] 100%|██████████| 20/20 [00:05<00:00, 3.66it/s] 100%|██████████| 20/20 [00:05<00:00, 3.66it/s]
Prediction
geeklab-ltd/app-icon-generator:5d87c4f7ed45e7f42272cf3c77d20c157a8f5d58b3c9194e4de34d5dd43d3880IDxufbqtdbm5jhzj54n4dr25ez7yStatusSucceededSourceWebHardwareA40 (Large)Total durationCreatedInput
- width
- 1024
- height
- 1024
- prompt
- 3d character, young woman cook, chef hat, smiling, big eyes image of app icon,mobile app icon, stylized, mobile game icon
- refine
- no_refiner
- scheduler
- K_EULER_ANCESTRAL
- lora_scale
- 0.6
- num_outputs
- 1
- guidance_scale
- 7.5
- apply_watermark
- high_noise_frac
- 0.8
- negative_prompt
- multiple characters,(worst quality:1.5), (low quality:1.5), (normal quality:1.5), lowres, bad anatomy, bad hands, multiple eyebrow, (cropped), extra limb, missing limbs, deformed hands, long neck, long body, (bad hands), signature, username, artist name, conjoined fingers, deformed fingers, ugly eyes, imperfect eyes, skewed eyes, unnatural face, unnatural body, error, painting by bad-artist,nsfw,porn,nudity,sexy
- prompt_strength
- 0.8
- num_inference_steps
- 40
{ "width": 1024, "height": 1024, "prompt": "3d character, young woman cook, chef hat, smiling, big eyes image of app icon,mobile app icon, stylized, mobile game icon", "refine": "no_refiner", "scheduler": "K_EULER_ANCESTRAL", "lora_scale": 0.6, "num_outputs": 1, "guidance_scale": 7.5, "apply_watermark": true, "high_noise_frac": 0.8, "negative_prompt": "multiple characters,(worst quality:1.5), (low quality:1.5), (normal quality:1.5), lowres, bad anatomy, bad hands, multiple eyebrow, (cropped), extra limb, missing limbs, deformed hands, long neck, long body, (bad hands), signature, username, artist name, conjoined fingers, deformed fingers, ugly eyes, imperfect eyes, skewed eyes, unnatural face, unnatural body, error, painting by bad-artist,nsfw,porn,nudity,sexy", "prompt_strength": 0.8, "num_inference_steps": 40 }
Install Replicate’s Node.js client library:npm install replicate
Import and set up the client:import Replicate from "replicate"; const replicate = new Replicate({ auth: process.env.REPLICATE_API_TOKEN, });
Run geeklab-ltd/app-icon-generator using Replicate’s API. Check out the model's schema for an overview of inputs and outputs.
const output = await replicate.run( "geeklab-ltd/app-icon-generator:5d87c4f7ed45e7f42272cf3c77d20c157a8f5d58b3c9194e4de34d5dd43d3880", { input: { width: 1024, height: 1024, prompt: "3d character, young woman cook, chef hat, smiling, big eyes image of app icon,mobile app icon, stylized, mobile game icon", refine: "no_refiner", scheduler: "K_EULER_ANCESTRAL", lora_scale: 0.6, num_outputs: 1, guidance_scale: 7.5, apply_watermark: true, high_noise_frac: 0.8, negative_prompt: "multiple characters,(worst quality:1.5), (low quality:1.5), (normal quality:1.5), lowres, bad anatomy, bad hands, multiple eyebrow, (cropped), extra limb, missing limbs, deformed hands, long neck, long body, (bad hands), signature, username, artist name, conjoined fingers, deformed fingers, ugly eyes, imperfect eyes, skewed eyes, unnatural face, unnatural body, error, painting by bad-artist,nsfw,porn,nudity,sexy", prompt_strength: 0.8, num_inference_steps: 40 } } ); // 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 geeklab-ltd/app-icon-generator using Replicate’s API. Check out the model's schema for an overview of inputs and outputs.
output = replicate.run( "geeklab-ltd/app-icon-generator:5d87c4f7ed45e7f42272cf3c77d20c157a8f5d58b3c9194e4de34d5dd43d3880", input={ "width": 1024, "height": 1024, "prompt": "3d character, young woman cook, chef hat, smiling, big eyes image of app icon,mobile app icon, stylized, mobile game icon", "refine": "no_refiner", "scheduler": "K_EULER_ANCESTRAL", "lora_scale": 0.6, "num_outputs": 1, "guidance_scale": 7.5, "apply_watermark": True, "high_noise_frac": 0.8, "negative_prompt": "multiple characters,(worst quality:1.5), (low quality:1.5), (normal quality:1.5), lowres, bad anatomy, bad hands, multiple eyebrow, (cropped), extra limb, missing limbs, deformed hands, long neck, long body, (bad hands), signature, username, artist name, conjoined fingers, deformed fingers, ugly eyes, imperfect eyes, skewed eyes, unnatural face, unnatural body, error, painting by bad-artist,nsfw,porn,nudity,sexy", "prompt_strength": 0.8, "num_inference_steps": 40 } ) print(output)
To learn more, take a look at the guide on getting started with Python.
Run geeklab-ltd/app-icon-generator 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": "geeklab-ltd/app-icon-generator:5d87c4f7ed45e7f42272cf3c77d20c157a8f5d58b3c9194e4de34d5dd43d3880", "input": { "width": 1024, "height": 1024, "prompt": "3d character, young woman cook, chef hat, smiling, big eyes image of app icon,mobile app icon, stylized, mobile game icon", "refine": "no_refiner", "scheduler": "K_EULER_ANCESTRAL", "lora_scale": 0.6, "num_outputs": 1, "guidance_scale": 7.5, "apply_watermark": true, "high_noise_frac": 0.8, "negative_prompt": "multiple characters,(worst quality:1.5), (low quality:1.5), (normal quality:1.5), lowres, bad anatomy, bad hands, multiple eyebrow, (cropped), extra limb, missing limbs, deformed hands, long neck, long body, (bad hands), signature, username, artist name, conjoined fingers, deformed fingers, ugly eyes, imperfect eyes, skewed eyes, unnatural face, unnatural body, error, painting by bad-artist,nsfw,porn,nudity,sexy", "prompt_strength": 0.8, "num_inference_steps": 40 } }' \ https://api.replicate.com/v1/predictions
To learn more, take a look at Replicate’s HTTP API reference docs.
Output
{ "completed_at": "2023-08-21T19:31:05.525605Z", "created_at": "2023-08-21T19:30:52.564695Z", "data_removed": false, "error": null, "id": "xufbqtdbm5jhzj54n4dr25ez7y", "input": { "width": 1024, "height": 1024, "prompt": "3d character, young woman cook, chef hat, smiling, big eyes image of app icon,mobile app icon, stylized, mobile game icon", "refine": "no_refiner", "scheduler": "K_EULER_ANCESTRAL", "lora_scale": 0.6, "num_outputs": 1, "guidance_scale": 7.5, "apply_watermark": true, "high_noise_frac": 0.8, "negative_prompt": "multiple characters,(worst quality:1.5), (low quality:1.5), (normal quality:1.5), lowres, bad anatomy, bad hands, multiple eyebrow, (cropped), extra limb, missing limbs, deformed hands, long neck, long body, (bad hands), signature, username, artist name, conjoined fingers, deformed fingers, ugly eyes, imperfect eyes, skewed eyes, unnatural face, unnatural body, error, painting by bad-artist,nsfw,porn,nudity,sexy", "prompt_strength": 0.8, "num_inference_steps": 40 }, "logs": "Using seed: 49761\nPrompt: 3d character, young woman cook, chef hat, smiling, big eyes image of <s0><s1>,mobile <s0><s1>, stylized, mobile game icon\ntxt2img mode\n 0%| | 0/40 [00:00<?, ?it/s]\n 2%|▎ | 1/40 [00:00<00:10, 3.67it/s]\n 5%|▌ | 2/40 [00:00<00:10, 3.66it/s]\n 8%|▊ | 3/40 [00:00<00:10, 3.67it/s]\n 10%|█ | 4/40 [00:01<00:09, 3.67it/s]\n 12%|█▎ | 5/40 [00:01<00:09, 3.67it/s]\n 15%|█▌ | 6/40 [00:01<00:09, 3.66it/s]\n 18%|█▊ | 7/40 [00:01<00:08, 3.67it/s]\n 20%|██ | 8/40 [00:02<00:08, 3.66it/s]\n 22%|██▎ | 9/40 [00:02<00:08, 3.66it/s]\n 25%|██▌ | 10/40 [00:02<00:08, 3.66it/s]\n 28%|██▊ | 11/40 [00:03<00:07, 3.66it/s]\n 30%|███ | 12/40 [00:03<00:07, 3.66it/s]\n 32%|███▎ | 13/40 [00:03<00:07, 3.66it/s]\n 35%|███▌ | 14/40 [00:03<00:07, 3.66it/s]\n 38%|███▊ | 15/40 [00:04<00:06, 3.66it/s]\n 40%|████ | 16/40 [00:04<00:06, 3.66it/s]\n 42%|████▎ | 17/40 [00:04<00:06, 3.66it/s]\n 45%|████▌ | 18/40 [00:04<00:06, 3.66it/s]\n 48%|████▊ | 19/40 [00:05<00:05, 3.66it/s]\n 50%|█████ | 20/40 [00:05<00:05, 3.66it/s]\n 52%|█████▎ | 21/40 [00:05<00:05, 3.66it/s]\n 55%|█████▌ | 22/40 [00:06<00:04, 3.65it/s]\n 57%|█████▊ | 23/40 [00:06<00:04, 3.65it/s]\n 60%|██████ | 24/40 [00:06<00:04, 3.65it/s]\n 62%|██████▎ | 25/40 [00:06<00:04, 3.65it/s]\n 65%|██████▌ | 26/40 [00:07<00:03, 3.65it/s]\n 68%|██████▊ | 27/40 [00:07<00:03, 3.64it/s]\n 70%|███████ | 28/40 [00:07<00:03, 3.64it/s]\n 72%|███████▎ | 29/40 [00:07<00:03, 3.65it/s]\n 75%|███████▌ | 30/40 [00:08<00:02, 3.64it/s]\n 78%|███████▊ | 31/40 [00:08<00:02, 3.64it/s]\n 80%|████████ | 32/40 [00:08<00:02, 3.65it/s]\n 82%|████████▎ | 33/40 [00:09<00:01, 3.64it/s]\n 85%|████████▌ | 34/40 [00:09<00:01, 3.65it/s]\n 88%|████████▊ | 35/40 [00:09<00:01, 3.64it/s]\n 90%|█████████ | 36/40 [00:09<00:01, 3.64it/s]\n 92%|█████████▎| 37/40 [00:10<00:00, 3.64it/s]\n 95%|█████████▌| 38/40 [00:10<00:00, 3.64it/s]\n 98%|█████████▊| 39/40 [00:10<00:00, 3.64it/s]\n100%|██████████| 40/40 [00:10<00:00, 3.64it/s]\n100%|██████████| 40/40 [00:10<00:00, 3.65it/s]", "metrics": { "predict_time": 12.952582, "total_time": 12.96091 }, "output": [ "https://replicate.delivery/pbxt/U0nIDpU3YLIZNZfZGPQPmZRIA0BSLR4W59JUZHeQTnO41WcRA/out-0.png" ], "started_at": "2023-08-21T19:30:52.573023Z", "status": "succeeded", "urls": { "get": "https://api.replicate.com/v1/predictions/xufbqtdbm5jhzj54n4dr25ez7y", "cancel": "https://api.replicate.com/v1/predictions/xufbqtdbm5jhzj54n4dr25ez7y/cancel" }, "version": "5d87c4f7ed45e7f42272cf3c77d20c157a8f5d58b3c9194e4de34d5dd43d3880" }
Generated inUsing seed: 49761 Prompt: 3d character, young woman cook, chef hat, smiling, big eyes image of <s0><s1>,mobile <s0><s1>, stylized, mobile game icon txt2img mode 0%| | 0/40 [00:00<?, ?it/s] 2%|▎ | 1/40 [00:00<00:10, 3.67it/s] 5%|▌ | 2/40 [00:00<00:10, 3.66it/s] 8%|▊ | 3/40 [00:00<00:10, 3.67it/s] 10%|█ | 4/40 [00:01<00:09, 3.67it/s] 12%|█▎ | 5/40 [00:01<00:09, 3.67it/s] 15%|█▌ | 6/40 [00:01<00:09, 3.66it/s] 18%|█▊ | 7/40 [00:01<00:08, 3.67it/s] 20%|██ | 8/40 [00:02<00:08, 3.66it/s] 22%|██▎ | 9/40 [00:02<00:08, 3.66it/s] 25%|██▌ | 10/40 [00:02<00:08, 3.66it/s] 28%|██▊ | 11/40 [00:03<00:07, 3.66it/s] 30%|███ | 12/40 [00:03<00:07, 3.66it/s] 32%|███▎ | 13/40 [00:03<00:07, 3.66it/s] 35%|███▌ | 14/40 [00:03<00:07, 3.66it/s] 38%|███▊ | 15/40 [00:04<00:06, 3.66it/s] 40%|████ | 16/40 [00:04<00:06, 3.66it/s] 42%|████▎ | 17/40 [00:04<00:06, 3.66it/s] 45%|████▌ | 18/40 [00:04<00:06, 3.66it/s] 48%|████▊ | 19/40 [00:05<00:05, 3.66it/s] 50%|█████ | 20/40 [00:05<00:05, 3.66it/s] 52%|█████▎ | 21/40 [00:05<00:05, 3.66it/s] 55%|█████▌ | 22/40 [00:06<00:04, 3.65it/s] 57%|█████▊ | 23/40 [00:06<00:04, 3.65it/s] 60%|██████ | 24/40 [00:06<00:04, 3.65it/s] 62%|██████▎ | 25/40 [00:06<00:04, 3.65it/s] 65%|██████▌ | 26/40 [00:07<00:03, 3.65it/s] 68%|██████▊ | 27/40 [00:07<00:03, 3.64it/s] 70%|███████ | 28/40 [00:07<00:03, 3.64it/s] 72%|███████▎ | 29/40 [00:07<00:03, 3.65it/s] 75%|███████▌ | 30/40 [00:08<00:02, 3.64it/s] 78%|███████▊ | 31/40 [00:08<00:02, 3.64it/s] 80%|████████ | 32/40 [00:08<00:02, 3.65it/s] 82%|████████▎ | 33/40 [00:09<00:01, 3.64it/s] 85%|████████▌ | 34/40 [00:09<00:01, 3.65it/s] 88%|████████▊ | 35/40 [00:09<00:01, 3.64it/s] 90%|█████████ | 36/40 [00:09<00:01, 3.64it/s] 92%|█████████▎| 37/40 [00:10<00:00, 3.64it/s] 95%|█████████▌| 38/40 [00:10<00:00, 3.64it/s] 98%|█████████▊| 39/40 [00:10<00:00, 3.64it/s] 100%|██████████| 40/40 [00:10<00:00, 3.64it/s] 100%|██████████| 40/40 [00:10<00:00, 3.65it/s]
Prediction
geeklab-ltd/app-icon-generator:5d87c4f7ed45e7f42272cf3c77d20c157a8f5d58b3c9194e4de34d5dd43d3880IDxfort2dbkor6likm3y7twv3kiaStatusSucceededSourceWebHardwareA40 (Large)Total durationCreatedInput
- width
- 1024
- height
- 1024
- prompt
- sci-fi humanoid raccoon, shooting the viewier with a blast gun, space-like background, 3d photorealistic style, angry screaming face, showing teeth, saliva coming out of its mouth image of app icon,mobile app icon, stylized, mobile game icon
- refine
- no_refiner
- scheduler
- K_EULER_ANCESTRAL
- lora_scale
- 0.6
- num_outputs
- 1
- guidance_scale
- 7.5
- apply_watermark
- high_noise_frac
- 0.8
- negative_prompt
- multiple characters,(worst quality:1.5), (low quality:1.5), (normal quality:1.5), lowres, bad anatomy, bad hands, multiple eyebrow, (cropped), extra limb, missing limbs, deformed hands, long neck, long body, (bad hands), signature, username, artist name, conjoined fingers, deformed fingers, ugly eyes, imperfect eyes, skewed eyes, unnatural face, unnatural body, error, painting by bad-artist,nsfw,porn,nudity,sexy
- prompt_strength
- 0.8
- num_inference_steps
- 20
{ "width": 1024, "height": 1024, "prompt": "sci-fi humanoid raccoon, shooting the viewier with a blast gun, space-like background, 3d photorealistic style, angry screaming face, showing teeth, saliva coming out of its mouth image of app icon,mobile app icon, stylized, mobile game icon", "refine": "no_refiner", "scheduler": "K_EULER_ANCESTRAL", "lora_scale": 0.6, "num_outputs": 1, "guidance_scale": 7.5, "apply_watermark": true, "high_noise_frac": 0.8, "negative_prompt": "multiple characters,(worst quality:1.5), (low quality:1.5), (normal quality:1.5), lowres, bad anatomy, bad hands, multiple eyebrow, (cropped), extra limb, missing limbs, deformed hands, long neck, long body, (bad hands), signature, username, artist name, conjoined fingers, deformed fingers, ugly eyes, imperfect eyes, skewed eyes, unnatural face, unnatural body, error, painting by bad-artist,nsfw,porn,nudity,sexy", "prompt_strength": 0.8, "num_inference_steps": 20 }
Install Replicate’s Node.js client library:npm install replicate
Import and set up the client:import Replicate from "replicate"; const replicate = new Replicate({ auth: process.env.REPLICATE_API_TOKEN, });
Run geeklab-ltd/app-icon-generator using Replicate’s API. Check out the model's schema for an overview of inputs and outputs.
const output = await replicate.run( "geeklab-ltd/app-icon-generator:5d87c4f7ed45e7f42272cf3c77d20c157a8f5d58b3c9194e4de34d5dd43d3880", { input: { width: 1024, height: 1024, prompt: "sci-fi humanoid raccoon, shooting the viewier with a blast gun, space-like background, 3d photorealistic style, angry screaming face, showing teeth, saliva coming out of its mouth image of app icon,mobile app icon, stylized, mobile game icon", refine: "no_refiner", scheduler: "K_EULER_ANCESTRAL", lora_scale: 0.6, num_outputs: 1, guidance_scale: 7.5, apply_watermark: true, high_noise_frac: 0.8, negative_prompt: "multiple characters,(worst quality:1.5), (low quality:1.5), (normal quality:1.5), lowres, bad anatomy, bad hands, multiple eyebrow, (cropped), extra limb, missing limbs, deformed hands, long neck, long body, (bad hands), signature, username, artist name, conjoined fingers, deformed fingers, ugly eyes, imperfect eyes, skewed eyes, unnatural face, unnatural body, error, painting by bad-artist,nsfw,porn,nudity,sexy", prompt_strength: 0.8, num_inference_steps: 20 } } ); // 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 geeklab-ltd/app-icon-generator using Replicate’s API. Check out the model's schema for an overview of inputs and outputs.
output = replicate.run( "geeklab-ltd/app-icon-generator:5d87c4f7ed45e7f42272cf3c77d20c157a8f5d58b3c9194e4de34d5dd43d3880", input={ "width": 1024, "height": 1024, "prompt": "sci-fi humanoid raccoon, shooting the viewier with a blast gun, space-like background, 3d photorealistic style, angry screaming face, showing teeth, saliva coming out of its mouth image of app icon,mobile app icon, stylized, mobile game icon", "refine": "no_refiner", "scheduler": "K_EULER_ANCESTRAL", "lora_scale": 0.6, "num_outputs": 1, "guidance_scale": 7.5, "apply_watermark": True, "high_noise_frac": 0.8, "negative_prompt": "multiple characters,(worst quality:1.5), (low quality:1.5), (normal quality:1.5), lowres, bad anatomy, bad hands, multiple eyebrow, (cropped), extra limb, missing limbs, deformed hands, long neck, long body, (bad hands), signature, username, artist name, conjoined fingers, deformed fingers, ugly eyes, imperfect eyes, skewed eyes, unnatural face, unnatural body, error, painting by bad-artist,nsfw,porn,nudity,sexy", "prompt_strength": 0.8, "num_inference_steps": 20 } ) print(output)
To learn more, take a look at the guide on getting started with Python.
Run geeklab-ltd/app-icon-generator 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": "geeklab-ltd/app-icon-generator:5d87c4f7ed45e7f42272cf3c77d20c157a8f5d58b3c9194e4de34d5dd43d3880", "input": { "width": 1024, "height": 1024, "prompt": "sci-fi humanoid raccoon, shooting the viewier with a blast gun, space-like background, 3d photorealistic style, angry screaming face, showing teeth, saliva coming out of its mouth image of app icon,mobile app icon, stylized, mobile game icon", "refine": "no_refiner", "scheduler": "K_EULER_ANCESTRAL", "lora_scale": 0.6, "num_outputs": 1, "guidance_scale": 7.5, "apply_watermark": true, "high_noise_frac": 0.8, "negative_prompt": "multiple characters,(worst quality:1.5), (low quality:1.5), (normal quality:1.5), lowres, bad anatomy, bad hands, multiple eyebrow, (cropped), extra limb, missing limbs, deformed hands, long neck, long body, (bad hands), signature, username, artist name, conjoined fingers, deformed fingers, ugly eyes, imperfect eyes, skewed eyes, unnatural face, unnatural body, error, painting by bad-artist,nsfw,porn,nudity,sexy", "prompt_strength": 0.8, "num_inference_steps": 20 } }' \ https://api.replicate.com/v1/predictions
To learn more, take a look at Replicate’s HTTP API reference docs.
Output
{ "completed_at": "2023-08-21T19:28:16.175602Z", "created_at": "2023-08-21T19:28:08.621319Z", "data_removed": false, "error": null, "id": "xfort2dbkor6likm3y7twv3kia", "input": { "width": 1024, "height": 1024, "prompt": "sci-fi humanoid raccoon, shooting the viewier with a blast gun, space-like background, 3d photorealistic style, angry screaming face, showing teeth, saliva coming out of its mouth image of app icon,mobile app icon, stylized, mobile game icon", "refine": "no_refiner", "scheduler": "K_EULER_ANCESTRAL", "lora_scale": 0.6, "num_outputs": 1, "guidance_scale": 7.5, "apply_watermark": true, "high_noise_frac": 0.8, "negative_prompt": "multiple characters,(worst quality:1.5), (low quality:1.5), (normal quality:1.5), lowres, bad anatomy, bad hands, multiple eyebrow, (cropped), extra limb, missing limbs, deformed hands, long neck, long body, (bad hands), signature, username, artist name, conjoined fingers, deformed fingers, ugly eyes, imperfect eyes, skewed eyes, unnatural face, unnatural body, error, painting by bad-artist,nsfw,porn,nudity,sexy", "prompt_strength": 0.8, "num_inference_steps": 20 }, "logs": "Using seed: 2002\nPrompt: sci-fi humanoid raccoon, shooting the viewier with a blast gun, space-like background, 3d photorealistic style, angry screaming face, showing teeth, saliva coming out of its mouth image of <s0><s1>,mobile <s0><s1>, stylized, mobile game icon\ntxt2img mode\n 0%| | 0/20 [00:00<?, ?it/s]\n 5%|▌ | 1/20 [00:00<00:05, 3.68it/s]\n 10%|█ | 2/20 [00:00<00:04, 3.67it/s]\n 15%|█▌ | 3/20 [00:00<00:04, 3.66it/s]\n 20%|██ | 4/20 [00:01<00:04, 3.66it/s]\n 25%|██▌ | 5/20 [00:01<00:04, 3.66it/s]\n 30%|███ | 6/20 [00:01<00:03, 3.67it/s]\n 35%|███▌ | 7/20 [00:01<00:03, 3.67it/s]\n 40%|████ | 8/20 [00:02<00:03, 3.67it/s]\n 45%|████▌ | 9/20 [00:02<00:02, 3.67it/s]\n 50%|█████ | 10/20 [00:02<00:02, 3.67it/s]\n 55%|█████▌ | 11/20 [00:02<00:02, 3.67it/s]\n 60%|██████ | 12/20 [00:03<00:02, 3.67it/s]\n 65%|██████▌ | 13/20 [00:03<00:01, 3.67it/s]\n 70%|███████ | 14/20 [00:03<00:01, 3.67it/s]\n 75%|███████▌ | 15/20 [00:04<00:01, 3.67it/s]\n 80%|████████ | 16/20 [00:04<00:01, 3.66it/s]\n 85%|████████▌ | 17/20 [00:04<00:00, 3.66it/s]\n 90%|█████████ | 18/20 [00:04<00:00, 3.66it/s]\n 95%|█████████▌| 19/20 [00:05<00:00, 3.66it/s]\n100%|██████████| 20/20 [00:05<00:00, 3.66it/s]\n100%|██████████| 20/20 [00:05<00:00, 3.67it/s]", "metrics": { "predict_time": 7.570166, "total_time": 7.554283 }, "output": [ "https://replicate.delivery/pbxt/ZHaGJndDp94aOxU7qze6SXbcSyQfuzdIJLfJ2IUfYm6eZ2iLC/out-0.png" ], "started_at": "2023-08-21T19:28:08.605436Z", "status": "succeeded", "urls": { "get": "https://api.replicate.com/v1/predictions/xfort2dbkor6likm3y7twv3kia", "cancel": "https://api.replicate.com/v1/predictions/xfort2dbkor6likm3y7twv3kia/cancel" }, "version": "5d87c4f7ed45e7f42272cf3c77d20c157a8f5d58b3c9194e4de34d5dd43d3880" }
Generated inUsing seed: 2002 Prompt: sci-fi humanoid raccoon, shooting the viewier with a blast gun, space-like background, 3d photorealistic style, angry screaming face, showing teeth, saliva coming out of its mouth image of <s0><s1>,mobile <s0><s1>, stylized, mobile game icon txt2img mode 0%| | 0/20 [00:00<?, ?it/s] 5%|▌ | 1/20 [00:00<00:05, 3.68it/s] 10%|█ | 2/20 [00:00<00:04, 3.67it/s] 15%|█▌ | 3/20 [00:00<00:04, 3.66it/s] 20%|██ | 4/20 [00:01<00:04, 3.66it/s] 25%|██▌ | 5/20 [00:01<00:04, 3.66it/s] 30%|███ | 6/20 [00:01<00:03, 3.67it/s] 35%|███▌ | 7/20 [00:01<00:03, 3.67it/s] 40%|████ | 8/20 [00:02<00:03, 3.67it/s] 45%|████▌ | 9/20 [00:02<00:02, 3.67it/s] 50%|█████ | 10/20 [00:02<00:02, 3.67it/s] 55%|█████▌ | 11/20 [00:02<00:02, 3.67it/s] 60%|██████ | 12/20 [00:03<00:02, 3.67it/s] 65%|██████▌ | 13/20 [00:03<00:01, 3.67it/s] 70%|███████ | 14/20 [00:03<00:01, 3.67it/s] 75%|███████▌ | 15/20 [00:04<00:01, 3.67it/s] 80%|████████ | 16/20 [00:04<00:01, 3.66it/s] 85%|████████▌ | 17/20 [00:04<00:00, 3.66it/s] 90%|█████████ | 18/20 [00:04<00:00, 3.66it/s] 95%|█████████▌| 19/20 [00:05<00:00, 3.66it/s] 100%|██████████| 20/20 [00:05<00:00, 3.66it/s] 100%|██████████| 20/20 [00:05<00:00, 3.67it/s]
Prediction
geeklab-ltd/app-icon-generator:5d87c4f7ed45e7f42272cf3c77d20c157a8f5d58b3c9194e4de34d5dd43d3880IDrkfxugdbhedz7ncd72daxw2uymStatusSucceededSourceWebHardwareA40 (Large)Total durationCreatedInput
- width
- 1024
- height
- 1024
- prompt
- 3d character, surfer, looking at the camera, smiling, blue waves in the background, sunny beach, summer image of app icon,mobile app icon, stylized, mobile game icon
- refine
- no_refiner
- scheduler
- K_EULER_ANCESTRAL
- lora_scale
- 0.6
- num_outputs
- 1
- guidance_scale
- 7.5
- apply_watermark
- high_noise_frac
- 0.8
- negative_prompt
- multiple characters,(worst quality:1.5), (low quality:1.5), (normal quality:1.5), lowres, bad anatomy, bad hands, multiple eyebrow, (cropped), extra limb, missing limbs, deformed hands, long neck, long body, (bad hands), signature, username, artist name, conjoined fingers, deformed fingers, ugly eyes, imperfect eyes, skewed eyes, unnatural face, unnatural body, error, painting by bad-artist,nsfw,porn,nudity,sexy
- prompt_strength
- 0.8
- num_inference_steps
- 40
{ "width": 1024, "height": 1024, "prompt": "3d character, surfer, looking at the camera, smiling, blue waves in the background, sunny beach, summer image of app icon,mobile app icon, stylized, mobile game icon", "refine": "no_refiner", "scheduler": "K_EULER_ANCESTRAL", "lora_scale": 0.6, "num_outputs": 1, "guidance_scale": 7.5, "apply_watermark": true, "high_noise_frac": 0.8, "negative_prompt": "multiple characters,(worst quality:1.5), (low quality:1.5), (normal quality:1.5), lowres, bad anatomy, bad hands, multiple eyebrow, (cropped), extra limb, missing limbs, deformed hands, long neck, long body, (bad hands), signature, username, artist name, conjoined fingers, deformed fingers, ugly eyes, imperfect eyes, skewed eyes, unnatural face, unnatural body, error, painting by bad-artist,nsfw,porn,nudity,sexy", "prompt_strength": 0.8, "num_inference_steps": 40 }
Install Replicate’s Node.js client library:npm install replicate
Import and set up the client:import Replicate from "replicate"; const replicate = new Replicate({ auth: process.env.REPLICATE_API_TOKEN, });
Run geeklab-ltd/app-icon-generator using Replicate’s API. Check out the model's schema for an overview of inputs and outputs.
const output = await replicate.run( "geeklab-ltd/app-icon-generator:5d87c4f7ed45e7f42272cf3c77d20c157a8f5d58b3c9194e4de34d5dd43d3880", { input: { width: 1024, height: 1024, prompt: "3d character, surfer, looking at the camera, smiling, blue waves in the background, sunny beach, summer image of app icon,mobile app icon, stylized, mobile game icon", refine: "no_refiner", scheduler: "K_EULER_ANCESTRAL", lora_scale: 0.6, num_outputs: 1, guidance_scale: 7.5, apply_watermark: true, high_noise_frac: 0.8, negative_prompt: "multiple characters,(worst quality:1.5), (low quality:1.5), (normal quality:1.5), lowres, bad anatomy, bad hands, multiple eyebrow, (cropped), extra limb, missing limbs, deformed hands, long neck, long body, (bad hands), signature, username, artist name, conjoined fingers, deformed fingers, ugly eyes, imperfect eyes, skewed eyes, unnatural face, unnatural body, error, painting by bad-artist,nsfw,porn,nudity,sexy", prompt_strength: 0.8, num_inference_steps: 40 } } ); // 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 geeklab-ltd/app-icon-generator using Replicate’s API. Check out the model's schema for an overview of inputs and outputs.
output = replicate.run( "geeklab-ltd/app-icon-generator:5d87c4f7ed45e7f42272cf3c77d20c157a8f5d58b3c9194e4de34d5dd43d3880", input={ "width": 1024, "height": 1024, "prompt": "3d character, surfer, looking at the camera, smiling, blue waves in the background, sunny beach, summer image of app icon,mobile app icon, stylized, mobile game icon", "refine": "no_refiner", "scheduler": "K_EULER_ANCESTRAL", "lora_scale": 0.6, "num_outputs": 1, "guidance_scale": 7.5, "apply_watermark": True, "high_noise_frac": 0.8, "negative_prompt": "multiple characters,(worst quality:1.5), (low quality:1.5), (normal quality:1.5), lowres, bad anatomy, bad hands, multiple eyebrow, (cropped), extra limb, missing limbs, deformed hands, long neck, long body, (bad hands), signature, username, artist name, conjoined fingers, deformed fingers, ugly eyes, imperfect eyes, skewed eyes, unnatural face, unnatural body, error, painting by bad-artist,nsfw,porn,nudity,sexy", "prompt_strength": 0.8, "num_inference_steps": 40 } ) print(output)
To learn more, take a look at the guide on getting started with Python.
Run geeklab-ltd/app-icon-generator 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": "geeklab-ltd/app-icon-generator:5d87c4f7ed45e7f42272cf3c77d20c157a8f5d58b3c9194e4de34d5dd43d3880", "input": { "width": 1024, "height": 1024, "prompt": "3d character, surfer, looking at the camera, smiling, blue waves in the background, sunny beach, summer image of app icon,mobile app icon, stylized, mobile game icon", "refine": "no_refiner", "scheduler": "K_EULER_ANCESTRAL", "lora_scale": 0.6, "num_outputs": 1, "guidance_scale": 7.5, "apply_watermark": true, "high_noise_frac": 0.8, "negative_prompt": "multiple characters,(worst quality:1.5), (low quality:1.5), (normal quality:1.5), lowres, bad anatomy, bad hands, multiple eyebrow, (cropped), extra limb, missing limbs, deformed hands, long neck, long body, (bad hands), signature, username, artist name, conjoined fingers, deformed fingers, ugly eyes, imperfect eyes, skewed eyes, unnatural face, unnatural body, error, painting by bad-artist,nsfw,porn,nudity,sexy", "prompt_strength": 0.8, "num_inference_steps": 40 } }' \ https://api.replicate.com/v1/predictions
To learn more, take a look at Replicate’s HTTP API reference docs.
Output
{ "completed_at": "2023-08-21T19:30:31.574393Z", "created_at": "2023-08-21T19:30:18.621543Z", "data_removed": false, "error": null, "id": "rkfxugdbhedz7ncd72daxw2uym", "input": { "width": 1024, "height": 1024, "prompt": "3d character, surfer, looking at the camera, smiling, blue waves in the background, sunny beach, summer image of app icon,mobile app icon, stylized, mobile game icon", "refine": "no_refiner", "scheduler": "K_EULER_ANCESTRAL", "lora_scale": 0.6, "num_outputs": 1, "guidance_scale": 7.5, "apply_watermark": true, "high_noise_frac": 0.8, "negative_prompt": "multiple characters,(worst quality:1.5), (low quality:1.5), (normal quality:1.5), lowres, bad anatomy, bad hands, multiple eyebrow, (cropped), extra limb, missing limbs, deformed hands, long neck, long body, (bad hands), signature, username, artist name, conjoined fingers, deformed fingers, ugly eyes, imperfect eyes, skewed eyes, unnatural face, unnatural body, error, painting by bad-artist,nsfw,porn,nudity,sexy", "prompt_strength": 0.8, "num_inference_steps": 40 }, "logs": "Using seed: 6465\nPrompt: 3d character, surfer, looking at the camera, smiling, blue waves in the background, sunny beach, summer image of <s0><s1>,mobile <s0><s1>, stylized, mobile game icon\ntxt2img mode\n 0%| | 0/40 [00:00<?, ?it/s]\n 2%|▎ | 1/40 [00:00<00:10, 3.66it/s]\n 5%|▌ | 2/40 [00:00<00:10, 3.66it/s]\n 8%|▊ | 3/40 [00:00<00:10, 3.67it/s]\n 10%|█ | 4/40 [00:01<00:09, 3.67it/s]\n 12%|█▎ | 5/40 [00:01<00:09, 3.67it/s]\n 15%|█▌ | 6/40 [00:01<00:09, 3.67it/s]\n 18%|█▊ | 7/40 [00:01<00:09, 3.67it/s]\n 20%|██ | 8/40 [00:02<00:08, 3.66it/s]\n 22%|██▎ | 9/40 [00:02<00:08, 3.67it/s]\n 25%|██▌ | 10/40 [00:02<00:08, 3.67it/s]\n 28%|██▊ | 11/40 [00:03<00:07, 3.66it/s]\n 30%|███ | 12/40 [00:03<00:07, 3.66it/s]\n 32%|███▎ | 13/40 [00:03<00:07, 3.66it/s]\n 35%|███▌ | 14/40 [00:03<00:07, 3.66it/s]\n 38%|███▊ | 15/40 [00:04<00:06, 3.66it/s]\n 40%|████ | 16/40 [00:04<00:06, 3.66it/s]\n 42%|████▎ | 17/40 [00:04<00:06, 3.66it/s]\n 45%|████▌ | 18/40 [00:04<00:06, 3.66it/s]\n 48%|████▊ | 19/40 [00:05<00:05, 3.66it/s]\n 50%|█████ | 20/40 [00:05<00:05, 3.65it/s]\n 52%|█████▎ | 21/40 [00:05<00:05, 3.65it/s]\n 55%|█████▌ | 22/40 [00:06<00:04, 3.65it/s]\n 57%|█████▊ | 23/40 [00:06<00:04, 3.65it/s]\n 60%|██████ | 24/40 [00:06<00:04, 3.65it/s]\n 62%|██████▎ | 25/40 [00:06<00:04, 3.65it/s]\n 65%|██████▌ | 26/40 [00:07<00:03, 3.65it/s]\n 68%|██████▊ | 27/40 [00:07<00:03, 3.65it/s]\n 70%|███████ | 28/40 [00:07<00:03, 3.65it/s]\n 72%|███████▎ | 29/40 [00:07<00:03, 3.64it/s]\n 75%|███████▌ | 30/40 [00:08<00:02, 3.64it/s]\n 78%|███████▊ | 31/40 [00:08<00:02, 3.64it/s]\n 80%|████████ | 32/40 [00:08<00:02, 3.64it/s]\n 82%|████████▎ | 33/40 [00:09<00:01, 3.64it/s]\n 85%|████████▌ | 34/40 [00:09<00:01, 3.64it/s]\n 88%|████████▊ | 35/40 [00:09<00:01, 3.64it/s]\n 90%|█████████ | 36/40 [00:09<00:01, 3.64it/s]\n 92%|█████████▎| 37/40 [00:10<00:00, 3.64it/s]\n 95%|█████████▌| 38/40 [00:10<00:00, 3.64it/s]\n 98%|█████████▊| 39/40 [00:10<00:00, 3.64it/s]\n100%|██████████| 40/40 [00:10<00:00, 3.64it/s]\n100%|██████████| 40/40 [00:10<00:00, 3.65it/s]", "metrics": { "predict_time": 12.948609, "total_time": 12.95285 }, "output": [ "https://replicate.delivery/pbxt/cHJk9uZWUSrgENjXdHniM7YWhAyj9IoeJSl60kyNzXFraLuIA/out-0.png" ], "started_at": "2023-08-21T19:30:18.625784Z", "status": "succeeded", "urls": { "get": "https://api.replicate.com/v1/predictions/rkfxugdbhedz7ncd72daxw2uym", "cancel": "https://api.replicate.com/v1/predictions/rkfxugdbhedz7ncd72daxw2uym/cancel" }, "version": "5d87c4f7ed45e7f42272cf3c77d20c157a8f5d58b3c9194e4de34d5dd43d3880" }
Generated inUsing seed: 6465 Prompt: 3d character, surfer, looking at the camera, smiling, blue waves in the background, sunny beach, summer image of <s0><s1>,mobile <s0><s1>, stylized, mobile game icon txt2img mode 0%| | 0/40 [00:00<?, ?it/s] 2%|▎ | 1/40 [00:00<00:10, 3.66it/s] 5%|▌ | 2/40 [00:00<00:10, 3.66it/s] 8%|▊ | 3/40 [00:00<00:10, 3.67it/s] 10%|█ | 4/40 [00:01<00:09, 3.67it/s] 12%|█▎ | 5/40 [00:01<00:09, 3.67it/s] 15%|█▌ | 6/40 [00:01<00:09, 3.67it/s] 18%|█▊ | 7/40 [00:01<00:09, 3.67it/s] 20%|██ | 8/40 [00:02<00:08, 3.66it/s] 22%|██▎ | 9/40 [00:02<00:08, 3.67it/s] 25%|██▌ | 10/40 [00:02<00:08, 3.67it/s] 28%|██▊ | 11/40 [00:03<00:07, 3.66it/s] 30%|███ | 12/40 [00:03<00:07, 3.66it/s] 32%|███▎ | 13/40 [00:03<00:07, 3.66it/s] 35%|███▌ | 14/40 [00:03<00:07, 3.66it/s] 38%|███▊ | 15/40 [00:04<00:06, 3.66it/s] 40%|████ | 16/40 [00:04<00:06, 3.66it/s] 42%|████▎ | 17/40 [00:04<00:06, 3.66it/s] 45%|████▌ | 18/40 [00:04<00:06, 3.66it/s] 48%|████▊ | 19/40 [00:05<00:05, 3.66it/s] 50%|█████ | 20/40 [00:05<00:05, 3.65it/s] 52%|█████▎ | 21/40 [00:05<00:05, 3.65it/s] 55%|█████▌ | 22/40 [00:06<00:04, 3.65it/s] 57%|█████▊ | 23/40 [00:06<00:04, 3.65it/s] 60%|██████ | 24/40 [00:06<00:04, 3.65it/s] 62%|██████▎ | 25/40 [00:06<00:04, 3.65it/s] 65%|██████▌ | 26/40 [00:07<00:03, 3.65it/s] 68%|██████▊ | 27/40 [00:07<00:03, 3.65it/s] 70%|███████ | 28/40 [00:07<00:03, 3.65it/s] 72%|███████▎ | 29/40 [00:07<00:03, 3.64it/s] 75%|███████▌ | 30/40 [00:08<00:02, 3.64it/s] 78%|███████▊ | 31/40 [00:08<00:02, 3.64it/s] 80%|████████ | 32/40 [00:08<00:02, 3.64it/s] 82%|████████▎ | 33/40 [00:09<00:01, 3.64it/s] 85%|████████▌ | 34/40 [00:09<00:01, 3.64it/s] 88%|████████▊ | 35/40 [00:09<00:01, 3.64it/s] 90%|█████████ | 36/40 [00:09<00:01, 3.64it/s] 92%|█████████▎| 37/40 [00:10<00:00, 3.64it/s] 95%|█████████▌| 38/40 [00:10<00:00, 3.64it/s] 98%|█████████▊| 39/40 [00:10<00:00, 3.64it/s] 100%|██████████| 40/40 [00:10<00:00, 3.64it/s] 100%|██████████| 40/40 [00:10<00:00, 3.65it/s]
Prediction
geeklab-ltd/app-icon-generator:ff18e9374cc16351e898b37e64f5127a5296ec2e963fad3240a0c280f9a2a42bIDgn5njv3bch6b36ubxznyhsdslmStatusSucceededSourceWebHardwareA40 (Large)Total durationCreatedInput
- width
- 1024
- height
- 1024
- prompt
- a nintendo mario kart character riding a motorcycle, a stock photo by Miyamoto, polycount, sots art, stock photo, playstation 5 screenshot, sharp focus image of app icon,mobile app icon, stylized, mobile game icon
- refine
- no_refiner
- scheduler
- K_EULER_ANCESTRAL
- lora_scale
- 0.6
- num_outputs
- 1
- guidance_scale
- 7.5
- apply_watermark
- high_noise_frac
- 0.8
- negative_prompt
- (worst quality:1.5), (low quality:1.5), (normal quality:1.5), lowres, bad anatomy, bad hands, multiple eyebrow, (cropped), extra limb, missing limbs, deformed hands, long neck, long body, (bad hands), signature, username, artist name, conjoined fingers, deformed fingers, ugly eyes, imperfect eyes, skewed eyes, unnatural face, unnatural body, error, painting by bad-artist,nsfw,porn,nudity,sexy
- prompt_strength
- 0.8
- num_inference_steps
- 20
{ "width": 1024, "height": 1024, "prompt": "a nintendo mario kart character riding a motorcycle, a stock photo by Miyamoto, polycount, sots art, stock photo, playstation 5 screenshot, sharp focus\n image of app icon,mobile app icon, stylized, mobile game icon", "refine": "no_refiner", "scheduler": "K_EULER_ANCESTRAL", "lora_scale": 0.6, "num_outputs": 1, "guidance_scale": 7.5, "apply_watermark": true, "high_noise_frac": 0.8, "negative_prompt": "(worst quality:1.5), (low quality:1.5), (normal quality:1.5), lowres, bad anatomy, bad hands, multiple eyebrow, (cropped), extra limb, missing limbs, deformed hands, long neck, long body, (bad hands), signature, username, artist name, conjoined fingers, deformed fingers, ugly eyes, imperfect eyes, skewed eyes, unnatural face, unnatural body, error, painting by bad-artist,nsfw,porn,nudity,sexy", "prompt_strength": 0.8, "num_inference_steps": 20 }
Install Replicate’s Node.js client library:npm install replicate
Import and set up the client:import Replicate from "replicate"; const replicate = new Replicate({ auth: process.env.REPLICATE_API_TOKEN, });
Run geeklab-ltd/app-icon-generator using Replicate’s API. Check out the model's schema for an overview of inputs and outputs.
const output = await replicate.run( "geeklab-ltd/app-icon-generator:ff18e9374cc16351e898b37e64f5127a5296ec2e963fad3240a0c280f9a2a42b", { input: { width: 1024, height: 1024, prompt: "a nintendo mario kart character riding a motorcycle, a stock photo by Miyamoto, polycount, sots art, stock photo, playstation 5 screenshot, sharp focus\n image of app icon,mobile app icon, stylized, mobile game icon", refine: "no_refiner", scheduler: "K_EULER_ANCESTRAL", lora_scale: 0.6, num_outputs: 1, guidance_scale: 7.5, apply_watermark: true, high_noise_frac: 0.8, negative_prompt: "(worst quality:1.5), (low quality:1.5), (normal quality:1.5), lowres, bad anatomy, bad hands, multiple eyebrow, (cropped), extra limb, missing limbs, deformed hands, long neck, long body, (bad hands), signature, username, artist name, conjoined fingers, deformed fingers, ugly eyes, imperfect eyes, skewed eyes, unnatural face, unnatural body, error, painting by bad-artist,nsfw,porn,nudity,sexy", prompt_strength: 0.8, num_inference_steps: 20 } } ); // 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 geeklab-ltd/app-icon-generator using Replicate’s API. Check out the model's schema for an overview of inputs and outputs.
output = replicate.run( "geeklab-ltd/app-icon-generator:ff18e9374cc16351e898b37e64f5127a5296ec2e963fad3240a0c280f9a2a42b", input={ "width": 1024, "height": 1024, "prompt": "a nintendo mario kart character riding a motorcycle, a stock photo by Miyamoto, polycount, sots art, stock photo, playstation 5 screenshot, sharp focus\n image of app icon,mobile app icon, stylized, mobile game icon", "refine": "no_refiner", "scheduler": "K_EULER_ANCESTRAL", "lora_scale": 0.6, "num_outputs": 1, "guidance_scale": 7.5, "apply_watermark": True, "high_noise_frac": 0.8, "negative_prompt": "(worst quality:1.5), (low quality:1.5), (normal quality:1.5), lowres, bad anatomy, bad hands, multiple eyebrow, (cropped), extra limb, missing limbs, deformed hands, long neck, long body, (bad hands), signature, username, artist name, conjoined fingers, deformed fingers, ugly eyes, imperfect eyes, skewed eyes, unnatural face, unnatural body, error, painting by bad-artist,nsfw,porn,nudity,sexy", "prompt_strength": 0.8, "num_inference_steps": 20 } ) print(output)
To learn more, take a look at the guide on getting started with Python.
Run geeklab-ltd/app-icon-generator 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": "geeklab-ltd/app-icon-generator:ff18e9374cc16351e898b37e64f5127a5296ec2e963fad3240a0c280f9a2a42b", "input": { "width": 1024, "height": 1024, "prompt": "a nintendo mario kart character riding a motorcycle, a stock photo by Miyamoto, polycount, sots art, stock photo, playstation 5 screenshot, sharp focus\\n image of app icon,mobile app icon, stylized, mobile game icon", "refine": "no_refiner", "scheduler": "K_EULER_ANCESTRAL", "lora_scale": 0.6, "num_outputs": 1, "guidance_scale": 7.5, "apply_watermark": true, "high_noise_frac": 0.8, "negative_prompt": "(worst quality:1.5), (low quality:1.5), (normal quality:1.5), lowres, bad anatomy, bad hands, multiple eyebrow, (cropped), extra limb, missing limbs, deformed hands, long neck, long body, (bad hands), signature, username, artist name, conjoined fingers, deformed fingers, ugly eyes, imperfect eyes, skewed eyes, unnatural face, unnatural body, error, painting by bad-artist,nsfw,porn,nudity,sexy", "prompt_strength": 0.8, "num_inference_steps": 20 } }' \ https://api.replicate.com/v1/predictions
To learn more, take a look at Replicate’s HTTP API reference docs.
Output
{ "completed_at": "2023-08-24T20:38:36.054517Z", "created_at": "2023-08-24T20:37:10.694078Z", "data_removed": false, "error": null, "id": "gn5njv3bch6b36ubxznyhsdslm", "input": { "width": 1024, "height": 1024, "prompt": "a nintendo mario kart character riding a motorcycle, a stock photo by Miyamoto, polycount, sots art, stock photo, playstation 5 screenshot, sharp focus\n image of app icon,mobile app icon, stylized, mobile game icon", "refine": "no_refiner", "scheduler": "K_EULER_ANCESTRAL", "lora_scale": 0.6, "num_outputs": 1, "guidance_scale": 7.5, "apply_watermark": true, "high_noise_frac": 0.8, "negative_prompt": "(worst quality:1.5), (low quality:1.5), (normal quality:1.5), lowres, bad anatomy, bad hands, multiple eyebrow, (cropped), extra limb, missing limbs, deformed hands, long neck, long body, (bad hands), signature, username, artist name, conjoined fingers, deformed fingers, ugly eyes, imperfect eyes, skewed eyes, unnatural face, unnatural body, error, painting by bad-artist,nsfw,porn,nudity,sexy", "prompt_strength": 0.8, "num_inference_steps": 20 }, "logs": "Using seed: 33904\nPrompt: a nintendo mario kart character riding a motorcycle, a stock photo by Miyamoto, polycount, sots art, stock photo, playstation 5 screenshot, sharp focus\nimage of <s0><s1>,mobile <s0><s1>, stylized, mobile game icon\ntxt2img mode\n 0%| | 0/20 [00:00<?, ?it/s]\n 5%|▌ | 1/20 [00:00<00:14, 1.28it/s]\n 10%|█ | 2/20 [00:01<00:08, 2.07it/s]\n 15%|█▌ | 3/20 [00:01<00:06, 2.59it/s]\n 20%|██ | 4/20 [00:01<00:05, 2.93it/s]\n 25%|██▌ | 5/20 [00:01<00:04, 3.16it/s]\n 30%|███ | 6/20 [00:02<00:04, 3.32it/s]\n 35%|███▌ | 7/20 [00:02<00:03, 3.43it/s]\n 40%|████ | 8/20 [00:02<00:03, 3.50it/s]\n 45%|████▌ | 9/20 [00:02<00:03, 3.55it/s]\n 50%|█████ | 10/20 [00:03<00:02, 3.59it/s]\n 55%|█████▌ | 11/20 [00:03<00:02, 3.62it/s]\n 60%|██████ | 12/20 [00:03<00:02, 3.64it/s]\n 65%|██████▌ | 13/20 [00:04<00:01, 3.64it/s]\n 70%|███████ | 14/20 [00:04<00:01, 3.65it/s]\n 75%|███████▌ | 15/20 [00:04<00:01, 3.65it/s]\n 80%|████████ | 16/20 [00:04<00:01, 3.66it/s]\n 85%|████████▌ | 17/20 [00:05<00:00, 3.66it/s]\n 90%|█████████ | 18/20 [00:05<00:00, 3.66it/s]\n 95%|█████████▌| 19/20 [00:05<00:00, 3.66it/s]\n100%|██████████| 20/20 [00:05<00:00, 3.66it/s]\n100%|██████████| 20/20 [00:05<00:00, 3.35it/s]", "metrics": { "predict_time": 8.636268, "total_time": 85.360439 }, "output": [ "https://replicate.delivery/pbxt/4ifBC9zxMgUsVCoexzB8fFKhcBuBHrBOP954oVAPis0WOu6iA/out-0.png" ], "started_at": "2023-08-24T20:38:27.418249Z", "status": "succeeded", "urls": { "get": "https://api.replicate.com/v1/predictions/gn5njv3bch6b36ubxznyhsdslm", "cancel": "https://api.replicate.com/v1/predictions/gn5njv3bch6b36ubxznyhsdslm/cancel" }, "version": "ff18e9374cc16351e898b37e64f5127a5296ec2e963fad3240a0c280f9a2a42b" }
Generated inUsing seed: 33904 Prompt: a nintendo mario kart character riding a motorcycle, a stock photo by Miyamoto, polycount, sots art, stock photo, playstation 5 screenshot, sharp focus image of <s0><s1>,mobile <s0><s1>, stylized, mobile game icon txt2img mode 0%| | 0/20 [00:00<?, ?it/s] 5%|▌ | 1/20 [00:00<00:14, 1.28it/s] 10%|█ | 2/20 [00:01<00:08, 2.07it/s] 15%|█▌ | 3/20 [00:01<00:06, 2.59it/s] 20%|██ | 4/20 [00:01<00:05, 2.93it/s] 25%|██▌ | 5/20 [00:01<00:04, 3.16it/s] 30%|███ | 6/20 [00:02<00:04, 3.32it/s] 35%|███▌ | 7/20 [00:02<00:03, 3.43it/s] 40%|████ | 8/20 [00:02<00:03, 3.50it/s] 45%|████▌ | 9/20 [00:02<00:03, 3.55it/s] 50%|█████ | 10/20 [00:03<00:02, 3.59it/s] 55%|█████▌ | 11/20 [00:03<00:02, 3.62it/s] 60%|██████ | 12/20 [00:03<00:02, 3.64it/s] 65%|██████▌ | 13/20 [00:04<00:01, 3.64it/s] 70%|███████ | 14/20 [00:04<00:01, 3.65it/s] 75%|███████▌ | 15/20 [00:04<00:01, 3.65it/s] 80%|████████ | 16/20 [00:04<00:01, 3.66it/s] 85%|████████▌ | 17/20 [00:05<00:00, 3.66it/s] 90%|█████████ | 18/20 [00:05<00:00, 3.66it/s] 95%|█████████▌| 19/20 [00:05<00:00, 3.66it/s] 100%|██████████| 20/20 [00:05<00:00, 3.66it/s] 100%|██████████| 20/20 [00:05<00:00, 3.35it/s]
Prediction
geeklab-ltd/app-icon-generator:5d87c4f7ed45e7f42272cf3c77d20c157a8f5d58b3c9194e4de34d5dd43d3880IDnutsz2lbjofy6bdmbp2k7prgpiStatusSucceededSourceWebHardwareA40 (Large)Total durationCreatedInput
- width
- 1024
- height
- 1024
- prompt
- 3d orc, world of warcraft, screaming at the viewer, beer in its hand, sword on the other hand, beer spilling over, red veiny eyes image of app icon,mobile app icon, stylized, mobile game icon
- refine
- no_refiner
- scheduler
- K_EULER_ANCESTRAL
- lora_scale
- 0.6
- num_outputs
- 1
- guidance_scale
- 7.5
- apply_watermark
- high_noise_frac
- 0.8
- negative_prompt
- multiple characters,(worst quality:1.5), (low quality:1.5), (normal quality:1.5), lowres, bad anatomy, bad hands, multiple eyebrow, (cropped), extra limb, missing limbs, deformed hands, long neck, long body, (bad hands), signature, username, artist name, conjoined fingers, deformed fingers, ugly eyes, imperfect eyes, skewed eyes, unnatural face, unnatural body, error, painting by bad-artist,nsfw,porn,nudity,sexy
- prompt_strength
- 0.8
- num_inference_steps
- 20
{ "width": 1024, "height": 1024, "prompt": "3d orc, world of warcraft, screaming at the viewer, beer in its hand, sword on the other hand, beer spilling over, red veiny eyes image of app icon,mobile app icon, stylized, mobile game icon", "refine": "no_refiner", "scheduler": "K_EULER_ANCESTRAL", "lora_scale": 0.6, "num_outputs": 1, "guidance_scale": 7.5, "apply_watermark": true, "high_noise_frac": 0.8, "negative_prompt": "multiple characters,(worst quality:1.5), (low quality:1.5), (normal quality:1.5), lowres, bad anatomy, bad hands, multiple eyebrow, (cropped), extra limb, missing limbs, deformed hands, long neck, long body, (bad hands), signature, username, artist name, conjoined fingers, deformed fingers, ugly eyes, imperfect eyes, skewed eyes, unnatural face, unnatural body, error, painting by bad-artist,nsfw,porn,nudity,sexy", "prompt_strength": 0.8, "num_inference_steps": 20 }
Install Replicate’s Node.js client library:npm install replicate
Import and set up the client:import Replicate from "replicate"; const replicate = new Replicate({ auth: process.env.REPLICATE_API_TOKEN, });
Run geeklab-ltd/app-icon-generator using Replicate’s API. Check out the model's schema for an overview of inputs and outputs.
const output = await replicate.run( "geeklab-ltd/app-icon-generator:5d87c4f7ed45e7f42272cf3c77d20c157a8f5d58b3c9194e4de34d5dd43d3880", { input: { width: 1024, height: 1024, prompt: "3d orc, world of warcraft, screaming at the viewer, beer in its hand, sword on the other hand, beer spilling over, red veiny eyes image of app icon,mobile app icon, stylized, mobile game icon", refine: "no_refiner", scheduler: "K_EULER_ANCESTRAL", lora_scale: 0.6, num_outputs: 1, guidance_scale: 7.5, apply_watermark: true, high_noise_frac: 0.8, negative_prompt: "multiple characters,(worst quality:1.5), (low quality:1.5), (normal quality:1.5), lowres, bad anatomy, bad hands, multiple eyebrow, (cropped), extra limb, missing limbs, deformed hands, long neck, long body, (bad hands), signature, username, artist name, conjoined fingers, deformed fingers, ugly eyes, imperfect eyes, skewed eyes, unnatural face, unnatural body, error, painting by bad-artist,nsfw,porn,nudity,sexy", prompt_strength: 0.8, num_inference_steps: 20 } } ); // 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 geeklab-ltd/app-icon-generator using Replicate’s API. Check out the model's schema for an overview of inputs and outputs.
output = replicate.run( "geeklab-ltd/app-icon-generator:5d87c4f7ed45e7f42272cf3c77d20c157a8f5d58b3c9194e4de34d5dd43d3880", input={ "width": 1024, "height": 1024, "prompt": "3d orc, world of warcraft, screaming at the viewer, beer in its hand, sword on the other hand, beer spilling over, red veiny eyes image of app icon,mobile app icon, stylized, mobile game icon", "refine": "no_refiner", "scheduler": "K_EULER_ANCESTRAL", "lora_scale": 0.6, "num_outputs": 1, "guidance_scale": 7.5, "apply_watermark": True, "high_noise_frac": 0.8, "negative_prompt": "multiple characters,(worst quality:1.5), (low quality:1.5), (normal quality:1.5), lowres, bad anatomy, bad hands, multiple eyebrow, (cropped), extra limb, missing limbs, deformed hands, long neck, long body, (bad hands), signature, username, artist name, conjoined fingers, deformed fingers, ugly eyes, imperfect eyes, skewed eyes, unnatural face, unnatural body, error, painting by bad-artist,nsfw,porn,nudity,sexy", "prompt_strength": 0.8, "num_inference_steps": 20 } ) print(output)
To learn more, take a look at the guide on getting started with Python.
Run geeklab-ltd/app-icon-generator 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": "geeklab-ltd/app-icon-generator:5d87c4f7ed45e7f42272cf3c77d20c157a8f5d58b3c9194e4de34d5dd43d3880", "input": { "width": 1024, "height": 1024, "prompt": "3d orc, world of warcraft, screaming at the viewer, beer in its hand, sword on the other hand, beer spilling over, red veiny eyes image of app icon,mobile app icon, stylized, mobile game icon", "refine": "no_refiner", "scheduler": "K_EULER_ANCESTRAL", "lora_scale": 0.6, "num_outputs": 1, "guidance_scale": 7.5, "apply_watermark": true, "high_noise_frac": 0.8, "negative_prompt": "multiple characters,(worst quality:1.5), (low quality:1.5), (normal quality:1.5), lowres, bad anatomy, bad hands, multiple eyebrow, (cropped), extra limb, missing limbs, deformed hands, long neck, long body, (bad hands), signature, username, artist name, conjoined fingers, deformed fingers, ugly eyes, imperfect eyes, skewed eyes, unnatural face, unnatural body, error, painting by bad-artist,nsfw,porn,nudity,sexy", "prompt_strength": 0.8, "num_inference_steps": 20 } }' \ https://api.replicate.com/v1/predictions
To learn more, take a look at Replicate’s HTTP API reference docs.
Output
{ "completed_at": "2023-08-21T19:28:46.924806Z", "created_at": "2023-08-21T19:28:39.461744Z", "data_removed": false, "error": null, "id": "nutsz2lbjofy6bdmbp2k7prgpi", "input": { "width": 1024, "height": 1024, "prompt": "3d orc, world of warcraft, screaming at the viewer, beer in its hand, sword on the other hand, beer spilling over, red veiny eyes image of app icon,mobile app icon, stylized, mobile game icon", "refine": "no_refiner", "scheduler": "K_EULER_ANCESTRAL", "lora_scale": 0.6, "num_outputs": 1, "guidance_scale": 7.5, "apply_watermark": true, "high_noise_frac": 0.8, "negative_prompt": "multiple characters,(worst quality:1.5), (low quality:1.5), (normal quality:1.5), lowres, bad anatomy, bad hands, multiple eyebrow, (cropped), extra limb, missing limbs, deformed hands, long neck, long body, (bad hands), signature, username, artist name, conjoined fingers, deformed fingers, ugly eyes, imperfect eyes, skewed eyes, unnatural face, unnatural body, error, painting by bad-artist,nsfw,porn,nudity,sexy", "prompt_strength": 0.8, "num_inference_steps": 20 }, "logs": "Using seed: 48781\nPrompt: 3d orc, world of warcraft, screaming at the viewer, beer in its hand, sword on the other hand, beer spilling over, red veiny eyes image of <s0><s1>,mobile <s0><s1>, stylized, mobile game icon\ntxt2img mode\n 0%| | 0/20 [00:00<?, ?it/s]\n 5%|▌ | 1/20 [00:00<00:05, 3.69it/s]\n 10%|█ | 2/20 [00:00<00:04, 3.67it/s]\n 15%|█▌ | 3/20 [00:00<00:04, 3.66it/s]\n 20%|██ | 4/20 [00:01<00:04, 3.65it/s]\n 25%|██▌ | 5/20 [00:01<00:04, 3.66it/s]\n 30%|███ | 6/20 [00:01<00:03, 3.66it/s]\n 35%|███▌ | 7/20 [00:01<00:03, 3.67it/s]\n 40%|████ | 8/20 [00:02<00:03, 3.67it/s]\n 45%|████▌ | 9/20 [00:02<00:02, 3.67it/s]\n 50%|█████ | 10/20 [00:02<00:02, 3.67it/s]\n 55%|█████▌ | 11/20 [00:03<00:02, 3.67it/s]\n 60%|██████ | 12/20 [00:03<00:02, 3.67it/s]\n 65%|██████▌ | 13/20 [00:03<00:01, 3.67it/s]\n 70%|███████ | 14/20 [00:03<00:01, 3.67it/s]\n 75%|███████▌ | 15/20 [00:04<00:01, 3.67it/s]\n 80%|████████ | 16/20 [00:04<00:01, 3.67it/s]\n 85%|████████▌ | 17/20 [00:04<00:00, 3.66it/s]\n 90%|█████████ | 18/20 [00:04<00:00, 3.67it/s]\n 95%|█████████▌| 19/20 [00:05<00:00, 3.66it/s]\n100%|██████████| 20/20 [00:05<00:00, 3.66it/s]\n100%|██████████| 20/20 [00:05<00:00, 3.67it/s]", "metrics": { "predict_time": 7.455976, "total_time": 7.463062 }, "output": [ "https://replicate.delivery/pbxt/MfIISeUfVkeqMS8GKtxWBgTxm9qVGgQqTlb9GSLoN3y7ObxFB/out-0.png" ], "started_at": "2023-08-21T19:28:39.468830Z", "status": "succeeded", "urls": { "get": "https://api.replicate.com/v1/predictions/nutsz2lbjofy6bdmbp2k7prgpi", "cancel": "https://api.replicate.com/v1/predictions/nutsz2lbjofy6bdmbp2k7prgpi/cancel" }, "version": "5d87c4f7ed45e7f42272cf3c77d20c157a8f5d58b3c9194e4de34d5dd43d3880" }
Generated inUsing seed: 48781 Prompt: 3d orc, world of warcraft, screaming at the viewer, beer in its hand, sword on the other hand, beer spilling over, red veiny eyes image of <s0><s1>,mobile <s0><s1>, stylized, mobile game icon txt2img mode 0%| | 0/20 [00:00<?, ?it/s] 5%|▌ | 1/20 [00:00<00:05, 3.69it/s] 10%|█ | 2/20 [00:00<00:04, 3.67it/s] 15%|█▌ | 3/20 [00:00<00:04, 3.66it/s] 20%|██ | 4/20 [00:01<00:04, 3.65it/s] 25%|██▌ | 5/20 [00:01<00:04, 3.66it/s] 30%|███ | 6/20 [00:01<00:03, 3.66it/s] 35%|███▌ | 7/20 [00:01<00:03, 3.67it/s] 40%|████ | 8/20 [00:02<00:03, 3.67it/s] 45%|████▌ | 9/20 [00:02<00:02, 3.67it/s] 50%|█████ | 10/20 [00:02<00:02, 3.67it/s] 55%|█████▌ | 11/20 [00:03<00:02, 3.67it/s] 60%|██████ | 12/20 [00:03<00:02, 3.67it/s] 65%|██████▌ | 13/20 [00:03<00:01, 3.67it/s] 70%|███████ | 14/20 [00:03<00:01, 3.67it/s] 75%|███████▌ | 15/20 [00:04<00:01, 3.67it/s] 80%|████████ | 16/20 [00:04<00:01, 3.67it/s] 85%|████████▌ | 17/20 [00:04<00:00, 3.66it/s] 90%|█████████ | 18/20 [00:04<00:00, 3.67it/s] 95%|█████████▌| 19/20 [00:05<00:00, 3.66it/s] 100%|██████████| 20/20 [00:05<00:00, 3.66it/s] 100%|██████████| 20/20 [00:05<00:00, 3.67it/s]
Prediction
geeklab-ltd/app-icon-generator:5d87c4f7ed45e7f42272cf3c77d20c157a8f5d58b3c9194e4de34d5dd43d3880IDgmlqkrtbdr7eq5xyao75x4udpuStatusSucceededSourceWebHardwareA40 (Large)Total durationCreatedInput
- width
- 1024
- height
- 1024
- prompt
- 3d character, ballerina, dancing and jumping, pink pastell background image of app icon,mobile app icon, stylized, mobile game icon
- refine
- no_refiner
- scheduler
- K_EULER_ANCESTRAL
- lora_scale
- 0.6
- num_outputs
- 1
- guidance_scale
- 7.5
- apply_watermark
- high_noise_frac
- 0.8
- negative_prompt
- multiple characters,(worst quality:1.5), (low quality:1.5), (normal quality:1.5), lowres, bad anatomy, bad hands, multiple eyebrow, (cropped), extra limb, missing limbs, deformed hands, long neck, long body, (bad hands), signature, username, artist name, conjoined fingers, deformed fingers, ugly eyes, imperfect eyes, skewed eyes, unnatural face, unnatural body, error, painting by bad-artist,nsfw,porn,nudity,sexy
- prompt_strength
- 0.8
- num_inference_steps
- 40
{ "width": 1024, "height": 1024, "prompt": "3d character, ballerina, dancing and jumping, pink pastell background image of app icon,mobile app icon, stylized, mobile game icon", "refine": "no_refiner", "scheduler": "K_EULER_ANCESTRAL", "lora_scale": 0.6, "num_outputs": 1, "guidance_scale": 7.5, "apply_watermark": true, "high_noise_frac": 0.8, "negative_prompt": "multiple characters,(worst quality:1.5), (low quality:1.5), (normal quality:1.5), lowres, bad anatomy, bad hands, multiple eyebrow, (cropped), extra limb, missing limbs, deformed hands, long neck, long body, (bad hands), signature, username, artist name, conjoined fingers, deformed fingers, ugly eyes, imperfect eyes, skewed eyes, unnatural face, unnatural body, error, painting by bad-artist,nsfw,porn,nudity,sexy", "prompt_strength": 0.8, "num_inference_steps": 40 }
Install Replicate’s Node.js client library:npm install replicate
Import and set up the client:import Replicate from "replicate"; const replicate = new Replicate({ auth: process.env.REPLICATE_API_TOKEN, });
Run geeklab-ltd/app-icon-generator using Replicate’s API. Check out the model's schema for an overview of inputs and outputs.
const output = await replicate.run( "geeklab-ltd/app-icon-generator:5d87c4f7ed45e7f42272cf3c77d20c157a8f5d58b3c9194e4de34d5dd43d3880", { input: { width: 1024, height: 1024, prompt: "3d character, ballerina, dancing and jumping, pink pastell background image of app icon,mobile app icon, stylized, mobile game icon", refine: "no_refiner", scheduler: "K_EULER_ANCESTRAL", lora_scale: 0.6, num_outputs: 1, guidance_scale: 7.5, apply_watermark: true, high_noise_frac: 0.8, negative_prompt: "multiple characters,(worst quality:1.5), (low quality:1.5), (normal quality:1.5), lowres, bad anatomy, bad hands, multiple eyebrow, (cropped), extra limb, missing limbs, deformed hands, long neck, long body, (bad hands), signature, username, artist name, conjoined fingers, deformed fingers, ugly eyes, imperfect eyes, skewed eyes, unnatural face, unnatural body, error, painting by bad-artist,nsfw,porn,nudity,sexy", prompt_strength: 0.8, num_inference_steps: 40 } } ); // 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 geeklab-ltd/app-icon-generator using Replicate’s API. Check out the model's schema for an overview of inputs and outputs.
output = replicate.run( "geeklab-ltd/app-icon-generator:5d87c4f7ed45e7f42272cf3c77d20c157a8f5d58b3c9194e4de34d5dd43d3880", input={ "width": 1024, "height": 1024, "prompt": "3d character, ballerina, dancing and jumping, pink pastell background image of app icon,mobile app icon, stylized, mobile game icon", "refine": "no_refiner", "scheduler": "K_EULER_ANCESTRAL", "lora_scale": 0.6, "num_outputs": 1, "guidance_scale": 7.5, "apply_watermark": True, "high_noise_frac": 0.8, "negative_prompt": "multiple characters,(worst quality:1.5), (low quality:1.5), (normal quality:1.5), lowres, bad anatomy, bad hands, multiple eyebrow, (cropped), extra limb, missing limbs, deformed hands, long neck, long body, (bad hands), signature, username, artist name, conjoined fingers, deformed fingers, ugly eyes, imperfect eyes, skewed eyes, unnatural face, unnatural body, error, painting by bad-artist,nsfw,porn,nudity,sexy", "prompt_strength": 0.8, "num_inference_steps": 40 } ) print(output)
To learn more, take a look at the guide on getting started with Python.
Run geeklab-ltd/app-icon-generator 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": "geeklab-ltd/app-icon-generator:5d87c4f7ed45e7f42272cf3c77d20c157a8f5d58b3c9194e4de34d5dd43d3880", "input": { "width": 1024, "height": 1024, "prompt": "3d character, ballerina, dancing and jumping, pink pastell background image of app icon,mobile app icon, stylized, mobile game icon", "refine": "no_refiner", "scheduler": "K_EULER_ANCESTRAL", "lora_scale": 0.6, "num_outputs": 1, "guidance_scale": 7.5, "apply_watermark": true, "high_noise_frac": 0.8, "negative_prompt": "multiple characters,(worst quality:1.5), (low quality:1.5), (normal quality:1.5), lowres, bad anatomy, bad hands, multiple eyebrow, (cropped), extra limb, missing limbs, deformed hands, long neck, long body, (bad hands), signature, username, artist name, conjoined fingers, deformed fingers, ugly eyes, imperfect eyes, skewed eyes, unnatural face, unnatural body, error, painting by bad-artist,nsfw,porn,nudity,sexy", "prompt_strength": 0.8, "num_inference_steps": 40 } }' \ https://api.replicate.com/v1/predictions
To learn more, take a look at Replicate’s HTTP API reference docs.
Output
{ "completed_at": "2023-08-21T19:32:04.400156Z", "created_at": "2023-08-21T19:31:51.642283Z", "data_removed": false, "error": null, "id": "gmlqkrtbdr7eq5xyao75x4udpu", "input": { "width": 1024, "height": 1024, "prompt": "3d character, ballerina, dancing and jumping, pink pastell background image of app icon,mobile app icon, stylized, mobile game icon", "refine": "no_refiner", "scheduler": "K_EULER_ANCESTRAL", "lora_scale": 0.6, "num_outputs": 1, "guidance_scale": 7.5, "apply_watermark": true, "high_noise_frac": 0.8, "negative_prompt": "multiple characters,(worst quality:1.5), (low quality:1.5), (normal quality:1.5), lowres, bad anatomy, bad hands, multiple eyebrow, (cropped), extra limb, missing limbs, deformed hands, long neck, long body, (bad hands), signature, username, artist name, conjoined fingers, deformed fingers, ugly eyes, imperfect eyes, skewed eyes, unnatural face, unnatural body, error, painting by bad-artist,nsfw,porn,nudity,sexy", "prompt_strength": 0.8, "num_inference_steps": 40 }, "logs": "Using seed: 36173\nPrompt: 3d character, ballerina, dancing and jumping, pink pastell background image of <s0><s1>,mobile <s0><s1>, stylized, mobile game icon\ntxt2img mode\n 0%| | 0/40 [00:00<?, ?it/s]\n 2%|▎ | 1/40 [00:00<00:10, 3.68it/s]\n 5%|▌ | 2/40 [00:00<00:10, 3.67it/s]\n 8%|▊ | 3/40 [00:00<00:10, 3.66it/s]\n 10%|█ | 4/40 [00:01<00:09, 3.66it/s]\n 12%|█▎ | 5/40 [00:01<00:09, 3.65it/s]\n 15%|█▌ | 6/40 [00:01<00:09, 3.66it/s]\n 18%|█▊ | 7/40 [00:01<00:09, 3.66it/s]\n 20%|██ | 8/40 [00:02<00:08, 3.67it/s]\n 22%|██▎ | 9/40 [00:02<00:08, 3.66it/s]\n 25%|██▌ | 10/40 [00:02<00:08, 3.66it/s]\n 28%|██▊ | 11/40 [00:03<00:07, 3.66it/s]\n 30%|███ | 12/40 [00:03<00:07, 3.66it/s]\n 32%|███▎ | 13/40 [00:03<00:07, 3.66it/s]\n 35%|███▌ | 14/40 [00:03<00:07, 3.66it/s]\n 38%|███▊ | 15/40 [00:04<00:06, 3.66it/s]\n 40%|████ | 16/40 [00:04<00:06, 3.67it/s]\n 42%|████▎ | 17/40 [00:04<00:06, 3.66it/s]\n 45%|████▌ | 18/40 [00:04<00:06, 3.66it/s]\n 48%|████▊ | 19/40 [00:05<00:05, 3.66it/s]\n 50%|█████ | 20/40 [00:05<00:05, 3.66it/s]\n 52%|█████▎ | 21/40 [00:05<00:05, 3.66it/s]\n 55%|█████▌ | 22/40 [00:06<00:04, 3.66it/s]\n 57%|█████▊ | 23/40 [00:06<00:04, 3.66it/s]\n 60%|██████ | 24/40 [00:06<00:04, 3.66it/s]\n 62%|██████▎ | 25/40 [00:06<00:04, 3.66it/s]\n 65%|██████▌ | 26/40 [00:07<00:03, 3.66it/s]\n 68%|██████▊ | 27/40 [00:07<00:03, 3.66it/s]\n 70%|███████ | 28/40 [00:07<00:03, 3.66it/s]\n 72%|███████▎ | 29/40 [00:07<00:03, 3.66it/s]\n 75%|███████▌ | 30/40 [00:08<00:02, 3.66it/s]\n 78%|███████▊ | 31/40 [00:08<00:02, 3.66it/s]\n 80%|████████ | 32/40 [00:08<00:02, 3.66it/s]\n 82%|████████▎ | 33/40 [00:09<00:01, 3.66it/s]\n 85%|████████▌ | 34/40 [00:09<00:01, 3.66it/s]\n 88%|████████▊ | 35/40 [00:09<00:01, 3.65it/s]\n 90%|█████████ | 36/40 [00:09<00:01, 3.65it/s]\n 92%|█████████▎| 37/40 [00:10<00:00, 3.65it/s]\n 95%|█████████▌| 38/40 [00:10<00:00, 3.65it/s]\n 98%|█████████▊| 39/40 [00:10<00:00, 3.65it/s]\n100%|██████████| 40/40 [00:10<00:00, 3.65it/s]\n100%|██████████| 40/40 [00:10<00:00, 3.66it/s]", "metrics": { "predict_time": 12.760836, "total_time": 12.757873 }, "output": [ "https://replicate.delivery/pbxt/CJ45QuqpqlKXPdq3fByaV2gK96Qh9axbijH5LxFw7C8ZbLuIA/out-0.png" ], "started_at": "2023-08-21T19:31:51.639320Z", "status": "succeeded", "urls": { "get": "https://api.replicate.com/v1/predictions/gmlqkrtbdr7eq5xyao75x4udpu", "cancel": "https://api.replicate.com/v1/predictions/gmlqkrtbdr7eq5xyao75x4udpu/cancel" }, "version": "5d87c4f7ed45e7f42272cf3c77d20c157a8f5d58b3c9194e4de34d5dd43d3880" }
Generated inUsing seed: 36173 Prompt: 3d character, ballerina, dancing and jumping, pink pastell background image of <s0><s1>,mobile <s0><s1>, stylized, mobile game icon txt2img mode 0%| | 0/40 [00:00<?, ?it/s] 2%|▎ | 1/40 [00:00<00:10, 3.68it/s] 5%|▌ | 2/40 [00:00<00:10, 3.67it/s] 8%|▊ | 3/40 [00:00<00:10, 3.66it/s] 10%|█ | 4/40 [00:01<00:09, 3.66it/s] 12%|█▎ | 5/40 [00:01<00:09, 3.65it/s] 15%|█▌ | 6/40 [00:01<00:09, 3.66it/s] 18%|█▊ | 7/40 [00:01<00:09, 3.66it/s] 20%|██ | 8/40 [00:02<00:08, 3.67it/s] 22%|██▎ | 9/40 [00:02<00:08, 3.66it/s] 25%|██▌ | 10/40 [00:02<00:08, 3.66it/s] 28%|██▊ | 11/40 [00:03<00:07, 3.66it/s] 30%|███ | 12/40 [00:03<00:07, 3.66it/s] 32%|███▎ | 13/40 [00:03<00:07, 3.66it/s] 35%|███▌ | 14/40 [00:03<00:07, 3.66it/s] 38%|███▊ | 15/40 [00:04<00:06, 3.66it/s] 40%|████ | 16/40 [00:04<00:06, 3.67it/s] 42%|████▎ | 17/40 [00:04<00:06, 3.66it/s] 45%|████▌ | 18/40 [00:04<00:06, 3.66it/s] 48%|████▊ | 19/40 [00:05<00:05, 3.66it/s] 50%|█████ | 20/40 [00:05<00:05, 3.66it/s] 52%|█████▎ | 21/40 [00:05<00:05, 3.66it/s] 55%|█████▌ | 22/40 [00:06<00:04, 3.66it/s] 57%|█████▊ | 23/40 [00:06<00:04, 3.66it/s] 60%|██████ | 24/40 [00:06<00:04, 3.66it/s] 62%|██████▎ | 25/40 [00:06<00:04, 3.66it/s] 65%|██████▌ | 26/40 [00:07<00:03, 3.66it/s] 68%|██████▊ | 27/40 [00:07<00:03, 3.66it/s] 70%|███████ | 28/40 [00:07<00:03, 3.66it/s] 72%|███████▎ | 29/40 [00:07<00:03, 3.66it/s] 75%|███████▌ | 30/40 [00:08<00:02, 3.66it/s] 78%|███████▊ | 31/40 [00:08<00:02, 3.66it/s] 80%|████████ | 32/40 [00:08<00:02, 3.66it/s] 82%|████████▎ | 33/40 [00:09<00:01, 3.66it/s] 85%|████████▌ | 34/40 [00:09<00:01, 3.66it/s] 88%|████████▊ | 35/40 [00:09<00:01, 3.65it/s] 90%|█████████ | 36/40 [00:09<00:01, 3.65it/s] 92%|█████████▎| 37/40 [00:10<00:00, 3.65it/s] 95%|█████████▌| 38/40 [00:10<00:00, 3.65it/s] 98%|█████████▊| 39/40 [00:10<00:00, 3.65it/s] 100%|██████████| 40/40 [00:10<00:00, 3.65it/s] 100%|██████████| 40/40 [00:10<00:00, 3.66it/s]
Prediction
geeklab-ltd/app-icon-generator:ff18e9374cc16351e898b37e64f5127a5296ec2e963fad3240a0c280f9a2a42bIDt6mmqxbbljghbjs5v2rrrb4hqqStatusSucceededSourceWebHardwareA100 (40GB)Total durationCreatedInput
- seed
- 114817
- width
- 1024
- height
- 1024
- prompt
- 3D woman, big eyes, cocktail, smiling, looking at the camera,image of app icon, app icon, mobile app icon, stylized, mobile game icon
- refine
- no_refiner
- scheduler
- K_EULER_ANCESTRAL
- lora_scale
- 0.6
- num_outputs
- 1
- guidance_scale
- 7.5
- apply_watermark
- high_noise_frac
- 0.8
- negative_prompt
- multiple characters,(worst quality:1.5), (low quality:1.5), (normal quality:1.5), lowres, bad anatomy, bad hands, multiple eyebrow, (cropped), extra limb, missing limbs, deformed hands, long neck, long body, (bad hands), signature, username, artist name, conjoined fingers, deformed fingers, ugly eyes, imperfect eyes, skewed eyes, unnatural face, unnatural body, error, painting by bad-artist,nsfw,porn,nudity,sexy
- prompt_strength
- 0.8
- num_inference_steps
- 50
{ "seed": 114817, "width": 1024, "height": 1024, "prompt": "3D woman, big eyes, cocktail, smiling, looking at the camera,image of app icon, app icon, mobile app icon, stylized, mobile game icon", "refine": "no_refiner", "scheduler": "K_EULER_ANCESTRAL", "lora_scale": 0.6, "num_outputs": 1, "guidance_scale": 7.5, "apply_watermark": true, "high_noise_frac": 0.8, "negative_prompt": "multiple characters,(worst quality:1.5), (low quality:1.5), (normal quality:1.5), lowres, bad anatomy, bad hands, multiple eyebrow, (cropped), extra limb, missing limbs, deformed hands, long neck, long body, (bad hands), signature, username, artist name, conjoined fingers, deformed fingers, ugly eyes, imperfect eyes, skewed eyes, unnatural face, unnatural body, error, painting by bad-artist,nsfw,porn,nudity,sexy", "prompt_strength": 0.8, "num_inference_steps": 50 }
Install Replicate’s Node.js client library:npm install replicate
Import and set up the client:import Replicate from "replicate"; const replicate = new Replicate({ auth: process.env.REPLICATE_API_TOKEN, });
Run geeklab-ltd/app-icon-generator using Replicate’s API. Check out the model's schema for an overview of inputs and outputs.
const output = await replicate.run( "geeklab-ltd/app-icon-generator:ff18e9374cc16351e898b37e64f5127a5296ec2e963fad3240a0c280f9a2a42b", { input: { seed: 114817, width: 1024, height: 1024, prompt: "3D woman, big eyes, cocktail, smiling, looking at the camera,image of app icon, app icon, mobile app icon, stylized, mobile game icon", refine: "no_refiner", scheduler: "K_EULER_ANCESTRAL", lora_scale: 0.6, num_outputs: 1, guidance_scale: 7.5, apply_watermark: true, high_noise_frac: 0.8, negative_prompt: "multiple characters,(worst quality:1.5), (low quality:1.5), (normal quality:1.5), lowres, bad anatomy, bad hands, multiple eyebrow, (cropped), extra limb, missing limbs, deformed hands, long neck, long body, (bad hands), signature, username, artist name, conjoined fingers, deformed fingers, ugly eyes, imperfect eyes, skewed eyes, unnatural face, unnatural body, error, painting by bad-artist,nsfw,porn,nudity,sexy", prompt_strength: 0.8, num_inference_steps: 50 } } ); // To access the file URL: console.log(output[0].url()); //=> "http://example.com" // To write the file to disk: fs.writeFile("my-image.png", output[0]);
To learn more, take a look at the guide on getting started with Node.js.
Install Replicate’s Python client library:pip install replicate
Import the client:import replicate
Run geeklab-ltd/app-icon-generator using Replicate’s API. Check out the model's schema for an overview of inputs and outputs.
output = replicate.run( "geeklab-ltd/app-icon-generator:ff18e9374cc16351e898b37e64f5127a5296ec2e963fad3240a0c280f9a2a42b", input={ "seed": 114817, "width": 1024, "height": 1024, "prompt": "3D woman, big eyes, cocktail, smiling, looking at the camera,image of app icon, app icon, mobile app icon, stylized, mobile game icon", "refine": "no_refiner", "scheduler": "K_EULER_ANCESTRAL", "lora_scale": 0.6, "num_outputs": 1, "guidance_scale": 7.5, "apply_watermark": True, "high_noise_frac": 0.8, "negative_prompt": "multiple characters,(worst quality:1.5), (low quality:1.5), (normal quality:1.5), lowres, bad anatomy, bad hands, multiple eyebrow, (cropped), extra limb, missing limbs, deformed hands, long neck, long body, (bad hands), signature, username, artist name, conjoined fingers, deformed fingers, ugly eyes, imperfect eyes, skewed eyes, unnatural face, unnatural body, error, painting by bad-artist,nsfw,porn,nudity,sexy", "prompt_strength": 0.8, "num_inference_steps": 50 } ) print(output)
To learn more, take a look at the guide on getting started with Python.
Run geeklab-ltd/app-icon-generator 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": "geeklab-ltd/app-icon-generator:ff18e9374cc16351e898b37e64f5127a5296ec2e963fad3240a0c280f9a2a42b", "input": { "seed": 114817, "width": 1024, "height": 1024, "prompt": "3D woman, big eyes, cocktail, smiling, looking at the camera,image of app icon, app icon, mobile app icon, stylized, mobile game icon", "refine": "no_refiner", "scheduler": "K_EULER_ANCESTRAL", "lora_scale": 0.6, "num_outputs": 1, "guidance_scale": 7.5, "apply_watermark": true, "high_noise_frac": 0.8, "negative_prompt": "multiple characters,(worst quality:1.5), (low quality:1.5), (normal quality:1.5), lowres, bad anatomy, bad hands, multiple eyebrow, (cropped), extra limb, missing limbs, deformed hands, long neck, long body, (bad hands), signature, username, artist name, conjoined fingers, deformed fingers, ugly eyes, imperfect eyes, skewed eyes, unnatural face, unnatural body, error, painting by bad-artist,nsfw,porn,nudity,sexy", "prompt_strength": 0.8, "num_inference_steps": 50 } }' \ https://api.replicate.com/v1/predictions
To learn more, take a look at Replicate’s HTTP API reference docs.
Output
{ "completed_at": "2023-08-31T11:15:02.076520Z", "created_at": "2023-08-31T11:14:49.923968Z", "data_removed": false, "error": null, "id": "t6mmqxbbljghbjs5v2rrrb4hqq", "input": { "seed": 114817, "width": 1024, "height": 1024, "prompt": "3D woman, big eyes, cocktail, smiling, looking at the camera,image of app icon, app icon, mobile app icon, stylized, mobile game icon", "refine": "no_refiner", "scheduler": "K_EULER_ANCESTRAL", "lora_scale": 0.6, "num_outputs": 1, "guidance_scale": 7.5, "apply_watermark": true, "high_noise_frac": 0.8, "negative_prompt": "multiple characters,(worst quality:1.5), (low quality:1.5), (normal quality:1.5), lowres, bad anatomy, bad hands, multiple eyebrow, (cropped), extra limb, missing limbs, deformed hands, long neck, long body, (bad hands), signature, username, artist name, conjoined fingers, deformed fingers, ugly eyes, imperfect eyes, skewed eyes, unnatural face, unnatural body, error, painting by bad-artist,nsfw,porn,nudity,sexy", "prompt_strength": 0.8, "num_inference_steps": 50 }, "logs": "Using seed: 114817\nPrompt: 3D woman, big eyes, cocktail, smiling, looking at the camera,image of <s0><s1>, <s0><s1>, mobile <s0><s1>, stylized, mobile game icon\ntxt2img mode\n 0%| | 0/50 [00:00<?, ?it/s]\n 2%|▏ | 1/50 [00:00<00:10, 4.68it/s]\n 4%|▍ | 2/50 [00:00<00:09, 4.87it/s]\n 6%|▌ | 3/50 [00:00<00:09, 4.92it/s]\n 8%|▊ | 4/50 [00:00<00:09, 4.96it/s]\n 10%|█ | 5/50 [00:01<00:09, 4.94it/s]\n 12%|█▏ | 6/50 [00:01<00:08, 4.93it/s]\n 14%|█▍ | 7/50 [00:01<00:08, 4.95it/s]\n 16%|█▌ | 8/50 [00:01<00:08, 4.96it/s]\n 18%|█▊ | 9/50 [00:01<00:08, 4.91it/s]\n 20%|██ | 10/50 [00:02<00:08, 4.77it/s]\n 22%|██▏ | 11/50 [00:02<00:08, 4.75it/s]\n 24%|██▍ | 12/50 [00:02<00:08, 4.72it/s]\n 26%|██▌ | 13/50 [00:02<00:07, 4.80it/s]\n 28%|██▊ | 14/50 [00:02<00:07, 4.83it/s]\n 30%|███ | 15/50 [00:03<00:07, 4.65it/s]\n 32%|███▏ | 16/50 [00:03<00:07, 4.75it/s]\n 34%|███▍ | 17/50 [00:03<00:06, 4.82it/s]\n 36%|███▌ | 18/50 [00:03<00:06, 4.83it/s]\n 38%|███▊ | 19/50 [00:03<00:06, 4.88it/s]\n 40%|████ | 20/50 [00:04<00:06, 4.81it/s]\n 42%|████▏ | 21/50 [00:04<00:05, 4.86it/s]\n 44%|████▍ | 22/50 [00:04<00:05, 4.89it/s]\n 46%|████▌ | 23/50 [00:04<00:05, 4.91it/s]\n 48%|████▊ | 24/50 [00:04<00:05, 4.91it/s]\n 50%|█████ | 25/50 [00:05<00:05, 4.81it/s]\n 52%|█████▏ | 26/50 [00:05<00:04, 4.87it/s]\n 54%|█████▍ | 27/50 [00:05<00:04, 4.89it/s]\n 56%|█████▌ | 28/50 [00:05<00:04, 4.87it/s]\n 58%|█████▊ | 29/50 [00:05<00:04, 4.87it/s]\n 60%|██████ | 30/50 [00:06<00:04, 4.75it/s]\n 62%|██████▏ | 31/50 [00:06<00:03, 4.82it/s]\n 64%|██████▍ | 32/50 [00:06<00:03, 4.85it/s]\n 66%|██████▌ | 33/50 [00:06<00:03, 4.84it/s]\n 68%|██████▊ | 34/50 [00:07<00:03, 4.84it/s]\n 70%|███████ | 35/50 [00:07<00:03, 4.77it/s]\n 72%|███████▏ | 36/50 [00:07<00:02, 4.83it/s]\n 74%|███████▍ | 37/50 [00:07<00:02, 4.88it/s]\n 76%|███████▌ | 38/50 [00:07<00:02, 4.91it/s]\n 78%|███████▊ | 39/50 [00:08<00:02, 4.88it/s]\n 80%|████████ | 40/50 [00:08<00:02, 4.86it/s]\n 82%|████████▏ | 41/50 [00:08<00:01, 4.88it/s]\n 84%|████████▍ | 42/50 [00:08<00:01, 4.88it/s]\n 86%|████████▌ | 43/50 [00:08<00:01, 4.83it/s]\n 88%|████████▊ | 44/50 [00:09<00:01, 4.86it/s]\n 90%|█████████ | 45/50 [00:09<00:01, 4.91it/s]\n 92%|█████████▏| 46/50 [00:09<00:00, 4.95it/s]\n 94%|█████████▍| 47/50 [00:09<00:00, 4.97it/s]\n 96%|█████████▌| 48/50 [00:09<00:00, 4.97it/s]\n 98%|█████████▊| 49/50 [00:10<00:00, 4.98it/s]\n100%|██████████| 50/50 [00:10<00:00, 4.93it/s]\n100%|██████████| 50/50 [00:10<00:00, 4.86it/s]", "metrics": { "predict_time": 12.188462, "total_time": 12.152552 }, "output": [ "https://replicate.delivery/pbxt/othWJdMoXlamMJijbODeonOnUNMd8OfrJi58WfFLF7PqBFfFB/out-0.png" ], "started_at": "2023-08-31T11:14:49.888058Z", "status": "succeeded", "urls": { "get": "https://api.replicate.com/v1/predictions/t6mmqxbbljghbjs5v2rrrb4hqq", "cancel": "https://api.replicate.com/v1/predictions/t6mmqxbbljghbjs5v2rrrb4hqq/cancel" }, "version": "ff18e9374cc16351e898b37e64f5127a5296ec2e963fad3240a0c280f9a2a42b" }
Generated inUsing seed: 114817 Prompt: 3D woman, big eyes, cocktail, smiling, looking at the camera,image of <s0><s1>, <s0><s1>, mobile <s0><s1>, stylized, mobile game icon txt2img mode 0%| | 0/50 [00:00<?, ?it/s] 2%|▏ | 1/50 [00:00<00:10, 4.68it/s] 4%|▍ | 2/50 [00:00<00:09, 4.87it/s] 6%|▌ | 3/50 [00:00<00:09, 4.92it/s] 8%|▊ | 4/50 [00:00<00:09, 4.96it/s] 10%|█ | 5/50 [00:01<00:09, 4.94it/s] 12%|█▏ | 6/50 [00:01<00:08, 4.93it/s] 14%|█▍ | 7/50 [00:01<00:08, 4.95it/s] 16%|█▌ | 8/50 [00:01<00:08, 4.96it/s] 18%|█▊ | 9/50 [00:01<00:08, 4.91it/s] 20%|██ | 10/50 [00:02<00:08, 4.77it/s] 22%|██▏ | 11/50 [00:02<00:08, 4.75it/s] 24%|██▍ | 12/50 [00:02<00:08, 4.72it/s] 26%|██▌ | 13/50 [00:02<00:07, 4.80it/s] 28%|██▊ | 14/50 [00:02<00:07, 4.83it/s] 30%|███ | 15/50 [00:03<00:07, 4.65it/s] 32%|███▏ | 16/50 [00:03<00:07, 4.75it/s] 34%|███▍ | 17/50 [00:03<00:06, 4.82it/s] 36%|███▌ | 18/50 [00:03<00:06, 4.83it/s] 38%|███▊ | 19/50 [00:03<00:06, 4.88it/s] 40%|████ | 20/50 [00:04<00:06, 4.81it/s] 42%|████▏ | 21/50 [00:04<00:05, 4.86it/s] 44%|████▍ | 22/50 [00:04<00:05, 4.89it/s] 46%|████▌ | 23/50 [00:04<00:05, 4.91it/s] 48%|████▊ | 24/50 [00:04<00:05, 4.91it/s] 50%|█████ | 25/50 [00:05<00:05, 4.81it/s] 52%|█████▏ | 26/50 [00:05<00:04, 4.87it/s] 54%|█████▍ | 27/50 [00:05<00:04, 4.89it/s] 56%|█████▌ | 28/50 [00:05<00:04, 4.87it/s] 58%|█████▊ | 29/50 [00:05<00:04, 4.87it/s] 60%|██████ | 30/50 [00:06<00:04, 4.75it/s] 62%|██████▏ | 31/50 [00:06<00:03, 4.82it/s] 64%|██████▍ | 32/50 [00:06<00:03, 4.85it/s] 66%|██████▌ | 33/50 [00:06<00:03, 4.84it/s] 68%|██████▊ | 34/50 [00:07<00:03, 4.84it/s] 70%|███████ | 35/50 [00:07<00:03, 4.77it/s] 72%|███████▏ | 36/50 [00:07<00:02, 4.83it/s] 74%|███████▍ | 37/50 [00:07<00:02, 4.88it/s] 76%|███████▌ | 38/50 [00:07<00:02, 4.91it/s] 78%|███████▊ | 39/50 [00:08<00:02, 4.88it/s] 80%|████████ | 40/50 [00:08<00:02, 4.86it/s] 82%|████████▏ | 41/50 [00:08<00:01, 4.88it/s] 84%|████████▍ | 42/50 [00:08<00:01, 4.88it/s] 86%|████████▌ | 43/50 [00:08<00:01, 4.83it/s] 88%|████████▊ | 44/50 [00:09<00:01, 4.86it/s] 90%|█████████ | 45/50 [00:09<00:01, 4.91it/s] 92%|█████████▏| 46/50 [00:09<00:00, 4.95it/s] 94%|█████████▍| 47/50 [00:09<00:00, 4.97it/s] 96%|█████████▌| 48/50 [00:09<00:00, 4.97it/s] 98%|█████████▊| 49/50 [00:10<00:00, 4.98it/s] 100%|██████████| 50/50 [00:10<00:00, 4.93it/s] 100%|██████████| 50/50 [00:10<00:00, 4.86it/s]
Prediction
geeklab-ltd/app-icon-generator:ff18e9374cc16351e898b37e64f5127a5296ec2e963fad3240a0c280f9a2a42bIDp46cy2zbe7553dsw3kj7capodaStatusSucceededSourceWebHardwareA100 (40GB)Total durationCreatedInput
- width
- 1024
- height
- 1024
- prompt
- angry bird 3d character red bird mobile image of app icon,mobile app icon, stylized, mobile game icon
- refine
- no_refiner
- scheduler
- K_EULER_ANCESTRAL
- lora_scale
- 0.6
- num_outputs
- 1
- guidance_scale
- 7.5
- apply_watermark
- high_noise_frac
- 0.8
- negative_prompt
- multiple characters,(worst quality:1.5), (low quality:1.5), (normal quality:1.5), lowres, bad anatomy, bad hands, multiple eyebrow, (cropped), extra limb, missing limbs, deformed hands, long neck, long body, (bad hands), signature, username, artist name, conjoined fingers, deformed fingers, ugly eyes, imperfect eyes, skewed eyes, unnatural face, unnatural body, error, painting by bad-artist,nsfw,porn,nudity,sexy
- prompt_strength
- 0.8
- num_inference_steps
- 20
{ "width": 1024, "height": 1024, "prompt": "angry bird 3d character red bird mobile image of app icon,mobile app icon, stylized, mobile game icon", "refine": "no_refiner", "scheduler": "K_EULER_ANCESTRAL", "lora_scale": 0.6, "num_outputs": 1, "guidance_scale": 7.5, "apply_watermark": true, "high_noise_frac": 0.8, "negative_prompt": "multiple characters,(worst quality:1.5), (low quality:1.5), (normal quality:1.5), lowres, bad anatomy, bad hands, multiple eyebrow, (cropped), extra limb, missing limbs, deformed hands, long neck, long body, (bad hands), signature, username, artist name, conjoined fingers, deformed fingers, ugly eyes, imperfect eyes, skewed eyes, unnatural face, unnatural body, error, painting by bad-artist,nsfw,porn,nudity,sexy", "prompt_strength": 0.8, "num_inference_steps": 20 }
Install Replicate’s Node.js client library:npm install replicate
Import and set up the client:import Replicate from "replicate"; const replicate = new Replicate({ auth: process.env.REPLICATE_API_TOKEN, });
Run geeklab-ltd/app-icon-generator using Replicate’s API. Check out the model's schema for an overview of inputs and outputs.
const output = await replicate.run( "geeklab-ltd/app-icon-generator:ff18e9374cc16351e898b37e64f5127a5296ec2e963fad3240a0c280f9a2a42b", { input: { width: 1024, height: 1024, prompt: "angry bird 3d character red bird mobile image of app icon,mobile app icon, stylized, mobile game icon", refine: "no_refiner", scheduler: "K_EULER_ANCESTRAL", lora_scale: 0.6, num_outputs: 1, guidance_scale: 7.5, apply_watermark: true, high_noise_frac: 0.8, negative_prompt: "multiple characters,(worst quality:1.5), (low quality:1.5), (normal quality:1.5), lowres, bad anatomy, bad hands, multiple eyebrow, (cropped), extra limb, missing limbs, deformed hands, long neck, long body, (bad hands), signature, username, artist name, conjoined fingers, deformed fingers, ugly eyes, imperfect eyes, skewed eyes, unnatural face, unnatural body, error, painting by bad-artist,nsfw,porn,nudity,sexy", prompt_strength: 0.8, num_inference_steps: 20 } } ); // 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 geeklab-ltd/app-icon-generator using Replicate’s API. Check out the model's schema for an overview of inputs and outputs.
output = replicate.run( "geeklab-ltd/app-icon-generator:ff18e9374cc16351e898b37e64f5127a5296ec2e963fad3240a0c280f9a2a42b", input={ "width": 1024, "height": 1024, "prompt": "angry bird 3d character red bird mobile image of app icon,mobile app icon, stylized, mobile game icon", "refine": "no_refiner", "scheduler": "K_EULER_ANCESTRAL", "lora_scale": 0.6, "num_outputs": 1, "guidance_scale": 7.5, "apply_watermark": True, "high_noise_frac": 0.8, "negative_prompt": "multiple characters,(worst quality:1.5), (low quality:1.5), (normal quality:1.5), lowres, bad anatomy, bad hands, multiple eyebrow, (cropped), extra limb, missing limbs, deformed hands, long neck, long body, (bad hands), signature, username, artist name, conjoined fingers, deformed fingers, ugly eyes, imperfect eyes, skewed eyes, unnatural face, unnatural body, error, painting by bad-artist,nsfw,porn,nudity,sexy", "prompt_strength": 0.8, "num_inference_steps": 20 } ) print(output)
To learn more, take a look at the guide on getting started with Python.
Run geeklab-ltd/app-icon-generator 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": "geeklab-ltd/app-icon-generator:ff18e9374cc16351e898b37e64f5127a5296ec2e963fad3240a0c280f9a2a42b", "input": { "width": 1024, "height": 1024, "prompt": "angry bird 3d character red bird mobile image of app icon,mobile app icon, stylized, mobile game icon", "refine": "no_refiner", "scheduler": "K_EULER_ANCESTRAL", "lora_scale": 0.6, "num_outputs": 1, "guidance_scale": 7.5, "apply_watermark": true, "high_noise_frac": 0.8, "negative_prompt": "multiple characters,(worst quality:1.5), (low quality:1.5), (normal quality:1.5), lowres, bad anatomy, bad hands, multiple eyebrow, (cropped), extra limb, missing limbs, deformed hands, long neck, long body, (bad hands), signature, username, artist name, conjoined fingers, deformed fingers, ugly eyes, imperfect eyes, skewed eyes, unnatural face, unnatural body, error, painting by bad-artist,nsfw,porn,nudity,sexy", "prompt_strength": 0.8, "num_inference_steps": 20 } }' \ https://api.replicate.com/v1/predictions
To learn more, take a look at Replicate’s HTTP API reference docs.
Output
{ "completed_at": "2023-09-21T10:11:38.266054Z", "created_at": "2023-09-21T10:11:32.340461Z", "data_removed": false, "error": null, "id": "p46cy2zbe7553dsw3kj7capoda", "input": { "width": 1024, "height": 1024, "prompt": "angry bird 3d character red bird mobile image of app icon,mobile app icon, stylized, mobile game icon", "refine": "no_refiner", "scheduler": "K_EULER_ANCESTRAL", "lora_scale": 0.6, "num_outputs": 1, "guidance_scale": 7.5, "apply_watermark": true, "high_noise_frac": 0.8, "negative_prompt": "multiple characters,(worst quality:1.5), (low quality:1.5), (normal quality:1.5), lowres, bad anatomy, bad hands, multiple eyebrow, (cropped), extra limb, missing limbs, deformed hands, long neck, long body, (bad hands), signature, username, artist name, conjoined fingers, deformed fingers, ugly eyes, imperfect eyes, skewed eyes, unnatural face, unnatural body, error, painting by bad-artist,nsfw,porn,nudity,sexy", "prompt_strength": 0.8, "num_inference_steps": 20 }, "logs": "Using seed: 57510\nPrompt: angry bird 3d character red bird mobile image of <s0><s1>,mobile <s0><s1>, stylized, mobile game icon\ntxt2img mode\n 0%| | 0/20 [00:00<?, ?it/s]\n 5%|▌ | 1/20 [00:00<00:03, 4.89it/s]\n 10%|█ | 2/20 [00:00<00:03, 4.90it/s]\n 15%|█▌ | 3/20 [00:00<00:03, 4.89it/s]\n 20%|██ | 4/20 [00:00<00:03, 4.89it/s]\n 25%|██▌ | 5/20 [00:01<00:03, 4.85it/s]\n 30%|███ | 6/20 [00:01<00:02, 4.86it/s]\n 35%|███▌ | 7/20 [00:01<00:02, 4.90it/s]\n 40%|████ | 8/20 [00:01<00:02, 4.92it/s]\n 45%|████▌ | 9/20 [00:01<00:02, 4.91it/s]\n 50%|█████ | 10/20 [00:02<00:02, 4.93it/s]\n 55%|█████▌ | 11/20 [00:02<00:01, 4.95it/s]\n 60%|██████ | 12/20 [00:02<00:01, 4.92it/s]\n 65%|██████▌ | 13/20 [00:02<00:01, 4.93it/s]\n 70%|███████ | 14/20 [00:02<00:01, 4.86it/s]\n 75%|███████▌ | 15/20 [00:03<00:01, 4.83it/s]\n 80%|████████ | 16/20 [00:03<00:00, 4.87it/s]\n 85%|████████▌ | 17/20 [00:03<00:00, 4.88it/s]\n 90%|█████████ | 18/20 [00:03<00:00, 4.92it/s]\n 95%|█████████▌| 19/20 [00:03<00:00, 4.90it/s]\n100%|██████████| 20/20 [00:04<00:00, 4.89it/s]\n100%|██████████| 20/20 [00:04<00:00, 4.89it/s]", "metrics": { "predict_time": 5.971243, "total_time": 5.925593 }, "output": [ "https://replicate.delivery/pbxt/4ocsadjtBVY2IJsfYQnAoVJcNb0g4RDfKDreNqfa9EzlNyZGB/out-0.png" ], "started_at": "2023-09-21T10:11:32.294811Z", "status": "succeeded", "urls": { "get": "https://api.replicate.com/v1/predictions/p46cy2zbe7553dsw3kj7capoda", "cancel": "https://api.replicate.com/v1/predictions/p46cy2zbe7553dsw3kj7capoda/cancel" }, "version": "ff18e9374cc16351e898b37e64f5127a5296ec2e963fad3240a0c280f9a2a42b" }
Generated inUsing seed: 57510 Prompt: angry bird 3d character red bird mobile image of <s0><s1>,mobile <s0><s1>, stylized, mobile game icon txt2img mode 0%| | 0/20 [00:00<?, ?it/s] 5%|▌ | 1/20 [00:00<00:03, 4.89it/s] 10%|█ | 2/20 [00:00<00:03, 4.90it/s] 15%|█▌ | 3/20 [00:00<00:03, 4.89it/s] 20%|██ | 4/20 [00:00<00:03, 4.89it/s] 25%|██▌ | 5/20 [00:01<00:03, 4.85it/s] 30%|███ | 6/20 [00:01<00:02, 4.86it/s] 35%|███▌ | 7/20 [00:01<00:02, 4.90it/s] 40%|████ | 8/20 [00:01<00:02, 4.92it/s] 45%|████▌ | 9/20 [00:01<00:02, 4.91it/s] 50%|█████ | 10/20 [00:02<00:02, 4.93it/s] 55%|█████▌ | 11/20 [00:02<00:01, 4.95it/s] 60%|██████ | 12/20 [00:02<00:01, 4.92it/s] 65%|██████▌ | 13/20 [00:02<00:01, 4.93it/s] 70%|███████ | 14/20 [00:02<00:01, 4.86it/s] 75%|███████▌ | 15/20 [00:03<00:01, 4.83it/s] 80%|████████ | 16/20 [00:03<00:00, 4.87it/s] 85%|████████▌ | 17/20 [00:03<00:00, 4.88it/s] 90%|█████████ | 18/20 [00:03<00:00, 4.92it/s] 95%|█████████▌| 19/20 [00:03<00:00, 4.90it/s] 100%|██████████| 20/20 [00:04<00:00, 4.89it/s] 100%|██████████| 20/20 [00:04<00:00, 4.89it/s]
Prediction
geeklab-ltd/app-icon-generator:5d87c4f7ed45e7f42272cf3c77d20c157a8f5d58b3c9194e4de34d5dd43d3880IDuzev7mdbamxjrml4sp2k7cftbmStatusSucceededSourceWebHardwareA100 (80GB)Total durationCreatedInput
- seed
- 8415
- width
- 1024
- height
- 1024
- prompt
- A beach,3d character, surfer, looking at the camera, smiling, blue waves in the background, sunny beach, summer image of app icon,mobile app icon, stylized, mobile game icon
- refine
- no_refiner
- scheduler
- K_EULER_ANCESTRAL
- lora_scale
- 0.95
- num_outputs
- 1
- guidance_scale
- 7.5
- apply_watermark
- high_noise_frac
- 0.8
- negative_prompt
- multiple characters,(worst quality:1.5), (low quality:1.5), (normal quality:1.5), lowres, bad anatomy, bad hands, multiple eyebrow, (cropped), extra limb, missing limbs, deformed hands, long neck, long body, (bad hands), signature, username, artist name, conjoined fingers, deformed fingers, ugly eyes, imperfect eyes, skewed eyes, unnatural face, unnatural body, error, painting by bad-artist,nsfw,porn,nudity,sexy
- prompt_strength
- 0.8
- num_inference_steps
- 40
{ "seed": 8415, "width": 1024, "height": 1024, "prompt": "A beach,3d character, surfer, looking at the camera, smiling, blue waves in the background, sunny beach, summer image of app icon,mobile app icon, stylized, mobile game icon", "refine": "no_refiner", "scheduler": "K_EULER_ANCESTRAL", "lora_scale": 0.95, "num_outputs": 1, "guidance_scale": 7.5, "apply_watermark": true, "high_noise_frac": 0.8, "negative_prompt": "multiple characters,(worst quality:1.5), (low quality:1.5), (normal quality:1.5), lowres, bad anatomy, bad hands, multiple eyebrow, (cropped), extra limb, missing limbs, deformed hands, long neck, long body, (bad hands), signature, username, artist name, conjoined fingers, deformed fingers, ugly eyes, imperfect eyes, skewed eyes, unnatural face, unnatural body, error, painting by bad-artist,nsfw,porn,nudity,sexy", "prompt_strength": 0.8, "num_inference_steps": 40 }
Install Replicate’s Node.js client library:npm install replicate
Import and set up the client:import Replicate from "replicate"; const replicate = new Replicate({ auth: process.env.REPLICATE_API_TOKEN, });
Run geeklab-ltd/app-icon-generator using Replicate’s API. Check out the model's schema for an overview of inputs and outputs.
const output = await replicate.run( "geeklab-ltd/app-icon-generator:5d87c4f7ed45e7f42272cf3c77d20c157a8f5d58b3c9194e4de34d5dd43d3880", { input: { seed: 8415, width: 1024, height: 1024, prompt: "A beach,3d character, surfer, looking at the camera, smiling, blue waves in the background, sunny beach, summer image of app icon,mobile app icon, stylized, mobile game icon", refine: "no_refiner", scheduler: "K_EULER_ANCESTRAL", lora_scale: 0.95, num_outputs: 1, guidance_scale: 7.5, apply_watermark: true, high_noise_frac: 0.8, negative_prompt: "multiple characters,(worst quality:1.5), (low quality:1.5), (normal quality:1.5), lowres, bad anatomy, bad hands, multiple eyebrow, (cropped), extra limb, missing limbs, deformed hands, long neck, long body, (bad hands), signature, username, artist name, conjoined fingers, deformed fingers, ugly eyes, imperfect eyes, skewed eyes, unnatural face, unnatural body, error, painting by bad-artist,nsfw,porn,nudity,sexy", prompt_strength: 0.8, num_inference_steps: 40 } } ); // 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 geeklab-ltd/app-icon-generator using Replicate’s API. Check out the model's schema for an overview of inputs and outputs.
output = replicate.run( "geeklab-ltd/app-icon-generator:5d87c4f7ed45e7f42272cf3c77d20c157a8f5d58b3c9194e4de34d5dd43d3880", input={ "seed": 8415, "width": 1024, "height": 1024, "prompt": "A beach,3d character, surfer, looking at the camera, smiling, blue waves in the background, sunny beach, summer image of app icon,mobile app icon, stylized, mobile game icon", "refine": "no_refiner", "scheduler": "K_EULER_ANCESTRAL", "lora_scale": 0.95, "num_outputs": 1, "guidance_scale": 7.5, "apply_watermark": True, "high_noise_frac": 0.8, "negative_prompt": "multiple characters,(worst quality:1.5), (low quality:1.5), (normal quality:1.5), lowres, bad anatomy, bad hands, multiple eyebrow, (cropped), extra limb, missing limbs, deformed hands, long neck, long body, (bad hands), signature, username, artist name, conjoined fingers, deformed fingers, ugly eyes, imperfect eyes, skewed eyes, unnatural face, unnatural body, error, painting by bad-artist,nsfw,porn,nudity,sexy", "prompt_strength": 0.8, "num_inference_steps": 40 } ) print(output)
To learn more, take a look at the guide on getting started with Python.
Run geeklab-ltd/app-icon-generator 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": "geeklab-ltd/app-icon-generator:5d87c4f7ed45e7f42272cf3c77d20c157a8f5d58b3c9194e4de34d5dd43d3880", "input": { "seed": 8415, "width": 1024, "height": 1024, "prompt": "A beach,3d character, surfer, looking at the camera, smiling, blue waves in the background, sunny beach, summer image of app icon,mobile app icon, stylized, mobile game icon", "refine": "no_refiner", "scheduler": "K_EULER_ANCESTRAL", "lora_scale": 0.95, "num_outputs": 1, "guidance_scale": 7.5, "apply_watermark": true, "high_noise_frac": 0.8, "negative_prompt": "multiple characters,(worst quality:1.5), (low quality:1.5), (normal quality:1.5), lowres, bad anatomy, bad hands, multiple eyebrow, (cropped), extra limb, missing limbs, deformed hands, long neck, long body, (bad hands), signature, username, artist name, conjoined fingers, deformed fingers, ugly eyes, imperfect eyes, skewed eyes, unnatural face, unnatural body, error, painting by bad-artist,nsfw,porn,nudity,sexy", "prompt_strength": 0.8, "num_inference_steps": 40 } }' \ https://api.replicate.com/v1/predictions
To learn more, take a look at Replicate’s HTTP API reference docs.
Output
{ "completed_at": "2023-11-14T13:34:47.186852Z", "created_at": "2023-11-14T13:34:39.496772Z", "data_removed": false, "error": null, "id": "uzev7mdbamxjrml4sp2k7cftbm", "input": { "seed": 8415, "width": 1024, "height": 1024, "prompt": "A beach,3d character, surfer, looking at the camera, smiling, blue waves in the background, sunny beach, summer image of app icon,mobile app icon, stylized, mobile game icon", "refine": "no_refiner", "scheduler": "K_EULER_ANCESTRAL", "lora_scale": 0.95, "num_outputs": 1, "guidance_scale": 7.5, "apply_watermark": true, "high_noise_frac": 0.8, "negative_prompt": "multiple characters,(worst quality:1.5), (low quality:1.5), (normal quality:1.5), lowres, bad anatomy, bad hands, multiple eyebrow, (cropped), extra limb, missing limbs, deformed hands, long neck, long body, (bad hands), signature, username, artist name, conjoined fingers, deformed fingers, ugly eyes, imperfect eyes, skewed eyes, unnatural face, unnatural body, error, painting by bad-artist,nsfw,porn,nudity,sexy", "prompt_strength": 0.8, "num_inference_steps": 40 }, "logs": "Using seed: 8415\nPrompt: A beach,3d character, surfer, looking at the camera, smiling, blue waves in the background, sunny beach, summer image of <s0><s1>,mobile <s0><s1>, stylized, mobile game icon\ntxt2img mode\n 0%| | 0/40 [00:00<?, ?it/s]\n 2%|▎ | 1/40 [00:00<00:06, 6.36it/s]\n 5%|▌ | 2/40 [00:00<00:05, 6.36it/s]\n 8%|▊ | 3/40 [00:00<00:05, 6.37it/s]\n 10%|█ | 4/40 [00:00<00:05, 6.37it/s]\n 12%|█▎ | 5/40 [00:00<00:05, 6.37it/s]\n 15%|█▌ | 6/40 [00:00<00:05, 6.37it/s]\n 18%|█▊ | 7/40 [00:01<00:05, 6.37it/s]\n 20%|██ | 8/40 [00:01<00:05, 6.37it/s]\n 22%|██▎ | 9/40 [00:01<00:04, 6.37it/s]\n 25%|██▌ | 10/40 [00:01<00:04, 6.37it/s]\n 28%|██▊ | 11/40 [00:01<00:04, 6.37it/s]\n 30%|███ | 12/40 [00:01<00:04, 6.37it/s]\n 32%|███▎ | 13/40 [00:02<00:04, 6.37it/s]\n 35%|███▌ | 14/40 [00:02<00:04, 6.37it/s]\n 38%|███▊ | 15/40 [00:02<00:03, 6.36it/s]\n 40%|████ | 16/40 [00:02<00:03, 6.36it/s]\n 42%|████▎ | 17/40 [00:02<00:03, 6.36it/s]\n 45%|████▌ | 18/40 [00:02<00:03, 6.36it/s]\n 48%|████▊ | 19/40 [00:02<00:03, 6.36it/s]\n 50%|█████ | 20/40 [00:03<00:03, 6.37it/s]\n 52%|█████▎ | 21/40 [00:03<00:02, 6.37it/s]\n 55%|█████▌ | 22/40 [00:03<00:02, 6.37it/s]\n 57%|█████▊ | 23/40 [00:03<00:02, 6.37it/s]\n 60%|██████ | 24/40 [00:03<00:02, 6.36it/s]\n 62%|██████▎ | 25/40 [00:03<00:02, 6.37it/s]\n 65%|██████▌ | 26/40 [00:04<00:02, 6.37it/s]\n 68%|██████▊ | 27/40 [00:04<00:02, 6.37it/s]\n 70%|███████ | 28/40 [00:04<00:01, 6.37it/s]\n 72%|███████▎ | 29/40 [00:04<00:01, 6.37it/s]\n 75%|███████▌ | 30/40 [00:04<00:01, 6.37it/s]\n 78%|███████▊ | 31/40 [00:04<00:01, 6.36it/s]\n 80%|████████ | 32/40 [00:05<00:01, 6.36it/s]\n 82%|████████▎ | 33/40 [00:05<00:01, 6.36it/s]\n 85%|████████▌ | 34/40 [00:05<00:00, 6.36it/s]\n 88%|████████▊ | 35/40 [00:05<00:00, 6.36it/s]\n 90%|█████████ | 36/40 [00:05<00:00, 6.36it/s]\n 92%|█████████▎| 37/40 [00:05<00:00, 6.36it/s]\n 95%|█████████▌| 38/40 [00:05<00:00, 6.36it/s]\n 98%|█████████▊| 39/40 [00:06<00:00, 6.36it/s]\n100%|██████████| 40/40 [00:06<00:00, 6.36it/s]\n100%|██████████| 40/40 [00:06<00:00, 6.36it/s]", "metrics": { "predict_time": 7.679939, "total_time": 7.69008 }, "output": [ "https://replicate.delivery/pbxt/2Y1DTbOa2u5CJZhfddZlCBBz7yU9oW4eAX0lgLIYC9G2lS4RA/out-0.png" ], "started_at": "2023-11-14T13:34:39.506913Z", "status": "succeeded", "urls": { "get": "https://api.replicate.com/v1/predictions/uzev7mdbamxjrml4sp2k7cftbm", "cancel": "https://api.replicate.com/v1/predictions/uzev7mdbamxjrml4sp2k7cftbm/cancel" }, "version": "5d87c4f7ed45e7f42272cf3c77d20c157a8f5d58b3c9194e4de34d5dd43d3880" }
Generated inUsing seed: 8415 Prompt: A beach,3d character, surfer, looking at the camera, smiling, blue waves in the background, sunny beach, summer image of <s0><s1>,mobile <s0><s1>, stylized, mobile game icon txt2img mode 0%| | 0/40 [00:00<?, ?it/s] 2%|▎ | 1/40 [00:00<00:06, 6.36it/s] 5%|▌ | 2/40 [00:00<00:05, 6.36it/s] 8%|▊ | 3/40 [00:00<00:05, 6.37it/s] 10%|█ | 4/40 [00:00<00:05, 6.37it/s] 12%|█▎ | 5/40 [00:00<00:05, 6.37it/s] 15%|█▌ | 6/40 [00:00<00:05, 6.37it/s] 18%|█▊ | 7/40 [00:01<00:05, 6.37it/s] 20%|██ | 8/40 [00:01<00:05, 6.37it/s] 22%|██▎ | 9/40 [00:01<00:04, 6.37it/s] 25%|██▌ | 10/40 [00:01<00:04, 6.37it/s] 28%|██▊ | 11/40 [00:01<00:04, 6.37it/s] 30%|███ | 12/40 [00:01<00:04, 6.37it/s] 32%|███▎ | 13/40 [00:02<00:04, 6.37it/s] 35%|███▌ | 14/40 [00:02<00:04, 6.37it/s] 38%|███▊ | 15/40 [00:02<00:03, 6.36it/s] 40%|████ | 16/40 [00:02<00:03, 6.36it/s] 42%|████▎ | 17/40 [00:02<00:03, 6.36it/s] 45%|████▌ | 18/40 [00:02<00:03, 6.36it/s] 48%|████▊ | 19/40 [00:02<00:03, 6.36it/s] 50%|█████ | 20/40 [00:03<00:03, 6.37it/s] 52%|█████▎ | 21/40 [00:03<00:02, 6.37it/s] 55%|█████▌ | 22/40 [00:03<00:02, 6.37it/s] 57%|█████▊ | 23/40 [00:03<00:02, 6.37it/s] 60%|██████ | 24/40 [00:03<00:02, 6.36it/s] 62%|██████▎ | 25/40 [00:03<00:02, 6.37it/s] 65%|██████▌ | 26/40 [00:04<00:02, 6.37it/s] 68%|██████▊ | 27/40 [00:04<00:02, 6.37it/s] 70%|███████ | 28/40 [00:04<00:01, 6.37it/s] 72%|███████▎ | 29/40 [00:04<00:01, 6.37it/s] 75%|███████▌ | 30/40 [00:04<00:01, 6.37it/s] 78%|███████▊ | 31/40 [00:04<00:01, 6.36it/s] 80%|████████ | 32/40 [00:05<00:01, 6.36it/s] 82%|████████▎ | 33/40 [00:05<00:01, 6.36it/s] 85%|████████▌ | 34/40 [00:05<00:00, 6.36it/s] 88%|████████▊ | 35/40 [00:05<00:00, 6.36it/s] 90%|█████████ | 36/40 [00:05<00:00, 6.36it/s] 92%|█████████▎| 37/40 [00:05<00:00, 6.36it/s] 95%|█████████▌| 38/40 [00:05<00:00, 6.36it/s] 98%|█████████▊| 39/40 [00:06<00:00, 6.36it/s] 100%|██████████| 40/40 [00:06<00:00, 6.36it/s] 100%|██████████| 40/40 [00:06<00:00, 6.36it/s]
Prediction
geeklab-ltd/app-icon-generator:5d87c4f7ed45e7f42272cf3c77d20c157a8f5d58b3c9194e4de34d5dd43d3880IDgal3y3db3mpmrzhrm4ufkvb3liStatusSucceededSourceWebHardwareA100 (80GB)Total durationCreatedInput
- seed
- 8415
- width
- 1024
- height
- 1024
- prompt
- A beach,3d character, surfer, looking at the camera, smiling, blue waves in the background, sunny beach, summer image of app icon,mobile app icon, stylized, mobile game icon
- refine
- no_refiner
- scheduler
- K_EULER_ANCESTRAL
- lora_scale
- 0.8
- num_outputs
- 1
- guidance_scale
- 7.5
- apply_watermark
- high_noise_frac
- 0.8
- negative_prompt
- multiple characters,(worst quality:1.5), (low quality:1.5), (normal quality:1.5), lowres, bad anatomy, bad hands, multiple eyebrow, (cropped), extra limb, missing limbs, deformed hands, long neck, long body, (bad hands), signature, username, artist name, conjoined fingers, deformed fingers, ugly eyes, imperfect eyes, skewed eyes, unnatural face, unnatural body, error, painting by bad-artist,nsfw,porn,nudity,sexy
- prompt_strength
- 0.8
- num_inference_steps
- 40
{ "seed": 8415, "width": 1024, "height": 1024, "prompt": "A beach,3d character, surfer, looking at the camera, smiling, blue waves in the background, sunny beach, summer image of app icon,mobile app icon, stylized, mobile game icon", "refine": "no_refiner", "scheduler": "K_EULER_ANCESTRAL", "lora_scale": 0.8, "num_outputs": 1, "guidance_scale": 7.5, "apply_watermark": true, "high_noise_frac": 0.8, "negative_prompt": "multiple characters,(worst quality:1.5), (low quality:1.5), (normal quality:1.5), lowres, bad anatomy, bad hands, multiple eyebrow, (cropped), extra limb, missing limbs, deformed hands, long neck, long body, (bad hands), signature, username, artist name, conjoined fingers, deformed fingers, ugly eyes, imperfect eyes, skewed eyes, unnatural face, unnatural body, error, painting by bad-artist,nsfw,porn,nudity,sexy", "prompt_strength": 0.8, "num_inference_steps": 40 }
Install Replicate’s Node.js client library:npm install replicate
Import and set up the client:import Replicate from "replicate"; const replicate = new Replicate({ auth: process.env.REPLICATE_API_TOKEN, });
Run geeklab-ltd/app-icon-generator using Replicate’s API. Check out the model's schema for an overview of inputs and outputs.
const output = await replicate.run( "geeklab-ltd/app-icon-generator:5d87c4f7ed45e7f42272cf3c77d20c157a8f5d58b3c9194e4de34d5dd43d3880", { input: { seed: 8415, width: 1024, height: 1024, prompt: "A beach,3d character, surfer, looking at the camera, smiling, blue waves in the background, sunny beach, summer image of app icon,mobile app icon, stylized, mobile game icon", refine: "no_refiner", scheduler: "K_EULER_ANCESTRAL", lora_scale: 0.8, num_outputs: 1, guidance_scale: 7.5, apply_watermark: true, high_noise_frac: 0.8, negative_prompt: "multiple characters,(worst quality:1.5), (low quality:1.5), (normal quality:1.5), lowres, bad anatomy, bad hands, multiple eyebrow, (cropped), extra limb, missing limbs, deformed hands, long neck, long body, (bad hands), signature, username, artist name, conjoined fingers, deformed fingers, ugly eyes, imperfect eyes, skewed eyes, unnatural face, unnatural body, error, painting by bad-artist,nsfw,porn,nudity,sexy", prompt_strength: 0.8, num_inference_steps: 40 } } ); // 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 geeklab-ltd/app-icon-generator using Replicate’s API. Check out the model's schema for an overview of inputs and outputs.
output = replicate.run( "geeklab-ltd/app-icon-generator:5d87c4f7ed45e7f42272cf3c77d20c157a8f5d58b3c9194e4de34d5dd43d3880", input={ "seed": 8415, "width": 1024, "height": 1024, "prompt": "A beach,3d character, surfer, looking at the camera, smiling, blue waves in the background, sunny beach, summer image of app icon,mobile app icon, stylized, mobile game icon", "refine": "no_refiner", "scheduler": "K_EULER_ANCESTRAL", "lora_scale": 0.8, "num_outputs": 1, "guidance_scale": 7.5, "apply_watermark": True, "high_noise_frac": 0.8, "negative_prompt": "multiple characters,(worst quality:1.5), (low quality:1.5), (normal quality:1.5), lowres, bad anatomy, bad hands, multiple eyebrow, (cropped), extra limb, missing limbs, deformed hands, long neck, long body, (bad hands), signature, username, artist name, conjoined fingers, deformed fingers, ugly eyes, imperfect eyes, skewed eyes, unnatural face, unnatural body, error, painting by bad-artist,nsfw,porn,nudity,sexy", "prompt_strength": 0.8, "num_inference_steps": 40 } ) print(output)
To learn more, take a look at the guide on getting started with Python.
Run geeklab-ltd/app-icon-generator 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": "geeklab-ltd/app-icon-generator:5d87c4f7ed45e7f42272cf3c77d20c157a8f5d58b3c9194e4de34d5dd43d3880", "input": { "seed": 8415, "width": 1024, "height": 1024, "prompt": "A beach,3d character, surfer, looking at the camera, smiling, blue waves in the background, sunny beach, summer image of app icon,mobile app icon, stylized, mobile game icon", "refine": "no_refiner", "scheduler": "K_EULER_ANCESTRAL", "lora_scale": 0.8, "num_outputs": 1, "guidance_scale": 7.5, "apply_watermark": true, "high_noise_frac": 0.8, "negative_prompt": "multiple characters,(worst quality:1.5), (low quality:1.5), (normal quality:1.5), lowres, bad anatomy, bad hands, multiple eyebrow, (cropped), extra limb, missing limbs, deformed hands, long neck, long body, (bad hands), signature, username, artist name, conjoined fingers, deformed fingers, ugly eyes, imperfect eyes, skewed eyes, unnatural face, unnatural body, error, painting by bad-artist,nsfw,porn,nudity,sexy", "prompt_strength": 0.8, "num_inference_steps": 40 } }' \ https://api.replicate.com/v1/predictions
To learn more, take a look at Replicate’s HTTP API reference docs.
Output
{ "completed_at": "2023-11-14T13:34:31.586085Z", "created_at": "2023-11-14T13:34:23.889266Z", "data_removed": false, "error": null, "id": "gal3y3db3mpmrzhrm4ufkvb3li", "input": { "seed": 8415, "width": 1024, "height": 1024, "prompt": "A beach,3d character, surfer, looking at the camera, smiling, blue waves in the background, sunny beach, summer image of app icon,mobile app icon, stylized, mobile game icon", "refine": "no_refiner", "scheduler": "K_EULER_ANCESTRAL", "lora_scale": 0.8, "num_outputs": 1, "guidance_scale": 7.5, "apply_watermark": true, "high_noise_frac": 0.8, "negative_prompt": "multiple characters,(worst quality:1.5), (low quality:1.5), (normal quality:1.5), lowres, bad anatomy, bad hands, multiple eyebrow, (cropped), extra limb, missing limbs, deformed hands, long neck, long body, (bad hands), signature, username, artist name, conjoined fingers, deformed fingers, ugly eyes, imperfect eyes, skewed eyes, unnatural face, unnatural body, error, painting by bad-artist,nsfw,porn,nudity,sexy", "prompt_strength": 0.8, "num_inference_steps": 40 }, "logs": "Using seed: 8415\nPrompt: A beach,3d character, surfer, looking at the camera, smiling, blue waves in the background, sunny beach, summer image of <s0><s1>,mobile <s0><s1>, stylized, mobile game icon\ntxt2img mode\n 0%| | 0/40 [00:00<?, ?it/s]\n 2%|▎ | 1/40 [00:00<00:06, 6.36it/s]\n 5%|▌ | 2/40 [00:00<00:05, 6.37it/s]\n 8%|▊ | 3/40 [00:00<00:05, 6.37it/s]\n 10%|█ | 4/40 [00:00<00:05, 6.37it/s]\n 12%|█▎ | 5/40 [00:00<00:05, 6.37it/s]\n 15%|█▌ | 6/40 [00:00<00:05, 6.36it/s]\n 18%|█▊ | 7/40 [00:01<00:05, 6.36it/s]\n 20%|██ | 8/40 [00:01<00:05, 6.36it/s]\n 22%|██▎ | 9/40 [00:01<00:04, 6.36it/s]\n 25%|██▌ | 10/40 [00:01<00:04, 6.36it/s]\n 28%|██▊ | 11/40 [00:01<00:04, 6.37it/s]\n 30%|███ | 12/40 [00:01<00:04, 6.37it/s]\n 32%|███▎ | 13/40 [00:02<00:04, 6.36it/s]\n 35%|███▌ | 14/40 [00:02<00:04, 6.37it/s]\n 38%|███▊ | 15/40 [00:02<00:03, 6.37it/s]\n 40%|████ | 16/40 [00:02<00:03, 6.37it/s]\n 42%|████▎ | 17/40 [00:02<00:03, 6.37it/s]\n 45%|████▌ | 18/40 [00:02<00:03, 6.36it/s]\n 48%|████▊ | 19/40 [00:02<00:03, 6.36it/s]\n 50%|█████ | 20/40 [00:03<00:03, 6.36it/s]\n 52%|█████▎ | 21/40 [00:03<00:02, 6.37it/s]\n 55%|█████▌ | 22/40 [00:03<00:02, 6.37it/s]\n 57%|█████▊ | 23/40 [00:03<00:02, 6.37it/s]\n 60%|██████ | 24/40 [00:03<00:02, 6.36it/s]\n 62%|██████▎ | 25/40 [00:03<00:02, 6.37it/s]\n 65%|██████▌ | 26/40 [00:04<00:02, 6.36it/s]\n 68%|██████▊ | 27/40 [00:04<00:02, 6.36it/s]\n 70%|███████ | 28/40 [00:04<00:01, 6.37it/s]\n 72%|███████▎ | 29/40 [00:04<00:01, 6.37it/s]\n 75%|███████▌ | 30/40 [00:04<00:01, 6.37it/s]\n 78%|███████▊ | 31/40 [00:04<00:01, 6.37it/s]\n 80%|████████ | 32/40 [00:05<00:01, 6.37it/s]\n 82%|████████▎ | 33/40 [00:05<00:01, 6.37it/s]\n 85%|████████▌ | 34/40 [00:05<00:00, 6.37it/s]\n 88%|████████▊ | 35/40 [00:05<00:00, 6.37it/s]\n 90%|█████████ | 36/40 [00:05<00:00, 6.37it/s]\n 92%|█████████▎| 37/40 [00:05<00:00, 6.37it/s]\n 95%|█████████▌| 38/40 [00:05<00:00, 6.37it/s]\n 98%|█████████▊| 39/40 [00:06<00:00, 6.37it/s]\n100%|██████████| 40/40 [00:06<00:00, 6.37it/s]\n100%|██████████| 40/40 [00:06<00:00, 6.37it/s]", "metrics": { "predict_time": 7.686798, "total_time": 7.696819 }, "output": [ "https://replicate.delivery/pbxt/e5PdfGP91htAqkn5SLRDWu9r5Ynz4xhZPoi9xSisAPbnlS4RA/out-0.png" ], "started_at": "2023-11-14T13:34:23.899287Z", "status": "succeeded", "urls": { "get": "https://api.replicate.com/v1/predictions/gal3y3db3mpmrzhrm4ufkvb3li", "cancel": "https://api.replicate.com/v1/predictions/gal3y3db3mpmrzhrm4ufkvb3li/cancel" }, "version": "5d87c4f7ed45e7f42272cf3c77d20c157a8f5d58b3c9194e4de34d5dd43d3880" }
Generated inUsing seed: 8415 Prompt: A beach,3d character, surfer, looking at the camera, smiling, blue waves in the background, sunny beach, summer image of <s0><s1>,mobile <s0><s1>, stylized, mobile game icon txt2img mode 0%| | 0/40 [00:00<?, ?it/s] 2%|▎ | 1/40 [00:00<00:06, 6.36it/s] 5%|▌ | 2/40 [00:00<00:05, 6.37it/s] 8%|▊ | 3/40 [00:00<00:05, 6.37it/s] 10%|█ | 4/40 [00:00<00:05, 6.37it/s] 12%|█▎ | 5/40 [00:00<00:05, 6.37it/s] 15%|█▌ | 6/40 [00:00<00:05, 6.36it/s] 18%|█▊ | 7/40 [00:01<00:05, 6.36it/s] 20%|██ | 8/40 [00:01<00:05, 6.36it/s] 22%|██▎ | 9/40 [00:01<00:04, 6.36it/s] 25%|██▌ | 10/40 [00:01<00:04, 6.36it/s] 28%|██▊ | 11/40 [00:01<00:04, 6.37it/s] 30%|███ | 12/40 [00:01<00:04, 6.37it/s] 32%|███▎ | 13/40 [00:02<00:04, 6.36it/s] 35%|███▌ | 14/40 [00:02<00:04, 6.37it/s] 38%|███▊ | 15/40 [00:02<00:03, 6.37it/s] 40%|████ | 16/40 [00:02<00:03, 6.37it/s] 42%|████▎ | 17/40 [00:02<00:03, 6.37it/s] 45%|████▌ | 18/40 [00:02<00:03, 6.36it/s] 48%|████▊ | 19/40 [00:02<00:03, 6.36it/s] 50%|█████ | 20/40 [00:03<00:03, 6.36it/s] 52%|█████▎ | 21/40 [00:03<00:02, 6.37it/s] 55%|█████▌ | 22/40 [00:03<00:02, 6.37it/s] 57%|█████▊ | 23/40 [00:03<00:02, 6.37it/s] 60%|██████ | 24/40 [00:03<00:02, 6.36it/s] 62%|██████▎ | 25/40 [00:03<00:02, 6.37it/s] 65%|██████▌ | 26/40 [00:04<00:02, 6.36it/s] 68%|██████▊ | 27/40 [00:04<00:02, 6.36it/s] 70%|███████ | 28/40 [00:04<00:01, 6.37it/s] 72%|███████▎ | 29/40 [00:04<00:01, 6.37it/s] 75%|███████▌ | 30/40 [00:04<00:01, 6.37it/s] 78%|███████▊ | 31/40 [00:04<00:01, 6.37it/s] 80%|████████ | 32/40 [00:05<00:01, 6.37it/s] 82%|████████▎ | 33/40 [00:05<00:01, 6.37it/s] 85%|████████▌ | 34/40 [00:05<00:00, 6.37it/s] 88%|████████▊ | 35/40 [00:05<00:00, 6.37it/s] 90%|█████████ | 36/40 [00:05<00:00, 6.37it/s] 92%|█████████▎| 37/40 [00:05<00:00, 6.37it/s] 95%|█████████▌| 38/40 [00:05<00:00, 6.37it/s] 98%|█████████▊| 39/40 [00:06<00:00, 6.37it/s] 100%|██████████| 40/40 [00:06<00:00, 6.37it/s] 100%|██████████| 40/40 [00:06<00:00, 6.37it/s]
Prediction
geeklab-ltd/app-icon-generator:5d87c4f7ed45e7f42272cf3c77d20c157a8f5d58b3c9194e4de34d5dd43d3880IDsusyqydbtkl26vy47ga4hwisq4StatusSucceededSourceAPIHardwareA100 (80GB)Total durationCreatedData has been removedAll input parameters, output values, and logs are automatically removed after an hour, by default, for predictions created through the API.Prediction
geeklab-ltd/app-icon-generator:5d87c4f7ed45e7f42272cf3c77d20c157a8f5d58b3c9194e4de34d5dd43d3880IDkeuzf33bukj2gms5cii55acbbeStatusSucceededSourceWebHardwareA100 (80GB)Total durationCreatedInput
- seed
- 8415
- width
- 1024
- height
- 1024
- prompt
- A beach,3d character, surfer, looking at the camera, smiling, blue waves in the background, sunny beach, summer image of app icon,mobile app icon, stylized, mobile game icon
- refine
- no_refiner
- scheduler
- K_EULER_ANCESTRAL
- lora_scale
- 0.4
- num_outputs
- 1
- guidance_scale
- 7.5
- apply_watermark
- high_noise_frac
- 0.8
- negative_prompt
- multiple characters,(worst quality:1.5), (low quality:1.5), (normal quality:1.5), lowres, bad anatomy, bad hands, multiple eyebrow, (cropped), extra limb, missing limbs, deformed hands, long neck, long body, (bad hands), signature, username, artist name, conjoined fingers, deformed fingers, ugly eyes, imperfect eyes, skewed eyes, unnatural face, unnatural body, error, painting by bad-artist,nsfw,porn,nudity,sexy
- prompt_strength
- 0.8
- num_inference_steps
- 40
{ "seed": 8415, "width": 1024, "height": 1024, "prompt": "A beach,3d character, surfer, looking at the camera, smiling, blue waves in the background, sunny beach, summer image of app icon,mobile app icon, stylized, mobile game icon", "refine": "no_refiner", "scheduler": "K_EULER_ANCESTRAL", "lora_scale": 0.4, "num_outputs": 1, "guidance_scale": 7.5, "apply_watermark": true, "high_noise_frac": 0.8, "negative_prompt": "multiple characters,(worst quality:1.5), (low quality:1.5), (normal quality:1.5), lowres, bad anatomy, bad hands, multiple eyebrow, (cropped), extra limb, missing limbs, deformed hands, long neck, long body, (bad hands), signature, username, artist name, conjoined fingers, deformed fingers, ugly eyes, imperfect eyes, skewed eyes, unnatural face, unnatural body, error, painting by bad-artist,nsfw,porn,nudity,sexy", "prompt_strength": 0.8, "num_inference_steps": 40 }
Install Replicate’s Node.js client library:npm install replicate
Import and set up the client:import Replicate from "replicate"; const replicate = new Replicate({ auth: process.env.REPLICATE_API_TOKEN, });
Run geeklab-ltd/app-icon-generator using Replicate’s API. Check out the model's schema for an overview of inputs and outputs.
const output = await replicate.run( "geeklab-ltd/app-icon-generator:5d87c4f7ed45e7f42272cf3c77d20c157a8f5d58b3c9194e4de34d5dd43d3880", { input: { seed: 8415, width: 1024, height: 1024, prompt: "A beach,3d character, surfer, looking at the camera, smiling, blue waves in the background, sunny beach, summer image of app icon,mobile app icon, stylized, mobile game icon", refine: "no_refiner", scheduler: "K_EULER_ANCESTRAL", lora_scale: 0.4, num_outputs: 1, guidance_scale: 7.5, apply_watermark: true, high_noise_frac: 0.8, negative_prompt: "multiple characters,(worst quality:1.5), (low quality:1.5), (normal quality:1.5), lowres, bad anatomy, bad hands, multiple eyebrow, (cropped), extra limb, missing limbs, deformed hands, long neck, long body, (bad hands), signature, username, artist name, conjoined fingers, deformed fingers, ugly eyes, imperfect eyes, skewed eyes, unnatural face, unnatural body, error, painting by bad-artist,nsfw,porn,nudity,sexy", prompt_strength: 0.8, num_inference_steps: 40 } } ); // 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 geeklab-ltd/app-icon-generator using Replicate’s API. Check out the model's schema for an overview of inputs and outputs.
output = replicate.run( "geeklab-ltd/app-icon-generator:5d87c4f7ed45e7f42272cf3c77d20c157a8f5d58b3c9194e4de34d5dd43d3880", input={ "seed": 8415, "width": 1024, "height": 1024, "prompt": "A beach,3d character, surfer, looking at the camera, smiling, blue waves in the background, sunny beach, summer image of app icon,mobile app icon, stylized, mobile game icon", "refine": "no_refiner", "scheduler": "K_EULER_ANCESTRAL", "lora_scale": 0.4, "num_outputs": 1, "guidance_scale": 7.5, "apply_watermark": True, "high_noise_frac": 0.8, "negative_prompt": "multiple characters,(worst quality:1.5), (low quality:1.5), (normal quality:1.5), lowres, bad anatomy, bad hands, multiple eyebrow, (cropped), extra limb, missing limbs, deformed hands, long neck, long body, (bad hands), signature, username, artist name, conjoined fingers, deformed fingers, ugly eyes, imperfect eyes, skewed eyes, unnatural face, unnatural body, error, painting by bad-artist,nsfw,porn,nudity,sexy", "prompt_strength": 0.8, "num_inference_steps": 40 } ) print(output)
To learn more, take a look at the guide on getting started with Python.
Run geeklab-ltd/app-icon-generator 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": "geeklab-ltd/app-icon-generator:5d87c4f7ed45e7f42272cf3c77d20c157a8f5d58b3c9194e4de34d5dd43d3880", "input": { "seed": 8415, "width": 1024, "height": 1024, "prompt": "A beach,3d character, surfer, looking at the camera, smiling, blue waves in the background, sunny beach, summer image of app icon,mobile app icon, stylized, mobile game icon", "refine": "no_refiner", "scheduler": "K_EULER_ANCESTRAL", "lora_scale": 0.4, "num_outputs": 1, "guidance_scale": 7.5, "apply_watermark": true, "high_noise_frac": 0.8, "negative_prompt": "multiple characters,(worst quality:1.5), (low quality:1.5), (normal quality:1.5), lowres, bad anatomy, bad hands, multiple eyebrow, (cropped), extra limb, missing limbs, deformed hands, long neck, long body, (bad hands), signature, username, artist name, conjoined fingers, deformed fingers, ugly eyes, imperfect eyes, skewed eyes, unnatural face, unnatural body, error, painting by bad-artist,nsfw,porn,nudity,sexy", "prompt_strength": 0.8, "num_inference_steps": 40 } }' \ https://api.replicate.com/v1/predictions
To learn more, take a look at Replicate’s HTTP API reference docs.
Output
{ "completed_at": "2023-11-14T13:35:06.520814Z", "created_at": "2023-11-14T13:34:58.842406Z", "data_removed": false, "error": null, "id": "keuzf33bukj2gms5cii55acbbe", "input": { "seed": 8415, "width": 1024, "height": 1024, "prompt": "A beach,3d character, surfer, looking at the camera, smiling, blue waves in the background, sunny beach, summer image of app icon,mobile app icon, stylized, mobile game icon", "refine": "no_refiner", "scheduler": "K_EULER_ANCESTRAL", "lora_scale": 0.4, "num_outputs": 1, "guidance_scale": 7.5, "apply_watermark": true, "high_noise_frac": 0.8, "negative_prompt": "multiple characters,(worst quality:1.5), (low quality:1.5), (normal quality:1.5), lowres, bad anatomy, bad hands, multiple eyebrow, (cropped), extra limb, missing limbs, deformed hands, long neck, long body, (bad hands), signature, username, artist name, conjoined fingers, deformed fingers, ugly eyes, imperfect eyes, skewed eyes, unnatural face, unnatural body, error, painting by bad-artist,nsfw,porn,nudity,sexy", "prompt_strength": 0.8, "num_inference_steps": 40 }, "logs": "Using seed: 8415\nPrompt: A beach,3d character, surfer, looking at the camera, smiling, blue waves in the background, sunny beach, summer image of <s0><s1>,mobile <s0><s1>, stylized, mobile game icon\ntxt2img mode\n 0%| | 0/40 [00:00<?, ?it/s]\n 2%|▎ | 1/40 [00:00<00:06, 6.36it/s]\n 5%|▌ | 2/40 [00:00<00:05, 6.36it/s]\n 8%|▊ | 3/40 [00:00<00:05, 6.37it/s]\n 10%|█ | 4/40 [00:00<00:05, 6.36it/s]\n 12%|█▎ | 5/40 [00:00<00:05, 6.36it/s]\n 15%|█▌ | 6/40 [00:00<00:05, 6.35it/s]\n 18%|█▊ | 7/40 [00:01<00:05, 6.35it/s]\n 20%|██ | 8/40 [00:01<00:05, 6.36it/s]\n 22%|██▎ | 9/40 [00:01<00:04, 6.36it/s]\n 25%|██▌ | 10/40 [00:01<00:04, 6.36it/s]\n 28%|██▊ | 11/40 [00:01<00:04, 6.36it/s]\n 30%|███ | 12/40 [00:01<00:04, 6.36it/s]\n 32%|███▎ | 13/40 [00:02<00:04, 6.36it/s]\n 35%|███▌ | 14/40 [00:02<00:04, 6.36it/s]\n 38%|███▊ | 15/40 [00:02<00:03, 6.36it/s]\n 40%|████ | 16/40 [00:02<00:03, 6.36it/s]\n 42%|████▎ | 17/40 [00:02<00:03, 6.36it/s]\n 45%|████▌ | 18/40 [00:02<00:03, 6.37it/s]\n 48%|████▊ | 19/40 [00:02<00:03, 6.37it/s]\n 50%|█████ | 20/40 [00:03<00:03, 6.36it/s]\n 52%|█████▎ | 21/40 [00:03<00:02, 6.37it/s]\n 55%|█████▌ | 22/40 [00:03<00:02, 6.36it/s]\n 57%|█████▊ | 23/40 [00:03<00:02, 6.36it/s]\n 60%|██████ | 24/40 [00:03<00:02, 6.36it/s]\n 62%|██████▎ | 25/40 [00:03<00:02, 6.36it/s]\n 65%|██████▌ | 26/40 [00:04<00:02, 6.36it/s]\n 68%|██████▊ | 27/40 [00:04<00:02, 6.36it/s]\n 70%|███████ | 28/40 [00:04<00:01, 6.37it/s]\n 72%|███████▎ | 29/40 [00:04<00:01, 6.36it/s]\n 75%|███████▌ | 30/40 [00:04<00:01, 6.36it/s]\n 78%|███████▊ | 31/40 [00:04<00:01, 6.36it/s]\n 80%|████████ | 32/40 [00:05<00:01, 6.36it/s]\n 82%|████████▎ | 33/40 [00:05<00:01, 6.36it/s]\n 85%|████████▌ | 34/40 [00:05<00:00, 6.36it/s]\n 88%|████████▊ | 35/40 [00:05<00:00, 6.36it/s]\n 90%|█████████ | 36/40 [00:05<00:00, 6.36it/s]\n 92%|█████████▎| 37/40 [00:05<00:00, 6.35it/s]\n 95%|█████████▌| 38/40 [00:05<00:00, 6.35it/s]\n 98%|█████████▊| 39/40 [00:06<00:00, 6.36it/s]\n100%|██████████| 40/40 [00:06<00:00, 6.36it/s]\n100%|██████████| 40/40 [00:06<00:00, 6.36it/s]", "metrics": { "predict_time": 7.670322, "total_time": 7.678408 }, "output": [ "https://replicate.delivery/pbxt/Z7A2PkQ4iUYgHdNi074aGGiwRUtW8wEGHEqOYUGE3zvipEeIA/out-0.png" ], "started_at": "2023-11-14T13:34:58.850492Z", "status": "succeeded", "urls": { "get": "https://api.replicate.com/v1/predictions/keuzf33bukj2gms5cii55acbbe", "cancel": "https://api.replicate.com/v1/predictions/keuzf33bukj2gms5cii55acbbe/cancel" }, "version": "5d87c4f7ed45e7f42272cf3c77d20c157a8f5d58b3c9194e4de34d5dd43d3880" }
Generated inUsing seed: 8415 Prompt: A beach,3d character, surfer, looking at the camera, smiling, blue waves in the background, sunny beach, summer image of <s0><s1>,mobile <s0><s1>, stylized, mobile game icon txt2img mode 0%| | 0/40 [00:00<?, ?it/s] 2%|▎ | 1/40 [00:00<00:06, 6.36it/s] 5%|▌ | 2/40 [00:00<00:05, 6.36it/s] 8%|▊ | 3/40 [00:00<00:05, 6.37it/s] 10%|█ | 4/40 [00:00<00:05, 6.36it/s] 12%|█▎ | 5/40 [00:00<00:05, 6.36it/s] 15%|█▌ | 6/40 [00:00<00:05, 6.35it/s] 18%|█▊ | 7/40 [00:01<00:05, 6.35it/s] 20%|██ | 8/40 [00:01<00:05, 6.36it/s] 22%|██▎ | 9/40 [00:01<00:04, 6.36it/s] 25%|██▌ | 10/40 [00:01<00:04, 6.36it/s] 28%|██▊ | 11/40 [00:01<00:04, 6.36it/s] 30%|███ | 12/40 [00:01<00:04, 6.36it/s] 32%|███▎ | 13/40 [00:02<00:04, 6.36it/s] 35%|███▌ | 14/40 [00:02<00:04, 6.36it/s] 38%|███▊ | 15/40 [00:02<00:03, 6.36it/s] 40%|████ | 16/40 [00:02<00:03, 6.36it/s] 42%|████▎ | 17/40 [00:02<00:03, 6.36it/s] 45%|████▌ | 18/40 [00:02<00:03, 6.37it/s] 48%|████▊ | 19/40 [00:02<00:03, 6.37it/s] 50%|█████ | 20/40 [00:03<00:03, 6.36it/s] 52%|█████▎ | 21/40 [00:03<00:02, 6.37it/s] 55%|█████▌ | 22/40 [00:03<00:02, 6.36it/s] 57%|█████▊ | 23/40 [00:03<00:02, 6.36it/s] 60%|██████ | 24/40 [00:03<00:02, 6.36it/s] 62%|██████▎ | 25/40 [00:03<00:02, 6.36it/s] 65%|██████▌ | 26/40 [00:04<00:02, 6.36it/s] 68%|██████▊ | 27/40 [00:04<00:02, 6.36it/s] 70%|███████ | 28/40 [00:04<00:01, 6.37it/s] 72%|███████▎ | 29/40 [00:04<00:01, 6.36it/s] 75%|███████▌ | 30/40 [00:04<00:01, 6.36it/s] 78%|███████▊ | 31/40 [00:04<00:01, 6.36it/s] 80%|████████ | 32/40 [00:05<00:01, 6.36it/s] 82%|████████▎ | 33/40 [00:05<00:01, 6.36it/s] 85%|████████▌ | 34/40 [00:05<00:00, 6.36it/s] 88%|████████▊ | 35/40 [00:05<00:00, 6.36it/s] 90%|█████████ | 36/40 [00:05<00:00, 6.36it/s] 92%|█████████▎| 37/40 [00:05<00:00, 6.35it/s] 95%|█████████▌| 38/40 [00:05<00:00, 6.35it/s] 98%|█████████▊| 39/40 [00:06<00:00, 6.36it/s] 100%|██████████| 40/40 [00:06<00:00, 6.36it/s] 100%|██████████| 40/40 [00:06<00:00, 6.36it/s]
Want to make some of these yourself?
Run this model