dahara1 commited on
Commit
5e1dc30
1 Parent(s): e418e96

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +5 -3
README.md CHANGED
@@ -25,17 +25,19 @@ Although llama.cpp can be used to reduce the size of the file with various quant
25
 
26
  ### パラメーター(Parameters)
27
 
 
 
28
  - 温度(--temp): この値を下げると、モデルがより確信度の高い(つまり、より一般的な)単語を選択する傾向が強くなります。
29
  - トップP(--top_p): この値をさらに低く設定することで、モデルが考慮する単語の範囲を狭め、より一貫性のあるテキストを生成するようになります。
30
  - 生成する単語数(-n): この値を減らすことで、モデルが生成するテキストの長さを短くし、不要な追加テキストの生成を防ぐことができます。-1 = 無限大、-2 = 文脈が満たされるまで。
31
 
32
  以下はllama.cppの作者(ggerganov)による推奨パラメーターです
33
-
34
  - -e (改行\nをエスケープ)
35
  - --temp 0 (最も確率の高いトークンのみを選択)
36
- - --repeat-penalty 1.0 (繰り返しペナルティをオフ)
37
- - --no-penalize-nl (改行にペナルティをあたえない)
38
 
 
39
  - Temperature (--temp): Lowering this value will make the model more likely to select more confident (i.e., more common) words.
40
  - Top P (--top_p): Setting this value even lower will narrow the range of words considered by the model and produce more consistent text.
41
  - Number of words to generate (-n): Reducing this value will shorten the length of text generated by the model and prevent the generation of unnecessary additional text. -1 = infinity(default), -2 = until context filled.
 
25
 
26
  ### パラメーター(Parameters)
27
 
28
+ 必要に応じて下記のパラメーターを調整してください
29
+
30
  - 温度(--temp): この値を下げると、モデルがより確信度の高い(つまり、より一般的な)単語を選択する傾向が強くなります。
31
  - トップP(--top_p): この値をさらに低く設定することで、モデルが考慮する単語の範囲を狭め、より一貫性のあるテキストを生成するようになります。
32
  - 生成する単語数(-n): この値を減らすことで、モデルが生成するテキストの長さを短くし、不要な追加テキストの生成を防ぐことができます。-1 = 無限大、-2 = 文脈が満たされるまで。
33
 
34
  以下はllama.cppの作者(ggerganov)による推奨パラメーターです
 
35
  - -e (改行\nをエスケープ)
36
  - --temp 0 (最も確率の高いトークンのみを選択)
37
+ - --repeat-penalty 1.0 (繰り返しペナルティをオフ。指示調整済モデルでこれをするのは、決して良い考えとは言えない。)
38
+ - --no-penalize-nl (改行の繰り返しにペナルティをあたえない)
39
 
40
+ Adjust the following parameters as needed
41
  - Temperature (--temp): Lowering this value will make the model more likely to select more confident (i.e., more common) words.
42
  - Top P (--top_p): Setting this value even lower will narrow the range of words considered by the model and produce more consistent text.
43
  - Number of words to generate (-n): Reducing this value will shorten the length of text generated by the model and prevent the generation of unnecessary additional text. -1 = infinity(default), -2 = until context filled.