Readme
This model doesn't have a readme.
Low resolution image Upscaler and Enhancer. For images between 64 - 512 px. Use at ClarityAI.co Twitter/X: @philz1337x
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 philz1337x/clarity-lowres-upscaler using Replicate’s API. Check out the model's schema for an overview of inputs and outputs.
const output = await replicate.run(
"philz1337x/clarity-lowres-upscaler:894c3ac7eac4be245853b67c1eaa61e29560dcb37592fb52da68a9a12ce8ec4a",
{
input: {
steps: 32,
prompt: "best quality",
strength: 1,
output_size: 1024,
negative_prompt: "blur, lowres, bad anatomy, bad hands, cropped, worst quality"
}
}
);
// 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.
No output yet! Press "Submit" to start a prediction.
This model costs approximately $0.010 to run on Replicate, or 100 runs per $1, but this varies depending on your inputs. It is also open source and you can run it on your own computer with Docker.
This model runs on Nvidia A100 (80GB) GPU hardware. Predictions typically complete within 8 seconds.
This model doesn't have a readme.