philz1337x / clarity-lowres-upscaler

Low resolution image Upscaler and Enhancer. For images between 64 - 512 px. Use at ClarityAI.co Twitter/X: @philz1337x

  • Public
  • 2.3K runs
  • A100 (80GB)
  • GitHub
  • Paper

Input

Run this model in Node.js with one line of code:

npx create-replicate --model=philz1337x/clarity-lowres-upscaler
or set up a project from scratch
npm install replicate
Set the REPLICATE_API_TOKEN environment variable:
export REPLICATE_API_TOKEN=<paste-your-token-here>

Find your API token in your account settings.

Import and set up the client:
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.

Output

No output yet! Press "Submit" to start a prediction.

Run time and cost

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.

Readme

This model doesn't have a readme.