IlyaGusev commited on
Commit
77c8e47
·
1 Parent(s): b693324

Create README.md

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