r/MachineLearning · 1d ago · 7 · tool open source rag

Aiki is a lightweight local tool for querying Wikipedia with custom TF-IDF retrieval and optional LLM answer generation. It demonstrates practical RAG implementation with minimal dependencies, featuring query expansion via Wikipedia links and flexible article selection—useful reference for building local knowledge systems.

r/MachineLearning · 2d ago · 6 · benchmark research

Critical analysis of METR's widely-cited AI capability benchmark, exposing methodological flaws including biased sampling (METR employees' peers), perverse incentives (hourly pay encouraging slower completion), unmeasured baselines, and likely training data contamination. Highlights systemic issues in AI research evaluation practices that engineers should be aware of when assessing capability claims.

r/MachineLearning · 2d ago · 8 · inference open source deployment quantization

Novel implementation of DCGAN inference on resource-constrained RISC-V microcontroller (CH32H417) with 512KB shared SRAM, using int8 quantization, SD card weight streaming with double buffering, and custom C inference engine achieving bit-identical PyTorch outputs. Demonstrates practical techniques for embedded generative models on non-ARM architectures where ecosystem tools like CMSIS-NN don't exist, with creative integration of quantum entropy for latent vector seeding.

r/MachineLearning · 2d ago · 8 · open source agent workflow tool

Spice is an open-source decision layer framework that sits above execution agents to make agent decision-making explicit and interpretable. It captures what was observed, options considered, reasoning for selection, trade-offs rejected, and execution outcomes—addressing a key gap where agents excel at execution but lack transparent decision-making processes. The project is early-stage but functional, installable, and designed to work with existing agents like Claude Code and other tools.

r/LocalLLaMA · 2d ago · 7 · inference optimization cuda open source benchmark

Discussion of FWHT (Fast Walsh-Hadamard Transform) CUDA kernel implementation for quantized KV-cache in LLM inference, with performance benchmarks across different model architectures and head sizes. Shows practical optimization work for inference speed-ups when using q8_0 quantization on different GPU architectures (RTX 5090, CDNA).

r/MachineLearning · 2d ago · 6 · inference fine tuning deployment research

Call for papers for the 2nd Workshop on Efficient Reasoning at COLM 2026, covering practical topics like inference optimization (pruning, compression, KV-cache), efficient training/fine-tuning, and deployment of reasoning systems under resource constraints. Relevant for engineers working on cost-effective LLM inference and on-device reasoning, though this is primarily a conference submission announcement rather than technical content.

r/LocalLLaMA · 2d ago · 8 · new model tool inference open source deployment

MiniCPM5-1B is a new 1B-class open-source model achieving SOTA in its weight class with built-in hybrid reasoning modes, designed for on-device deployment and resource-constrained scenarios. The release includes deployment guides for Transformers, vLLM, and SGLang, plus fine-tuning resources and newly released training datasets (Ultra-FineWeb, UltraData-Math, UltraData-SFT).

r/LocalLLaMA · 2d ago · 7 · tool inference deployment tutorial

Practical guide for running MiMo-V2.5-coder-Q2, a quantized coding model optimized for Apple Silicon, across multiple inference frameworks (llama.cpp, vLLM, Ollama, etc.). Includes specific configurations for 128GB M5 systems and fallback strategies for memory-constrained setups, directly applicable for engineers deploying local coding assistants.

r/MachineLearning · 2d ago · 8 · tool agent deployment open source

Production-tested solution for enforcing tool-call constraints in LangGraph agents using a YAML-based contract layer that validates rules deterministically before execution. Addresses critical failure mode where prompt engineering and post-hoc auditing fail to prevent compliance violations, with the approach open-sourced as Sponsio for community feedback.

HuggingFace Blog · 2d ago · 7 · agent workflow

A practical glossary clarifying commonly confused terminology in AI agent development (model, scaffold, harness, tool definitions) with examples from frameworks like Claude Code and Codex. Provides mental models for understanding agent architecture that's essential when building or deploying agentic systems, though not a technical tutorial.

Simon Willison · 2d ago · 6 · tool api update agent

Datasette 1.0a30 introduced a new makeJumpSections() JavaScript plugin hook that datasette-agent leverages to add agent chat functionality directly into the Jump to menu interface. This represents a practical integration pattern for embedding AI agents into existing tools, though it's specific to the Datasette ecosystem rather than broadly applicable.

r/MachineLearning · 2d ago · 7 · tool open source workflow

MergeNB is a VS Code extension that improves Jupyter Notebook merging for collaborative workflows, addressing pain points with existing tools like nbdime. The tool features a web UI and plans to expand as a git mergetool, offering practical improvements for teams managing notebook-based research and development.

r/MachineLearning · 2d ago · 5 · research workflow

This is a technical discussion about evaluating self-supervised learning (SSL) methods like BYOL and JEPA, questioning whether the RankMe metric (embedding effective rank via SVD) remains meaningful as an evaluation criterion when incorporated as a loss term during training. The post explores the tension between using metrics to assess learning quality versus explicitly optimizing them, relevant for practitioners evaluating SSL model representations.

Simon Willison · 3d ago · 6 · prompt engineering workflow

Armin Ronacher discusses a growing problem in open-source development where AI-generated issue reports obscure actual user observations with confident but often inaccurate interpretations, making debugging harder. The post highlights practical friction when LLMs are used to process and reword user problems without preserving the original observed facts.

r/MachineLearning · 3d ago · 6 · library open source inference benchmark

Thermocompute is a PyTorch library that emulates thermodynamic probabilistic computing, offering stochastic neural layers (p-bits, samplers, generative models) designed to exploit parallel hardware where inference time remains constant as layer width increases. The key technical insight is that on GPUs with available parallel capacity, thermodynamic layers can achieve flat wall-clock time scaling with width, potentially outperforming classical dense FFNs for certain workloads.

r/MachineLearning · 3d ago · 7 · library open source inference

A Go developer created a pure Go CUDA binding library (gocudrv) that eliminates cgo dependencies by loading libcuda.so at runtime using purego, enabling cross-compilation and smaller Docker images for ML workloads. The implementation uses OS thread locking to handle CUDA's per-thread context model via goroutine channels, with early support for memory allocation, kernel launches, and GPU event timing.

r/MachineLearning · 3d ago · 7 · tool benchmark open source

Papers with Code has been revived with new features for tracking AI SOTA across domains, including multi-metric leaderboards, paper lineage tracking, method taxonomy, and ~3k model evaluations. The platform now supports external paper submissions (non-Arxiv) with auto-enrichment via AI, making it a useful reference tool for staying current with model releases and benchmarks.

r/MachineLearning · 3d ago · 8 · benchmark rag inference workflow

Comprehensive benchmark comparing vision-capable LLMs (native PDF) against OCR-based RAG pipelines on long document processing, showing OCR approaches achieve higher accuracy (59.6% vs 52.0%) and lower cost ($0.19 vs $0.25/query) despite the 'vision makes OCR obsolete' narrative. Key findings: vision LLMs struggle with tables/charts, have a 7% failure rate on large PDFs that survives retries, while premium OCR + layout extraction proves more robust for document-heavy workloads.

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

Deep dive into WordDetectorNN, a handwritten word detection model using per-pixel distance regression to bounding boxes instead of anchor-based detection, followed by DBSCAN clustering with IoU-based distance metric. The architecture uses ResNet18 + FPN decoder with 6-channel pixel-level outputs, offering no-tuning detection but with O(n²) clustering bottleneck and non-differentiable post-processing.