skillfed

curated-transformers

A PyTorch library of transformer models and components

curated-transformers v2.0.1 924.2K downloads/30d#4,713 on PyPI891
Permissive license MIT DORMANT released

What it is and what it does

Curated Transformers is a PyTorch library that packages state-of-the-art transformer models as composable building blocks. It supports both encoder-only architectures (BERT, RoBERTa, XLM-RoBERTa) and decoder-only models (Llama, Falcon, GPT-NeoX, MPT), with generation wrappers for text generation tasks. Models load directly from Hugging Face Hub, and the library includes support for 4-bit and 8-bit quantization via bitsandbytes.

The library is designed around reusable components—a single bugfix or feature (like 4-bit inference or PyTorch meta-device support) benefits all models at once. It emphasizes type safety with full type annotations on public APIs, making it suitable for both production use and education. Explosion AI uses it in production and it serves as the default transformer backend in spaCy 3.7.

Use it for:

  • Load and run inference on large language models (Llama, Falcon) from Hugging Face Hub for text generation tasks.
  • Build encoder-only models (BERT, RoBERTa) for classification, token tagging, or semantic search tasks.
  • Quantize transformer models to 4-bit or 8-bit precision to reduce memory and improve inference speed on resource-constrained hardware.
  • Compose custom transformer architectures by mixing and matching reusable encoder/decoder components.
  • Integrate transformer inference into spaCy NLP pipelines via spacy-curated-transformers.
  • Study transformer internals through well-documented, type-annotated building blocks for educational purposes.

Worth the install?

AI-flagged interpretation of the facts on this page — verify before relying

Curated Transformers provides PyTorch implementations of state-of-the-art transformer models (BERT, Llama, Falcon, etc.) built from reusable components, with support for loading models from Hugging Face Hub and generation tasks.

Yes, with conditions. Install if you need PyTorch transformer inference with clean, composable components and don't mind dormant maintenance (last release 849 days ago). The library is production-tested by Explosion AI and integrated into spaCy 3.7, but the long release gap means you should verify compatibility with your PyTorch and tokenizer versions before relying on it for new projects. No known security vulnerabilities.

Install

curated-transformers on PyPI

pip

pip install curated-transformers

uv

uv add curated-transformers

poetry

poetry add curated-transformers

Installing curated-transformers

Before you install

Low install friction with a pure-Python wheel. Maintenance is dormant—last release was 849 days ago (April 2024)—but the repository remains active and the package is used in production by Explosion AI and integrated into spaCy 3.7.

License in practice

MIT license is permissive; you can use this package freely in commercial and private projects with minimal restrictions.

Quickstart

pip install curated-transformers

import torch
from curated_transformers.generation import AutoGenerator, GreedyGeneratorConfig

generator = AutoGenerator.from_hf_hub(name="tiiuae/falcon-7b-instruct", device=torch.device("cuda"))
results = generator(["What is Python?"], GreedyGeneratorConfig())

Requires PyTorch and CUDA/GPU for practical use; torch must be installed separately. Minimum Python 3.9.

Verify before relying

  • Whether dormant status (last release 849 days ago) indicates ongoing maintenance or de facto abandonment
  • Compatibility with recent PyTorch and transformer ecosystem versions
  • Performance characteristics compared to other transformer libraries

Package facts

License MIT (permissive)
Python support supports the current Python release (>=3.9)
Install friction low — pure-Python wheel
Runtime dependencies 5 — catalogue, curated-tokenizers, huggingface-hub, tokenizers, torch
Maintenance dormant — 849 days since the last release
Last repo commit
First released
Downloads 924,189/month — #4,713 on PyPI (30-day window, as of 2026-08-14)
Known vulnerabilities none known (OSV.dev, checked 2026-08-14)

Evidence: curated_transformers-2.0.1-py2.py3-none-any.whl

Tags

transformer models pytorchllama falcon bert implementationhuggingface model loadingtransformer inference pytorchreusable transformer componentsquantized model inferencetext generation transformersencoder decoder models
transformer-modelsllm-inferencequantization

More Artificial Intelligence packages

Further reading