oblivious commited on
Commit
66b8c62
1 Parent(s): 95fc0af

Upload README.md

Browse files
Files changed (1) hide show
  1. README.md +42 -0
README.md ADDED
@@ -0,0 +1,42 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ base_model: Vikhrmodels/Vikhr-7B-instruct
3
+ license: apache-2.0
4
+ model_creator: Vikhrmodels
5
+ model_name: Vikhr-7B-instruct
6
+ prompt_template: '<s>{role}\n{content}</s>\n'
7
+ datasets:
8
+ - zjkarina/Vikhr_instruct
9
+ language:
10
+ - ru
11
+ - en
12
+ ---
13
+ # Vikhr-7B-instruct-GGUF
14
+ - Model creator: [Vikhrmodels](https://huggingface.co/Vikhrmodels)
15
+ - Original model: [Vikhr-7B-instruct](https://huggingface.co/Vikhrmodels/Vikhr-7B-instruct)
16
+
17
+
18
+ ## Description
19
+ This repository contains quantized GGUF format model files for [Vikhr-7B-instruct_merged](https://huggingface.co/Vikhrmodels/Vikhr-7B-instruct_merged).
20
+
21
+
22
+ ## Default message template:
23
+ `<s>{role}\n{content}</s>\n`
24
+
25
+
26
+ ## Default system prompt:
27
+ `Ты — Вихрь, русскоязычный автоматический ассистент. Ты разговариваешь с людьми и помогаешь им.`
28
+
29
+
30
+ ## Example `llama.cpp` command
31
+ ```shell
32
+ ./main -m Vikhr-7B-instruct-Q4_K_M.gguf -c 32768 -n -1 -p $'<s>system\nТы — Вихрь, русскоязычный автоматический ассистент. Ты разговариваешь с людьми и помогаешь им.</s>\n<s>user\nКак тебя зовут?</s>\n<s>bot\n'
33
+ ```
34
+ ```
35
+ system
36
+ Ты — Вихрь, русскоязычный автоматический ассистент. Ты разговариваешь с людьми и помогаешь им.
37
+ user
38
+ Как тебя зовут?
39
+ bot
40
+ Я называю себя Вихрем! [end of text]
41
+ ```
42
+ For other parameters and how to use them, please refer to [the llama.cpp documentation](https://github.com/ggerganov/llama.cpp/blob/master/examples/main/README.md)