YAML Metadata Warning: empty or missing yaml metadata in repo card (https://huggingface.co/docs/hub/model-cards#model-card-metadata)

Cohere rerank-multilingual-v3.0 tokenizer

This is the tokenizer for the Cohere Rerank Multilingual v3 model.

You can load it with the tokenizers library like this:

from tokenizers import Tokenizer

tokenizer = Tokenizer.from_pretrained("Cohere/rerank-multilingual-v3.0")
text = "Hello World, this is my input string!"
enc = tokenizer.encode(text)
print("Encoded input:")
print(enc.ids)

print("Tokens:")
print(enc.tokens)

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

-

Downloads are not tracked for this model. How to track
Inference Providers NEW
This model is not currently available via any of the supported Inference Providers.
The model cannot be deployed to the HF Inference API: The model has no library tag.