Translation
GGUF
Korean
English
gemma
llama-cpp
gguf-my-repo
Inference Endpoints
DevWorld commited on
Commit
de1752c
1 Parent(s): 7e20503

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +67 -0
README.md ADDED
@@ -0,0 +1,67 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ language:
3
+ - ko
4
+ - en
5
+ license:
6
+ - apache-2.0
7
+ - gemma
8
+ tags:
9
+ - gemma
10
+ - llama-cpp
11
+ - gguf-my-repo
12
+ datasets:
13
+ - traintogpb/aihub-koen-translation-integrated-base-10m
14
+ pipeline_tag: translation
15
+ widget:
16
+ - text: 'Korean:
17
+
18
+ 나라의 말이 중국과 달라 문자와 서로 통하지 아니하다.
19
+
20
+
21
+ English:
22
+
23
+ '
24
+ example_title: K2E
25
+ - text: 'English:
26
+
27
+ Mr. and Mrs. Dursley were proud to say that they were perfectly normal.
28
+
29
+
30
+ Korean:
31
+
32
+ '
33
+ example_title: E2K
34
+ inference:
35
+ parameters:
36
+ max_length: 200
37
+ ---
38
+
39
+ # DevWorld/Gemago-2b-Q4_K_M-GGUF
40
+ This model was converted to GGUF format from [`DevWorld/Gemago-2b`](https://huggingface.co/DevWorld/Gemago-2b) using llama.cpp via the ggml.ai's [GGUF-my-repo](https://huggingface.co/spaces/ggml-org/gguf-my-repo) space.
41
+ Refer to the [original model card](https://huggingface.co/DevWorld/Gemago-2b) for more details on the model.
42
+ ## Use with llama.cpp
43
+
44
+ Install llama.cpp through brew.
45
+
46
+ ```bash
47
+ brew install ggerganov/ggerganov/llama.cpp
48
+ ```
49
+ Invoke the llama.cpp server or the CLI.
50
+
51
+ CLI:
52
+
53
+ ```bash
54
+ llama-cli --hf-repo DevWorld/Gemago-2b-Q4_K_M-GGUF --model gemago-2b.Q4_K_M.gguf -p "The meaning to life and the universe is"
55
+ ```
56
+
57
+ Server:
58
+
59
+ ```bash
60
+ llama-server --hf-repo DevWorld/Gemago-2b-Q4_K_M-GGUF --model gemago-2b.Q4_K_M.gguf -c 2048
61
+ ```
62
+
63
+ 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.
64
+
65
+ ```
66
+ git clone https://github.com/ggerganov/llama.cpp && cd llama.cpp && make && ./main -m gemago-2b.Q4_K_M.gguf -n 128
67
+ ```