Instructions to use bychwa/kitchenbot-chat with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- PEFT
How to use bychwa/kitchenbot-chat with PEFT:
from peft import PeftModel from transformers import AutoModelForCausalLM base_model = AutoModelForCausalLM.from_pretrained("models/kitchenbot-base") model = PeftModel.from_pretrained(base_model, "bychwa/kitchenbot-chat") - Notebooks
- Google Colab
- Kaggle
File size: 457 Bytes
e36f019 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 | {
"backend": "tokenizers",
"bos_token": "<|bos|>",
"eos_token": "<|eos|>",
"extra_special_tokens": [
"<|user|>",
"<|assistant|>"
],
"is_local": true,
"local_files_only": false,
"max_length": 256,
"model_max_length": 1000000000000000019884624838656,
"pad_token": "<|pad|>",
"stride": 0,
"tokenizer_class": "TokenizersBackend",
"truncation_side": "right",
"truncation_strategy": "longest_first",
"unk_token": "<|unk|>"
}
|