using System; #pragma warning disable IDE1006 // Naming Styles namespace LLama.Native { /// /// Direct translation of the llama.cpp sampling API /// public class SamplingApi { /// /// Apply grammar rules to candidate tokens /// /// /// /// [Obsolete("use LLamaTokenDataArray ApplyGrammar method")] public static void llama_sample_grammar(SafeLLamaContextHandle ctx, LLamaTokenDataArray candidates, SafeLLamaGrammarHandle grammar) { candidates.ApplyGrammar(ctx, grammar); } /// /// Sorts candidate tokens by their logits in descending order and calculate probabilities based on logits. /// /// /// Pointer to LLamaTokenDataArray [Obsolete("use LLamaTokenDataArray Softmax method")] public static void llama_sample_softmax(SafeLLamaContextHandle ctx, LLamaTokenDataArray candidates) { candidates.Softmax(ctx); } /// /// Top-K sampling described in academic paper "The Curious Case of Neural Text Degeneration" https://arxiv.org/abs/1904.09751 /// /// /// Pointer to LLamaTokenDataArray /// /// [Obsolete("use LLamaTokenDataArray TopK method")] public static void llama_sample_top_k(SafeLLamaContextHandle ctx, LLamaTokenDataArray candidates, int k, ulong min_keep) { candidates.TopK(ctx, k, min_keep); } /// /// Nucleus sampling described in academic paper "The Curious Case of Neural Text Degeneration" https://arxiv.org/abs/1904.09751 /// /// /// Pointer to LLamaTokenDataArray /// /// [Obsolete("use LLamaTokenDataArray TopP method")] public static void llama_sample_top_p(SafeLLamaContextHandle ctx, LLamaTokenDataArray candidates, float p, ulong min_keep) { candidates.TopP(ctx, p, min_keep); } /// /// Tail Free Sampling described in https://www.trentonbricken.com/Tail-Free-Sampling/. /// /// /// Pointer to LLamaTokenDataArray /// /// [Obsolete("use LLamaTokenDataArray TailFree method")] public static void llama_sample_tail_free(SafeLLamaContextHandle ctx, LLamaTokenDataArray candidates, float z, ulong min_keep) { candidates.TailFree(ctx, z, min_keep); } /// /// Locally Typical Sampling implementation described in the paper https://arxiv.org/abs/2202.00666. /// /// /// Pointer to LLamaTokenDataArray /// /// [Obsolete("use LLamaTokenDataArray LocallyTypical method")] public static void llama_sample_typical(SafeLLamaContextHandle ctx, LLamaTokenDataArray candidates, float p, ulong min_keep) { candidates.LocallyTypical(ctx, p, min_keep); } /// /// Sample with temperature. /// As temperature increases, the prediction becomes diverse but also vulnerable to hallucinations -- generating tokens that are sensible but not factual /// /// /// /// [Obsolete("use LLamaTokenDataArray Temperature() method")] public static void llama_sample_temperature(SafeLLamaContextHandle ctx, LLamaTokenDataArray candidates, float temp) { candidates.Temperature(ctx, temp); } /// /// Mirostat 1.0 algorithm described in the paper https://arxiv.org/abs/2007.14966. Uses tokens instead of words. /// /// /// A vector of `LLamaTokenData` containing the candidate tokens, their probabilities (p), and log-odds (logit) for the current position in the generated text. /// The target cross-entropy (or surprise) value you want to achieve for the generated text. A higher value corresponds to more surprising or less predictable text, while a lower value corresponds to less surprising or more predictable text. /// The learning rate used to update `mu` based on the error between the target and observed surprisal of the sampled word. A larger learning rate will cause `mu` to be updated more quickly, while a smaller learning rate will result in slower updates. /// The number of tokens considered in the estimation of `s_hat`. This is an arbitrary value that is used to calculate `s_hat`, which in turn helps to calculate the value of `k`. In the paper, they use `m = 100`, but you can experiment with different values to see how it affects the performance of the algorithm. /// Maximum cross-entropy. This value is initialized to be twice the target cross-entropy (`2 * tau`) and is updated in the algorithm based on the error between the target and observed surprisal. /// [Obsolete("use LLamaTokenDataArray SampleTokenMirostat() method")] public static LLamaToken llama_sample_token_mirostat(SafeLLamaContextHandle ctx, LLamaTokenDataArray candidates, float tau, float eta, int m, ref float mu) { return candidates.SampleTokenMirostat(ctx, tau, eta, m, ref mu); } /// /// Mirostat 2.0 algorithm described in the paper https://arxiv.org/abs/2007.14966. Uses tokens instead of words. /// /// /// A vector of `LLamaTokenData` containing the candidate tokens, their probabilities (p), and log-odds (logit) for the current position in the generated text. /// The target cross-entropy (or surprise) value you want to achieve for the generated text. A higher value corresponds to more surprising or less predictable text, while a lower value corresponds to less surprising or more predictable text. /// The learning rate used to update `mu` based on the error between the target and observed surprisal of the sampled word. A larger learning rate will cause `mu` to be updated more quickly, while a smaller learning rate will result in slower updates. /// Maximum cross-entropy. This value is initialized to be twice the target cross-entropy (`2 * tau`) and is updated in the algorithm based on the error between the target and observed surprisal. /// [Obsolete("use LLamaTokenDataArray SampleTokenMirostat2() method")] public static LLamaToken llama_sample_token_mirostat_v2(SafeLLamaContextHandle ctx, LLamaTokenDataArray candidates, float tau, float eta, ref float mu) { return candidates.SampleTokenMirostat2(ctx, tau, eta, ref mu); } /// /// Selects the token with the highest probability. /// /// /// Pointer to LLamaTokenDataArray /// [Obsolete("Use LLamaTokenDataArray SampleTokenGreedy() method")] public static LLamaToken llama_sample_token_greedy(SafeLLamaContextHandle ctx, LLamaTokenDataArray candidates) { return candidates.SampleTokenGreedy(ctx); } /// /// Randomly selects a token from the candidates based on their probabilities. /// /// /// Pointer to LLamaTokenDataArray /// [Obsolete("use LLamaTokenDataArray SampleToken() method")] public static LLamaToken llama_sample_token(SafeLLamaContextHandle ctx, LLamaTokenDataArray candidates) { return candidates.SampleToken(ctx); } } }