tiktoken VS tokenizer

Compare tiktoken vs tokenizer and see what are their differences.

tiktoken

tiktoken is a fast BPE tokeniser for use with OpenAI's models. (by openai)

tokenizer

Pure Go implementation of OpenAI's tiktoken tokenizer (by tiktoken-go)
InfluxDB - Power Real-Time Data Analytics at Scale
Get real-time insights from all types of time series data with InfluxDB. Ingest, query, and analyze billions of data points in real-time with unbounded cardinality.
www.influxdata.com
featured
SaaSHub - Software Alternatives and Reviews
SaaSHub helps you find the best software and product alternatives
www.saashub.com
featured
tiktoken tokenizer
32 2
9,980 228
6.4% 0.4%
6.7 4.3
about 1 month ago about 1 year ago
Python Go
MIT License MIT License
The number of mentions indicates the total number of mentions that we've tracked plus the number of user suggested alternatives.
Stars - the number of stars that a project has on GitHub. Growth - month over month growth in stars.
Activity is a relative number indicating how actively a project is being developed. Recent commits have higher weight than older ones.
For example, an activity of 9.0 indicates that a project is amongst the top 10% of the most actively developed projects that we are tracking.

tiktoken

Posts with mentions or reviews of tiktoken. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2024-04-01.

tokenizer

Posts with mentions or reviews of tokenizer. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2023-06-08.
  • Understanding GPT Tokenizers
    10 projects | news.ycombinator.com | 8 Jun 2023
    How I wish this post had appeared a few days earlier... I am writing on my own library for some agent experiments (in go, to make my life more interesting I guess), and knowing the number of tokens is important to implement a token buffer memory (as you approach the model's context window size, you prune enough messages from the beginning of the conversation that the whole thing keeps some given size, in tokens). While there's a nice native library in go for OpenAI models (https://github.com/tiktoken-go/tokenizer), the only library I found for Hugging Face models (and Claude, they published their tokenizer spec in the same JSON format) calls into HF's Rust implementation, which makes it challenging as a dependency in Go. What is more, any tokenizer needs to keep some representation of its vocabulary in memory. So, in the end I removed the true tokenizers, and ended up using an approximate version (just split it in on spaces and multiply by a factor I determined experimentally for the models I use using the real tokenizer, with a little extra for safety). If it turns out someone needs the real thing they can always provide their own token counter). I was actually rather happy with this result: I have less dependencies, and use less memory. But to get there I needed to do a deep dive too understand BPE tokenizers :)

    (The library, if anyone is interested: https://github.com/ryszard/agency.)

  • Pure Go implementation of OpenAI's tokenizer
    4 projects | /r/golang | 7 Apr 2023

What are some alternatives?

When comparing tiktoken and tokenizer you can also consider the following projects:

daath-ai-parser - Daath AI Parser is an open-source application that uses OpenAI to parse visible text of HTML elements.

llama.go - llama.go is like llama.cpp in pure Golang!

CLIP - CLIP (Contrastive Language-Image Pretraining), Predict the most relevant text snippet given an image

agency - Agency: Robust LLM Agent Management with Go

skypilot - SkyPilot: Run LLMs, AI, and Batch jobs on any cloud. Get maximum savings, highest GPU availability, and managed execution—all with a simple interface.

sentences - A multilingual command line sentence tokenizer in Golang

bricks - Open-source natural language enrichments at your fingertips.

Constrained-Text-Genera

terminal-copilot - A smart terminal assistant that helps you find the right command.

tokenizer-go - A Go wrapper for GPT-3 token encode/decode. https://platform.openai.com/tokenizer

jupyter-scheduler - Run Jupyter notebooks as jobs

Constrained-Text-Generation-Studio - Code repo for "Most Language Models can be Poets too: An AI Writing Assistant and Constrained Text Generation Studio" at the (CAI2) workshop, jointly held at (COLING 2022)