April 2026 Summaries
8 posts from Baseten
Filter
Month:
Year:
Post Summaries
Back to Blog
NVIDIA Nemotron 3 Nano Omni is an open multimodal foundation model designed to unify audio, images, video, and text into a single context, enhancing efficiency and accuracy in enterprise agent systems. Unlike traditional separate models for speech, vision, and language, Nemotron 3 Nano Omni integrates these modalities into a unified architecture, reducing latency and simplifying development by eliminating the need for separate perception models. Its architecture includes features such as latent MoE design for improved memory and compute efficiency, 3D convolutional layers for extracting spatial and temporal features, and efficient video sampling that processes only dynamic parts of videos. The model's lightweight 30B-A3B architecture supports deployment across local, datacenter, and cloud environments, making it suitable for applications in customer service, research, and monitoring workflows. Baseten, an AI infrastructure platform, offers day-zero support for Nemotron 3 Nano Omni, providing high-performance inference, multi-cloud capacity management, and robust enterprise security, making it a valuable tool for scalable multimodal inference in production environments.
Apr 29, 2026
685 words in the original blog post.
Balancing autonomy and control is essential for organizations using inference platforms, and Baseten addresses this challenge by developing a robust Role-Based Access Control (RBAC) system from the ground up. This RBAC model enables engineers and researchers to deploy models and iterate quickly, while also providing security teams with necessary access controls and audit trails. Unlike other inference providers that often retrofit access controls, Baseten's model incorporates a single organization containing multiple isolated teams, each with specific resources and access controls, while maintaining unified billing and compliance at the top level. This setup allows for scalable operations, accommodating both small startups and large enterprises without compromising on developer experience or velocity. Key features include environment-level restrictions and granular API keys, which provide precise control over access to models and environments, ensuring that the system can adapt to the needs of organizations as they grow and evolve.
Apr 23, 2026
1,740 words in the original blog post.
The text delves into the evolving focus of engineers from integrated development environments (IDEs) to the use of harnesses, emphasizing the importance of structuring these harnesses to optimize machine learning model outputs. By employing strategies such as lean configuration files, the R.P.I. framework for prompt structuring, and the use of subagents, engineers can enhance the efficiency and clarity of their harnesses, ensuring that they act as effective scaffolding for models. It highlights the significance of progressive disclosure in managing context, particularly in interfaces like CLIs, skills, and MCP tools, to prevent models from becoming overwhelmed by excessive instructions. Additionally, the text underscores the value of committing to a single harness and customizing it to meet specific workflow needs, as frequent switching can lead to loss of valuable insights and institutional knowledge.
Apr 18, 2026
1,747 words in the original blog post.
Speculative decoding, particularly the EAGLE-3 method, has gained prominence for significantly reducing latency in large language model (LLM) inference without compromising output quality. EAGLE-3 employs a "draft head" that predicts multiple future tokens, which the target model then verifies in a single forward pass, effectively skipping several decoding steps and improving speed, especially in memory-bound workloads. Training these heads involves a straightforward process of dataset preparation, hyperparameter tuning, and deployment, where the draft head, a small fraction of the target model's parameters, is trained to predict tokens in line with the target model's outputs. This technique offers latency improvements of 1.5-2.5 times in practical settings, making it highly suitable for latency-sensitive applications like code generation and real-time conversational assistants. Successful implementation hinges on using datasets that reflect the target model's token distribution, ensuring precise formatting, and selecting appropriate training parameters such as TTT-length and the number of draft tokens.
Apr 14, 2026
1,396 words in the original blog post.
The Baseten Delivery Network (BDN) is an innovative weight delivery system designed to optimize the deployment of machine learning models by reducing runtime dependency on external providers and minimizing costs associated with weight transfers. By implementing a three-tier cache hierarchy—comprising node-local disk, an in-cluster peer cache, and a mirrored origin—BDN ensures fast cold starts and minimizes the impact of unreliable upstream weight transfers, such as those from providers like Hugging Face, S3, and GCS. This system mirrors model weights into secure storage during deployment, allowing for efficient management and retrieval. It coordinates downloads across clusters to manage bandwidth during scale events and uses metadata-based mirroring to prevent redundant data transfers, ensuring that identical files are stored only once. BDN's architecture improves data transfer speeds and reliability, achieving high throughput by leveraging parallelism and optimized chunk-transfer implementations. It also employs strategies like LRU eviction to manage cache resources effectively. The system, while initially focused on model weights, is being expanded to handle other deployment artifacts, contributing to the development of a robust infrastructure for AI workloads.
Apr 10, 2026
1,801 words in the original blog post.
Baseten Embeddings Inference (BEI) aims to enhance the speed of encoder inference, particularly for named entity recognition (NER) tasks, by achieving sub-3 millisecond client-side and 1 millisecond server-side inference times in realistic production settings. This is accomplished through various optimizations, including using a Rust-based web server to minimize overhead and employing HTTP/2 connection pooling to reduce latency. Unlike traditional embedding models, NER models provide token-level predictions, requiring unique approaches to minimize latency, such as optimizing the serving stack layers, configuring Nginx to avoid bottlenecks, and co-locating NER pipelines within the same datacenter to reduce network delays. BEI's efficient implementation is significantly faster than traditional PyTorch models, offering ~7.7x speed improvements, and supports deploying BERT-family NER models with ease, allowing existing NER pipelines to upgrade without altering application logic.
Apr 07, 2026
1,572 words in the original blog post.
Autoresearch, formalized by Andrej Karpathy, is a methodology where human-defined research programs are executed by AI agents, driving efficient experimentation in environments like Baseten Training. This approach facilitates parallelized experiments with minimal prompts, leveraging containerized jobs to maintain reproducibility and mitigate drift. Baseten’s infrastructure, with its CLI-first design and on-demand compute, supports seamless execution, allowing agents to focus on specific configurations rather than making scattered changes. While agents perform the repetitive work of optimization within a well-defined space, human researchers curate the search space and inject new directions to ensure novelty and progress. This collaboration allows for accelerated experimental processes without replacing the crucial judgment of human researchers.
Apr 01, 2026
1,108 words in the original blog post.
Navigating the extensive library landscape in the LLM training ecosystem can be daunting, as it lacks clear guidance on the interplay and relevance of different components. The author, who transitioned from Parsed to Baseten and serves as CTO, shares insights into the complexities of entering this field and provides an overview of the four-layer stack for modern open-source LLM training, which includes systems, core runtime, training, and inference. The post delves into various components like PyTorch, CUDA, NCCL, and scaling frameworks such as Megatron and DeepSpeed, highlighting their roles and interdependencies. It also discusses the distinctions and overlaps between training loops, orchestration tools, and inference engines like vLLM, SGLang, and TensorRT-LLM, emphasizing the evolving nature of these libraries. The author notes Baseten's approach to developing in-house solutions and the importance of a robust training stack to support diverse training techniques, while also acknowledging the challenges and opportunities in distributed training.
Apr 01, 2026
3,472 words in the original blog post.