finds.dev← search

// the find

huggingface/datasets

★ 21,620 · Python · Apache-2.0 · updated Jun 2026

🤗 The largest hub of ready-to-use datasets for AI models with fast, easy-to-use and efficient data manipulation tools

The standard Python library for loading and processing ML datasets, backed by Apache Arrow for zero-copy memory-mapped access. If you're training or fine-tuning models, this is almost certainly what you're already using or should be. It covers the full pipeline from raw files to framework-ready tensors.

Arrow as the storage backend is the right call — you get out-of-RAM datasets, fast slicing, and zero-copy conversions to PyTorch/NumPy/Polars without a separate step. The streaming mode is genuinely useful for datasets that don't fit on disk, and the Xet backend speedup (claimed 100x) reflects real infrastructure investment. The `map()` API with `num_proc` and `batched=True` makes preprocessing pipelines fast and reproducible via fingerprint-based caching — you don't re-run transforms you've already done. Format support is unusually broad: Parquet, WebDataset, HDF5, NIfTI, Lance, Iceberg — not the typical CSV/JSON-only story.

The Hub dependency is baked deep — `load_dataset()` defaults assume you're pulling from huggingface.co, and airgapped or enterprise setups require more friction than the docs suggest. The caching behavior is a footgun: cache keys are based on code fingerprints, so any change to a `map` function (including touching unrelated lines) can silently invalidate hours of preprocessing work. `IterableDataset` is a second-class citizen — filtering, shuffling, and interleaving work differently than on `Dataset`, and the API asymmetries trip people up. The optional dependency story is also messy: audio, vision, PDF, and framework integrations each pull in heavy deps with their own version pinning conflicts.

View on GitHub → Homepage ↗

// want more like this?

We dig through GitHub every week and send a few repos picked for what you actually care about — each with an honest take like this one.

Get finds in your inbox → Search again →