Command-nightly / README.md
aliacar's picture
Update README.md
8a831ec verified
|
raw
history blame
680 Bytes
metadata
license: apache-2.0

Cohere command-nightly tokenizer

This is the tokenizer for the Cohere command-nightly chat model.

You can load it with the tokenizer library like this:

from tokenizers import Tokenizer

tokenizer = Tokenizer.from_pretrained("Cohere/Command-nightly")
text = "Hellö World, this is my input string!"
enc = tokenizer.encode(text)
print("Encoded input:")
print(enc)

inv_vocab = {v: k for k, v in tokenizer.get_vocab().items()}
tokens = [inv_vocab[token_id] for token_id in enc.ids]
print("Tokens:")
print(tokens)

number_of_tokens = len(enc.ids)
print("Number of tokens:", number_of_tokens)