mmnga commited on
Commit
77a1b05
1 Parent(s): ddc5a68

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +22 -0
README.md CHANGED
@@ -1,3 +1,25 @@
1
  ---
2
  license: mit
 
 
 
 
 
3
  ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  ---
2
  license: mit
3
+ language:
4
+ - en
5
+ - ja
6
+ datasets:
7
+ - TFMC/imatrix-dataset-for-japanese-llm
8
  ---
9
+ # Phi-3-mini-128k-instruct-gguf
10
+ [microsoftさんが公開しているPhi-3-mini-128k-instruct](https://huggingface.co/microsoft/Phi-3-mini-128k-instruct)のggufフォーマット変換版です。
11
+
12
+ imatrixのデータはTFMC/imatrix-dataset-for-japanese-llmを使用して作成しました。
13
+
14
+ ## 他のモデル
15
+ [mmnga/Phi-3-mini-128k-instruct-gguf](https://huggingface.co/mmnga/Phi-3-mini-128k-instruct-gguf)
16
+
17
+
18
+ ## Usage
19
+
20
+ ```
21
+ git clone https://github.com/ggerganov/llama.cpp.git
22
+ cd llama.cpp
23
+ make -j
24
+ ./main -m ../Phi-3-mini-128k-instruct/Phi-3-mini-128k-instruct-IQ4_XS.gguf -p '<|system|>\nYou are a helpful AI assistant.<|end|>\n<|user|>\nこんにちわ。<|end|>\n<|assistant|>\n' -n 128
25
+ ```