Instructions to use evilfreelancer/o1_gigachat-20b-a3b_lora with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- PEFT
How to use evilfreelancer/o1_gigachat-20b-a3b_lora with PEFT:
from peft import PeftModel from transformers import AutoModelForCausalLM base_model = AutoModelForCausalLM.from_pretrained("ai-sage/GigaChat-20B-A3B-instruct-bf16") model = PeftModel.from_pretrained(base_model, "evilfreelancer/o1_gigachat-20b-a3b_lora") - Notebooks
- Google Colab
- Kaggle
| { | |
| "additional_special_tokens": [ | |
| "<|role_sep|>", | |
| "<|message_sep|>", | |
| "[", | |
| "]", | |
| "<|role_sep|>", | |
| "<|message_sep|>", | |
| "[", | |
| "]" | |
| ], | |
| "bos_token": { | |
| "content": "<s>", | |
| "lstrip": false, | |
| "normalized": false, | |
| "rstrip": false, | |
| "single_word": false | |
| }, | |
| "eos_token": { | |
| "content": "<|message_sep|>", | |
| "lstrip": false, | |
| "normalized": false, | |
| "rstrip": false, | |
| "single_word": false | |
| }, | |
| "pad_token": { | |
| "content": "<s>", | |
| "lstrip": false, | |
| "normalized": false, | |
| "rstrip": false, | |
| "single_word": false | |
| } | |
| } | |