awesome-repositories.com
Blog
MCP
awesome-repositories.com

Découvrez les meilleurs dépôts open-source grâce à notre recherche par IA.

ExplorerRecherches sélectionnéesAlternatives open sourceLogiciels auto-hébergésBlogPlan du site
ProjetÀ proposNotre méthodologiePresseServeur MCP
Mentions légalesConfidentialitéConditions d'utilisation
© 2026 Bringes Technology SRL·VAT RO45896025·hello@awesome-repositories.com
·

Frameworks de décodage spéculatif

Classement mis à jour le 30 juin 2026

For bibliothèque pour accélérer la génération de tokens LLM, the strongest matches are intel-analytics/bigdl (BigDL is a PyTorch acceleration framework that explicitly includes), pytorch-labs/gpt-fast (GPT-Fast is a dedicated speculative decoding framework for LLM) and openvinotoolkit/openvino (OpenVINO is an inference engine that explicitly supports speculative). meta-pytorch/gpt-fast and huggingface/transformers round out the shortlist. Each is ranked by relevance to your query, popularity and recent activity.

Bibliothèques et implémentations haute performance conçues pour accélérer l'inférence des modèles de langage via des techniques d'exécution spéculative.

Frameworks de décodage spéculatif

Trouvez les meilleurs dépôts grâce à l'IA.Nous recherchons les dépôts les plus pertinents grâce à l'IA.
  • intel-analytics/bigdlAvatar de intel-analytics

    intel-analytics/BigDL

    8,845Voir sur GitHub↗

    BigDL is a PyTorch acceleration framework and distributed inference engine designed for large language models. It provides a toolkit for running models on Intel hardware, integrating quantization tools and libraries for parameter-efficient fine-tuning. The project distinguishes itself through the use of pipeline parallelism to distribute model workloads across multiple hardware accelerators. It utilizes low-bit integer quantization and speculative decoding to reduce memory footprints and decrease text generation latency. The system covers broad capabilities in model optimization, including w

    BigDL is a PyTorch acceleration framework that explicitly includes speculative decoding for LLM inference, fitting your search; but its broad focus on Intel hardware optimizations means details on draft model support and configurable trade-offs are not prominently described.

    PythonSelf-Speculative Decoding
    Voir sur GitHub↗8,845
  • pytorch-labs/gpt-fastAvatar de pytorch-labs

    pytorch-labs/gpt-fast

    6,225Voir sur GitHub↗

    gpt-fast is a PyTorch transformer inference engine designed for low-latency text generation. It functions as a distributed GPU inference library, a quantized model runner, and a speculative decoding framework. The system utilizes a speculative decoding workflow where a small draft model predicts token sequences for verification by a larger model to accelerate generation. It supports quantized model execution to reduce memory footprint and implements tensor parallelism to split computations across multiple GPUs. The project includes a standardized evaluation harness to measure the accuracy an

    GPT-Fast is a dedicated speculative decoding framework for LLM inference acceleration, featuring draft-model verification, quantized execution, multi-GPU support, and a built-in evaluation harness—directly matching the core requirement while covering several requested capabilities.

    PythonGenerative Text InferencePyTorch Tensor OperationsSpeculative Decoding
    Voir sur GitHub↗6,225
  • openvinotoolkit/openvinoAvatar de openvinotoolkit

    openvinotoolkit/openvino

    10,414Voir sur GitHub↗

    OpenVINO is an AI inference engine and model serving platform designed to execute optimized deep learning models across CPUs, GPUs, and NPUs through a unified API. It includes a model optimization toolkit for converting, quantizing, and compressing models from various frameworks, alongside a specialized generative AI runtime for large language models. The project distinguishes itself through a plugin-based hardware acceleration layer that maps neural network operations to vendor-specific drivers. It features advanced execution mechanisms such as continuous batching, speculative decoding, and

    OpenVINO is an inference engine that explicitly supports speculative decoding to accelerate LLM text generation, making it a direct tool for this purpose, though it is a broader platform rather than a dedicated speculative-decoding library.

    C++Hugging Face
    Voir sur GitHub↗10,414
  • meta-pytorch/gpt-fastAvatar de meta-pytorch

    meta-pytorch/gpt-fast

    6,223Voir sur GitHub↗

    gpt-fast is a PyTorch transformer inference engine designed for text generation using a native tensor library implementation. It provides a runtime for executing large language models without the need for external C++ extensions. The project implements speculative decoding to accelerate generation by using a small draft model for token prediction and a larger model for verification. It further optimizes performance through a compiled prefill stage and a multi-GPU tensor parallelism library that shards linear layers across multiple graphics processing units. Memory efficiency is managed throu

    gpt-fast is a PyTorch inference engine that explicitly implements speculative decoding with a small draft model and verification, directly addressing the core need for accelerating LLM generation while being built for practical deployment.

    PythonModel Inference RuntimesGenerative Text InferencePyTorch Tensor Operations
    Voir sur GitHub↗6,223
  • huggingface/transformersAvatar de huggingface

    huggingface/transformers

    161,630Voir sur GitHub↗

    Transformers is a comprehensive library for machine learning that provides a unified interface for training, fine-tuning, and deploying transformer-based models. It supports a wide range of tasks, including text classification, language modeling, question answering, and sequence-to-sequence translation, while offering specialized architectures for both text and vision processing. The framework includes tools for managing the entire model lifecycle, from data preprocessing and tokenization to distributed training and inference. The library features extensive support for model optimization and

    Hugging Face Transformers is the leading open-source library for transformer models, and it directly supports speculative decoding through its "assisted generation" / prompt lookup decoding feature, allowing you to accelerate LLM text generation with a draft model and verification — exactly the kind of tool this search is after.

    PythonAPI FrameworksByte Pair EncodingsHybrid
    Voir sur GitHub↗161,630
  • predibase/loraxAvatar de predibase

    predibase/lorax

    3,724Voir sur GitHub↗

    Lorax is a GPU-accelerated inference server and multi-adapter engine designed for serving large language models. It functions as a high-throughput system capable of deploying models via Kubernetes and managing the dynamic swapping of Low-Rank Adaptation adapters per request. The server distinguishes itself through multi-adapter dynamic batching, which allows requests using different adapter weights to be processed in a single GPU forward pass. It employs just-in-time adapter loading and weighted adapter merging to maximize throughput and enable multi-tasking without sacrificing performance.

    Lorax is a GPU-accelerated LLM inference server that includes speculative decoding strategies, making it a relevant tool for accelerating text generation, though its primary focus is multi-adapter serving rather than a dedicated speculative decoding implementation.

    PythonGPU-Accelerated InferenceMulti-Adapter BatchingDynamic Adapter Swapping
    Voir sur GitHub↗3,724
  • abetlen/llama-cpp-pythonAvatar de abetlen

    abetlen/llama-cpp-python

    9,993Voir sur GitHub↗

    llama-cpp-python provides a Python interface for the llama.cpp library, enabling the execution of large language models with hardware acceleration. It functions as a GGUF model loader and a structured text generator capable of running inference servers and multimodal runtimes for processing both text and image inputs. The project distinguishes itself through a local inference server that exposes model capabilities via an OpenAI-compatible web API. It supports advanced execution techniques including speculative decoding, weight quantization, and layer-based GPU offloading to manage memory acro

    This repository wraps llama.cpp in Python and explicitly supports speculative decoding with draft models and verification, so it is a genuine tool in this category; however, it does not integrate directly with Hugging Face Transformers or include pre-built benchmarks, so it covers the core capability but not all requested features.

    PythonLLM Python BindingsChat Completion ServicesEmbedding Generators
    Voir sur GitHub↗9,993
  • ggerganov/llama.cppAvatar de ggerganov

    ggerganov/llama.cpp

    116,912Voir sur GitHub↗

    llama.cpp is a high-performance C++ inference engine and runtime for executing large language models locally across various hardware architectures. It provides the core components for local model execution, including a dedicated model quantizer for compressing weights into the GGUF format and a system for generating text embeddings for semantic search. The project distinguishes itself through specialized memory and execution optimizations, such as block-wise weight quantization to reduce memory footprints and memory-mapped model loading. It supports structured text generation by using formal

    llama.cpp is a high-performance local LLM inference engine that includes speculative decoding strategies to accelerate generation, with configurable draft parameters and performance benchmarks, though its integration with Hugging Face Transformers is indirect via model conversion, making it a relevant tool for applying speculative decoding.

    C++Local Inference EnginesC++ Inference RuntimesCross-Platform Inference Frameworks
    Voir sur GitHub↗116,912
  • openbmb/minicpmAvatar de OpenBMB

    OpenBMB/MiniCPM

    9,464Voir sur GitHub↗

    MiniCPM is a collection of small language models designed for local, on-device deployment in resource-constrained environments. The project focuses on running dense Transformer models on consumer hardware, including GPUs, CPUs, and Apple Silicon, without requiring custom code forks. The project distinguishes itself through heavy optimization for edge hardware, utilizing quantized weight compression in GGUF and MLX formats to reduce memory overhead. It implements advanced inference techniques such as speculative sampling and radix-tree prefix caching to accelerate generation speed and throughp

    MiniCPM implements speculative sampling (a form of speculative decoding) and prefix caching to accelerate generation from its small language models, making it a relevant tool for applying speculative decoding to LLM inference, though it is tied to the MiniCPM model family rather than being a general-purpose library.

    Jupyter NotebookLocal and On-Device InferenceQuantized Model DeploymentsWeight Quantization
    Voir sur GitHub↗9,464

Related searches

  • serveur d'inférence pour déployer des LLM à grande échelle
  • bibliothèque pour accélérer l'inférence des transformers
  • benchmark pour comparer les modèles de langage
  • système de distribution d'inférence LLM sur plusieurs nœuds
  • un framework open source pour les applications LLM
  • toolkit pour la quantification de grands modèles de langage
  • une plateforme d'observabilité pour les applications LLM
  • un framework pour la programmation typée avec LLM