Upload README.md with huggingface_hub
Browse files
README.md
ADDED
@@ -0,0 +1,80 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
---
|
2 |
+
base_model: Saxo/Linkbricks-Horizon-AI-Korean-Pro-12B
|
3 |
+
datasets:
|
4 |
+
- Saxo/ko_cn_translation_tech_social_science_linkbricks_single_dataset
|
5 |
+
- Saxo/ko_jp_translation_tech_social_science_linkbricks_single_dataset
|
6 |
+
- Saxo/en_ko_translation_tech_science_linkbricks_single_dataset_with_prompt_text_huggingface
|
7 |
+
- Saxo/en_ko_translation_social_science_linkbricks_single_dataset_with_prompt_text_huggingface
|
8 |
+
- Saxo/ko_aspect_sentiment_sns_mall_sentiment_linkbricks_single_dataset_with_prompt_text_huggingface
|
9 |
+
- Saxo/ko_summarization_linkbricks_single_dataset_with_prompt_text_huggingface
|
10 |
+
- Saxo/OpenOrca_cleaned_kor_linkbricks_single_dataset_with_prompt_text_huggingface
|
11 |
+
- Saxo/ko_government_qa_total_linkbricks_single_dataset_with_prompt_text_huggingface_sampled
|
12 |
+
- Saxo/ko-news-corpus-1
|
13 |
+
- Saxo/ko-news-corpus-2
|
14 |
+
- Saxo/ko-news-corpus-3
|
15 |
+
- Saxo/ko-news-corpus-4
|
16 |
+
- Saxo/ko-news-corpus-5
|
17 |
+
- Saxo/ko-news-corpus-6
|
18 |
+
- Saxo/ko-news-corpus-7
|
19 |
+
- Saxo/ko-news-corpus-8
|
20 |
+
- Saxo/ko-news-corpus-9
|
21 |
+
- maywell/ko_Ultrafeedback_binarized
|
22 |
+
- youjunhyeok/ko-orca-pair-and-ultrafeedback-dpo
|
23 |
+
- lilacai/glaive-function-calling-v2-sharegpt
|
24 |
+
- kuotient/gsm8k-ko
|
25 |
+
language:
|
26 |
+
- ko
|
27 |
+
- en
|
28 |
+
- jp
|
29 |
+
- cn
|
30 |
+
library_name: transformers
|
31 |
+
license: apache-2.0
|
32 |
+
pipeline_tag: text-generation
|
33 |
+
tags:
|
34 |
+
- llama-cpp
|
35 |
+
- gguf-my-repo
|
36 |
+
---
|
37 |
+
|
38 |
+
# netnk9151/Linkbricks-Horizon-AI-Korean-Pro-12B-Q8_0-GGUF
|
39 |
+
This model was converted to GGUF format from [`Saxo/Linkbricks-Horizon-AI-Korean-Pro-12B`](https://huggingface.co/Saxo/Linkbricks-Horizon-AI-Korean-Pro-12B) using llama.cpp via the ggml.ai's [GGUF-my-repo](https://huggingface.co/spaces/ggml-org/gguf-my-repo) space.
|
40 |
+
Refer to the [original model card](https://huggingface.co/Saxo/Linkbricks-Horizon-AI-Korean-Pro-12B) for more details on the model.
|
41 |
+
|
42 |
+
## Use with llama.cpp
|
43 |
+
Install llama.cpp through brew (works on Mac and Linux)
|
44 |
+
|
45 |
+
```bash
|
46 |
+
brew install llama.cpp
|
47 |
+
|
48 |
+
```
|
49 |
+
Invoke the llama.cpp server or the CLI.
|
50 |
+
|
51 |
+
### CLI:
|
52 |
+
```bash
|
53 |
+
llama-cli --hf-repo netnk9151/Linkbricks-Horizon-AI-Korean-Pro-12B-Q8_0-GGUF --hf-file linkbricks-horizon-ai-korean-pro-12b-q8_0.gguf -p "The meaning to life and the universe is"
|
54 |
+
```
|
55 |
+
|
56 |
+
### Server:
|
57 |
+
```bash
|
58 |
+
llama-server --hf-repo netnk9151/Linkbricks-Horizon-AI-Korean-Pro-12B-Q8_0-GGUF --hf-file linkbricks-horizon-ai-korean-pro-12b-q8_0.gguf -c 2048
|
59 |
+
```
|
60 |
+
|
61 |
+
Note: You can also use this checkpoint directly through the [usage steps](https://github.com/ggerganov/llama.cpp?tab=readme-ov-file#usage) listed in the Llama.cpp repo as well.
|
62 |
+
|
63 |
+
Step 1: Clone llama.cpp from GitHub.
|
64 |
+
```
|
65 |
+
git clone https://github.com/ggerganov/llama.cpp
|
66 |
+
```
|
67 |
+
|
68 |
+
Step 2: Move into the llama.cpp folder and build it with `LLAMA_CURL=1` flag along with other hardware-specific flags (for ex: LLAMA_CUDA=1 for Nvidia GPUs on Linux).
|
69 |
+
```
|
70 |
+
cd llama.cpp && LLAMA_CURL=1 make
|
71 |
+
```
|
72 |
+
|
73 |
+
Step 3: Run inference through the main binary.
|
74 |
+
```
|
75 |
+
./llama-cli --hf-repo netnk9151/Linkbricks-Horizon-AI-Korean-Pro-12B-Q8_0-GGUF --hf-file linkbricks-horizon-ai-korean-pro-12b-q8_0.gguf -p "The meaning to life and the universe is"
|
76 |
+
```
|
77 |
+
or
|
78 |
+
```
|
79 |
+
./llama-server --hf-repo netnk9151/Linkbricks-Horizon-AI-Korean-Pro-12B-Q8_0-GGUF --hf-file linkbricks-horizon-ai-korean-pro-12b-q8_0.gguf -c 2048
|
80 |
+
```
|