You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
|`-np, --parallel N`| number of parallel sequences to decode (default: 1)<br/>(env: LLAMA_ARG_N_PARALLEL) |
69
69
|`--mlock`| force system to keep model in RAM rather than swapping or compressing<br/>(env: LLAMA_ARG_MLOCK) |
70
70
|`--no-mmap`| do not memory-map model (slower load but may reduce pageouts if not using mlock)<br/>(env: LLAMA_ARG_NO_MMAP) |
@@ -99,25 +99,27 @@ The project is under active development, and we are [looking for feedback and co
99
99
100
100
| Argument | Explanation |
101
101
| -------- | ----------- |
102
-
|`--samplers SAMPLERS`| samplers that will be used for generation in the order, separated by ';'<br/>(default: top_k;typ_p;top_p;min_p;temperature) |
102
+
|`--samplers SAMPLERS`| samplers that will be used for generation in the order, separated by ';'<br/>(default: dry;top_k;typ_p;top_p;min_p;xtc;temperature) |
103
103
|`-s, --seed SEED`| RNG seed (default: -1, use random seed for -1) |
104
-
|`--sampling-seq SEQUENCE`| simplified sequence for samplers that will be used (default: kfypmt) |
104
+
|`--sampling-seq SEQUENCE`| simplified sequence for samplers that will be used (default: dkypmxt) |
105
105
|`--ignore-eos`| ignore end of stream token and continue generating (implies --logit-bias EOS-inf) |
|`--dry-base N`| DRY sampling base value (default: 1.75) |
118
-
|`--dry-allowed-length N`| allowed length for DRY sampling (default: 2) |
119
-
|`--dry-penalty-last-n N`| DRY penalty for the last n tokens (default: -1, 0 = disable, -1 = context size) |
120
-
| `--dry-sequence-breaker STRING` | add sequence breaker for DRY sampling, clearing out default breakers (`['\n', ':', '"', '*']`) in the process; use `"none"` to not use any sequence breakers
|`--dry-base N`|set DRY sampling base value (default: 1.75) |
120
+
|`--dry-allowed-length N`|set allowed length for DRY sampling (default: 2) |
121
+
|`--dry-penalty-last-n N`|set DRY penalty for the last n tokens (default: -1, 0 = disable, -1 = context size) |
122
+
|`--dry-sequence-breaker STRING`| add sequence breaker for DRY sampling, clearing out default breakers ('\n', ':', '"', '*') in the process; use "none" to not use any sequence breakers<br/> |
121
123
|`--dynatemp-range N`| dynamic temperature range (default: 0.0, 0.0 = disabled) |
122
124
|`--dynatemp-exp N`| dynamic temperature exponent (default: 1.0) |
123
125
|`--mirostat N`| use Mirostat sampling.<br/>Top K, Nucleus and Locally Typical samplers are ignored if used.<br/>(default: 0, 0 = disabled, 1 = Mirostat, 2 = Mirostat 2.0) |
0 commit comments