From f6a472ae8658607bc69aa42bebef8848c0de522f Mon Sep 17 00:00:00 2001 From: Martin Evans Date: Wed, 25 Oct 2023 20:40:41 +0100 Subject: [PATCH] Setting the default seed to `0xFFFFFFFF` (no seed, randomised) --- LLama/Common/ModelParams.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/LLama/Common/ModelParams.cs b/LLama/Common/ModelParams.cs index 998d4ec4a..eb97a0111 100644 --- a/LLama/Common/ModelParams.cs +++ b/LLama/Common/ModelParams.cs @@ -28,7 +28,7 @@ public record ModelParams /// /// Seed for the random number generator (seed) /// - public uint Seed { get; set; } = 1686349486; + public uint Seed { get; set; } = 0xFFFFFFFF; /// /// Use f16 instead of f32 for memory kv (memory_f16) ///