defaultguofengv11.safetensors
typeenum
value typestring
optionsguofengv11.safetensors
{
"batch_size": 1,
"cfg_scale": 7,
"guidance_rescale": 0.7,
"height": 864,
"model": "guofengv11.safetensors",
"negative_prompt": "unaestheticXL_Sky3.1, animal, cat, dog, big breasts",
"prepend_preprompt": true,
"prompt": "1girl, cat girl, cat ears, cat tail, yellow eyes, white hair, bob cut, from side, scenery, sunset",
"scheduler": "DPM++ 2M SDE Karras",
"seed": -1,
"steps": 35,
"vae": "sdxl-vae-fp16-fix",
"width": 1184
}npm install replicate
REPLICATE_API_TOKEN environment variable:export REPLICATE_API_TOKEN=r8_AGj**********************************
This is your API token. Keep it to yourself.
import Replicate from "replicate";
import fs from "node:fs";
const replicate = new Replicate({
auth: process.env.REPLICATE_API_TOKEN,
});
Run charlesmccarthy/cog-iniverse using Replicateβs API. Check out the model's schema for an overview of inputs and outputs.
const output = await replicate.run(
"charlesmccarthy/cog-iniverse:265154b572c4b3780ee830d57d9770fb84c2c6951ff99b877fccb8d819e7e33b",
{
input: {
batch_size: 1,
cfg_scale: 7,
guidance_rescale: 0.7,
height: 864,
model: "guofengv11.safetensors",
negative_prompt: "unaestheticXL_Sky3.1, animal, cat, dog, big breasts",
prepend_preprompt: true,
prompt: "1girl, cat girl, cat ears, cat tail, yellow eyes, white hair, bob cut, from side, scenery, sunset",
scheduler: "DPM++ 2M SDE Karras",
seed: -1,
steps: 35,
vae: "sdxl-vae-fp16-fix",
width: 1184
}
}
);
// To access the file URL:
console.log(output[0].url()); //=> "http://example.com"
// To write the file to disk:
fs.writeFile("my-image.png", output[0]);
To learn more, take a look at the guide on getting started with Node.js.
pip install replicate
REPLICATE_API_TOKEN environment variable:export REPLICATE_API_TOKEN=r8_AGj**********************************
This is your API token. Keep it to yourself.
import replicate
Run charlesmccarthy/cog-iniverse using Replicateβs API. Check out the model's schema for an overview of inputs and outputs.
output = replicate.run(
"charlesmccarthy/cog-iniverse:265154b572c4b3780ee830d57d9770fb84c2c6951ff99b877fccb8d819e7e33b",
input={
"batch_size": 1,
"cfg_scale": 7,
"guidance_rescale": 0.7,
"height": 864,
"model": "guofengv11.safetensors",
"negative_prompt": "unaestheticXL_Sky3.1, animal, cat, dog, big breasts",
"prepend_preprompt": True,
"prompt": "1girl, cat girl, cat ears, cat tail, yellow eyes, white hair, bob cut, from side, scenery, sunset",
"scheduler": "DPM++ 2M SDE Karras",
"seed": -1,
"steps": 35,
"vae": "sdxl-vae-fp16-fix",
"width": 1184
}
)
# To access the file URL:
print(output[0].url())
#=> "http://example.com"
# To write the file to disk:
with open("my-image.png", "wb") as file:
file.write(output[0].read())
To learn more, take a look at the guide on getting started with Python.
REPLICATE_API_TOKEN environment variable:export REPLICATE_API_TOKEN=r8_AGj**********************************
This is your API token. Keep it to yourself.
Run charlesmccarthy/cog-iniverse 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": "charlesmccarthy/cog-iniverse:265154b572c4b3780ee830d57d9770fb84c2c6951ff99b877fccb8d819e7e33b",
"input": {
"batch_size": 1,
"cfg_scale": 7,
"guidance_rescale": 0.7,
"height": 864,
"model": "guofengv11.safetensors",
"negative_prompt": "unaestheticXL_Sky3.1, animal, cat, dog, big breasts",
"prepend_preprompt": true,
"prompt": "1girl, cat girl, cat ears, cat tail, yellow eyes, white hair, bob cut, from side, scenery, sunset",
"scheduler": "DPM++ 2M SDE Karras",
"seed": -1,
"steps": 35,
"vae": "sdxl-vae-fp16-fix",
"width": 1184
}
}' \
https://api.replicate.com/v1/predictions
To learn more, take a look at Replicateβs HTTP API reference docs.
{
"id": "cnyxdww68xrgj0cfvczv2vbzyg",
"model": "charlesmccarthy/cog-iniverse",
"version": "265154b572c4b3780ee830d57d9770fb84c2c6951ff99b877fccb8d819e7e33b",
"input": {
"batch_size": 1,
"cfg_scale": 7,
"guidance_rescale": 0.7,
"height": 864,
"model": "guofengv11.safetensors",
"negative_prompt": "unaestheticXL_Sky3.1, animal, cat, dog, big breasts",
"prepend_preprompt": true,
"prompt": "1girl, cat girl, cat ears, cat tail, yellow eyes, white hair, bob cut, from side, scenery, sunset",
"scheduler": "DPM++ 2M SDE Karras",
"seed": -1,
"steps": 35,
"vae": "sdxl-vae-fp16-fix",
"width": 1184
},
"logs": "0%| | 0/35 [00:00<?, ?it/s]/root/.pyenv/versions/3.10.14/lib/python3.10/site-packages/torch/nn/modules/conv.py:456: UserWarning: Plan failed with a cudnnException: CUDNN_BACKEND_EXECUTION_PLAN_DESCRIPTOR: cudnnFinalize Descriptor Failed cudnn_status: CUDNN_STATUS_NOT_SUPPORTED (Triggered internally at ../aten/src/ATen/native/cudnn/Conv_v8.cpp:919.)\nreturn F.conv2d(input, weight, bias, self.stride,\n 3%|β | 1/35 [00:00<00:15, 2.26it/s]\n 6%|β | 2/35 [00:00<00:08, 4.08it/s]\n 9%|β | 3/35 [00:00<00:06, 4.57it/s]\n 11%|ββ | 4/35 [00:00<00:06, 4.84it/s]\n 14%|ββ | 5/35 [00:01<00:06, 5.00it/s]\n 17%|ββ | 6/35 [00:01<00:05, 5.10it/s]\n 20%|ββ | 7/35 [00:01<00:05, 5.15it/s]\n 23%|βββ | 8/35 [00:01<00:05, 5.19it/s]\n 26%|βββ | 9/35 [00:01<00:04, 5.22it/s]\n 29%|βββ | 10/35 [00:02<00:04, 5.24it/s]\n 31%|ββββ | 11/35 [00:02<00:04, 5.26it/s]\n 34%|ββββ | 12/35 [00:02<00:04, 5.26it/s]\n 37%|ββββ | 13/35 [00:02<00:04, 5.26it/s]\n 40%|ββββ | 14/35 [00:02<00:03, 5.27it/s]\n 43%|βββββ | 15/35 [00:03<00:03, 5.27it/s]\n 46%|βββββ | 16/35 [00:03<00:03, 5.28it/s]\n 49%|βββββ | 17/35 [00:03<00:03, 5.28it/s]\n 51%|ββββββ | 18/35 [00:03<00:03, 5.28it/s]\n 54%|ββββββ | 19/35 [00:03<00:03, 5.28it/s]\n 57%|ββββββ | 20/35 [00:03<00:02, 5.27it/s]\n 60%|ββββββ | 21/35 [00:04<00:02, 5.27it/s]\n 63%|βββββββ | 22/35 [00:04<00:02, 5.26it/s]\n 66%|βββββββ | 23/35 [00:04<00:02, 5.26it/s]\n 69%|βββββββ | 24/35 [00:04<00:02, 5.26it/s]\n 71%|ββββββββ | 25/35 [00:04<00:01, 5.26it/s]\n 74%|ββββββββ | 26/35 [00:05<00:01, 5.26it/s]\n 77%|ββββββββ | 27/35 [00:05<00:01, 5.26it/s]\n 80%|ββββββββ | 28/35 [00:05<00:01, 5.25it/s]\n 83%|βββββββββ | 29/35 [00:05<00:01, 5.26it/s]\n 86%|βββββββββ | 30/35 [00:05<00:00, 5.26it/s]\n 89%|βββββββββ | 31/35 [00:06<00:00, 5.25it/s]\n 91%|ββββββββββ| 32/35 [00:06<00:00, 5.25it/s]\n 94%|ββββββββββ| 33/35 [00:06<00:00, 5.25it/s]\n 97%|ββββββββββ| 34/35 [00:06<00:00, 5.25it/s]\n100%|ββββββββββ| 35/35 [00:06<00:00, 5.25it/s]\n100%|ββββββββββ| 35/35 [00:06<00:00, 5.14it/s]",
"output": [
"https://replicate.delivery/pbxt/i03lbO97dF6PLpjpvBsAeV3rfjZj5exe6mrfdmtwklqSIYVXC/0.png"
],
"data_removed": false,
"error": null,
"source": "web",
"status": "succeeded",
"created_at": "2024-06-02T23:18:44.551Z",
"started_at": "2024-06-02T23:20:26.247427Z",
"completed_at": "2024-06-02T23:20:36.187661Z",
"urls": {
"cancel": "https://api.replicate.com/v1/predictions/cnyxdww68xrgj0cfvczv2vbzyg/cancel",
"get": "https://api.replicate.com/v1/predictions/cnyxdww68xrgj0cfvczv2vbzyg",
"web": "https://replicate.com/p/cnyxdww68xrgj0cfvczv2vbzyg"
},
"metrics": {
"predict_time": 9.940234,
"total_time": 111.636661
}
}