Skip to content

Commit

Permalink
Setting the default seed to 0xFFFFFFFF (no seed, randomised)
Browse files Browse the repository at this point in the history
  • Loading branch information
martindevans committed Oct 25, 2023
1 parent bb5dedf commit f6a472a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion LLama/Common/ModelParams.cs
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ public record ModelParams
/// <summary>
/// Seed for the random number generator (seed)
/// </summary>
public uint Seed { get; set; } = 1686349486;
public uint Seed { get; set; } = 0xFFFFFFFF;
/// <summary>
/// Use f16 instead of f32 for memory kv (memory_f16)
/// </summary>
Expand Down

0 comments on commit f6a472a

Please sign in to comment.