siamakf / petpatrol-joyi
(Updated 9 months, 3 weeks ago)
- Public
- 38 runs
-
H100
Prediction
siamakf/petpatrol-joyi:45aaeeea669ff0f0a5056d93827c70ff6241d7d9cf518a55cedec7a9117ce70eIDewckmtj1m1rm60chnf2bnjcb7rStatusSucceededSourceWebHardwareH100Total durationCreatedInput
- model
- dev
- width
- 1024
- height
- 1024
- prompt
- Extremely aesthetically pleasing photo of a HAPPY golden retriever chasing a squirrel. Depict a well lit, beautiful, sunny day with clear blue skies. The atmosphere should be lively and inviting. Show a big beautiful red barn in the scene. Emphasize the beautiful light of day. Display the dog in extremely high fidelity. Use extreme level of of depth of field to separate dog from the background. Keep details of dog realistic. DO NOT display genitals of dog. Keep dog's facial expression very happy. Render 4 limbs maximum. surrounded by illustrations of cheese, bacon, dog biscuits, sparkles, rock and roll
- extra_lora
- davisbrown/flux-half-illustration
- lora_scale
- 1
- num_outputs
- 4
- aspect_ratio
- 1:1
- output_format
- png
- guidance_scale
- 3.5
- output_quality
- 100
- extra_lora_scale
- 0.8
- num_inference_steps
- 28
{ "model": "dev", "width": 1024, "height": 1024, "prompt": "Extremely aesthetically pleasing photo of a HAPPY golden retriever chasing a squirrel. Depict a well lit, beautiful, sunny day with clear blue skies. The atmosphere should be lively and inviting. Show a big beautiful red barn in the scene. Emphasize the beautiful light of day. Display the dog in extremely high fidelity. Use extreme level of of depth of field to separate dog from the background. Keep details of dog realistic. DO NOT display genitals of dog. Keep dog's facial expression very happy. Render 4 limbs maximum. surrounded by illustrations of cheese, bacon, dog biscuits, sparkles, rock and roll", "extra_lora": "davisbrown/flux-half-illustration", "lora_scale": 1, "num_outputs": 4, "aspect_ratio": "1:1", "output_format": "png", "guidance_scale": 3.5, "output_quality": 100, "extra_lora_scale": 0.8, "num_inference_steps": 28 }
Install Replicate’s Node.js client library:npm install replicate
Import and set up the client:import Replicate from "replicate"; import fs from "node:fs"; const replicate = new Replicate({ auth: process.env.REPLICATE_API_TOKEN, });
Run siamakf/petpatrol-joyi using Replicate’s API. Check out the model's schema for an overview of inputs and outputs.
const output = await replicate.run( "siamakf/petpatrol-joyi:45aaeeea669ff0f0a5056d93827c70ff6241d7d9cf518a55cedec7a9117ce70e", { input: { model: "dev", width: 1024, height: 1024, prompt: "Extremely aesthetically pleasing photo of a HAPPY golden retriever chasing a squirrel. Depict a well lit, beautiful, sunny day with clear blue skies. The atmosphere should be lively and inviting. Show a big beautiful red barn in the scene. Emphasize the beautiful light of day. Display the dog in extremely high fidelity. Use extreme level of of depth of field to separate dog from the background. Keep details of dog realistic. DO NOT display genitals of dog. Keep dog's facial expression very happy. Render 4 limbs maximum. surrounded by illustrations of cheese, bacon, dog biscuits, sparkles, rock and roll", extra_lora: "davisbrown/flux-half-illustration", lora_scale: 1, num_outputs: 4, aspect_ratio: "1:1", output_format: "png", guidance_scale: 3.5, output_quality: 100, extra_lora_scale: 0.8, num_inference_steps: 28 } } ); // To access the file URL: console.log(output[0].url()); //=> "http://example.com" // To write the file to disk: fs.writeFile("my-image.png", output[0]);
To learn more, take a look at the guide on getting started with Node.js.
Install Replicate’s Python client library:pip install replicate
Import the client:import replicate
Run siamakf/petpatrol-joyi using Replicate’s API. Check out the model's schema for an overview of inputs and outputs.
output = replicate.run( "siamakf/petpatrol-joyi:45aaeeea669ff0f0a5056d93827c70ff6241d7d9cf518a55cedec7a9117ce70e", input={ "model": "dev", "width": 1024, "height": 1024, "prompt": "Extremely aesthetically pleasing photo of a HAPPY golden retriever chasing a squirrel. Depict a well lit, beautiful, sunny day with clear blue skies. The atmosphere should be lively and inviting. Show a big beautiful red barn in the scene. Emphasize the beautiful light of day. Display the dog in extremely high fidelity. Use extreme level of of depth of field to separate dog from the background. Keep details of dog realistic. DO NOT display genitals of dog. Keep dog's facial expression very happy. Render 4 limbs maximum. surrounded by illustrations of cheese, bacon, dog biscuits, sparkles, rock and roll", "extra_lora": "davisbrown/flux-half-illustration", "lora_scale": 1, "num_outputs": 4, "aspect_ratio": "1:1", "output_format": "png", "guidance_scale": 3.5, "output_quality": 100, "extra_lora_scale": 0.8, "num_inference_steps": 28 } ) print(output)
To learn more, take a look at the guide on getting started with Python.
Run siamakf/petpatrol-joyi 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": "siamakf/petpatrol-joyi:45aaeeea669ff0f0a5056d93827c70ff6241d7d9cf518a55cedec7a9117ce70e", "input": { "model": "dev", "width": 1024, "height": 1024, "prompt": "Extremely aesthetically pleasing photo of a HAPPY golden retriever chasing a squirrel. Depict a well lit, beautiful, sunny day with clear blue skies. The atmosphere should be lively and inviting. Show a big beautiful red barn in the scene. Emphasize the beautiful light of day. Display the dog in extremely high fidelity. Use extreme level of of depth of field to separate dog from the background. Keep details of dog realistic. DO NOT display genitals of dog. Keep dog\'s facial expression very happy. Render 4 limbs maximum. surrounded by illustrations of cheese, bacon, dog biscuits, sparkles, rock and roll", "extra_lora": "davisbrown/flux-half-illustration", "lora_scale": 1, "num_outputs": 4, "aspect_ratio": "1:1", "output_format": "png", "guidance_scale": 3.5, "output_quality": 100, "extra_lora_scale": 0.8, "num_inference_steps": 28 } }' \ https://api.replicate.com/v1/predictions
To learn more, take a look at Replicate’s HTTP API reference docs.
You can run this model locally using Cog. First, install Cog:brew install cog
If you don’t have Homebrew, there are other installation options available.
Run this to download the model and run it in your local environment:
cog predict r8.im/siamakf/petpatrol-joyi@sha256:45aaeeea669ff0f0a5056d93827c70ff6241d7d9cf518a55cedec7a9117ce70e \ -i 'model="dev"' \ -i 'width=1024' \ -i 'height=1024' \ -i $'prompt="Extremely aesthetically pleasing photo of a HAPPY golden retriever chasing a squirrel. Depict a well lit, beautiful, sunny day with clear blue skies. The atmosphere should be lively and inviting. Show a big beautiful red barn in the scene. Emphasize the beautiful light of day. Display the dog in extremely high fidelity. Use extreme level of of depth of field to separate dog from the background. Keep details of dog realistic. DO NOT display genitals of dog. Keep dog\'s facial expression very happy. Render 4 limbs maximum. surrounded by illustrations of cheese, bacon, dog biscuits, sparkles, rock and roll"' \ -i 'extra_lora="davisbrown/flux-half-illustration"' \ -i 'lora_scale=1' \ -i 'num_outputs=4' \ -i 'aspect_ratio="1:1"' \ -i 'output_format="png"' \ -i 'guidance_scale=3.5' \ -i 'output_quality=100' \ -i 'extra_lora_scale=0.8' \ -i 'num_inference_steps=28'
To learn more, take a look at the Cog documentation.
Run this to download the model and run it in your local environment:
docker run -d -p 5000:5000 --gpus=all r8.im/siamakf/petpatrol-joyi@sha256:45aaeeea669ff0f0a5056d93827c70ff6241d7d9cf518a55cedec7a9117ce70e
curl -s -X POST \ -H "Content-Type: application/json" \ -d $'{ "input": { "model": "dev", "width": 1024, "height": 1024, "prompt": "Extremely aesthetically pleasing photo of a HAPPY golden retriever chasing a squirrel. Depict a well lit, beautiful, sunny day with clear blue skies. The atmosphere should be lively and inviting. Show a big beautiful red barn in the scene. Emphasize the beautiful light of day. Display the dog in extremely high fidelity. Use extreme level of of depth of field to separate dog from the background. Keep details of dog realistic. DO NOT display genitals of dog. Keep dog\'s facial expression very happy. Render 4 limbs maximum. surrounded by illustrations of cheese, bacon, dog biscuits, sparkles, rock and roll", "extra_lora": "davisbrown/flux-half-illustration", "lora_scale": 1, "num_outputs": 4, "aspect_ratio": "1:1", "output_format": "png", "guidance_scale": 3.5, "output_quality": 100, "extra_lora_scale": 0.8, "num_inference_steps": 28 } }' \ http://localhost:5000/predictions
To learn more, take a look at the Cog documentation.
Output
{ "completed_at": "2024-09-01T04:09:03.098599Z", "created_at": "2024-09-01T04:07:31.488000Z", "data_removed": false, "error": null, "id": "ewckmtj1m1rm60chnf2bnjcb7r", "input": { "model": "dev", "width": 1024, "height": 1024, "prompt": "Extremely aesthetically pleasing photo of a HAPPY golden retriever chasing a squirrel. Depict a well lit, beautiful, sunny day with clear blue skies. The atmosphere should be lively and inviting. Show a big beautiful red barn in the scene. Emphasize the beautiful light of day. Display the dog in extremely high fidelity. Use extreme level of of depth of field to separate dog from the background. Keep details of dog realistic. DO NOT display genitals of dog. Keep dog's facial expression very happy. Render 4 limbs maximum. surrounded by illustrations of cheese, bacon, dog biscuits, sparkles, rock and roll", "extra_lora": "davisbrown/flux-half-illustration", "lora_scale": 1, "num_outputs": 4, "aspect_ratio": "1:1", "output_format": "png", "guidance_scale": 3.5, "output_quality": 100, "extra_lora_scale": 0.8, "num_inference_steps": 28 }, "logs": "Using seed: 41574\nPrompt: Extremely aesthetically pleasing photo of a HAPPY golden retriever chasing a squirrel. Depict a well lit, beautiful, sunny day with clear blue skies. The atmosphere should be lively and inviting. Show a big beautiful red barn in the scene. Emphasize the beautiful light of day. Display the dog in extremely high fidelity. Use extreme level of of depth of field to separate dog from the background. Keep details of dog realistic. DO NOT display genitals of dog. Keep dog's facial expression very happy. Render 4 limbs maximum. surrounded by illustrations of cheese, bacon, dog biscuits, sparkles, rock and roll\ntxt2img mode\nUsing dev model\nLoading extra LoRA weights from: davisbrown/flux-half-illustration\nfree=9483357999104\nDownloading weights\n2024-09-01T04:08:00Z | INFO | [ Initiating ] chunk_size=150M dest=/tmp/tmp3ckzneog/weights url=https://replicate.delivery/yhqm/dJsahMRiZL7wB9DINVTulG6WKGuYIcIYOhXD8dBZx6mFaB1E/trained_model.tar\n2024-09-01T04:08:04Z | INFO | [ Complete ] dest=/tmp/tmp3ckzneog/weights size=\"172 MB\" total_elapsed=4.445s url=https://replicate.delivery/yhqm/dJsahMRiZL7wB9DINVTulG6WKGuYIcIYOhXD8dBZx6mFaB1E/trained_model.tar\nDownloaded weights in 4.48s\nfree=9483185946624\nDownloading weights\n2024-09-01T04:08:14Z | INFO | [ Initiating ] chunk_size=150M dest=/tmp/tmp2yu5te8h/weights url=https://replicate.com/davisbrown/flux-half-illustration/_weights\n2024-09-01T04:08:14Z | INFO | [ Redirect ] redirect_url=https://replicate.delivery/yhqm/73FW5i0TrPrZO9vTmmqWvJXVUfiP7YzCXn4TjGbUJDBRdypJA/trained_model.tar url=https://replicate.com/davisbrown/flux-half-illustration/_weights\n2024-09-01T04:08:16Z | INFO | [ Complete ] dest=/tmp/tmp2yu5te8h/weights size=\"172 MB\" total_elapsed=1.827s url=https://replicate.com/davisbrown/flux-half-illustration/_weights\nDownloaded weights in 1.94s\nLoaded LoRAs in 27.82s\nThe following part of your input was truncated because CLIP can only handle sequences up to 77 tokens: [\"the background. keep details of dog realistic. do not display genitals of dog. keep dog's facial expression very happy. render 4 limbs maximum. surrounded by illustrations of cheese, bacon, dog biscuits, sparkles, rock and roll\", \"the background. keep details of dog realistic. do not display genitals of dog. keep dog's facial expression very happy. render 4 limbs maximum. surrounded by illustrations of cheese, bacon, dog biscuits, sparkles, rock and roll\", \"the background. keep details of dog realistic. do not display genitals of dog. keep dog's facial expression very happy. render 4 limbs maximum. surrounded by illustrations of cheese, bacon, dog biscuits, sparkles, rock and roll\", \"the background. keep details of dog realistic. do not display genitals of dog. keep dog's facial expression very happy. render 4 limbs maximum. surrounded by illustrations of cheese, bacon, dog biscuits, sparkles, rock and roll\"]\n 0%| | 0/28 [00:00<?, ?it/s]\n 4%|▎ | 1/28 [00:01<00:30, 1.14s/it]\n 7%|▋ | 2/28 [00:02<00:27, 1.04s/it]\n 11%|█ | 3/28 [00:03<00:27, 1.08s/it]\n 14%|█▍ | 4/28 [00:04<00:26, 1.10s/it]\n 18%|█▊ | 5/28 [00:05<00:25, 1.12s/it]\n 21%|██▏ | 6/28 [00:06<00:24, 1.12s/it]\n 25%|██▌ | 7/28 [00:07<00:23, 1.13s/it]\n 29%|██▊ | 8/28 [00:08<00:22, 1.13s/it]\n 32%|███▏ | 9/28 [00:10<00:21, 1.13s/it]\n 36%|███▌ | 10/28 [00:11<00:20, 1.14s/it]\n 39%|███▉ | 11/28 [00:12<00:19, 1.14s/it]\n 43%|████▎ | 12/28 [00:13<00:18, 1.14s/it]\n 46%|████▋ | 13/28 [00:14<00:17, 1.14s/it]\n 50%|█████ | 14/28 [00:15<00:15, 1.14s/it]\n 54%|█████▎ | 15/28 [00:16<00:14, 1.14s/it]\n 57%|█████▋ | 16/28 [00:18<00:13, 1.14s/it]\n 61%|██████ | 17/28 [00:19<00:12, 1.14s/it]\n 64%|██████▍ | 18/28 [00:20<00:11, 1.14s/it]\n 68%|██████▊ | 19/28 [00:21<00:10, 1.14s/it]\n 71%|███████▏ | 20/28 [00:22<00:09, 1.14s/it]\n 75%|███████▌ | 21/28 [00:23<00:07, 1.14s/it]\n 79%|███████▊ | 22/28 [00:24<00:06, 1.14s/it]\n 82%|████████▏ | 23/28 [00:26<00:05, 1.14s/it]\n 86%|████████▌ | 24/28 [00:27<00:04, 1.14s/it]\n 89%|████████▉ | 25/28 [00:28<00:03, 1.14s/it]\n 93%|█████████▎| 26/28 [00:29<00:02, 1.14s/it]\n 96%|█████████▋| 27/28 [00:30<00:01, 1.14s/it]\n100%|██████████| 28/28 [00:31<00:00, 1.14s/it]\n100%|██████████| 28/28 [00:31<00:00, 1.13s/it]", "metrics": { "predict_time": 62.634005161, "total_time": 91.610599 }, "output": [ "https://replicate.delivery/yhqm/MU071NYcgp54OdQepVFDKMsfaecalyHuNbDq7lQ89ab8WzwmA/out-0.png", "https://replicate.delivery/yhqm/dBSIMmB3AjZOD9NHFt6qOGq2DM7XW66ufhb1GlKCG9feWzwmA/out-1.png", "https://replicate.delivery/yhqm/MlBMB7I8CjaiBhR7PuqBQx4SwP235Bqst65F8oNbCou3aG2E/out-2.png", "https://replicate.delivery/yhqm/pOoOYxNshC4LO5jngifg5DJ4xfKle2ZR0hNeJX0yLeCzbNDbC/out-3.png" ], "started_at": "2024-09-01T04:08:00.464594Z", "status": "succeeded", "urls": { "get": "https://api.replicate.com/v1/predictions/ewckmtj1m1rm60chnf2bnjcb7r", "cancel": "https://api.replicate.com/v1/predictions/ewckmtj1m1rm60chnf2bnjcb7r/cancel" }, "version": "45aaeeea669ff0f0a5056d93827c70ff6241d7d9cf518a55cedec7a9117ce70e" }
Generated inUsing seed: 41574 Prompt: Extremely aesthetically pleasing photo of a HAPPY golden retriever chasing a squirrel. Depict a well lit, beautiful, sunny day with clear blue skies. The atmosphere should be lively and inviting. Show a big beautiful red barn in the scene. Emphasize the beautiful light of day. Display the dog in extremely high fidelity. Use extreme level of of depth of field to separate dog from the background. Keep details of dog realistic. DO NOT display genitals of dog. Keep dog's facial expression very happy. Render 4 limbs maximum. surrounded by illustrations of cheese, bacon, dog biscuits, sparkles, rock and roll txt2img mode Using dev model Loading extra LoRA weights from: davisbrown/flux-half-illustration free=9483357999104 Downloading weights 2024-09-01T04:08:00Z | INFO | [ Initiating ] chunk_size=150M dest=/tmp/tmp3ckzneog/weights url=https://replicate.delivery/yhqm/dJsahMRiZL7wB9DINVTulG6WKGuYIcIYOhXD8dBZx6mFaB1E/trained_model.tar 2024-09-01T04:08:04Z | INFO | [ Complete ] dest=/tmp/tmp3ckzneog/weights size="172 MB" total_elapsed=4.445s url=https://replicate.delivery/yhqm/dJsahMRiZL7wB9DINVTulG6WKGuYIcIYOhXD8dBZx6mFaB1E/trained_model.tar Downloaded weights in 4.48s free=9483185946624 Downloading weights 2024-09-01T04:08:14Z | INFO | [ Initiating ] chunk_size=150M dest=/tmp/tmp2yu5te8h/weights url=https://replicate.com/davisbrown/flux-half-illustration/_weights 2024-09-01T04:08:14Z | INFO | [ Redirect ] redirect_url=https://replicate.delivery/yhqm/73FW5i0TrPrZO9vTmmqWvJXVUfiP7YzCXn4TjGbUJDBRdypJA/trained_model.tar url=https://replicate.com/davisbrown/flux-half-illustration/_weights 2024-09-01T04:08:16Z | INFO | [ Complete ] dest=/tmp/tmp2yu5te8h/weights size="172 MB" total_elapsed=1.827s url=https://replicate.com/davisbrown/flux-half-illustration/_weights Downloaded weights in 1.94s Loaded LoRAs in 27.82s The following part of your input was truncated because CLIP can only handle sequences up to 77 tokens: ["the background. keep details of dog realistic. do not display genitals of dog. keep dog's facial expression very happy. render 4 limbs maximum. surrounded by illustrations of cheese, bacon, dog biscuits, sparkles, rock and roll", "the background. keep details of dog realistic. do not display genitals of dog. keep dog's facial expression very happy. render 4 limbs maximum. surrounded by illustrations of cheese, bacon, dog biscuits, sparkles, rock and roll", "the background. keep details of dog realistic. do not display genitals of dog. keep dog's facial expression very happy. render 4 limbs maximum. surrounded by illustrations of cheese, bacon, dog biscuits, sparkles, rock and roll", "the background. keep details of dog realistic. do not display genitals of dog. keep dog's facial expression very happy. render 4 limbs maximum. surrounded by illustrations of cheese, bacon, dog biscuits, sparkles, rock and roll"] 0%| | 0/28 [00:00<?, ?it/s] 4%|▎ | 1/28 [00:01<00:30, 1.14s/it] 7%|▋ | 2/28 [00:02<00:27, 1.04s/it] 11%|█ | 3/28 [00:03<00:27, 1.08s/it] 14%|█▍ | 4/28 [00:04<00:26, 1.10s/it] 18%|█▊ | 5/28 [00:05<00:25, 1.12s/it] 21%|██▏ | 6/28 [00:06<00:24, 1.12s/it] 25%|██▌ | 7/28 [00:07<00:23, 1.13s/it] 29%|██▊ | 8/28 [00:08<00:22, 1.13s/it] 32%|███▏ | 9/28 [00:10<00:21, 1.13s/it] 36%|███▌ | 10/28 [00:11<00:20, 1.14s/it] 39%|███▉ | 11/28 [00:12<00:19, 1.14s/it] 43%|████▎ | 12/28 [00:13<00:18, 1.14s/it] 46%|████▋ | 13/28 [00:14<00:17, 1.14s/it] 50%|█████ | 14/28 [00:15<00:15, 1.14s/it] 54%|█████▎ | 15/28 [00:16<00:14, 1.14s/it] 57%|█████▋ | 16/28 [00:18<00:13, 1.14s/it] 61%|██████ | 17/28 [00:19<00:12, 1.14s/it] 64%|██████▍ | 18/28 [00:20<00:11, 1.14s/it] 68%|██████▊ | 19/28 [00:21<00:10, 1.14s/it] 71%|███████▏ | 20/28 [00:22<00:09, 1.14s/it] 75%|███████▌ | 21/28 [00:23<00:07, 1.14s/it] 79%|███████▊ | 22/28 [00:24<00:06, 1.14s/it] 82%|████████▏ | 23/28 [00:26<00:05, 1.14s/it] 86%|████████▌ | 24/28 [00:27<00:04, 1.14s/it] 89%|████████▉ | 25/28 [00:28<00:03, 1.14s/it] 93%|█████████▎| 26/28 [00:29<00:02, 1.14s/it] 96%|█████████▋| 27/28 [00:30<00:01, 1.14s/it] 100%|██████████| 28/28 [00:31<00:00, 1.14s/it] 100%|██████████| 28/28 [00:31<00:00, 1.13s/it]
Prediction
siamakf/petpatrol-joyi:45aaeeea669ff0f0a5056d93827c70ff6241d7d9cf518a55cedec7a9117ce70eIDch0m1hwdkhrm20che9xa85jwwcStatusSucceededSourceWebHardwareH100Total durationCreatedInput
- model
- dev
- width
- 1024
- height
- 1024
- prompt
- Extremely aesthetically pleasing photo of a HAPPY golden retriever chasing a squirrel. Depict a well lit, beautiful, sunny day with clear blue skies. The atmosphere should be lively and inviting. Show a big beautiful red barn in the scene. Emphasize the beautiful light of day. Display the dog in extremely high fidelity. Use extreme level of of depth of field to separate dog from the background. Keep details of dog realistic. DO NOT display genitals of dog. Keep dog's facial expression very happy. Render 4 limbs maximum.
- lora_scale
- 1
- num_outputs
- 4
- aspect_ratio
- 1:1
- output_format
- png
- guidance_scale
- 3.5
- output_quality
- 100
- num_inference_steps
- 28
{ "model": "dev", "width": 1024, "height": 1024, "prompt": "Extremely aesthetically pleasing photo of a HAPPY golden retriever chasing a squirrel. Depict a well lit, beautiful, sunny day with clear blue skies. The atmosphere should be lively and inviting. Show a big beautiful red barn in the scene. Emphasize the beautiful light of day. Display the dog in extremely high fidelity. Use extreme level of of depth of field to separate dog from the background. Keep details of dog realistic. DO NOT display genitals of dog. Keep dog's facial expression very happy. Render 4 limbs maximum. ", "lora_scale": 1, "num_outputs": 4, "aspect_ratio": "1:1", "output_format": "png", "guidance_scale": 3.5, "output_quality": 100, "num_inference_steps": 28 }
Install Replicate’s Node.js client library:npm install replicate
Import and set up the client:import Replicate from "replicate"; import fs from "node:fs"; const replicate = new Replicate({ auth: process.env.REPLICATE_API_TOKEN, });
Run siamakf/petpatrol-joyi using Replicate’s API. Check out the model's schema for an overview of inputs and outputs.
const output = await replicate.run( "siamakf/petpatrol-joyi:45aaeeea669ff0f0a5056d93827c70ff6241d7d9cf518a55cedec7a9117ce70e", { input: { model: "dev", width: 1024, height: 1024, prompt: "Extremely aesthetically pleasing photo of a HAPPY golden retriever chasing a squirrel. Depict a well lit, beautiful, sunny day with clear blue skies. The atmosphere should be lively and inviting. Show a big beautiful red barn in the scene. Emphasize the beautiful light of day. Display the dog in extremely high fidelity. Use extreme level of of depth of field to separate dog from the background. Keep details of dog realistic. DO NOT display genitals of dog. Keep dog's facial expression very happy. Render 4 limbs maximum. ", lora_scale: 1, num_outputs: 4, aspect_ratio: "1:1", output_format: "png", guidance_scale: 3.5, output_quality: 100, num_inference_steps: 28 } } ); // To access the file URL: console.log(output[0].url()); //=> "http://example.com" // To write the file to disk: fs.writeFile("my-image.png", output[0]);
To learn more, take a look at the guide on getting started with Node.js.
Install Replicate’s Python client library:pip install replicate
Import the client:import replicate
Run siamakf/petpatrol-joyi using Replicate’s API. Check out the model's schema for an overview of inputs and outputs.
output = replicate.run( "siamakf/petpatrol-joyi:45aaeeea669ff0f0a5056d93827c70ff6241d7d9cf518a55cedec7a9117ce70e", input={ "model": "dev", "width": 1024, "height": 1024, "prompt": "Extremely aesthetically pleasing photo of a HAPPY golden retriever chasing a squirrel. Depict a well lit, beautiful, sunny day with clear blue skies. The atmosphere should be lively and inviting. Show a big beautiful red barn in the scene. Emphasize the beautiful light of day. Display the dog in extremely high fidelity. Use extreme level of of depth of field to separate dog from the background. Keep details of dog realistic. DO NOT display genitals of dog. Keep dog's facial expression very happy. Render 4 limbs maximum. ", "lora_scale": 1, "num_outputs": 4, "aspect_ratio": "1:1", "output_format": "png", "guidance_scale": 3.5, "output_quality": 100, "num_inference_steps": 28 } ) print(output)
To learn more, take a look at the guide on getting started with Python.
Run siamakf/petpatrol-joyi 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": "siamakf/petpatrol-joyi:45aaeeea669ff0f0a5056d93827c70ff6241d7d9cf518a55cedec7a9117ce70e", "input": { "model": "dev", "width": 1024, "height": 1024, "prompt": "Extremely aesthetically pleasing photo of a HAPPY golden retriever chasing a squirrel. Depict a well lit, beautiful, sunny day with clear blue skies. The atmosphere should be lively and inviting. Show a big beautiful red barn in the scene. Emphasize the beautiful light of day. Display the dog in extremely high fidelity. Use extreme level of of depth of field to separate dog from the background. Keep details of dog realistic. DO NOT display genitals of dog. Keep dog\'s facial expression very happy. Render 4 limbs maximum. ", "lora_scale": 1, "num_outputs": 4, "aspect_ratio": "1:1", "output_format": "png", "guidance_scale": 3.5, "output_quality": 100, "num_inference_steps": 28 } }' \ https://api.replicate.com/v1/predictions
To learn more, take a look at Replicate’s HTTP API reference docs.
You can run this model locally using Cog. First, install Cog:brew install cog
If you don’t have Homebrew, there are other installation options available.
Run this to download the model and run it in your local environment:
cog predict r8.im/siamakf/petpatrol-joyi@sha256:45aaeeea669ff0f0a5056d93827c70ff6241d7d9cf518a55cedec7a9117ce70e \ -i 'model="dev"' \ -i 'width=1024' \ -i 'height=1024' \ -i $'prompt="Extremely aesthetically pleasing photo of a HAPPY golden retriever chasing a squirrel. Depict a well lit, beautiful, sunny day with clear blue skies. The atmosphere should be lively and inviting. Show a big beautiful red barn in the scene. Emphasize the beautiful light of day. Display the dog in extremely high fidelity. Use extreme level of of depth of field to separate dog from the background. Keep details of dog realistic. DO NOT display genitals of dog. Keep dog\'s facial expression very happy. Render 4 limbs maximum. "' \ -i 'lora_scale=1' \ -i 'num_outputs=4' \ -i 'aspect_ratio="1:1"' \ -i 'output_format="png"' \ -i 'guidance_scale=3.5' \ -i 'output_quality=100' \ -i 'num_inference_steps=28'
To learn more, take a look at the Cog documentation.
Run this to download the model and run it in your local environment:
docker run -d -p 5000:5000 --gpus=all r8.im/siamakf/petpatrol-joyi@sha256:45aaeeea669ff0f0a5056d93827c70ff6241d7d9cf518a55cedec7a9117ce70e
curl -s -X POST \ -H "Content-Type: application/json" \ -d $'{ "input": { "model": "dev", "width": 1024, "height": 1024, "prompt": "Extremely aesthetically pleasing photo of a HAPPY golden retriever chasing a squirrel. Depict a well lit, beautiful, sunny day with clear blue skies. The atmosphere should be lively and inviting. Show a big beautiful red barn in the scene. Emphasize the beautiful light of day. Display the dog in extremely high fidelity. Use extreme level of of depth of field to separate dog from the background. Keep details of dog realistic. DO NOT display genitals of dog. Keep dog\'s facial expression very happy. Render 4 limbs maximum. ", "lora_scale": 1, "num_outputs": 4, "aspect_ratio": "1:1", "output_format": "png", "guidance_scale": 3.5, "output_quality": 100, "num_inference_steps": 28 } }' \ http://localhost:5000/predictions
To learn more, take a look at the Cog documentation.
Output
{ "completed_at": "2024-08-21T01:09:27.157967Z", "created_at": "2024-08-21T01:08:39.964000Z", "data_removed": false, "error": null, "id": "ch0m1hwdkhrm20che9xa85jwwc", "input": { "model": "dev", "width": 1024, "height": 1024, "prompt": "Extremely aesthetically pleasing photo of a HAPPY golden retriever chasing a squirrel. Depict a well lit, beautiful, sunny day with clear blue skies. The atmosphere should be lively and inviting. Show a big beautiful red barn in the scene. Emphasize the beautiful light of day. Display the dog in extremely high fidelity. Use extreme level of of depth of field to separate dog from the background. Keep details of dog realistic. DO NOT display genitals of dog. Keep dog's facial expression very happy. Render 4 limbs maximum. ", "lora_scale": 1, "num_outputs": 4, "aspect_ratio": "1:1", "output_format": "png", "guidance_scale": 3.5, "output_quality": 100, "num_inference_steps": 28 }, "logs": "Using seed: 64890\nPrompt: Extremely aesthetically pleasing photo of a HAPPY golden retriever chasing a squirrel. Depict a well lit, beautiful, sunny day with clear blue skies. The atmosphere should be lively and inviting. Show a big beautiful red barn in the scene. Emphasize the beautiful light of day. Display the dog in extremely high fidelity. Use extreme level of of depth of field to separate dog from the background. Keep details of dog realistic. DO NOT display genitals of dog. Keep dog's facial expression very happy. Render 4 limbs maximum.\ntxt2img mode\nUsing dev model\nLoading LoRA weights\nEnsuring enough disk space...\nFree disk space: 9941902639104\nDownloading weights\n2024-08-21T01:08:44Z | INFO | [ Initiating ] chunk_size=150M dest=/src/weights-cache/11340029d5aab708 url=https://replicate.delivery/yhqm/dJsahMRiZL7wB9DINVTulG6WKGuYIcIYOhXD8dBZx6mFaB1E/trained_model.tar\n2024-08-21T01:08:47Z | INFO | [ Complete ] dest=/src/weights-cache/11340029d5aab708 size=\"172 MB\" total_elapsed=3.141s url=https://replicate.delivery/yhqm/dJsahMRiZL7wB9DINVTulG6WKGuYIcIYOhXD8dBZx6mFaB1E/trained_model.tar\nb''\nDownloaded weights in 3.1756668090820312 seconds\nLoRA weights loaded successfully\nThe following part of your input was truncated because CLIP can only handle sequences up to 77 tokens: [\"the background. keep details of dog realistic. do not display genitals of dog. keep dog's facial expression very happy. render 4 limbs maximum.\", \"the background. keep details of dog realistic. do not display genitals of dog. keep dog's facial expression very happy. render 4 limbs maximum.\", \"the background. keep details of dog realistic. do not display genitals of dog. keep dog's facial expression very happy. render 4 limbs maximum.\", \"the background. keep details of dog realistic. do not display genitals of dog. keep dog's facial expression very happy. render 4 limbs maximum.\"]\n 0%| | 0/28 [00:00<?, ?it/s]\n 4%|▎ | 1/28 [00:01<00:27, 1.00s/it]\n 7%|▋ | 2/28 [00:01<00:22, 1.14it/s]\n 11%|█ | 3/28 [00:02<00:23, 1.07it/s]\n 14%|█▍ | 4/28 [00:03<00:23, 1.04it/s]\n 18%|█▊ | 5/28 [00:04<00:22, 1.02it/s]\n 21%|██▏ | 6/28 [00:05<00:21, 1.01it/s]\n 25%|██▌ | 7/28 [00:06<00:20, 1.00it/s]\n 29%|██▊ | 8/28 [00:07<00:20, 1.00s/it]\n 32%|███▏ | 9/28 [00:08<00:19, 1.00s/it]\n 36%|███▌ | 10/28 [00:09<00:18, 1.01s/it]\n 39%|███▉ | 11/28 [00:10<00:17, 1.01s/it]\n 43%|████▎ | 12/28 [00:11<00:16, 1.01s/it]\n 46%|████▋ | 13/28 [00:12<00:15, 1.01s/it]\n 50%|█████ | 14/28 [00:13<00:14, 1.01s/it]\n 54%|█████▎ | 15/28 [00:14<00:13, 1.01s/it]\n 57%|█████▋ | 16/28 [00:15<00:12, 1.01s/it]\n 61%|██████ | 17/28 [00:16<00:11, 1.01s/it]\n 64%|██████▍ | 18/28 [00:17<00:10, 1.01s/it]\n 68%|██████▊ | 19/28 [00:18<00:09, 1.01s/it]\n 71%|███████▏ | 20/28 [00:19<00:08, 1.01s/it]\n 75%|███████▌ | 21/28 [00:20<00:07, 1.01s/it]\n 79%|███████▊ | 22/28 [00:21<00:06, 1.01s/it]\n 82%|████████▏ | 23/28 [00:22<00:05, 1.01s/it]\n 86%|████████▌ | 24/28 [00:23<00:04, 1.01s/it]\n 89%|████████▉ | 25/28 [00:24<00:03, 1.01s/it]\n 93%|█████████▎| 26/28 [00:25<00:02, 1.01s/it]\n 96%|█████████▋| 27/28 [00:26<00:01, 1.01s/it]\n100%|██████████| 28/28 [00:27<00:00, 1.01s/it]\n100%|██████████| 28/28 [00:27<00:00, 1.00it/s]", "metrics": { "predict_time": 42.706495726, "total_time": 47.193967 }, "output": [ "https://replicate.delivery/yhqm/LeEMd7XRFu2yI6lDPPDFyf2GIU9C3Xq7ygPlQFc2vKNGBvUTA/out-0.png", "https://replicate.delivery/yhqm/F5HHqtXZvvLbBJRB9NxVeOv0vRlXW0f3hfR1rJzks1NMCeSNB/out-1.png", "https://replicate.delivery/yhqm/uUK9fjJGzrXHWClOfCS5qi6o2WbwzkBJzjx1EyxB4XGGBvUTA/out-2.png", "https://replicate.delivery/yhqm/3fdRy3T0xhUIO6g9fEilqBMohCuA9voSXqfdEetDFVEfI4laC/out-3.png" ], "started_at": "2024-08-21T01:08:44.451471Z", "status": "succeeded", "urls": { "get": "https://api.replicate.com/v1/predictions/ch0m1hwdkhrm20che9xa85jwwc", "cancel": "https://api.replicate.com/v1/predictions/ch0m1hwdkhrm20che9xa85jwwc/cancel" }, "version": "45aaeeea669ff0f0a5056d93827c70ff6241d7d9cf518a55cedec7a9117ce70e" }
Generated inUsing seed: 64890 Prompt: Extremely aesthetically pleasing photo of a HAPPY golden retriever chasing a squirrel. Depict a well lit, beautiful, sunny day with clear blue skies. The atmosphere should be lively and inviting. Show a big beautiful red barn in the scene. Emphasize the beautiful light of day. Display the dog in extremely high fidelity. Use extreme level of of depth of field to separate dog from the background. Keep details of dog realistic. DO NOT display genitals of dog. Keep dog's facial expression very happy. Render 4 limbs maximum. txt2img mode Using dev model Loading LoRA weights Ensuring enough disk space... Free disk space: 9941902639104 Downloading weights 2024-08-21T01:08:44Z | INFO | [ Initiating ] chunk_size=150M dest=/src/weights-cache/11340029d5aab708 url=https://replicate.delivery/yhqm/dJsahMRiZL7wB9DINVTulG6WKGuYIcIYOhXD8dBZx6mFaB1E/trained_model.tar 2024-08-21T01:08:47Z | INFO | [ Complete ] dest=/src/weights-cache/11340029d5aab708 size="172 MB" total_elapsed=3.141s url=https://replicate.delivery/yhqm/dJsahMRiZL7wB9DINVTulG6WKGuYIcIYOhXD8dBZx6mFaB1E/trained_model.tar b'' Downloaded weights in 3.1756668090820312 seconds LoRA weights loaded successfully The following part of your input was truncated because CLIP can only handle sequences up to 77 tokens: ["the background. keep details of dog realistic. do not display genitals of dog. keep dog's facial expression very happy. render 4 limbs maximum.", "the background. keep details of dog realistic. do not display genitals of dog. keep dog's facial expression very happy. render 4 limbs maximum.", "the background. keep details of dog realistic. do not display genitals of dog. keep dog's facial expression very happy. render 4 limbs maximum.", "the background. keep details of dog realistic. do not display genitals of dog. keep dog's facial expression very happy. render 4 limbs maximum."] 0%| | 0/28 [00:00<?, ?it/s] 4%|▎ | 1/28 [00:01<00:27, 1.00s/it] 7%|▋ | 2/28 [00:01<00:22, 1.14it/s] 11%|█ | 3/28 [00:02<00:23, 1.07it/s] 14%|█▍ | 4/28 [00:03<00:23, 1.04it/s] 18%|█▊ | 5/28 [00:04<00:22, 1.02it/s] 21%|██▏ | 6/28 [00:05<00:21, 1.01it/s] 25%|██▌ | 7/28 [00:06<00:20, 1.00it/s] 29%|██▊ | 8/28 [00:07<00:20, 1.00s/it] 32%|███▏ | 9/28 [00:08<00:19, 1.00s/it] 36%|███▌ | 10/28 [00:09<00:18, 1.01s/it] 39%|███▉ | 11/28 [00:10<00:17, 1.01s/it] 43%|████▎ | 12/28 [00:11<00:16, 1.01s/it] 46%|████▋ | 13/28 [00:12<00:15, 1.01s/it] 50%|█████ | 14/28 [00:13<00:14, 1.01s/it] 54%|█████▎ | 15/28 [00:14<00:13, 1.01s/it] 57%|█████▋ | 16/28 [00:15<00:12, 1.01s/it] 61%|██████ | 17/28 [00:16<00:11, 1.01s/it] 64%|██████▍ | 18/28 [00:17<00:10, 1.01s/it] 68%|██████▊ | 19/28 [00:18<00:09, 1.01s/it] 71%|███████▏ | 20/28 [00:19<00:08, 1.01s/it] 75%|███████▌ | 21/28 [00:20<00:07, 1.01s/it] 79%|███████▊ | 22/28 [00:21<00:06, 1.01s/it] 82%|████████▏ | 23/28 [00:22<00:05, 1.01s/it] 86%|████████▌ | 24/28 [00:23<00:04, 1.01s/it] 89%|████████▉ | 25/28 [00:24<00:03, 1.01s/it] 93%|█████████▎| 26/28 [00:25<00:02, 1.01s/it] 96%|█████████▋| 27/28 [00:26<00:01, 1.01s/it] 100%|██████████| 28/28 [00:27<00:00, 1.01s/it] 100%|██████████| 28/28 [00:27<00:00, 1.00it/s]
Want to make some of these yourself?
Run this model