awesome-repositories.com
Blog
awesome-repositories.com

Entdecke die besten Open-Source-Repositories mit KI-gestützter Suche.

EntdeckenKuratierte SuchenOpen-Source-AlternativenSelf-hosted SoftwareBlogSitemap
ProjektÜber unsRanking-MethodikPresseMCP-Server
RechtlichesDatenschutzAGB
© 2026 Bringes Technology SRL·VAT RO45896025·hello@awesome-repositories.com
·

Frameworks für Speculative Decoding

Ranking aktualisiert am 30. Juni 2026

For Bibliothek zur Beschleunigung der LLM-Token-Generierung, 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.

Hochleistungsbibliotheken und Implementierungen zur Beschleunigung der Inferenz von Large Language Models durch spekulative Ausführungstechniken.

Frameworks für Speculative Decoding

Finde die besten Repos mit KI.Wir suchen mit KI nach den am besten passenden Repositories.
  • intel-analytics/bigdlAvatar von intel-analytics

    intel-analytics/BigDL

    8,845Auf GitHub ansehen↗

    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
    Auf GitHub ansehen↗8,845
  • pytorch-labs/gpt-fastAvatar von pytorch-labs

    pytorch-labs/gpt-fast

    6,225Auf GitHub ansehen↗

    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
    Auf GitHub ansehen↗6,225
  • openvinotoolkit/openvinoAvatar von openvinotoolkit

    openvinotoolkit/openvino

    10,414Auf GitHub ansehen↗

    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
    Auf GitHub ansehen↗10,414
  • meta-pytorch/gpt-fastAvatar von meta-pytorch

    meta-pytorch/gpt-fast

    6,223Auf GitHub ansehen↗

    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
    Auf GitHub ansehen↗6,223
  • huggingface/transformersAvatar von huggingface

    huggingface/transformers

    161,630Auf GitHub ansehen↗

    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
    Auf GitHub ansehen↗161,630
  • predibase/loraxAvatar von predibase

    predibase/lorax

    3,724Auf GitHub ansehen↗

    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
    Auf GitHub ansehen↗3,724
  • abetlen/llama-cpp-pythonAvatar von abetlen

    abetlen/llama-cpp-python

    9,993Auf GitHub ansehen↗

    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
    Auf GitHub ansehen↗9,993
  • ggerganov/llama.cppAvatar von ggerganov

    ggerganov/llama.cpp

    116,912Auf GitHub ansehen↗

    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
    Auf GitHub ansehen↗116,912
  • openbmb/minicpmAvatar von OpenBMB

    OpenBMB/MiniCPM

    9,464Auf GitHub ansehen↗

    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
    Auf GitHub ansehen↗9,464

Related searches

  • Inferenz-Server für skalierbares LLM-Serving
  • Bibliothek zur Beschleunigung von Transformer-Inferenz
  • Benchmark zum Vergleich von Sprachmodellen
  • System zur Verteilung von LLM-Inferenz auf mehrere Nodes
  • ein Open-Source-Framework für LLM-Anwendungen
  • Toolkit zur Quantisierung von Large Language Models
  • eine Observability-Plattform für LLM-Anwendungen
  • Framework für typisierte LLM-Programmierung