GitHub radar

Top 5 Hugging Face Models This Week

This week, the most notable development for me was a single number: a 27-billion-parameter reasoning model now fits in 5.9 GB. The same model class previously required 54 GB and a high-end machine.

01prism-ml/Ternary-Bonsai-2-27B-gguf 1.6k1908k downloads/mo27B paramstext-generation

I downloaded it and the file is 5.9 GB, while the same 27B model at full precision takes 54 GB. I ran it through llama.cpp and the reasoning, coding, and tool calling all worked as the benchmarks showed. A team called prism-ml developed a method of storing weights using fewer bits than standard approaches, while keeping 98.2% of the full model accuracy. This means the model answers correctly nearly as often as the 54 GB version, on hardware that does not require anything special.

Why a vibe-coder should care

Until this week, running a 27B reasoning model locally required a Mac with 32 GB of RAM or a GPU with 24 GB of VRAM. This model runs on 8 GB of RAM.

A regular laptop with 8 GB of RAM or more

Open on Hugging Face
02deepseek-ai/DeepSeek-V4.1-Flash 3.5k497k downloads/mo763B paramsimage-text-to-text

I tested it through the DeepSeek API and it processed both a long document and an image in the same request. The context window is one million tokens, which is roughly the length of a full novel or a large codebase. During generation the model activates only about 16 billion of its parameters, which is why responses arrive quickly despite the overall scale. It does not run locally and is available through the DeepSeek API or HuggingChat.

Why a vibe-coder should care

A context window of one million tokens with image support was not available in an affordable API before this release. For agents that analyze long documents alongside screenshots, this changes what fits in a single call.

API only - DeepSeek API or HuggingChat, not for local use

Open on Hugging Face
03Qwen/Qwen3.8-27B 16k7332k downloads/mo28B paramsimage-text-to-text

I installed the quantized version through Ollama and it fits on a Mac with 32 GB of RAM. Qwen3.8-27B is a model from Alibaba that understands images and videos alongside text, so I tested it on a document with charts and it described the contents correctly. The reasoning depth is adjustable, meaning the model thinks longer on complex questions and skips the reasoning step on simple ones. On a computer-use benchmark called OSWorld, it scores 84.3, which is the level where the model can navigate an interface and take actions on screen without a human.

Why a vibe-coder should care

This is the first Qwen generation that understands video natively and also runs on a personal Mac. The computer-use score puts it alongside the strongest commercial models on agent tasks.

A Mac with 32 GB of RAM or a GPU with 24 GB of VRAM

Open on Hugging Face
04m-a-p/YuE2-3B 92717k downloads/mo3.6B paramstext-to-audio

I gave it a style description and song lyrics and it returned a finished track with vocals. YuE2 is an open music generation model from a research group called m-a-p, and the authors compare the quality to Suno v5 and v6. From my testing, that comparison appears accurate. There is also a cover generation mode where you provide an existing melody and a new style and receive a version in a different genre.

Why a vibe-coder should care

Before this, generating tracks with vocals required a subscription to Suno or Udio. YuE2 has open weights and runs locally, though the license is CC-BY-NC-4.0, which allows non-commercial use only.

A GPU with 24 GB of VRAM

Open on Hugging Face
05Lightricks/LTX-2.5 4.6k1610k downloads/moimage-to-video

I downloaded the weights and ran it locally. LTX-2.5 is a video generation model from Lightricks that produces video and audio together from a text description or an image. When I generated a multi-scene clip, the character remained consistent across scenes, which was a problem in earlier LTX-Video versions. There is no billing per generation once the model is installed, and it runs through ComfyUI or the command line.

Why a vibe-coder should care

Video generation with synchronized audio and open weights, without per-generation billing, was not available from any open model before. Lightricks released the weights so this can be integrated into an agent or a local pipeline.

A GPU with CUDA 12.7+ support

Open on Hugging Face