mmnga commited on
Commit
404384b
1 Parent(s): 412191f

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +19 -0
README.md CHANGED
@@ -1,3 +1,22 @@
1
  ---
2
  license: mit
3
  ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  ---
2
  license: mit
3
  ---
4
+
5
+ # rinna-youri-7b-instruction-gguf
6
+ [rinnaさんが公開しているyouri-7b-instruction](https://huggingface.co/rinna/youri-7b-instruction)のggufフォーマット変換版です。
7
+
8
+ モデル一覧
9
+
10
+ GGUF版
11
+ [mmnga/rinna-youri-7b-gguf](https://huggingface.co/mmnga/rinna-youri-7b-gguf)
12
+ [mmnga/rinna-youri-7b-instruction-gguf](https://huggingface.co/mmnga/rinna-youri-7b-instruction-gguf)
13
+ [mmnga/rinna-youri-7b-chat-gguf](https://huggingface.co/mmnga/rinna-youri-7b-chat-gguf)
14
+
15
+ ## Usage
16
+
17
+ ```
18
+ git clone https://github.com/ggerganov/llama.cpp.git
19
+ cd llama.cpp
20
+ make -j
21
+ ./main -m 'rinna-youri-7b-instruction-q4_0.gguf' -n 128 -p '今日の夕食のレシピを紹介してください。' --top_p 0.9 --temp 0.7 --repeat-penalty 1.2
22
+ ```