cjwbw / lambda-eclipse

λ-ECLIPSE: Multi-Concept Personalized Text-to-Image Diffusion Models by Leveraging CLIP Latent Space

  • Public
  • 174 runs
  • L40S
  • Paper
  • License

Run cjwbw/lambda-eclipse with an API

Use one of our client libraries to get started quickly.

Set the REPLICATE_API_TOKEN environment variable

export REPLICATE_API_TOKEN=<paste-your-token-here>

Learn more about authentication

Install Replicate’s Node.js client library

npm install replicate
Learn more about setup

Run cjwbw/lambda-eclipse using Replicate’s API. Check out the model's schema for an overview of inputs and outputs.

import Replicate from "replicate";
const replicate = new Replicate();

const input = {
    image1: "https://replicate.delivery/pbxt/KNhvYb6Ux4ZbIu4C0W9W5Z2DDOkFvhwSl9h3O0zv8sbQuf5N/cat.png",
    image2: "https://replicate.delivery/pbxt/KNhvYqUGSU8ZuYWSX0UiJswZ0hLV63GSzeKT4CV0RRU1W4rc/blue_sunglasses.png",
    guidance_scale: 4,
    subject_category1: "cat",
    subject_category2: "glasses",
    num_inference_steps: 50
};

const output = await replicate.run("cjwbw/lambda-eclipse:0e36b028d4ed70538c3e6ad369ebd2acf872b41e339b0adf1f6f7d095e248a55", { input });

import { writeFile } from "node:fs/promises";
await writeFile("output.png", output);
//=> output.png written to disk
Learn more