bond005 commited on
Commit
ba52590
·
verified ·
1 Parent(s): 4ad31be

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +53 -1
README.md CHANGED
@@ -6,4 +6,56 @@ language:
6
  base_model:
7
  - bond005/meno-tiny-0.1
8
  pipeline_tag: text-generation
9
- ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
6
  base_model:
7
  - bond005/meno-tiny-0.1
8
  pipeline_tag: text-generation
9
+ tags:
10
+ - chat
11
+ ---
12
+
13
+ # Meno-Tiny-0.1-GGUF
14
+
15
+ ## Introduction
16
+
17
+ Meno-Tiny-0.1 is a descendant of the Qwen2.5-1.5B-Instruct model, which was fine-tuned on a special Russian instruct dataset. It is a 1.5B parameter language model with a decoder. It is based on the Transformer architecture with SwiGLU activation, attention QKV bias, group query attention, etc. The name "Meno" is associated with the adaptation of this model for answering questions from text in the RAG pipeline (in honor of the theory of knowledge as recollection from the Socratic dialogue "Meno").
18
+
19
+ ## Quickstart
20
+
21
+ Check out our [llama.cpp documentation](https://qwen.readthedocs.io/en/latest/run_locally/llama.cpp.html) for more usage guide.
22
+
23
+ We advise you to clone [`llama.cpp`](https://github.com/ggerganov/llama.cpp) and install it following the official guide. We follow the latest version of llama.cpp.
24
+ In the following demonstration, we assume that you are running commands under the repository `llama.cpp`.
25
+
26
+ Since cloning the entire repo may be inefficient, you can manually download the GGUF file that you need or use `huggingface-cli`:
27
+ 1. Install
28
+ ```shell
29
+ pip install -U huggingface_hub
30
+ ```
31
+ 2. Download:
32
+ ```shell
33
+ huggingface-cli download bond005/Meno-Tiny-0.1-GGUF meno-tiny-0.1-fp16.gguf --local-dir . --local-dir-use-symlinks False
34
+ ```
35
+
36
+ For users, to achieve chatbot-like experience, it is recommended to commence in the conversation mode:
37
+
38
+ ```shell
39
+ ./llama-cli -m <gguf-file-path> \
40
+ -co -cnv -p "You are Meno, created by Ivan Bondarenko. You are a helpful assistant." \
41
+ -fa -ngl 80 -n 512
42
+ ```
43
+
44
+ ## Evaluation & Performance
45
+
46
+ Detailed evaluation results are reported in this [model card](https://huggingface.co/bond005/meno-tiny-0.1).
47
+
48
+ ## Citation
49
+
50
+ If you find our work helpful, feel free to give us a cite.
51
+
52
+ ```
53
+ @misc{bondarenko2024meno,
54
+ title={Meno-Tiny: A Small Russian Language Model for Question Answering and Other Useful NLP Tasks in Russian},
55
+ author={Bondarenko, Ivan},
56
+ publisher={Hugging Face},
57
+ journal={Hugging Face Hub},
58
+ howpublished={\url{https://huggingface.co/bond005/meno-tiny-0.1}},
59
+ year={2024}
60
+ }
61
+ ```