Upload README.md with huggingface_hub
Browse files
README.md
ADDED
@@ -0,0 +1,32 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
---
|
2 |
+
datasets:
|
3 |
+
- IlyaGusev/ru_turbo_saiga
|
4 |
+
- IlyaGusev/ru_sharegpt_cleaned
|
5 |
+
- IlyaGusev/oasst1_ru_main_branch
|
6 |
+
- IlyaGusev/gpt_roleplay_realm
|
7 |
+
- lksy/ru_instruct_gpt4
|
8 |
+
language:
|
9 |
+
- ru
|
10 |
+
pipeline_tag: conversational
|
11 |
+
license: cc-by-4.0
|
12 |
+
base_model: IlyaGusev/saiga_mistral_7b_lora
|
13 |
+
tags:
|
14 |
+
- llama-cpp
|
15 |
+
- gguf-my-lora
|
16 |
+
---
|
17 |
+
|
18 |
+
# Mortido/saiga_mistral_7b_lora-F16-GGUF
|
19 |
+
This LoRA adapter was converted to GGUF format from [`IlyaGusev/saiga_mistral_7b_lora`](https://huggingface.co/IlyaGusev/saiga_mistral_7b_lora) via the ggml.ai's [GGUF-my-lora](https://huggingface.co/spaces/ggml-org/gguf-my-lora) space.
|
20 |
+
Refer to the [original adapter repository](https://huggingface.co/IlyaGusev/saiga_mistral_7b_lora) for more details.
|
21 |
+
|
22 |
+
## Use with llama.cpp
|
23 |
+
|
24 |
+
```bash
|
25 |
+
# with cli
|
26 |
+
llama-cli -m base_model.gguf --lora saiga_mistral_7b_lora-f16.gguf (...other args)
|
27 |
+
|
28 |
+
# with server
|
29 |
+
llama-server -m base_model.gguf --lora saiga_mistral_7b_lora-f16.gguf (...other args)
|
30 |
+
```
|
31 |
+
|
32 |
+
To know more about LoRA usage with llama.cpp server, refer to the [llama.cpp server documentation](https://github.com/ggerganov/llama.cpp/blob/master/examples/server/README.md).
|