Views
No views yet
| Name | Quant method | Size |
|---|---|---|
| BgGPT-7B-Instruct-v0.2.Q2_K.gguf | Q2_K | 2.56GB |
| BgGPT-7B-Instruct-v0.2.IQ3_XS.gguf | IQ3_XS | 2.84GB |
| BgGPT-7B-Instruct-v0.2.IQ3_S.gguf | IQ3_S | 2.99GB |
| BgGPT-7B-Instruct-v0.2.Q3_K_S.gguf | Q3_K_S | 2.98GB |
| BgGPT-7B-Instruct-v0.2.IQ3_M.gguf | IQ3_M | 3.09GB |
| BgGPT-7B-Instruct-v0.2.Q3_K.gguf | Q3_K | 3.31GB |
| BgGPT-7B-Instruct-v0.2.Q3_K_M.gguf | Q3_K_M | 3.31GB |
| BgGPT-7B-Instruct-v0.2.Q3_K_L.gguf | Q3_K_L | 3.59GB |
| BgGPT-7B-Instruct-v0.2.IQ4_XS.gguf | IQ4_XS | 3.7GB |
| BgGPT-7B-Instruct-v0.2.Q4_0.gguf | Q4_0 | 3.86GB |
| BgGPT-7B-Instruct-v0.2.IQ4_NL.gguf | IQ4_NL | 3.9GB |
| BgGPT-7B-Instruct-v0.2.Q4_K_S.gguf | Q4_K_S | 3.89GB |
| BgGPT-7B-Instruct-v0.2.Q4_K.gguf | Q4_K | 4.1GB |
| BgGPT-7B-Instruct-v0.2.Q4_K_M.gguf | Q4_K_M | 4.1GB |
| BgGPT-7B-Instruct-v0.2.Q4_1.gguf | Q4_1 | 4.27GB |
| BgGPT-7B-Instruct-v0.2.Q5_0.gguf | Q5_0 | 4.69GB |
| BgGPT-7B-Instruct-v0.2.Q5_K_S.gguf | Q5_K_S | 4.69GB |
| BgGPT-7B-Instruct-v0.2.Q5_K.gguf | Q5_K | 4.81GB |
| BgGPT-7B-Instruct-v0.2.Q5_K_M.gguf | Q5_K_M | 4.81GB |
| BgGPT-7B-Instruct-v0.2.Q5_1.gguf | Q5_1 | 5.1GB |
| BgGPT-7B-Instruct-v0.2.Q6_K.gguf | Q6_K | 5.57GB |
| BgGPT-7B-Instruct-v0.2.Q8_0.gguf | Q8_0 | 7.22GB |

INSAIT Institute, part of Sofia University, in Sofia, Bulgaria.[INST] and [/INST] tokens.
The very first instruction should begin with a begin of sequence token <s>. Following instructions should not.
The assistant generation will be ended by the end-of-sequence token.text = "<s>[INST] Кога е основан Софийският университет? [/INST]"
"Софийският университет „Св. Климент Охридски“ е създаден на 1 октомври 1888 г.</s> "
"[INST] Кой го е основал? [/INST]"apply_chat_template() method:https://github.com/insait-institute/lm-evaluation-harness-bg


pip install transformers torch accelerate1pip install packaging ninja
2pip install flash-attn1from transformers import AutoModelForCausalLM, AutoTokenizer
2import torch
3model = AutoModelForCausalLM.from_pretrained(
4 model="INSAIT-Institute/BgGPT-7B-Instruct-v0.2",
5 device_map="auto",
6 torch_dtype=torch.bfloat16,
7 use_flash_attn_2=True # optional
8)