kenonix commited on
Commit
632a1fe
1 Parent(s): bfc45b7

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +80 -0
README.md ADDED
@@ -0,0 +1,80 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ library_name: transformers
3
+ license: apache-2.0
4
+ base_model: Saxo/Linkbricks-Llama3.2-Korean-cpt-3b
5
+ datasets:
6
+ - Saxo/ko_cn_translation_tech_social_science_linkbricks_single_dataset
7
+ - Saxo/ko_jp_translation_tech_social_science_linkbricks_single_dataset
8
+ - Saxo/en_ko_translation_tech_science_linkbricks_single_dataset_with_prompt_text_huggingface
9
+ - Saxo/en_ko_translation_social_science_linkbricks_single_dataset_with_prompt_text_huggingface
10
+ - Saxo/ko_aspect_sentiment_sns_mall_sentiment_linkbricks_single_dataset_with_prompt_text_huggingface
11
+ - Saxo/ko_summarization_linkbricks_single_dataset_with_prompt_text_huggingface
12
+ - Saxo/OpenOrca_cleaned_kor_linkbricks_single_dataset_with_prompt_text_huggingface
13
+ - Saxo/ko_government_qa_total_linkbricks_single_dataset_with_prompt_text_huggingface_sampled
14
+ - Saxo/ko-news-corpus-1
15
+ - Saxo/ko-news-corpus-2
16
+ - Saxo/ko-news-corpus-3
17
+ - Saxo/ko-news-corpus-4
18
+ - Saxo/ko-news-corpus-5
19
+ - Saxo/ko-news-corpus-6
20
+ - Saxo/ko-news-corpus-7
21
+ - Saxo/ko-news-corpus-8
22
+ - Saxo/ko-news-corpus-9
23
+ - maywell/ko_Ultrafeedback_binarized
24
+ - youjunhyeok/ko-orca-pair-and-ultrafeedback-dpo
25
+ - lilacai/glaive-function-calling-v2-sharegpt
26
+ - kuotient/gsm8k-ko
27
+ language:
28
+ - ko
29
+ - en
30
+ - jp
31
+ - cn
32
+ pipeline_tag: text-generation
33
+ tags:
34
+ - llama-cpp
35
+ - gguf-my-repo
36
+ ---
37
+
38
+ # kenonix/Linkbricks-Llama3.2-Korean-cpt-3b-Q8_0-GGUF
39
+ This model was converted to GGUF format from [`Saxo/Linkbricks-Llama3.2-Korean-cpt-3b`](https://huggingface.co/Saxo/Linkbricks-Llama3.2-Korean-cpt-3b) 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-Llama3.2-Korean-cpt-3b) 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 kenonix/Linkbricks-Llama3.2-Korean-cpt-3b-Q8_0-GGUF --hf-file linkbricks-llama3.2-korean-cpt-3b-q8_0.gguf -p "The meaning to life and the universe is"
54
+ ```
55
+
56
+ ### Server:
57
+ ```bash
58
+ llama-server --hf-repo kenonix/Linkbricks-Llama3.2-Korean-cpt-3b-Q8_0-GGUF --hf-file linkbricks-llama3.2-korean-cpt-3b-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 kenonix/Linkbricks-Llama3.2-Korean-cpt-3b-Q8_0-GGUF --hf-file linkbricks-llama3.2-korean-cpt-3b-q8_0.gguf -p "The meaning to life and the universe is"
76
+ ```
77
+ or
78
+ ```
79
+ ./llama-server --hf-repo kenonix/Linkbricks-Llama3.2-Korean-cpt-3b-Q8_0-GGUF --hf-file linkbricks-llama3.2-korean-cpt-3b-q8_0.gguf -c 2048
80
+ ```