hugging face

Skip to main content

Tag: hugging face

Bold yellow and black text reads "Transformers × GGUF" with navigation labels above and a dark bar below listing "ggml kernels" and model components.

Hugging Face Adds GGUF Model Support to Transformers

Hugging Face is adding support for running GGUF models efficiently in transformers, allowing users to load checkpoints sized for their laptop's memory through the familiar transformers APIs. Pick a GGUF from the Hub, load it with from_pretrained, and start generating on your own machine. Running AI models on your laptop has become much easier, and llama.cpp has been a big part of that. Its inference engine powers local AI tools such as Ollama, LM Studio, and Jan. Alongside projects like MLX, it has helped make local inference a practical option for everyday use. GGUF, developed by the...

Continue reading

NVIDIA Nemotron-Labs Diffusion: Parallel Token Generation for Faster LLM Inference

NVIDIA Nemotron-Labs Diffusion: Parallel Token Generation for Faster LLM Inference

Large language models have become the default interface for code generation, math problem solving, summarization, document understanding, and many other developer workflows. Under the hood, though, most LLMs still generate text one token at a time, with each token depending on all previous tokens. These autoregressive (AR) models consume their own outputs as they generate. The autoregressive approach has been remarkably successful—it's stable to train, simple to serve, and responsible for much of the progress in modern language modeling. But it has a fundamental limitation: every new token...

Continue reading