3 个仓库
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.
这是一个文本到图像 Transformer 的 PyTorch 实现。它是一个生成式 AI 模型,旨在利用 Transformer 网络将离散文本令牌映射到图像像素,从而从文本描述中创建视觉内容。 该系统利用离散 VAE 图像编码器将视觉数据压缩为令牌以供 Transformer 处理。它支持无分类器引导(classifier-free guidance)以在推理期间调整文本提示的影响,并包括根据与文本提示的相似度对生成图像进行排序的功能。 该架构结合了稀疏注意力机制和可逆残差网络,以优化计算复杂度和内存消耗。训练功能包括分布式 GPU 扩展,以及用于管理跨多个图形处理器的大规模工作负载以将图像与文本描述关联的框架。 该实现通过集成预训练的分词器或语言模型,提供对自定义文本分词的支持。
Provides a full PyTorch implementation of the DALL-E text-to-image synthesis architecture.