From ad06471a1525da3461596af006fccfd201496e71 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Adri=C3=A0=20Arrufat?= <1671644+arrufat@users.noreply.github.com> Date: Thu, 14 Jul 2022 07:54:10 +0900 Subject: [PATCH] Fix typo in the self-supervised learning example (#2623) --- examples/dnn_self_supervised_learning_ex.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/dnn_self_supervised_learning_ex.cpp b/examples/dnn_self_supervised_learning_ex.cpp index cb73d1d67..df63a28de 100644 --- a/examples/dnn_self_supervised_learning_ex.cpp +++ b/examples/dnn_self_supervised_learning_ex.cpp @@ -22,7 +22,7 @@ representations as: C = trans(ZA) * ZB. - make C as close as possible to the identity matrix. - This removes the redundancy of the feature representations, by maximizing the + This removes the redundancy of the feature representations by maximizing the encoded information about the images themselves, while minimizing the information about the transforms and data augmentations used to obtain the representations.