summaryrefslogtreecommitdiff
path: root/doc/CNN_V2_DEBUG_TOOLS.md
diff options
context:
space:
mode:
Diffstat (limited to 'doc/CNN_V2_DEBUG_TOOLS.md')
-rw-r--r--doc/CNN_V2_DEBUG_TOOLS.md12
1 files changed, 11 insertions, 1 deletions
diff --git a/doc/CNN_V2_DEBUG_TOOLS.md b/doc/CNN_V2_DEBUG_TOOLS.md
index 0185dac..b6dc65f 100644
--- a/doc/CNN_V2_DEBUG_TOOLS.md
+++ b/doc/CNN_V2_DEBUG_TOOLS.md
@@ -102,7 +102,17 @@ Load in HTML tool or cnn_test - output should match input (RGB only, ignoring st
## Known Issues
-**Current mismatch:** HTML tool and cnn_test produce different outputs for same input/weights.
+### ~~Layer 0 Visualization Scale~~ [FIXED]
+
+**Issue:** Layer 0 output displayed at 0.5× brightness (divided by 2).
+
+**Cause:** Line 1530 used `vizScale = 0.5` for all CNN layers, but Layer 0 is clamped [0,1] and doesn't need dimming.
+
+**Fix:** Use scale 1.0 for Layer 0 output (layerIdx=1), 0.5 only for middle layers (ReLU, unbounded).
+
+### Remaining Mismatch
+
+**Current:** HTML tool and cnn_test produce different outputs for same input/weights.
**Suspects:**
1. F16 unpacking difference (CPU vs GPU vs JS)