The Z-Score AI-generated Copy + Revise

4 grids · reconstruct grid #2

Grid Sequence
Apply batch normalization along the sample axis (rows). For each feature column in Grid 1, compute the z-score: z = (x - column_mean) / column_std (population std). Then map to [0,9] with mean 5 using the formula: output = round(z * 2 + 5), clamped to [0,9]. Each column independently normalized.
Your Answer