No description
Find a file
Niklas Mueller e4b4f364df INIT
2024-08-05 18:44:01 +02:00
images INIT 2024-08-05 18:44:01 +02:00
input/file_queues INIT 2024-08-05 18:44:01 +02:00
.gitignore INIT 2024-08-05 18:44:01 +02:00
build_image.sh INIT 2024-08-05 18:44:01 +02:00
Dockerfile INIT 2024-08-05 18:44:01 +02:00
init.sh INIT 2024-08-05 18:44:01 +02:00
README.md INIT 2024-08-05 18:44:01 +02:00
requirements.txt INIT 2024-08-05 18:44:01 +02:00
runner.py INIT 2024-08-05 18:44:01 +02:00
styles.json INIT 2024-08-05 18:44:01 +02:00

TTI-Function

With the Text-to-Image (TTI) Function you can create images from a text prompt. Internally the Juggernaut-XL-v8 Modell (https://huggingface.co/RunDiffusion/Juggernaut-XL-v8) is used to generate the image.

Structure

  • The container has two folders attached, the input and output folder. The input folder holds .json-files that contain the context of the images, that should be created. The output folder is the location, where the generated images will be stored.

Setup

Make sure Podman or Docker is installed.

./build_image.sh
podman run -v /path/to/your/input/folder/:/app/input/ -v /path/to/your/output/folder/:/app/images/ --name tti-function_container --rm -t tti-function