Reading up on Hugging Face
23 deep · digging since nov 24, 25
- Current AI – Open Source AI Gap Map
Mozilla's Current AI project maps the open source AI stack, evaluating 24,626 projects to identify gaps and seeking collaborators to close them.
- Reviving Papers with Code
A Hugging Face engineer revives Papers with Code as paperswithcode.co, using AI agents to parse papers and auto-generate leaderboards for AI domains.
- Gemma 4 WebGPU Kernels - a Hugging Face Space by webml-community
Gemma 4 E2B runs locally in-browser via WebGPU, letting users prompt the model directly without server-side inference.
- A Guide to AI Inference Engineering - ByteByteGo Newsletter
LLM inference splits into compute-bound prefill and memory-bound decode, driving optimization techniques like batching, quantization, speculative decoding, and disaggregation.
- Google's new Gemma 4 12B model is designed to run on any laptop with 16GB of RAM - Ars Technica
Google's Gemma 4 12B model uses Multi-Token Prediction and a streamlined multimodal encoder to run efficiently on laptops with 16GB RAM, matching larger models.
- Show HN: Tilde.run – Agent sandbox with a transactional, versioned filesystem
Tilde.run provides versioned, transactional sandboxes for AI agents, enabling rollbacks on code, S3 data, and Drive files with audited network calls.
- AI evals are becoming the new compute bottleneck
AI evaluation costs now rival or exceed training costs, with agent benchmarks reaching $40,000 per sweep and training-in-the-loop evals resisting effective compression.
- The PR you would have opened yourself
Hugging Face built a Claude Code Skill and test harness that helps contributors port language models from transformers to mlx-lm while preserving code quality and reviewer trust.
- GitHub - matthartman/ghost-pepper: Hold-to-talk speech-to-text for macOS. 100% local, powered by WhisperKit and local LLM cleanup. Hold Control to record, release to transcribe and paste.
Ghost Pepper is a free, open-source macOS app that provides 100% local, hold-to-talk speech-to-text and meeting transcription using on-device AI models.
- Can I run AI locally?
The site canirun.ai estimates which local AI models a given machine can run based on hardware specs, but commenters found its RAM detection and speed predictions inaccurate for modern hardware.
- Over 30 new plugins join the Cursor Marketplace
Cursor adds over 30 new plugins from partners including Atlassian and Datadog to extend its AI-powered coding agent's capabilities across infrastructure and productivity tools.
- Show HN: How I topped the HuggingFace open LLM leaderboard on two gaming GPUs
Duplicating a block of ~7 middle transformer layers in Qwen2-72B, without weight changes, boosted benchmark scores to #1 on two RTX 4090s, suggesting pretraining carves discrete functional circuits.
- Alibaba's small, open source Qwen3.5-9B beats OpenAI's gpt-oss-120B and can run on standard laptops
Alibaba's Qwen3.5-9B outperforms OpenAI's 120B-parameter gpt-oss on benchmarks while being 13 times smaller and capable of running on standard laptops.
- OpenEnv in Practice: Evaluating Tool-Using Agents in Real-World Environments
OpenEnv framework from Meta and Hugging Face reveals tool-using agents fail at multi-step reasoning, ambiguity resolution, and execution quality in realistic calendar environments.
- GitHub - kanishkg/endless-terminals
Endless Terminals is an autonomous pipeline that procedurally generates terminal-use tasks without human annotation for training terminal agents with reinforcement learning.
- The Code-Only Agent
An agent limited to only executing code can still accomplish complex tasks by creating and improving its own CLI tools.
- Let Me Droid That For You: What 780K Agent Searches Reveal
Analysis of 780K AI agent web searches reveals a dominant pattern: exploratory search followed by specific fetch, with 75% of queries related to software development.
- 8 plots that explain the state of open models
Qwen dominates open-model downloads and finetunes globally, while DeepSeek leads in large-scale models and GPT-OSS is the only Western contender gaining adoption.
- LLMs as Judges: Measuring Bias, Hinting Effects, and Tier Preferences
LLMs used as judges to evaluate other LLMs exhibit measurable self-preference bias, with GPT showing the strongest self-bias and Claude the weakest, while revealing model identities through hinting changes judge behavior unevenly across vendors and domains.
- Tailscale | Secure Connectivity for AI, IoT & Multi-Cloud
Tailscale offers a zero-trust identity-based connectivity platform that replaces legacy VPNs for remote teams, multi-cloud, IoT, and AI workloads.
- We Got Claude to Fine-Tune an Open Source LLM
Hugging Face released an open-source 'skill' that lets Claude Code, Codex, and Gemini CLI autonomously fine-tune LLMs on cloud GPUs and push models to the Hub.
- Mistral 3 family of models released
Mistral released three small dense models and a large MoE model under Apache 2.0, claiming best performance-to-cost in their size categories.
- How LLM Inference Works
LLM inference works by tokenizing input, computing embeddings through transformer layers, then generating tokens autoregressively with KV caching and quantization optimizations.