From 04ecb438c9c2631aab727169a6221ca666df8626 Mon Sep 17 00:00:00 2001 From: Vladislav Sovrasov Date: Wed, 15 Mar 2023 09:51:18 +0100 Subject: [PATCH] Fix a typo in docstring Co-authored-by: Jihwan Eom --- otx/mpa/modules/models/heads/semisl_multilabel_cls_head.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/otx/mpa/modules/models/heads/semisl_multilabel_cls_head.py b/otx/mpa/modules/models/heads/semisl_multilabel_cls_head.py index 596d3a77d1d..691dc33b9cc 100644 --- a/otx/mpa/modules/models/heads/semisl_multilabel_cls_head.py +++ b/otx/mpa/modules/models/heads/semisl_multilabel_cls_head.py @@ -70,7 +70,7 @@ def loss(self, logits, gt_label, features): return losses def forward_train_with_last_layers(self, x, gt_label, final_cls_layer, final_emb_layer): - """Forwards multilabel semi-ls head and losses + """Forwards multilabel semi-sl head and losses Args: x (dict): dict(labeled_weak. labeled_strong, unlabeled_weak, unlabeled_strong) or NxC input features.