Browse Source

Added comments on two properties

tags/v0.4.2-preview
Martin Evans 3 years ago
parent
commit
6985d3ab60
1 changed files with 6 additions and 0 deletions
  1. +6
    -0
      LLama/Native/SafeLlamaModelHandle.cs

+ 6
- 0
LLama/Native/SafeLlamaModelHandle.cs View File

@@ -15,8 +15,14 @@ namespace LLama.Native
/// </summary>
public int VocabCount { get; set; }

/// <summary>
/// Total number of tokens in the context
/// </summary>
public int ContextSize { get; set; }

/// <summary>
/// Dimension of embedding vectors
/// </summary>
public int EmbeddingCount { get; set; }

internal SafeLlamaModelHandle(IntPtr handle)


Loading…
Cancel
Save