├── .DS_Store ├── .gitignore ├── LICENSE ├── README.md ├── data ├── Uniform_folder.py ├── Uniform_sampler.py ├── __init__.py ├── folder_new.py └── prepare_data.py ├── images ├── a2lp_da.png ├── da.png └── ssl.png ├── main.py ├── models ├── CrossEntropyClassWeighted.py ├── DomainClassifierSource.py ├── DomainClassifierTarget.py ├── DomainConfusionLoss.py ├── EntropyMinimizationPrinciple.py ├── __init__.py ├── alexnet.py ├── resnet.py └── resnet_dsbn.py ├── opts.py ├── run.sh ├── test ├── clef_c2i_resnet50_original_type1_cross_entropy_soft_lp0.3_0.7mul │ └── log.txt ├── clef_c2i_resnet50_original_type1_cross_entropy_soft_lp0.3_0.7nndescent │ └── log.txt ├── clef_c2p_resnet50_original_type1_cross_entropy_soft_lp0.3_0.7mul │ └── log.txt ├── clef_c2p_resnet50_original_type1_cross_entropy_soft_lp0.3_0.7nndescent │ └── log.txt ├── clef_i2c_resnet50_original_type1_cross_entropy_soft_lp0.3_0.7mul │ └── log.txt ├── clef_i2c_resnet50_original_type1_cross_entropy_soft_lp0.3_0.7nndescent │ └── log.txt ├── clef_i2p_resnet50_original_type1_cross_entropy_soft_lp0.3_0.7mul │ └── log.txt ├── clef_i2p_resnet50_original_type1_cross_entropy_soft_lp0.3_0.7nndescent │ └── log.txt ├── clef_p2c_resnet50_original_type1_cross_entropy_soft_lp0.3_0.7mul │ └── log.txt ├── clef_p2c_resnet50_original_type1_cross_entropy_soft_lp0.3_0.7nndescent │ └── log.txt ├── clef_p2i_resnet50_original_type1_cross_entropy_soft_lp0.3_0.7mul │ └── log.txt ├── clef_p2i_resnet50_original_type1_cross_entropy_soft_lp0.3_0.7nndescent │ └── log.txt ├── off31_amazon2dslr_resnet50_original_type1_cross_entropy_soft_lp0.3_0.7mul │ └── log.txt ├── off31_amazon2dslr_resnet50_original_type1_cross_entropy_soft_lp0.3_0.7nndescent │ └── log.txt ├── off31_amazon2webcam_resnet50_original_type1_cross_entropy_soft_lp0.4_0.6nndescent │ └── log.txt ├── off31_dslr2amazon_resnet50_original_type1_cross_entropy_soft_lp0.3_0.5mul │ └── log.txt ├── off31_dslr2amazon_resnet50_original_type1_cross_entropy_soft_lp0.3_0.5nndescent │ └── log.txt ├── off31_webcam2amazon_resnet50_original_type1_cross_entropy_soft_lp0.3_0.5mul │ └── log.txt ├── off31_webcam2amazon_resnet50_original_type1_cross_entropy_soft_lp0.3_0.5nndescent │ └── log.txt ├── visda_train2validation_resnet50_original_type1_cross_entropy_soft_lp0.3_0.7mul │ └── log.txt └── visda_train2validation_resnet50_original_type1_cross_entropy_soft_lp0.3_0.7nndescent │ └── log.txt └── trainer.py /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gorilla-Lab-SCUT/Label-Propagation-with-Augmented-Anchors/HEAD/.DS_Store -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gorilla-Lab-SCUT/Label-Propagation-with-Augmented-Anchors/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gorilla-Lab-SCUT/Label-Propagation-with-Augmented-Anchors/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gorilla-Lab-SCUT/Label-Propagation-with-Augmented-Anchors/HEAD/README.md -------------------------------------------------------------------------------- /data/Uniform_folder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gorilla-Lab-SCUT/Label-Propagation-with-Augmented-Anchors/HEAD/data/Uniform_folder.py -------------------------------------------------------------------------------- /data/Uniform_sampler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gorilla-Lab-SCUT/Label-Propagation-with-Augmented-Anchors/HEAD/data/Uniform_sampler.py -------------------------------------------------------------------------------- /data/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /data/folder_new.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gorilla-Lab-SCUT/Label-Propagation-with-Augmented-Anchors/HEAD/data/folder_new.py -------------------------------------------------------------------------------- /data/prepare_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gorilla-Lab-SCUT/Label-Propagation-with-Augmented-Anchors/HEAD/data/prepare_data.py -------------------------------------------------------------------------------- /images/a2lp_da.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gorilla-Lab-SCUT/Label-Propagation-with-Augmented-Anchors/HEAD/images/a2lp_da.png -------------------------------------------------------------------------------- /images/da.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gorilla-Lab-SCUT/Label-Propagation-with-Augmented-Anchors/HEAD/images/da.png -------------------------------------------------------------------------------- /images/ssl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gorilla-Lab-SCUT/Label-Propagation-with-Augmented-Anchors/HEAD/images/ssl.png -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gorilla-Lab-SCUT/Label-Propagation-with-Augmented-Anchors/HEAD/main.py -------------------------------------------------------------------------------- /models/CrossEntropyClassWeighted.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gorilla-Lab-SCUT/Label-Propagation-with-Augmented-Anchors/HEAD/models/CrossEntropyClassWeighted.py -------------------------------------------------------------------------------- /models/DomainClassifierSource.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gorilla-Lab-SCUT/Label-Propagation-with-Augmented-Anchors/HEAD/models/DomainClassifierSource.py -------------------------------------------------------------------------------- /models/DomainClassifierTarget.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gorilla-Lab-SCUT/Label-Propagation-with-Augmented-Anchors/HEAD/models/DomainClassifierTarget.py -------------------------------------------------------------------------------- /models/DomainConfusionLoss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gorilla-Lab-SCUT/Label-Propagation-with-Augmented-Anchors/HEAD/models/DomainConfusionLoss.py -------------------------------------------------------------------------------- /models/EntropyMinimizationPrinciple.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gorilla-Lab-SCUT/Label-Propagation-with-Augmented-Anchors/HEAD/models/EntropyMinimizationPrinciple.py -------------------------------------------------------------------------------- /models/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /models/alexnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gorilla-Lab-SCUT/Label-Propagation-with-Augmented-Anchors/HEAD/models/alexnet.py -------------------------------------------------------------------------------- /models/resnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gorilla-Lab-SCUT/Label-Propagation-with-Augmented-Anchors/HEAD/models/resnet.py -------------------------------------------------------------------------------- /models/resnet_dsbn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gorilla-Lab-SCUT/Label-Propagation-with-Augmented-Anchors/HEAD/models/resnet_dsbn.py -------------------------------------------------------------------------------- /opts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gorilla-Lab-SCUT/Label-Propagation-with-Augmented-Anchors/HEAD/opts.py -------------------------------------------------------------------------------- /run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gorilla-Lab-SCUT/Label-Propagation-with-Augmented-Anchors/HEAD/run.sh -------------------------------------------------------------------------------- /test/clef_c2i_resnet50_original_type1_cross_entropy_soft_lp0.3_0.7mul/log.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gorilla-Lab-SCUT/Label-Propagation-with-Augmented-Anchors/HEAD/test/clef_c2i_resnet50_original_type1_cross_entropy_soft_lp0.3_0.7mul/log.txt -------------------------------------------------------------------------------- /test/clef_c2i_resnet50_original_type1_cross_entropy_soft_lp0.3_0.7nndescent/log.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gorilla-Lab-SCUT/Label-Propagation-with-Augmented-Anchors/HEAD/test/clef_c2i_resnet50_original_type1_cross_entropy_soft_lp0.3_0.7nndescent/log.txt -------------------------------------------------------------------------------- /test/clef_c2p_resnet50_original_type1_cross_entropy_soft_lp0.3_0.7mul/log.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gorilla-Lab-SCUT/Label-Propagation-with-Augmented-Anchors/HEAD/test/clef_c2p_resnet50_original_type1_cross_entropy_soft_lp0.3_0.7mul/log.txt -------------------------------------------------------------------------------- /test/clef_c2p_resnet50_original_type1_cross_entropy_soft_lp0.3_0.7nndescent/log.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gorilla-Lab-SCUT/Label-Propagation-with-Augmented-Anchors/HEAD/test/clef_c2p_resnet50_original_type1_cross_entropy_soft_lp0.3_0.7nndescent/log.txt -------------------------------------------------------------------------------- /test/clef_i2c_resnet50_original_type1_cross_entropy_soft_lp0.3_0.7mul/log.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gorilla-Lab-SCUT/Label-Propagation-with-Augmented-Anchors/HEAD/test/clef_i2c_resnet50_original_type1_cross_entropy_soft_lp0.3_0.7mul/log.txt -------------------------------------------------------------------------------- /test/clef_i2c_resnet50_original_type1_cross_entropy_soft_lp0.3_0.7nndescent/log.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gorilla-Lab-SCUT/Label-Propagation-with-Augmented-Anchors/HEAD/test/clef_i2c_resnet50_original_type1_cross_entropy_soft_lp0.3_0.7nndescent/log.txt -------------------------------------------------------------------------------- /test/clef_i2p_resnet50_original_type1_cross_entropy_soft_lp0.3_0.7mul/log.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gorilla-Lab-SCUT/Label-Propagation-with-Augmented-Anchors/HEAD/test/clef_i2p_resnet50_original_type1_cross_entropy_soft_lp0.3_0.7mul/log.txt -------------------------------------------------------------------------------- /test/clef_i2p_resnet50_original_type1_cross_entropy_soft_lp0.3_0.7nndescent/log.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gorilla-Lab-SCUT/Label-Propagation-with-Augmented-Anchors/HEAD/test/clef_i2p_resnet50_original_type1_cross_entropy_soft_lp0.3_0.7nndescent/log.txt -------------------------------------------------------------------------------- /test/clef_p2c_resnet50_original_type1_cross_entropy_soft_lp0.3_0.7mul/log.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gorilla-Lab-SCUT/Label-Propagation-with-Augmented-Anchors/HEAD/test/clef_p2c_resnet50_original_type1_cross_entropy_soft_lp0.3_0.7mul/log.txt -------------------------------------------------------------------------------- /test/clef_p2c_resnet50_original_type1_cross_entropy_soft_lp0.3_0.7nndescent/log.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gorilla-Lab-SCUT/Label-Propagation-with-Augmented-Anchors/HEAD/test/clef_p2c_resnet50_original_type1_cross_entropy_soft_lp0.3_0.7nndescent/log.txt -------------------------------------------------------------------------------- /test/clef_p2i_resnet50_original_type1_cross_entropy_soft_lp0.3_0.7mul/log.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gorilla-Lab-SCUT/Label-Propagation-with-Augmented-Anchors/HEAD/test/clef_p2i_resnet50_original_type1_cross_entropy_soft_lp0.3_0.7mul/log.txt -------------------------------------------------------------------------------- /test/clef_p2i_resnet50_original_type1_cross_entropy_soft_lp0.3_0.7nndescent/log.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gorilla-Lab-SCUT/Label-Propagation-with-Augmented-Anchors/HEAD/test/clef_p2i_resnet50_original_type1_cross_entropy_soft_lp0.3_0.7nndescent/log.txt -------------------------------------------------------------------------------- /test/off31_amazon2dslr_resnet50_original_type1_cross_entropy_soft_lp0.3_0.7mul/log.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gorilla-Lab-SCUT/Label-Propagation-with-Augmented-Anchors/HEAD/test/off31_amazon2dslr_resnet50_original_type1_cross_entropy_soft_lp0.3_0.7mul/log.txt -------------------------------------------------------------------------------- /test/off31_amazon2dslr_resnet50_original_type1_cross_entropy_soft_lp0.3_0.7nndescent/log.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gorilla-Lab-SCUT/Label-Propagation-with-Augmented-Anchors/HEAD/test/off31_amazon2dslr_resnet50_original_type1_cross_entropy_soft_lp0.3_0.7nndescent/log.txt -------------------------------------------------------------------------------- /test/off31_amazon2webcam_resnet50_original_type1_cross_entropy_soft_lp0.4_0.6nndescent/log.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gorilla-Lab-SCUT/Label-Propagation-with-Augmented-Anchors/HEAD/test/off31_amazon2webcam_resnet50_original_type1_cross_entropy_soft_lp0.4_0.6nndescent/log.txt -------------------------------------------------------------------------------- /test/off31_dslr2amazon_resnet50_original_type1_cross_entropy_soft_lp0.3_0.5mul/log.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gorilla-Lab-SCUT/Label-Propagation-with-Augmented-Anchors/HEAD/test/off31_dslr2amazon_resnet50_original_type1_cross_entropy_soft_lp0.3_0.5mul/log.txt -------------------------------------------------------------------------------- /test/off31_dslr2amazon_resnet50_original_type1_cross_entropy_soft_lp0.3_0.5nndescent/log.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gorilla-Lab-SCUT/Label-Propagation-with-Augmented-Anchors/HEAD/test/off31_dslr2amazon_resnet50_original_type1_cross_entropy_soft_lp0.3_0.5nndescent/log.txt -------------------------------------------------------------------------------- /test/off31_webcam2amazon_resnet50_original_type1_cross_entropy_soft_lp0.3_0.5mul/log.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gorilla-Lab-SCUT/Label-Propagation-with-Augmented-Anchors/HEAD/test/off31_webcam2amazon_resnet50_original_type1_cross_entropy_soft_lp0.3_0.5mul/log.txt -------------------------------------------------------------------------------- /test/off31_webcam2amazon_resnet50_original_type1_cross_entropy_soft_lp0.3_0.5nndescent/log.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gorilla-Lab-SCUT/Label-Propagation-with-Augmented-Anchors/HEAD/test/off31_webcam2amazon_resnet50_original_type1_cross_entropy_soft_lp0.3_0.5nndescent/log.txt -------------------------------------------------------------------------------- /test/visda_train2validation_resnet50_original_type1_cross_entropy_soft_lp0.3_0.7mul/log.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gorilla-Lab-SCUT/Label-Propagation-with-Augmented-Anchors/HEAD/test/visda_train2validation_resnet50_original_type1_cross_entropy_soft_lp0.3_0.7mul/log.txt -------------------------------------------------------------------------------- /test/visda_train2validation_resnet50_original_type1_cross_entropy_soft_lp0.3_0.7nndescent/log.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gorilla-Lab-SCUT/Label-Propagation-with-Augmented-Anchors/HEAD/test/visda_train2validation_resnet50_original_type1_cross_entropy_soft_lp0.3_0.7nndescent/log.txt -------------------------------------------------------------------------------- /trainer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gorilla-Lab-SCUT/Label-Propagation-with-Augmented-Anchors/HEAD/trainer.py --------------------------------------------------------------------------------