Latent Space · 3d ago · 8 · tutorial workflow inference benchmark

Vlad Feinberg's hiring/skill guide emphasizes kernel-level performance optimization as the critical bottleneck in LLM work, highlighting the need for JAX/Pallas expertise to fuse operations like MoE projections for measurable speedups. The piece connects pretraining fundamentals (Chinchilla laws, dense vs MoE tradeoffs) with low-level optimization as a direct path into AI labs, plus practical exercises (deriving scaling laws, implementing kernels from scratch) that double as hiring tests.

r/MachineLearning · 3d ago · 8 · tool open source deployment workflow

swm is an open-source tool that simplifies GPU rental workflows by providing unified pricing across providers (RunPod, Vast.ai, Lambda, etc.), automatic workspace syncing to S3-compatible storage, and lifecycle management to prevent runaway costs. It supports popular AI frameworks like ComfyUI, Ollama, vLLM, and Axolotl, eliminating the 45-minute reinstall cycle that plagues multi-provider GPU usage.

Simon Willison · 3d ago · 6 · benchmark agent workflow

A retrospective on LLM developments from November 2025 to May 2026, highlighting the inflection point where coding agents became production-ready through RL from verifiable rewards, and models rapidly iterated across providers. The author discusses practical experiences building ambitious projects with these new capabilities and references an emerging open-source coding agent framework (Warelay).

r/MachineLearning · 3d ago · 7 · workflow inference deployment

Engineer discusses streaming architecture for processing long videos with Whisper and LLMs, addressing chunking strategies to maintain context, audio VAD techniques, and whether asyncio/FastAPI suffices versus Celery/Redis for pipelined task processing. Practical workflow optimization relevant for building real-time AI video analysis backends.

HuggingFace Blog · 3d ago · 8 · new model tool open source rag tutorial

Six new Sentence Transformers CrossEncoder rerankers built on ModernBERT, trained with distillation on open datasets, achieving SOTA performance at multiple model sizes. Includes full training recipes, easy 3-line inference API, and a new Hugging Face Agent Skill for fine-tuning rerankers on custom data.

r/MachineLearning · 3d ago · 7 · dataset open source fine tuning

A new multilingual dataset (Indic HPLT v1) with 9.8M documents across 11 Indian languages plus English, totaling 8.4B tokens, released under CC0 license on Hugging Face. Useful for training and fine-tuning language models for underrepresented Indian language families, though primarily a resource rather than a novel technical breakthrough.

Anthropic Blog · 3d ago · 8 · tool agent api update deployment

Anthropic acquired Stainless, the company behind SDK generation and MCP server tooling that powers Claude integrations. This acquisition strengthens agent connectivity by consolidating SDK/CLI generation and Model Context Protocol infrastructure, directly impacting how developers build tool-calling capabilities for AI agents.

r/MachineLearning · 3d ago · 9 · inference open source benchmark deployment

FlashRT is a CUDA-first inference runtime optimizing small-batch/realtime ML workloads (robotics, VLAs, world models) by rewriting model inference directly in C++/CUDA rather than relying on generic runtimes. The project demonstrates that for batch-size-1 inference, runtime overhead (kernel launches, synchronization, format conversions, precision transitions) dominates latency more than raw compute speed, achieving 17.6ms on Pi0.5 and 2.39ms/token on RTX 5090, with key insight that lower precision (FP4/NVFP4) provides mixed returns unless heavily fused.

DeepMind Blog · 3d ago · 6 · agent workflow

Researchers are using Co-Scientist (an AI agent/tool) to accelerate aging research by autonomously mining scientific literature for novel genetic targets and analyzing large-scale screening data—reducing months of analysis to days. While demonstrating practical AI application in biology, this is primarily a case study of using existing AI capabilities rather than introducing new models, libraries, or technical workflows for software engineers.

HuggingFace Blog · 4d ago · 8 · fine tuning tool tutorial open source

Practical guide for parameter-efficient fine-tuning of NVIDIA's Cosmos Predict 2.5 video world model using LoRA and DoRA adapters, enabling domain-specific adaptation on consumer GPUs without catastrophic forgetting. Includes complete implementation walkthrough using diffusers and accelerate libraries for generating synthetic robot trajectories for policy learning.

r/MachineLearning · 4d ago · 8 · open source tool library rag deployment

Witchcraft is a Rust-based semantic search engine for client-side deployment using SQLite, achieving 20ms latency without external APIs or vector databases. It includes Pickbrain, a CLI tool that indexes Claude/Codex transcripts and documents for semantic search with direct session resumption, plus skills for both AI platforms to maintain cross-session memory.

HuggingFace Blog · 4d ago · 7 · tool library inference rag open source

PaddleOCR 3.5 now supports Transformers as a backend, enabling easier integration of OCR and document parsing into Hugging Face-centered workflows. This addresses document ingestion for RAG and Document AI pipelines by allowing developers to run PP-OCRv5 and PaddleOCR-VL models with flexible backend selection through a simple engine parameter.

HuggingFace Blog · 4d ago · 8 · benchmark agent open source deployment

A new Open Agent Leaderboard benchmark evaluates full agent systems (not just models) across diverse tasks, reporting both quality and cost metrics to measure practical generality. Released with the Exgentic framework and methodology paper, it tests agents across coding, customer service, technical support, and research tasks to reveal what actually drives real-world agent performance.

r/MachineLearning · 4d ago · 7 · research open source workflow

Sub-JEPA improves upon LeWorldModel by applying Gaussian regularization within random orthogonal subspaces rather than globally, enabling more flexible latent representations for planning tasks. The method maintains the same two-term objective without additional hyperparameters while achieving consistent improvements (up to +10.7pp) across benchmarks, with code and paper publicly available.

r/MachineLearning · 4d ago · 8 · tool agent benchmark open source

Hugging Face is reviving Papers with Code using AI agents to automatically parse papers at scale and generate SOTA leaderboards across domains (vision, NLP, speech, etc.). The platform features trending papers by GitHub velocity, domain categorization, benchmark results, citation counts, and automated artifact linking—providing a practical workflow tool for tracking state-of-the-art research.

r/MachineLearning · 4d ago · 8 · research architecture inference open source

Residual Coupling (RC) is a novel architecture that connects frozen language models in parallel using lightweight linear bridge projections, achieving significant improvements over baselines and MoE routing (80.7% perplexity reduction in medical domain). The approach enables horizontal scaling of multi-model systems without modifying base weights, with potential applications in reducing multi-turn prompting to single parallel forward passes and edge deployment.

OpenAI Blog · 4d ago · 6 · deployment agent api update

OpenAI and Dell are partnering to enable on-premise deployment of Codex for enterprise environments, addressing secure AI coding in hybrid setups. This allows software engineers to integrate AI coding capabilities within their own infrastructure while maintaining data privacy and control.