HuggingFace Blog · 6h ago · 8 · new model deployment open source benchmark

Nemotron 3.5 is a multimodal safety model that evaluates text, images, and assistant responses together in a single pass, with support for 12 languages explicitly and ~140 via zero-shot transfer. Key features include custom policy specifications for domain-specific safety rules, optional reasoning traces for auditability, and a newly released multimodal multilingual safety dataset—making it valuable for production deployments requiring interpretable content moderation.

r/MachineLearning · 10h ago · 8 · agent research workflow inference

Deep technical discussion on calibration vs. accuracy in LLM-based agents, drawing from Google research on hallucination reduction. Author shares practical patterns for reducing hallucinated tool calls (25% to 5%) using a planning-verification pipeline with confidence-based human review routing, while analyzing the latency-safety tradeoff and the gap between current agent frameworks and confidence-aware control surfaces.

r/MachineLearning · 12h ago · 9 · inference optimization open source benchmark research

KVarN is a novel KV-cache quantization method combining Hadamard rotations with variance normalization that achieves 3-4x compression with minimal accuracy loss on demanding benchmarks like AIME24. The approach includes a vLLM implementation and demonstrates actual speedups over fp16 baselines, making it immediately applicable for optimizing inference in reasoning and code-generation workloads.

HuggingFace Blog · 12h ago · 8 · new model open source inference tool

NVIDIA released Nemotron 3.5 ASR, a 600M-parameter multilingual streaming speech recognition model supporting 40 language-locales with native punctuation/capitalization and efficient cache-aware processing that eliminates redundant computation in streaming scenarios. The model uses Cache-Aware FastConformer encoder + RNNT decoder architecture with language conditioning capabilities, available as a NeMo checkpoint for straightforward integration.

r/MachineLearning · 12h ago · 8 · research fine tuning workflow

On-policy distillation (OPD) is an emerging post-training technique used in recent frontier models (Qwen 3.6/3.7, GLM-5.1, DeepSeek-V4) that efficiently teaches models to avoid specific errors by injecting hint tokens into trajectories rather than requiring full rollout regeneration. The technique uses a separate model to identify mistakes in rollouts, then trains the main model via probability matching on the annotated trajectories—a practical efficiency win over naive reinforcement learning approaches.

HuggingFace Blog · 13h ago · 7 · benchmark agent open source tool

EVA-Bench is an expanded open-source voice agent evaluation benchmark now covering 3 enterprise domains (airline, IT service, healthcare HR) with 213 scenarios across 121 tools—4x larger than the original release. The benchmark includes detailed methodology for dataset generation and validation against frontier models, plus an upcoming multilingual extension, making it useful for engineers evaluating or building voice agents.

OpenAI Blog · 13h ago · 5 · agent workflow

Endava's case study on deploying AI agents and ChatGPT Enterprise for software delivery automation provides practical enterprise implementation insights, though it's primarily a business-focused success story rather than technical depth on the AI tools themselves.

r/LocalLLaMA · 13h ago · 8 · new model inference open source deployment agent

NVIDIA released Nemotron-3-Ultra-550B, a frontier-scale open-weight LLM optimized for agentic tasks and complex reasoning with a hybrid Latent MoE architecture (55B active/550B total parameters). The guide covers practical integration with major inference frameworks (Transformers, vLLM, SGLang, Docker) and includes multi-language support and quantized variants for production deployment.

r/MachineLearning · 14h ago · 6 · workflow research

A practical discussion on conducting ablation studies without full retraining by leveraging saved checkpoints and model components. The thread explores techniques like selective layer freezing, component masking, and gradient-based analysis to evaluate model component importance while maintaining reproducibility against the original baseline.

r/LocalLLaMA · 16h ago · 8 · new model open source inference

Google released Gemma 4 12B, a new open-source model with an encoder-less vision architecture that reduces vision inference costs. This addition to the Gemma family offers engineers a practical option for local deployment with improved efficiency compared to previous Gemma versions.

OpenAI Blog · 16h ago · 6 · api update workflow

ChatGPT's memory feature allows the model to retain user preferences and context across separate conversations, reducing the need to re-establish context. This is a workflow improvement for developers building ChatGPT-based applications, though the technical implementation details and API implications for custom integrations remain unclear.

r/MachineLearning · 17h ago · 7 · library open source tool

AttnHut is an open-source repository providing modular, swappable attention mechanism implementations for language models and vision tasks, including MiniMax M3's sparse attention. The library enables easy experimentation and benchmarking of different attention variants, with applications across SLMs, computer vision, and RL.

r/MachineLearning · 21h ago · 6 · benchmark api update

Discussion exploring which AI models handle long-form video understanding and complex reasoning tasks effectively. Covers practical considerations for video input handling and reasoning capabilities across different model providers.

Latent Space · 22h ago · 8 · new model research training fine tuning benchmark

Microsoft released MAI-Thinking-1 with a detailed 109-page technical report covering training without synthetic data or distillation, achieving strong benchmarks (97% AIME, 53% SWE-Bench Pro). The report includes rare transparency on scaling recipes, MFU numbers, training stack (SGLang, dspy.GEPA), and data mixture composition (50% code, 17.5% STEM/math each). Microsoft also introduced Frontier Tuning for RL-based model adaptation and multiple specialized models (MAI-Image-2.5, MAI-Code-1-Flash) with deployment into products.

HuggingFace Blog · 1d ago · 8 · tool workflow api update agent

Hugging Face rebuilt its CLI to optimize for both human users and coding agents (Claude Code, Codex, Cursor), with auto-detection via environment variables that switches output formatting between human-readable (colored tables, progress bars) and agent-optimized (compact TSV, no ANSI codes). Benchmarks show the optimized CLI uses 6× fewer tokens than agents manually using curl or Python SDK for multi-step tasks.

Latent Space · 1d ago · 7 · research agent workflow inference

Axiom is developing 'Verified AI' systems that use formal verification (similar to type checkers in programming) to ensure mathematical and logical correctness in AI reasoning, applying this at both training and inference stages. The approach aims to address critical gaps in AI reasoning beyond coding by requiring systems to produce formally provable outputs, enabling better scaling and composability of AI capabilities.

r/MachineLearning · 1d ago · 7 · workflow deployment monitoring

Practical discussion of production ML monitoring and retraining strategies for handling data drift, covering continuous retraining (interval vs trigger-based), drift detection, shadow models, and human-in-the-loop approaches. The post emphasizes that operational constraints often matter more than model architecture when choosing drift mitigation strategies.

r/LocalLLaMA · 1d ago · 7 · library inference open source

Technical discussion in llama.cpp about extracting embeddings for Multi-Token Prediction (MTP) models, specifically whether to use pre-norm or post-norm hidden states depending on the model architecture. The thread explores API design options for decoupling embedding extraction from logits computation to support different MTP model requirements.