Even formatting + exclusively 0.0f to disable now

This commit is contained in:
kalomaze 2023-10-28 23:52:22 -05:00
parent cb233584cc
commit fcbbfc1666
2 changed files with 3 additions and 3 deletions

View file

@ -14,7 +14,7 @@ typedef struct llama_sampling_params {
int32_t n_probs = 0; // if greater than 0, output the probabilities of top n_probs tokens.
int32_t top_k = 40; // <= 0 to use vocab size
float top_p = 0.95f; // 1.0 = disabled
float min_p = 0.0f; // 1.0 (or 0.0) = disabled
float min_p = 0.00f; // 0.0 = disabled
float tfs_z = 1.00f; // 1.0 = disabled
float typical_p = 1.00f; // 1.0 = disabled
float temp = 0.80f; // 1.0 = disabled