namespace LLama.Native { /// /// RoPE scaling type. /// /// C# equivalent of llama_rope_scaling_type public enum RopeScalingType : int { /// /// No particular scaling type has been specified /// Unspecified = -1, /// /// Do not apply any RoPE scaling /// None = 0, /// /// Positional linear interpolation, as described by kaikendev: https://kaiokendev.github.io/til#extending-context-to-8k /// Linear = 1, /// /// YaRN scaling: https://arxiv.org/pdf/2309.00071.pdf /// Yarn = 2, } }