GitXplorerGitXplorer
d

lcm-sketch-progression

public
6 stars
0 forks
0 issues

Commits

List of commits on branch main.
Verified
012159fbdfe6e979e452e7a5f6c5836f32bea805

Update config.py

ddiscus0434 committed 10 months ago
Verified
0513f56c48e549fe75f7834a29e0fb3768bfa929

Update progressor.py

ddiscus0434 committed 10 months ago
Verified
cc5336f498340724cbe66e6bb95bc364d89190ea

Update App.tsx

ddiscus0434 committed 10 months ago
Verified
f74ef487917ed2728f35d23767821b0477ca0acd

Update config.py

ddiscus0434 committed 10 months ago
Verified
cfa605a26ec9028a1c2d716e0e6652c9d1ac0e9f

Update README.md

ddiscus0434 committed 10 months ago
Verified
fa78d2eb1a561f9c4dc0a634cbd3b2733847934d

Update README.md

ddiscus0434 committed 10 months ago

README

The README file for this repository.

LCM Sketch Progression

LCM Sketch Progression is a playground web app that performs real-time image generation and allows you to actively intervene in the progress with a brush.

Features

  • The app generates an image based on the previous state of the image.
  • You can intervene in the progress of the image generation by drawing on the canvas with a brush.
  • As the prompt is updated periodically and randomly, the generated image keeps changing uniquely.

Installation

1. Build the Docker images

make build

2. Run the app

make up

3. Access the app

Open http://<PUBLIC_IP or 0.0.0.0>:10356 in your browser.

Configuration

You can configure the app's behavior at server/config.py. For example, if you have less than 8GB of VRAM, you can use xformers with set as below in server/config.py.

-torch_compile: bool = True
-xformers: bool = False
+torch_compile: bool = False
+xformers: bool = True

Requirements

  • NVIDIA GPU more than 6GB of VRAM
  • Docker

License

This project is licensed under the Affero General Public License v3.0.