IlyaGusev commited on
Commit
257e822
1 Parent(s): 6ebce06

Create README.md

Browse files
Files changed (1) hide show
  1. README.md +24 -0
README.md ADDED
@@ -0,0 +1,24 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ datasets:
3
+ - IlyaGusev/ru_turbo_alpaca
4
+ - yahma/alpaca-cleaned
5
+ language:
6
+ - ru
7
+ inference: false
8
+ pipeline_tag: text2text-generation
9
+ ---
10
+
11
+ Llama.cpp compatible version of an original [13B model](https://huggingface.co/IlyaGusev/llama_13b_ru_turbo_alpaca_lora).
12
+
13
+ How to run:
14
+ ```
15
+ sudo apt-get install git-lfs
16
+ git clone https://huggingface.co/IlyaGusev/llama_13b_ru_turbo_alpaca_lora_llamacpp
17
+ cd llama_13b_ru_turbo_alpaca_lora_llamacpp && git lfs install && git lfs pull && cd ..
18
+
19
+ git clone https://github.com/ggerganov/llama.cpp
20
+ cp -R llama_13b_ru_turbo_alpaca_lora_llamacpp/* llama.cpp/models/
21
+ cd llama.cpp
22
+ make
23
+ ./main -m ./models/13B/ggml-model-q4_0.bin -p "Вопрос: Почему трава зеленая? Ответ:" -n 512 --temp 0.1
24
+ ```