dahara1 commited on
Commit
db44f0e
1 Parent(s): 1b52174

Create README.md

Browse files
Files changed (1) hide show
  1. README.md +43 -0
README.md ADDED
@@ -0,0 +1,43 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ language:
3
+ - ja
4
+ ---
5
+
6
+ # 本ggufモデルについて about this gguf model
7
+
8
+ gemma-2-2b-itを日本語が多く含まれる重要度行列(iMatrix)を使って量子化したgguf版です。日本語対応能力が多めに保持されている事を期待しています。
9
+ This is a quantized gguf version of gemma-2-2b-it using an importance matrix (iMatrix) that contains many Japanese words. I hope it retains more Japanese support.
10
+
11
+ また、最新のllama.cppに実装された投機的デコード(Speculative decoding)という新しいテクニックを使ってより大きいモデルの実行速度を上げる事ができます。
12
+ also, using latest llama.cpp and a new technique called speculative decoding, we can speed up larger models.
13
+
14
+
15
+ windows command sample
16
+ ```
17
+ .\llama-server.exe ^
18
+ -m .\gemma-2-27B-it-Q4_K_M-fp16.gguf ^
19
+ -md .\gemma-2-2b-it-IQ3_XXS.gguf ^
20
+ -ngl 10 -ngld 10 -e --temp 0 -c 4096 ^
21
+ --draft-max 16 --draft-min 5
22
+ ```
23
+
24
+ 私のテストプロンプトの実行時間: 1576.67秒
25
+ My test prompt execution time: 1576.67 seconds
26
+
27
+ windows command sample
28
+ ```
29
+ .\llama-server.exe ^
30
+ -m .\gemma-2-27B-it-Q4_K_M-fp16.gguf ^
31
+ -md .\gemma-2-2b-it-IQ3_XXS.gguf ^
32
+ -ngl 10 -ngld 10 -e --temp 0 -c 4096 ^
33
+ --draft-max 16 --draft-min 5
34
+ ```
35
+
36
+ CUDAのサンプルについては[dahara1/Qwen2.5-0.5B-Instruct-gguf-japanese-imatrix-128K](https://huggingface.co/dahara1/Qwen2.5-0.5B-Instruct-gguf-japanese-imatrix-128K)をみてください
37
+ See [dahara1/Qwen2.5-0.5B-Instruct-gguf-japanese-imatrix-128K](https://huggingface.co/dahara1/Qwen2.5-0.5B-Instruct-gguf-japanese-imatrix-128K) for CUDA examles.
38
+
39
+ クライアントスクリプトの例は[dahara1/Qwen2.5-3B-Instruct-gguf-japanese-imatrix-128K](https://huggingface.co/dahara1/Qwen2.5-3B-Instruct-gguf-japanese-imatrix-128K)をご覧ください
40
+ See [dahara1/Qwen2.5-3B-Instruct-gguf-japanese-imatrix-128K](https://huggingface.co/dahara1/Qwen2.5-3B-Instruct-gguf-japanese-imatrix-128K) for cliant example.
41
+
42
+ コマンドの詳細は[llama.cppの公式ページ](https://github.com/ggerganov/llama.cpp/pull/10455)をご覧ください
43
+ For more command information, see the official [llama.cpp page](https://github.com/ggerganov/llama.cpp/pull/10455).