Browse Source

Fixed default value

tags/v0.7.0
Martin Evans 2 years ago
parent
commit
281e58f059
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      LLama/Common/ModelParams.cs

+ 1
- 1
LLama/Common/ModelParams.cs View File

@@ -85,7 +85,7 @@ namespace LLama.Common
/// how split tensors should be distributed across GPUs.
/// </summary>
/// <remarks>"[ 3, 2 ]" will assign 60% of the data to GPU 0 and 40% to GPU 1.</remarks>
public TensorSplitsCollection TensorSplits { get; set; }
public TensorSplitsCollection TensorSplits { get; set; } = new();

/// <summary>
/// RoPE base frequency


Loading…
Cancel
Save