Text Ranking
Transformers
Safetensors
English
Portuguese
llama
text-generation
classification
tinyllama
rag
rerank
text-embeddings-inference
Instructions to use cnmoro/TinyLlama-ContextQuestionPair-Classifier-Reranker with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use cnmoro/TinyLlama-ContextQuestionPair-Classifier-Reranker with Transformers:
# Load model directly from transformers import AutoTokenizer, AutoModelForCausalLM tokenizer = AutoTokenizer.from_pretrained("cnmoro/TinyLlama-ContextQuestionPair-Classifier-Reranker") model = AutoModelForCausalLM.from_pretrained("cnmoro/TinyLlama-ContextQuestionPair-Classifier-Reranker") - Notebooks
- Google Colab
- Kaggle
| { | |
| "add_bos_token": true, | |
| "add_eos_token": false, | |
| "added_tokens_decoder": { | |
| "0": { | |
| "content": "<unk>", | |
| "lstrip": false, | |
| "normalized": false, | |
| "rstrip": false, | |
| "single_word": false, | |
| "special": true | |
| }, | |
| "1": { | |
| "content": "<s>", | |
| "lstrip": false, | |
| "normalized": false, | |
| "rstrip": false, | |
| "single_word": false, | |
| "special": true | |
| }, | |
| "2": { | |
| "content": "</s>", | |
| "lstrip": false, | |
| "normalized": false, | |
| "rstrip": false, | |
| "single_word": false, | |
| "special": true | |
| } | |
| }, | |
| "additional_special_tokens": [], | |
| "bos_token": "<s>", | |
| "chat_template": "{% for message in messages %}\n{% if message['role'] == 'user' %}\n{{ '<|user|>\n' + message['content'] + eos_token }}\n{% elif message['role'] == 'system' %}\n{{ '<|system|>\n' + message['content'] + eos_token }}\n{% elif message['role'] == 'assistant' %}\n{{ '<|assistant|>\n' + message['content'] + eos_token }}\n{% endif %}\n{% if loop.last and add_generation_prompt %}\n{{ '<|assistant|>' }}\n{% endif %}\n{% endfor %}", | |
| "clean_up_tokenization_spaces": false, | |
| "cls_token": null, | |
| "eos_token": "</s>", | |
| "mask_token": null, | |
| "model_input_names": [ | |
| "input_ids", | |
| "attention_mask" | |
| ], | |
| "model_max_length": 2048, | |
| "pad_token": "<unk>", | |
| "padding_side": "right", | |
| "sep_token": null, | |
| "split_special_tokens": false, | |
| "tokenizer_class": "LlamaTokenizer", | |
| "truncation_side": "right", | |
| "unk_token": "<unk>", | |
| "use_default_system_prompt": false | |
| } | |