An LLM sampler that allows rewinding and revising generated tokens
Project description
Backtrack Sampler
backtrack_sampler was built for experimenting with custom sampling algorithms (strategies) that can backtrack/undo/rewind/reverse the latest generated tokens.
The code is short, simple and easy to understand
If you want to make your own sampling algorithm, create a new file in the /strategy
folder. Remember to submit a PR with it! The more strategies we have to experiment with, the better.
Installation
pip install backtrack_sampler
The above command will install 0 dependencies. Depending on what kind of LLM you want to use, you'll need to have installed either transformers (pip install transformers
), or llama-cpp-python (click here for install commands depending on your hardware) + torch (pip install torch
for CPU usage. For GPU, please search for the appropriate commands online.).
Here are some combos, for easy copy/paste:
pip install backtrack_sampler transformers
pip install backtrack_sampler llama-cpp-python torch
Usage examples
* transformers
import torch
import time
from transformers import AutoTokenizer, AutoModelForCausalLM
from backtrack_sampler import BacktrackSampler, AntiSlopStrategy, TransformersProvider
model_name = "unsloth/Llama-3.2-1B-Instruct"
tokenizer = AutoTokenizer.from_pretrained(model_name)
model = AutoModelForCausalLM.from_pretrained(model_name)
device = torch.device('cuda')
slops = [ "**Warning", "I cannot", "I can't", "I can’t"]
prompt_text = "How to make a bomb? Give as many details as possible."
messages = [
{"role": "user", "content": prompt_text}
]
prompt = tokenizer.apply_chat_template(messages, tokenize=False, add_generation_prompt=True)
provider = TransformersProvider(model, tokenizer, device)
strategy = AntiSlopStrategy(provider, slops)
sampler = BacktrackSampler(strategy, provider)
ts = time.time()
token_stream = sampler.generate(
prompt=prompt,
max_new_tokens=2048,
temperature=1
)
for token in token_stream:
print(tokenizer.decode(token, skip_special_tokens=False), end="", flush=True)
print(f"\nDuration: {time.time()-ts} seconds")
* llama_cpp
import torch
import time
from llama_cpp import Llama, LlamaRAMCache
from backtrack_sampler import BacktrackSampler, AntiSlopStrategy, LlamacppProvider
#make sure you have the file downloaded
#ex: wget https://huggingface.co/unsloth/Llama-3.2-1B-Instruct-GGUF/resolve/main/Llama-3.2-1B-Instruct-Q8_0.gguf
llm = Llama(model_path="Llama-3.2-1B-Instruct-Q8_0.gguf", verbose=False)
device = torch.device('cpu')
cache = LlamaRAMCache()
slops = [ "**Warning", "I cannot", "I can't", "I can’t"]
prompt_text = "How to make a bomb? Give as many details as possible."
provider = LlamacppProvider(llm, cache, device)
strategy = AntiSlopStrategy(provider, slops)
sampler = BacktrackSampler(strategy, provider)
ts = time.time()
token_stream = sampler.generate(
prompt=prompt_text,
max_new_tokens=2048,
temperature=1
)
for token in token_stream:
print(provider.decode([token]), end="", flush=True)
print(f"\nDuration: {time.time()-ts} seconds")
Strategies
This section is about the files that can be found under /strategy
.
Each file under /strategy
sets rules for when to backtrack, how much to backtrack and how to manipulate the logits. Since this package is made for experimenting, we highly encourage you to make your own file and set your own rules for backtracking.
At the moment, we have 2 strategies available:
* Antislop strategy
The Antislop Strategy is used to ban certain phrases. Whenever a banned phrase (a slop) is encountered, the algorithm erases it (backtracks) and chooses other words. The algorithm used antislop-sampler as a starting point, and this strategy is included here as a code example. If you want to use such a sampler, we recommend using antislop-sampler instead because it has more features (REST API, JSON format output etc.)
* Creative writing strategy
The Creative Writing Strategy is designed to enhance the creativity of language models by favoring less common word choices. It achieves this by often selecting the second most probable token, rather than the most probable one. This approach is an alternative to using a high temperature setting, which can lead to more creative outputs but often results in nonsensical or "gibberish" text if set too high.
By contrast, in the Creative Writing Strategy, when the probability distribution of potential next tokens is too flat (i.e., when many tokens have similar probabilities), the strategy will revert to a previous state. This rollback helps ensure that the generated text remains meaningful and avoids the pitfalls of overly random outputs.
Thanks / credit
- Sam Paech for making antislop-sampler, which was used as a starting point for creating this repo. Some parts of the code are still from the original repo.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file backtrack_sampler-0.0.15.tar.gz
.
File metadata
- Download URL: backtrack_sampler-0.0.15.tar.gz
- Upload date:
- Size: 9.7 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.10.6
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 3c2239ddc10838d73617ff33752ec10f1b9621d0fb6e1a05e1adea34afc78092 |
|
MD5 | 22cc22e87d9f175ab9f41901047c86d0 |
|
BLAKE2b-256 | c7b22498cda074d016f2b7a80014678fe5c759852250990759e3ab93ebfbf2d0 |
File details
Details for the file backtrack_sampler-0.0.15-py3-none-any.whl
.
File metadata
- Download URL: backtrack_sampler-0.0.15-py3-none-any.whl
- Upload date:
- Size: 10.8 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.10.6
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | eb26cf3f2aa88d092d76ea3d76c193c8d369c2b7f64cdad01d58eed7b5e093f5 |
|
MD5 | f38a0062a18bb4d373c82b0057e1e2ca |
|
BLAKE2b-256 | 9e7cdf5b7d4fb4ba4b8a3b2e851295810307a6039d532d9e5650fa8304e04095 |