TLDRocket
Sign in

Infrastructure

36 summarised stories about Infrastructure, each linking back to the original source. Browse all topics →

Tuesday, 10 March 2026

Keep the Tokens Flowing: Lessons from 16 Open-Source RL Libraries

Hugging Face Blog 4 months ago

Researchers surveyed 16 open-source reinforcement learning libraries to understand how they handle asynchronous training, where inference and gradient computation run in parallel on separate GPU pools. The generation phase for reasoning models can consume 28 minutes to 3.7 hours per training step on a single GPU, leaving training GPUs idle while waiting for data. The standard solution separates inference and training onto different hardware, connects them with a rollout buffer, and synchronizes model weights asynchronously so neither process blocks the other.

Introducing Storage Buckets on the Hugging Face Hub

Hugging Face Blog 4 months ago

Hugging Face introduced Storage Buckets, mutable object storage on its Hub designed for intermediate ML artifacts like checkpoints, optimizer states, and processed data that don't require version control. Buckets are built on Xet, a chunk-based backend that deduplicates content across related files, reducing bandwidth and storage costs, with pre-warming available to bring frequently-accessed data closer to compute infrastructure in AWS and GCP regions. Users can now manage training pipelines, data processing, and agent traces in a single Hub-native workflow, with a clear separation between mutable working storage and versioned repos for final deliverables.