3 Repos
Complete neural network implementations for synthesizing images from text descriptions.
Distinct from PyTorch Implementations: Shortlist candidates focus on general PyTorch implementations or retrieval, not the specific category of text-to-image model implementations.
Explore 3 awesome GitHub repositories matching artificial intelligence & ml · Text-to-Image Implementations. Refine with filters or upvote what's useful.
This is a PyTorch implementation of a text-to-image model designed for synthesizing high-fidelity images from natural language descriptions. It utilizes a diffusion image generator to transform latent embeddings into visual data through an iterative denoising process. The system employs a two-stage latent mapping process, using a CLIP-based latent prior to map text embeddings to image embeddings before decoding them into pixels. It features a cascading diffusion decoder that produces high-resolution imagery by passing low-resolution outputs through a sequence of models at increasing scales.
Provides a full PyTorch implementation of a text-to-image model for synthesizing high-fidelity images.
IP-Adapter is a framework for conditioning pretrained text-to-image diffusion models to use image prompts as visual guides. It serves as a text-to-image model extension that transforms a text-based diffusion model to accept and process image inputs as primary generation sources. The system implements identity preservation to maintain consistent facial features across multiple outputs using a reference photo. It also enables style transfer workflows to produce image variations that preserve the artistic characteristics of a source image. Capabilities cover multi-modal prompting, including the
Transforms text-based diffusion models into multimodal systems that accept image inputs.
This project is a PyTorch implementation of a text-to-image transformer. It is a generative AI model designed to map discrete text tokens to image pixels using a transformer network to create visual content from textual descriptions. The system utilizes a discrete VAE image encoder to compress visual data into tokens for transformer processing. It supports classifier-free guidance to adjust the influence of text prompts during inference and includes capabilities for ranking generated images based on their similarity to text prompts. The architecture incorporates sparse attention mechanisms a
Provides a full PyTorch implementation of the DALL-E text-to-image synthesis architecture.