tokiers/Qwen3-Embedding-8B

Model

Qwen3-Embedding-8B

0

6 commits

2 linked in READMEs

updated Jul 23, 2026

See the code
qwen3
safetensors
tokie

README

tokie

Qwen3-Embedding-8B

Pre-built tokie tokenizer for Qwen/Qwen3-Embedding-8B.

Quick Start (Python)

pip install tokie
import tokie

tokenizer = tokie.Tokenizer.from_pretrained("tokiers/Qwen3-Embedding-8B")
encoding = tokenizer.encode("Hello, world!")
print(encoding.ids)
print(encoding.attention_mask)

Quick Start (Rust)

[dependencies]
tokie = { version = "0.0.4", features = ["hf"] }
use tokie::Tokenizer;

let tokenizer = Tokenizer::from_pretrained("tokiers/Qwen3-Embedding-8B").unwrap();
let encoding = tokenizer.encode("Hello, world!", true);
println!("{:?}", encoding.ids);

Files

  • tokenizer.tkz β€” tokie binary format (~10x smaller, loads in ~5ms)
  • tokenizer.json β€” original HuggingFace tokenizer (if available)

About tokie

50x faster tokenization, 10x smaller model files, 100% accurate.

tokie is a drop-in replacement for HuggingFace tokenizers, built in Rust. See GitHub for benchmarks and documentation.

License

MIT OR Apache-2.0 (tokie library). Original model files retain their original license from Qwen/Qwen3-Embedding-8B.

Contributors

bhavnicksm

6 commits

tokiers/Qwen3-Embedding-8B

Model

Qwen3-Embedding-8B

0

6 commits

2 linked in READMEs

updated Jul 23, 2026

See the code
qwen3
safetensors
tokie

README

tokie

Qwen3-Embedding-8B

Pre-built tokie tokenizer for Qwen/Qwen3-Embedding-8B.

Quick Start (Python)

pip install tokie
import tokie

tokenizer = tokie.Tokenizer.from_pretrained("tokiers/Qwen3-Embedding-8B")
encoding = tokenizer.encode("Hello, world!")
print(encoding.ids)
print(encoding.attention_mask)

Quick Start (Rust)

[dependencies]
tokie = { version = "0.0.4", features = ["hf"] }
use tokie::Tokenizer;

let tokenizer = Tokenizer::from_pretrained("tokiers/Qwen3-Embedding-8B").unwrap();
let encoding = tokenizer.encode("Hello, world!", true);
println!("{:?}", encoding.ids);

Files

  • tokenizer.tkz β€” tokie binary format (~10x smaller, loads in ~5ms)
  • tokenizer.json β€” original HuggingFace tokenizer (if available)

About tokie

50x faster tokenization, 10x smaller model files, 100% accurate.

tokie is a drop-in replacement for HuggingFace tokenizers, built in Rust. See GitHub for benchmarks and documentation.

License

MIT OR Apache-2.0 (tokie library). Original model files retain their original license from Qwen/Qwen3-Embedding-8B.

Contributors

bhavnicksm

6 commits