OpenAI’s GLIDE: the travel-size text-to-image model
OpenAI’s official drop of the small, filtered GLIDE model, offering notebooks that turn text prompts into images, fill masked holes, and beg a CLIP model for guidance.

What it does
GLIDE generates images from text using diffusion. This repository hosts the official code for OpenAI’s smaller, filtered-data checkpoint, packaged with notebooks that demonstrate raw text-to-image synthesis, masked inpainting, and CLIP-guided refinement. Think of it as a reference inference sandbox for the paper rather than a production image factory.
The interesting bit
OpenAI released the small model on purpose, which makes this repo a curious artifact: it is the official code, yet it is explicitly not the full thing. The noise-aware CLIP guidance notebook is the standout, showing how to nudge the diffusion process with an external vision-language model without touching the base weights.
Key highlights
- Official small, filtered GLIDE model from the paper Towards Photorealistic Image Generation and Editing with Text-Guided Diffusion Models
- Three notebook workflows:
text2im,inpaint, andclip_guided - Uses classifier-free guidance to steer generation toward text prompts
- Bundles a filtered noise-aware CLIP model for extra prompt alignment
- Inference-only; no training code or full-scale weights included
Caveats
- This is strictly the small, filtered-data model, so output quality and resolution lag behind the full version described in the paper
- The README is thin beyond notebook links and a model card reference, leaving hardware requirements and architectural specifics unstated
Verdict
Grab it if you want an official, runnable diffusion baseline for text-to-image research or inpainting experiments. Pass if you need the full GLIDE model or a soup-to-nuts training framework.
Frequently asked
- What is openai/glide-text2im?
- OpenAI’s official drop of the small, filtered GLIDE model, offering notebooks that turn text prompts into images, fill masked holes, and beg a CLIP model for guidance.
- Is glide-text2im open source?
- Yes — openai/glide-text2im is open source, released under the MIT license.
- What language is glide-text2im written in?
- openai/glide-text2im is primarily written in Python.
- How popular is glide-text2im?
- openai/glide-text2im has 3.7k stars on GitHub.
- Where can I find glide-text2im?
- openai/glide-text2im is on GitHub at https://github.com/openai/glide-text2im.