|
| 1 | +using AiDotNet; |
| 2 | +using AiDotNet.Data.Loaders; |
| 3 | +using AiDotNet.Enums; |
| 4 | +using AiDotNet.LinearAlgebra; |
| 5 | +using AiDotNet.LossFunctions; |
| 6 | +using AiDotNet.Models.Options; |
| 7 | +using AiDotNet.NeuralNetworks; |
| 8 | +using AiDotNet.NeuralNetworks.Layers; |
| 9 | +using AiDotNet.Optimizers; |
| 10 | +using AiDotNet.Tensors; |
| 11 | +using AiDotNet.Tensors.Engines; |
| 12 | +using AiDotNet.Tensors.Helpers; |
| 13 | +using Xunit; |
| 14 | +using Xunit.Abstractions; |
| 15 | + |
| 16 | +namespace AiDotNet.Tests.IntegrationTests.NeuralNetworks; |
| 17 | + |
| 18 | +/// <summary> |
| 19 | +/// Repro + regression test for #1415 — MultiHeadAttentionLayer.Forward |
| 20 | +/// produces all-NaN output for specific inputs at large vocab (V=50,257). |
| 21 | +/// |
| 22 | +/// <para>Consumer-side diagnostic (HarmonicEngine) localized the bug to |
| 23 | +/// MHA[10] in a 2-layer Transformer trained at V=50,257. ~25% of input |
| 24 | +/// contexts produce all-NaN attention output even though:</para> |
| 25 | +/// <list type="bullet"> |
| 26 | +/// <item>Trained weights are bounded (maxAbs ≤ 0.25, no NaN/Inf).</item> |
| 27 | +/// <item>MHA input is finite and bounded ([-2.18, 1.75]).</item> |
| 28 | +/// <item>Same MHA at layer 3 (earlier in stack, smaller-magnitude input) |
| 29 | +/// produces finite output.</item> |
| 30 | +/// </list> |
| 31 | +/// |
| 32 | +/// <para>This test isolates the issue to bare MHA Forward (no Transformer |
| 33 | +/// stack, no training). Replicates the layer-10 input distribution |
| 34 | +/// (post-LayerNorm finite tensor with magnitudes up to ~2.2) and asserts |
| 35 | +/// finite output across many random seeds.</para> |
| 36 | +/// </summary> |
| 37 | +public class Issue1415_LargeVocabForwardNaNTests |
| 38 | +{ |
| 39 | + private readonly ITestOutputHelper _output; |
| 40 | + public Issue1415_LargeVocabForwardNaNTests(ITestOutputHelper output) => _output = output; |
| 41 | + |
| 42 | + [Fact] |
| 43 | + public void MultiHeadAttention_Forward_ProducesFiniteOutput_OnFiniteInput_AtPostLayerNormScale() |
| 44 | + { |
| 45 | + AiDotNetEngine.ResetToCpu(); |
| 46 | + const int batchSize = 1, seqLen = 64, dModel = 128, heads = 2; |
| 47 | + const int trials = 200; |
| 48 | + int nanTrials = 0; |
| 49 | + |
| 50 | + var rng = RandomHelper.CreateSeededRandom(0); |
| 51 | + |
| 52 | + // Construct MHA with deterministic init (RandomSeed=0 reproduces the |
| 53 | + // weight magnitudes seen in the consumer trace: maxAbs ~0.044). |
| 54 | + for (int trial = 0; trial < trials; trial++) |
| 55 | + { |
| 56 | + var mha = new MultiHeadAttentionLayer<float>( |
| 57 | + headCount: heads, |
| 58 | + headDimension: dModel / heads, |
| 59 | + activationFunction: null); |
| 60 | + ((LayerBase<float>)mha).RandomSeed = trial; |
| 61 | + |
| 62 | + // Build a post-LayerNorm-like input: zero mean, unit variance per |
| 63 | + // feature, magnitudes typical of LayerNorm output observed in the |
| 64 | + // consumer trace (range ~[-2.2, 1.75]). |
| 65 | + var input = new Tensor<float>([batchSize, seqLen, dModel]); |
| 66 | + for (int b = 0; b < batchSize; b++) |
| 67 | + for (int s = 0; s < seqLen; s++) |
| 68 | + { |
| 69 | + // Per-token sample with mean 0 std 1 (Box-Muller-like uniform→normal) |
| 70 | + float sum = 0; |
| 71 | + for (int d = 0; d < dModel; d++) |
| 72 | + { |
| 73 | + // Truncated normal via average of 12 uniforms (CLT). |
| 74 | + float v = 0; |
| 75 | + for (int k = 0; k < 12; k++) v += (float)rng.NextDouble(); |
| 76 | + v -= 6f; |
| 77 | + input[b, s, d] = v; |
| 78 | + sum += v; |
| 79 | + } |
| 80 | + // Subtract mean and normalize like LayerNorm. |
| 81 | + float mean = sum / dModel; |
| 82 | + float ss = 0; |
| 83 | + for (int d = 0; d < dModel; d++) ss += (input[b, s, d] - mean) * (input[b, s, d] - mean); |
| 84 | + float std = MathF.Sqrt(ss / dModel + 1e-5f); |
| 85 | + for (int d = 0; d < dModel; d++) input[b, s, d] = (input[b, s, d] - mean) / std; |
| 86 | + } |
| 87 | + |
| 88 | + // Verify input is finite (catch test-bug failures distinct from MHA failures). |
| 89 | + for (int i = 0; i < input.Length; i++) |
| 90 | + { |
| 91 | + float iv = input.Data.Span[i]; |
| 92 | + Assert.True(!float.IsNaN(iv) && !float.IsInfinity(iv), $"input[{i}] = {iv} (test setup error)"); |
| 93 | + } |
| 94 | + |
| 95 | + // Forward through MHA. |
| 96 | + var output = mha.Forward(input); |
| 97 | + |
| 98 | + // Check output. |
| 99 | + int nanCount = 0, infCount = 0; |
| 100 | + for (int i = 0; i < output.Length; i++) |
| 101 | + { |
| 102 | + float v = output.Data.Span[i]; |
| 103 | + if (float.IsNaN(v)) nanCount++; |
| 104 | + else if (float.IsInfinity(v)) infCount++; |
| 105 | + } |
| 106 | + if (nanCount > 0 || infCount > 0) |
| 107 | + { |
| 108 | + nanTrials++; |
| 109 | + if (nanTrials <= 3) |
| 110 | + { |
| 111 | + _output.WriteLine($"Trial {trial}: output NaN={nanCount}/{output.Length}, Inf={infCount}"); |
| 112 | + } |
| 113 | + } |
| 114 | + } |
| 115 | + |
| 116 | + _output.WriteLine($"Total trials with NaN/Inf output: {nanTrials}/{trials}"); |
| 117 | + Assert.Equal(0, nanTrials); |
| 118 | + } |
| 119 | + |
| 120 | + /// <summary> |
| 121 | + /// Full-stack repro — reproduces the bug consumer-side. Builds a |
| 122 | + /// 2-layer Transformer at V=50,257 with realistic training (140 |
| 123 | + /// samples × 2 epochs via <c>AdamOptimizerOptions.MaxIterations = 2</c>, |
| 124 | + /// matching the consumer-side WT2 9000-token / stride-64 setup), then |
| 125 | + /// asserts that Transformer.Predict produces finite logits across 100 |
| 126 | + /// random input contexts. Consumer-side data showed ~25% of inputs |
| 127 | + /// produce all-NaN logits. |
| 128 | + /// </summary> |
| 129 | + [Fact] |
| 130 | + public void Transformer_V50257_Predict_ProducesFiniteLogits_OnRandomContexts() |
| 131 | + { |
| 132 | + AiDotNetEngine.ResetToCpu(); |
| 133 | + const int vocab = 50257; |
| 134 | + |
| 135 | + var arch = new TransformerArchitecture<float>( |
| 136 | + inputType: InputType.TwoDimensional, |
| 137 | + taskType: NeuralNetworkTaskType.SequenceClassification, |
| 138 | + numEncoderLayers: 2, numDecoderLayers: 0, numHeads: 2, |
| 139 | + modelDimension: 128, feedForwardDimension: 256, |
| 140 | + inputSize: 64, outputSize: vocab, |
| 141 | + maxSequenceLength: 64, |
| 142 | + vocabularySize: vocab, |
| 143 | + randomSeed: 0); |
| 144 | + var model = new Transformer<float>(arch, lossFunction: new CategoricalCrossEntropyLoss<float>()); |
| 145 | + var opts = new AdamOptimizerOptions<float, Tensor<float>, Tensor<float>> |
| 146 | + { |
| 147 | + InitialLearningRate = 1e-4, MaxIterations = 2, UseAdaptiveLearningRate = false, |
| 148 | + }; |
| 149 | + var optimizer = new AdamOptimizer<float, Tensor<float>, Tensor<float>>(null, opts); |
| 150 | + |
| 151 | + // Realistic training (140 samples × 1 epoch) — matches the consumer-side |
| 152 | + // training amount (9000 WT2 tokens / stride 64 = 140 samples × 2 epochs). |
| 153 | + // 10-sample run is below the threshold to trigger NaN. |
| 154 | + const int nTrain = 140; |
| 155 | + var xTrain = new Tensor<float>([nTrain, 64]); |
| 156 | + var yTrain = new Tensor<float>([nTrain, vocab]); |
| 157 | + var rng = RandomHelper.CreateSeededRandom(42); |
| 158 | + for (int i = 0; i < nTrain; i++) |
| 159 | + { |
| 160 | + for (int s = 0; s < 64; s++) xTrain[i, s] = rng.Next(0, vocab); |
| 161 | + yTrain[i, rng.Next(0, vocab)] = 1.0f; |
| 162 | + } |
| 163 | + |
| 164 | + // Build via AiModelBuilder facade — matches the consumer-side path. |
| 165 | + // Note: this test does NOT require an AiDotNet license to be set |
| 166 | + // because we go through the public AiModelBuilder ctor that doesn't |
| 167 | + // gate on license for in-process use in AiDotNet's own test suite. |
| 168 | + var builderType = typeof(AiModelBuilder<float, Tensor<float>, Tensor<float>>); |
| 169 | + // Find a parameterless or default ctor — falls back to direct nn.Train |
| 170 | + // if none works. |
| 171 | + var defaultCtor = builderType.GetConstructor(System.Type.EmptyTypes); |
| 172 | + if (defaultCtor != null) |
| 173 | + { |
| 174 | + var builder = (AiModelBuilder<float, Tensor<float>, Tensor<float>>)defaultCtor.Invoke(null); |
| 175 | + builder.ConfigureModel(model).ConfigureOptimizer(optimizer) |
| 176 | + .ConfigureDataLoader(DataLoaders.FromTensors<float>(xTrain, yTrain)) |
| 177 | + .BuildAsync().GetAwaiter().GetResult(); |
| 178 | + } |
| 179 | + else |
| 180 | + { |
| 181 | + // Fallback — call nn.Train directly (matches the consumer-side |
| 182 | + // pre-#1380-fix bypass path). |
| 183 | + model.Train(xTrain, yTrain); |
| 184 | + } |
| 185 | + |
| 186 | + // Scan 100 random input contexts for non-finite output (NaN or +/-Infinity). |
| 187 | + // The "finite logits" contract requires BOTH — NaN-only checks would let |
| 188 | + // saturated overflow-style failures (e.g. an exp() that diverges to +Inf |
| 189 | + // through the softmax/cross-entropy boundary) silently pass. |
| 190 | + // (Use explicit IsNaN || IsInfinity instead of float.IsFinite — IsFinite |
| 191 | + // is .NET Core 2.1+, but this test project multi-targets net471 which |
| 192 | + // doesn't expose it.) |
| 193 | + int nonFiniteInputs = 0; |
| 194 | + for (int trial = 0; trial < 100; trial++) |
| 195 | + { |
| 196 | + var input = new Tensor<float>([1, 64]); |
| 197 | + for (int s = 0; s < 64; s++) input[0, s] = rng.Next(0, vocab); |
| 198 | + var pred = model.Predict(input); |
| 199 | + for (int v = 0; v < vocab; v++) |
| 200 | + { |
| 201 | + float lv = pred[0, v]; |
| 202 | + if (float.IsNaN(lv) || float.IsInfinity(lv)) { nonFiniteInputs++; break; } |
| 203 | + } |
| 204 | + } |
| 205 | + |
| 206 | + _output.WriteLine($"Non-finite-producing input contexts: {nonFiniteInputs}/100"); |
| 207 | + // Strict assertion — any NaN or +/-Infinity logit is a forward-pass bug. |
| 208 | + Assert.Equal(0, nonFiniteInputs); |
| 209 | + } |
| 210 | + |
| 211 | + /// <summary> |
| 212 | + /// Direct-train repro WITH aggressive Gen2 GC.Collect between Train and |
| 213 | + /// Predict — the consumer's #1415 comment 2 identified this as the |
| 214 | + /// root-cause trigger ("AiDotNet's internal tensor state being corrupted |
| 215 | + /// by user-level GC.Collect(2, GCCollectionMode.Aggressive, blocking: |
| 216 | + /// true) between model.Train and model.Predict at V=50,257"). This test |
| 217 | + /// asserts the contract holds AND aggressive Gen2 GC between Train and |
| 218 | + /// Predict doesn't reclaim any tensor state the predict path still |
| 219 | + /// depends on. ~2.5 min wall time on CPU. |
| 220 | + /// </summary> |
| 221 | + [Fact] |
| 222 | + public void Transformer_V50257_DirectTrain_AggressiveGC_PredictProducesFiniteLogits() |
| 223 | + { |
| 224 | + // Consumer comment 2 on issue #1415 claims the bug surfaces ONLY when |
| 225 | + // an aggressive Gen2 GC.Collect runs between Train and Predict at |
| 226 | + // V=50,257. Same setup as DirectTrain test above, plus the |
| 227 | + // GC.Collect call the consumer reported as the actual trigger. |
| 228 | + // Expected to fail on the pre-fix code path; expected to pass after |
| 229 | + // the upstream allocator/state-tracking fix lands. |
| 230 | + AiDotNetEngine.ResetToCpu(); |
| 231 | + const int vocab = 50257; |
| 232 | + |
| 233 | + var arch = new TransformerArchitecture<float>( |
| 234 | + inputType: InputType.TwoDimensional, |
| 235 | + taskType: NeuralNetworkTaskType.SequenceClassification, |
| 236 | + numEncoderLayers: 2, numDecoderLayers: 0, numHeads: 2, |
| 237 | + modelDimension: 128, feedForwardDimension: 256, |
| 238 | + inputSize: 64, outputSize: vocab, |
| 239 | + maxSequenceLength: 64, |
| 240 | + vocabularySize: vocab, |
| 241 | + randomSeed: 0); |
| 242 | + var model = new Transformer<float>(arch, lossFunction: new CategoricalCrossEntropyLoss<float>()); |
| 243 | + |
| 244 | + const int nTrain = 140; |
| 245 | + const int epochs = 2; |
| 246 | + var rng = RandomHelper.CreateSeededRandom(42); |
| 247 | + |
| 248 | + var trainXs = new Tensor<float>[nTrain]; |
| 249 | + var trainYs = new Tensor<float>[nTrain]; |
| 250 | + for (int i = 0; i < nTrain; i++) |
| 251 | + { |
| 252 | + var x = new Tensor<float>([1, 64]); |
| 253 | + for (int s = 0; s < 64; s++) x[0, s] = rng.Next(0, vocab); |
| 254 | + var y = new Tensor<float>([1, vocab]); |
| 255 | + y[0, rng.Next(0, vocab)] = 1.0f; |
| 256 | + trainXs[i] = x; |
| 257 | + trainYs[i] = y; |
| 258 | + } |
| 259 | + |
| 260 | + for (int epoch = 0; epoch < epochs; epoch++) |
| 261 | + for (int i = 0; i < nTrain; i++) |
| 262 | + model.Train(trainXs[i], trainYs[i]); |
| 263 | + |
| 264 | + // Drop training tensors and force aggressive Gen2 collection — exact |
| 265 | + // pattern the consumer reported reproducing the bug. GCCollectionMode.Aggressive |
| 266 | + // is .NET 6+; fall back to Forced on net471 (both target Gen2 with |
| 267 | + // blocking:true, which is the property the consumer's claim depends on). |
| 268 | + for (int i = 0; i < nTrain; i++) { trainXs[i] = null!; trainYs[i] = null!; } |
| 269 | +#if NET6_0_OR_GREATER |
| 270 | + System.GC.Collect(2, System.GCCollectionMode.Aggressive, blocking: true); |
| 271 | + System.GC.WaitForPendingFinalizers(); |
| 272 | + System.GC.Collect(2, System.GCCollectionMode.Aggressive, blocking: true); |
| 273 | +#else |
| 274 | + System.GC.Collect(2, System.GCCollectionMode.Forced, blocking: true); |
| 275 | + System.GC.WaitForPendingFinalizers(); |
| 276 | + System.GC.Collect(2, System.GCCollectionMode.Forced, blocking: true); |
| 277 | +#endif |
| 278 | + |
| 279 | + int nonFiniteInputs = 0; |
| 280 | + for (int trial = 0; trial < 100; trial++) |
| 281 | + { |
| 282 | + var input = new Tensor<float>([1, 64]); |
| 283 | + for (int s = 0; s < 64; s++) input[0, s] = rng.Next(0, vocab); |
| 284 | + var pred = model.Predict(input); |
| 285 | + for (int v = 0; v < vocab; v++) |
| 286 | + { |
| 287 | + float lv = pred[0, v]; |
| 288 | + if (float.IsNaN(lv) || float.IsInfinity(lv)) { nonFiniteInputs++; break; } |
| 289 | + } |
| 290 | + } |
| 291 | + |
| 292 | + _output.WriteLine($"Non-finite-producing input contexts (direct-train + Aggressive GC): {nonFiniteInputs}/100"); |
| 293 | + Assert.Equal(0, nonFiniteInputs); |
| 294 | + } |
| 295 | + |
| 296 | + /// <summary> |
| 297 | + /// Direct-train repro WITHOUT the BuildAsync facade — calls model.Train |
| 298 | + /// per-sample for two explicit epochs (effective 280 steps), matching |
| 299 | + /// the consumer's reported training schedule. Verifies the contract |
| 300 | + /// holds whether the model is trained via AiModelBuilder.BuildAsync |
| 301 | + /// (above) or via direct model.Train calls. ~2.5 min wall time on CPU. |
| 302 | + /// </summary> |
| 303 | + [Fact] |
| 304 | + public void Transformer_V50257_DirectTrain_PredictProducesFiniteLogits() |
| 305 | + { |
| 306 | + AiDotNetEngine.ResetToCpu(); |
| 307 | + const int vocab = 50257; |
| 308 | + |
| 309 | + var arch = new TransformerArchitecture<float>( |
| 310 | + inputType: InputType.TwoDimensional, |
| 311 | + taskType: NeuralNetworkTaskType.SequenceClassification, |
| 312 | + numEncoderLayers: 2, numDecoderLayers: 0, numHeads: 2, |
| 313 | + modelDimension: 128, feedForwardDimension: 256, |
| 314 | + inputSize: 64, outputSize: vocab, |
| 315 | + maxSequenceLength: 64, |
| 316 | + vocabularySize: vocab, |
| 317 | + randomSeed: 0); |
| 318 | + var model = new Transformer<float>(arch, lossFunction: new CategoricalCrossEntropyLoss<float>()); |
| 319 | + |
| 320 | + const int nTrain = 140; |
| 321 | + const int epochs = 2; |
| 322 | + var rng = RandomHelper.CreateSeededRandom(42); |
| 323 | + |
| 324 | + // Per-sample tensors so we drive model.Train(x, y) directly — same |
| 325 | + // path the consumer reported reproducing on. |
| 326 | + var trainXs = new Tensor<float>[nTrain]; |
| 327 | + var trainYs = new Tensor<float>[nTrain]; |
| 328 | + for (int i = 0; i < nTrain; i++) |
| 329 | + { |
| 330 | + var x = new Tensor<float>([1, 64]); |
| 331 | + for (int s = 0; s < 64; s++) x[0, s] = rng.Next(0, vocab); |
| 332 | + var y = new Tensor<float>([1, vocab]); |
| 333 | + y[0, rng.Next(0, vocab)] = 1.0f; |
| 334 | + trainXs[i] = x; |
| 335 | + trainYs[i] = y; |
| 336 | + } |
| 337 | + |
| 338 | + for (int epoch = 0; epoch < epochs; epoch++) |
| 339 | + for (int i = 0; i < nTrain; i++) |
| 340 | + model.Train(trainXs[i], trainYs[i]); |
| 341 | + |
| 342 | + int nonFiniteInputs = 0; |
| 343 | + for (int trial = 0; trial < 100; trial++) |
| 344 | + { |
| 345 | + var input = new Tensor<float>([1, 64]); |
| 346 | + for (int s = 0; s < 64; s++) input[0, s] = rng.Next(0, vocab); |
| 347 | + var pred = model.Predict(input); |
| 348 | + for (int v = 0; v < vocab; v++) |
| 349 | + { |
| 350 | + float lv = pred[0, v]; |
| 351 | + if (float.IsNaN(lv) || float.IsInfinity(lv)) { nonFiniteInputs++; break; } |
| 352 | + } |
| 353 | + } |
| 354 | + |
| 355 | + _output.WriteLine($"Non-finite-producing input contexts (direct-train): {nonFiniteInputs}/100"); |
| 356 | + Assert.Equal(0, nonFiniteInputs); |
| 357 | + } |
| 358 | +} |
0 commit comments