Fix typo.

This commit is contained in:
Relintai 2023-02-10 19:31:47 +01:00
parent 8544322ef0
commit 022a330ff6

View File

@ -923,7 +923,7 @@ Ref<MLPPMatrix> MLPPActivation::softmax_normm(const Ref<MLPPMatrix> &z) {
for (int i = 0; i < z_size.y; ++i) {
z->get_row_into_mlpp_vector(i, row_tmp);
Ref<MLPPVector> sfn = softmax_normv(z);
Ref<MLPPVector> sfn = softmax_normv(row_tmp);
a->set_row_mlpp_vector(i, sfn);
}