Readme
This model doesn't have a readme.
Zeroscope 576w & V2 XL
Run this model in Node.js with one line of code:
npm install replicate
REPLICATE_API_TOKEN
environment variable:export REPLICATE_API_TOKEN=<paste-your-token-here>
Find your API token in your account settings.
import Replicate from "replicate";
const replicate = new Replicate({
auth: process.env.REPLICATE_API_TOKEN,
});
Run replicategithubwc/zeroscope using Replicate’s API. Check out the model's schema for an overview of inputs and outputs.
const output = await replicate.run(
"replicategithubwc/zeroscope:890ddddef39053199faef0c55e4d78dd6ea144cd3412655b24e616da2fe714b3",
{
input: {
fps: 24,
width: 1024,
height: 576,
prompt: "astronaut riding a horse on mars, beautiful, 8k, perfect, award winning, national geographic",
scheduler: "K_EULER_ANCESTRAL",
num_frames: 24,
init_weight: 0.6,
guidance_scale: 12.5,
negative_prompt: "very blue, dust, noisy, washed out, ugly, distorted, broken",
num_inference_steps: 50
}
}
);
// To access the file URL:
console.log(output.url()); //=> "http://example.com"
// To write the file to disk:
fs.writeFile("my-image.png", output);
To learn more, take a look at the guide on getting started with Node.js.
No output yet! Press "Submit" to start a prediction.
This model runs on Nvidia A100 (80GB) GPU hardware. We don't yet have enough runs of this model to provide performance information.
This model doesn't have a readme.