File size: 715 Bytes
77c8e47
 
 
 
 
 
 
 
 
8db6f18
77c8e47
 
 
 
 
 
 
 
 
 
 
a1cc5f6
77c8e47
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
---
datasets:
- IlyaGusev/ru_turbo_alpaca
language:
- ru
inference: false
pipeline_tag: text2text-generation
---

Llama.cpp compatible version of an original [7B model](https://huggingface.co/IlyaGusev/llama_7b_ru_turbo_alpaca_lora).

How to run:
```
sudo apt-get install git-lfs
git clone https://huggingface.co/IlyaGusev/llama_7b_ru_turbo_alpaca_lora_llamacpp
cd llama_7b_ru_turbo_alpaca_lora_llamacpp && git lfs install && git lfs pull && cd ..

git clone https://github.com/ggerganov/llama.cpp
cp -R llama_7b_ru_turbo_alpaca_lora_llamacpp/* llama.cpp/models/
cd llama.cpp
make
./main -m ./models/7B/ggml-model-q4_0.bin -p "Вопрос: Почему трава зеленая? Ответ:" -n 512 --temp 0.1
```