You can not select more than 25 topics Topics must start with a chinese character,a letter or number, can include dashes ('-') and can be up to 35 characters long.

RopeScalingType.cs 356 B

1234567891011121314151617
  1. namespace LLama.Native
  2. {
  3. /// <summary>
  4. /// RoPE scaling type. C# equivalent of llama_rope_scaling_type
  5. /// </summary>
  6. public enum RopeScalingType
  7. : sbyte
  8. {
  9. LLAMA_ROPE_SCALING_UNSPECIFIED = -1,
  10. LLAMA_ROPE_SCALING_NONE = 0,
  11. LLAMA_ROPE_SCALING_LINEAR = 1,
  12. LLAMA_ROPE_SCALING_YARN = 2,
  13. }
  14. }