where can i find more information on these values and their meaning? tfs-z etc on the server mode web ui #3134
Replies: 1 comment 1 reply
-
This is only a partial answer: You can start here: https://github.com/ggerganov/llama.cpp/tree/master/examples/main#top-k-sampling I also wrote some stuff for my Unfortunately, documentation for samplers like Mirostat, tail-free, etc is pretty sparse. You mostly have to learn by playing around with them. |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
llama_sample_top_k (ctx, &cur_p, top_k, 1);
llama_sample_tail_free (ctx, &cur_p, tfs_z, 1);
llama_sample_typical (ctx, &cur_p, typical_p, 1);
llama_sample_top_p (ctx, &cur_p, top_p, 1);
llama_sample_temperature(ctx, &cur_p, temp);
i'm surprised there's no "seed" value to add for uniqueness.
Beta Was this translation helpful? Give feedback.
All reactions