Skip to main content

Image generation suite.

Project description

Image Jenerator

A Flexible and Configurable Image Generation Suite

Image Jenerator is an extensible Python framework designed to run various image generation models (like Stable Diffusion) through a unified, standardized pipeline.

It takes care of the setup such as device management (CUDA/CPU), mixed-precision handling, and random seed generation.

Requirements

  • Python 3.10+
  • GPU and CUDA drivers (or equivalent) are recommended. Image Jenerator supports CPU, but don't blame me if your system crashes or your images take half an hour to generate.

Installation

Install into your package with pip:

pip install imagejenerator

If you're not installing imagejenerator into another project and just want to make images:

python -m venv venv
(Linux/macOS) source venv/bin/activate
(Windows) .\venv\Scripts\activate
pip install imagejenerator

Quick Start

See the example files:

  • src/imagejenerator/examples/quick_start.py
  • src/imagejenerator/examples/config.py

Create an image generator object by passing your config to registry.get_model_class(config). Your config must contain the name of the model that you want to use (as listed in the registry). This creates your image generator and moves your config into it. Note that the model is not loaded into RAM at this stage.

from imagejenerator.models import registry
from imagejenerator.examples.config import config

image_generator = registry.get_model_class(config)

Call image_generator.generate_image() to create your image:

image_generator.generate_image()

Splitting up the workflow

image_generator.generate_image() is the main workflow method which:

  1. Creates the pipeline.
  2. Runs the pipeline implementation.
  3. Saves the resulting images to disk.

You can do these separately with:

image_generator.create_pipeline()
image_generator.run_pipeline()
image_generator.save_image()

For example, once the model is loaded into memory, you won't need to run image_generator.create_pipeline() again.

Config

Create a config dictionary with the following keys (default parameters are located at: src/imagejenerator/config.py):

Setting Type Description
model str The registered model name to use (e.g., "stable-diffusion-v1-5").
model_path str Local path or Hugging Face repository ID for the model weights.
device str Compute device ("detect", "cuda", or "cpu").
dtype str Tensor precision ("detect", "bfloat16", "float16", or "float32").
scheduler str The name of the scheduler/sampler to use (must be a key in sd_schedulers.py).
enable_attention_slicing bool If True, enables attention slicing to reduce VRAM usage.
height int The height of the generated image in pixels.
width int The width of the generated image in pixels.
num_inference_steps int The number of diffusion steps to run.
guidance_scale float Classifier-free guidance scale (CFG). Higher values increase adherence to the prompt.
prompts list[str] The list of prompts to generate - more than one prompt will be batched so watch your VRAM!
images_to_generate int The number of images to generate per prompt. The batch size will be number of prompts * images_to_generate
seeds list[int] List of random seeds. Leave empty ([]) for automatic random generation.
image_save_folder str Output directory for image files.

Utils

See the jenerationutils package for additional packages you can use to save generation metadata and benchmarking times.

Architecture and Extensibility

The core of Image Jenerator is built around a base ImageGenerator class and a model registry, making it easy to add new models (like SDXL, Stable Cascade, or custom pipelines) without modifying the core logic.

1. Abstract Base Class (ImageGenerator)

All model pipelines inherit from ImageGenerator, which defines the standard workflow methods and parameters common to all models.

2. Model Registration

Each model (or group of models that require the same diffusers class) use their own model class, with the @register_model decorator applied to it. This automatically adds model classes to the registry, so that they can be specified in the config.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

imagejenerator-2.1.0.tar.gz (7.6 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

imagejenerator-2.1.0-py3-none-any.whl (11.4 kB view details)

Uploaded Python 3

File details

Details for the file imagejenerator-2.1.0.tar.gz.

File metadata

  • Download URL: imagejenerator-2.1.0.tar.gz
  • Upload date:
  • Size: 7.6 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/2.2.1 CPython/3.12.3 Linux/6.14.0-37-generic

File hashes

Hashes for imagejenerator-2.1.0.tar.gz
Algorithm Hash digest
SHA256 759064f3c346318c3c8dd422403837d3957e0af5781f32bc9960e7a31fd47aaf
MD5 4c6787a35c5b63c3ada260737691f7fe
BLAKE2b-256 b12765d089fcbf7c9e383928b201925d3418c8fd549548ecb21b73bc2db551ee

See more details on using hashes here.

File details

Details for the file imagejenerator-2.1.0-py3-none-any.whl.

File metadata

  • Download URL: imagejenerator-2.1.0-py3-none-any.whl
  • Upload date:
  • Size: 11.4 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/2.2.1 CPython/3.12.3 Linux/6.14.0-37-generic

File hashes

Hashes for imagejenerator-2.1.0-py3-none-any.whl
Algorithm Hash digest
SHA256 617266f7c7c4680bf4f6acefa50b74780e90f8603fc6aa4c6dbda6c4d2fa4852
MD5 a4c999480b7ca5cb8be517944921c6fd
BLAKE2b-256 e481fcaa08f3fbc0cc6a412c5f5ce7ad51b61be3cb3d996ddb5c61d968e43393

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page