kinux98 / SSL_ELN

This repository contains the official implementation of Semi-supervised Semantic Segmentation with Error Localization Network that has been accepted to 2022 IEEE/CVF Conference on Computer Vision and Pattern Recognition (CVPR 2022).

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

How to train the ELN network, the first training stage for ELN is not found.

liuxy1103 opened this issue · comments

How to train the ELN network, the first training stage for ELN is not found.

Hi. The ELN will be trained when epochs exceed its pre_epoch hyper-parameter (70, in this setting).
You can see the code of training ELN at following line :

losses_list2 = train_ELN(self, inputs_l, labels_l)
.

Hope this help.