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
| { | |
| "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|>" | |
| } | |