self-ensemble-visual-domain-adapt
self-ensemble-visual-domain-adapt copied to clipboard
Code repository for the small image experiments our paper 'Self-ensembling for Domain Adaptation'
I got the following errors for the two experiments above. ".../domain_datasets.py", line 24, in get_config # raise ValueError('Could not find configuration file domain_datasets.cfg') These are the two lines from batch_search_exp.sh...
Great work, thank you! Here is my questions. In the script 'network_architectures.py', many 'pool3's are defined but 'pool2's are used instead. Like this Maybe it's not very good even though...
the class DomainAdaptModule seems to maintain the different batch normalization parameters for source and target domain. But it seems that only _init_bn_layers function is called in the __init__ and the...
Hi @Britefury, in optim_weight_ema.py, `for p, src_p in zip(self.params, self.src_params): p.data[:] = src_p.data[:]` this line doesn't seem to really deep copy the student model, so teacher and student may be...
help
thanks your code. and i have some confusion of this code. in this paper, student(target) and teacher(target) have different augmentation, dropout and noise parameters. but i think there are the...