├── .gitignore ├── LICENSE ├── README.md ├── ablation_study_logs ├── ablation_err_visda17_res_batch4_EF5_ep2_the0.7_eta0.001.txt ├── ablation_err_visda17_res_batch4_EF5_ep2_the0.7_eta0.005.txt ├── ablation_err_visda17_res_batch4_EF5_ep2_the0.7_eta0.01.txt ├── ablation_err_visda17_res_batch4_EF5_ep2_the0.7_eta0.02.txt ├── ablation_err_visda17_res_batch4_EF5_ep2_the0.7_eta0.03.txt ├── ablation_err_visda17_res_batch4_EF5_ep2_the0.7_eta0.txt ├── ablation_err_visda17_res_batch4_EF5_ep2_the0.7_eta0_focal.txt ├── ablation_out_visda17_res_batch4_EF5_ep2_the0.7_eta0.001.txt ├── ablation_out_visda17_res_batch4_EF5_ep2_the0.7_eta0.005.txt ├── ablation_out_visda17_res_batch4_EF5_ep2_the0.7_eta0.01.txt ├── ablation_out_visda17_res_batch4_EF5_ep2_the0.7_eta0.02.txt ├── ablation_out_visda17_res_batch4_EF5_ep2_the0.7_eta0.03.txt ├── ablation_out_visda17_res_batch4_EF5_ep2_the0.7_eta0.txt └── ablation_out_visda17_res_batch4_EF5_ep2_the0.7_eta0_focal.txt ├── data_loader.py ├── docs └── sf-pgl.png ├── model_trainer.py ├── model_trainer_new.py ├── models ├── __init__.py ├── __pycache__ │ ├── __init__.cpython-36.pyc │ ├── __init__.cpython-37.pyc │ ├── component.cpython-36.pyc │ ├── component.cpython-37.pyc │ ├── graphbase.cpython-36.pyc │ ├── graphbase.cpython-37.pyc │ ├── resbase.cpython-36.pyc │ ├── resbase.cpython-37.pyc │ ├── vggbase.cpython-36.pyc │ └── vggbase.cpython-37.pyc ├── component.py ├── graphbase.py ├── res152base.py ├── resbase.py └── vggbase.py ├── run_slurm_PGL.sh ├── run_slurm_PGL_eta0.001.sh ├── run_slurm_PGL_eta0.005.sh ├── run_slurm_PGL_eta0.01.sh ├── run_slurm_PGL_eta0.02.sh ├── run_slurm_PGL_eta0.03.sh ├── run_slurm_PGL_eta0.3.sh ├── run_slurm_PGL_eta0.sh ├── run_slurm_PGL_eta2.sh ├── run_slurm_PGL_eta3.sh ├── run_slurm_PGL_focal.sh ├── src_model_trainer.py ├── src_model_trainer_new.py ├── utils ├── __init__.py ├── __pycache__ │ ├── __init__.cpython-36.pyc │ ├── __init__.cpython-37.pyc │ ├── logger.cpython-36.pyc │ ├── logger.cpython-37.pyc │ ├── loss.cpython-36.pyc │ ├── loss.cpython-37.pyc │ ├── visualization.cpython-36.pyc │ └── visualization.cpython-37.pyc ├── list_visda.py ├── logger.py ├── loss.py ├── node_tsne.pdf ├── node_tsne.png ├── source_list.txt ├── target_list.txt └── visualization.py ├── visda18_train.py └── visda_train.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luoyadan/SF-PGL/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luoyadan/SF-PGL/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luoyadan/SF-PGL/HEAD/README.md -------------------------------------------------------------------------------- /ablation_study_logs/ablation_err_visda17_res_batch4_EF5_ep2_the0.7_eta0.001.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luoyadan/SF-PGL/HEAD/ablation_study_logs/ablation_err_visda17_res_batch4_EF5_ep2_the0.7_eta0.001.txt -------------------------------------------------------------------------------- /ablation_study_logs/ablation_err_visda17_res_batch4_EF5_ep2_the0.7_eta0.005.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luoyadan/SF-PGL/HEAD/ablation_study_logs/ablation_err_visda17_res_batch4_EF5_ep2_the0.7_eta0.005.txt -------------------------------------------------------------------------------- /ablation_study_logs/ablation_err_visda17_res_batch4_EF5_ep2_the0.7_eta0.01.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luoyadan/SF-PGL/HEAD/ablation_study_logs/ablation_err_visda17_res_batch4_EF5_ep2_the0.7_eta0.01.txt -------------------------------------------------------------------------------- /ablation_study_logs/ablation_err_visda17_res_batch4_EF5_ep2_the0.7_eta0.02.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luoyadan/SF-PGL/HEAD/ablation_study_logs/ablation_err_visda17_res_batch4_EF5_ep2_the0.7_eta0.02.txt -------------------------------------------------------------------------------- /ablation_study_logs/ablation_err_visda17_res_batch4_EF5_ep2_the0.7_eta0.03.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luoyadan/SF-PGL/HEAD/ablation_study_logs/ablation_err_visda17_res_batch4_EF5_ep2_the0.7_eta0.03.txt -------------------------------------------------------------------------------- /ablation_study_logs/ablation_err_visda17_res_batch4_EF5_ep2_the0.7_eta0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luoyadan/SF-PGL/HEAD/ablation_study_logs/ablation_err_visda17_res_batch4_EF5_ep2_the0.7_eta0.txt -------------------------------------------------------------------------------- /ablation_study_logs/ablation_err_visda17_res_batch4_EF5_ep2_the0.7_eta0_focal.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luoyadan/SF-PGL/HEAD/ablation_study_logs/ablation_err_visda17_res_batch4_EF5_ep2_the0.7_eta0_focal.txt -------------------------------------------------------------------------------- /ablation_study_logs/ablation_out_visda17_res_batch4_EF5_ep2_the0.7_eta0.001.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luoyadan/SF-PGL/HEAD/ablation_study_logs/ablation_out_visda17_res_batch4_EF5_ep2_the0.7_eta0.001.txt -------------------------------------------------------------------------------- /ablation_study_logs/ablation_out_visda17_res_batch4_EF5_ep2_the0.7_eta0.005.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luoyadan/SF-PGL/HEAD/ablation_study_logs/ablation_out_visda17_res_batch4_EF5_ep2_the0.7_eta0.005.txt -------------------------------------------------------------------------------- /ablation_study_logs/ablation_out_visda17_res_batch4_EF5_ep2_the0.7_eta0.01.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luoyadan/SF-PGL/HEAD/ablation_study_logs/ablation_out_visda17_res_batch4_EF5_ep2_the0.7_eta0.01.txt -------------------------------------------------------------------------------- /ablation_study_logs/ablation_out_visda17_res_batch4_EF5_ep2_the0.7_eta0.02.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luoyadan/SF-PGL/HEAD/ablation_study_logs/ablation_out_visda17_res_batch4_EF5_ep2_the0.7_eta0.02.txt -------------------------------------------------------------------------------- /ablation_study_logs/ablation_out_visda17_res_batch4_EF5_ep2_the0.7_eta0.03.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luoyadan/SF-PGL/HEAD/ablation_study_logs/ablation_out_visda17_res_batch4_EF5_ep2_the0.7_eta0.03.txt -------------------------------------------------------------------------------- /ablation_study_logs/ablation_out_visda17_res_batch4_EF5_ep2_the0.7_eta0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luoyadan/SF-PGL/HEAD/ablation_study_logs/ablation_out_visda17_res_batch4_EF5_ep2_the0.7_eta0.txt -------------------------------------------------------------------------------- /ablation_study_logs/ablation_out_visda17_res_batch4_EF5_ep2_the0.7_eta0_focal.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luoyadan/SF-PGL/HEAD/ablation_study_logs/ablation_out_visda17_res_batch4_EF5_ep2_the0.7_eta0_focal.txt -------------------------------------------------------------------------------- /data_loader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luoyadan/SF-PGL/HEAD/data_loader.py -------------------------------------------------------------------------------- /docs/sf-pgl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luoyadan/SF-PGL/HEAD/docs/sf-pgl.png -------------------------------------------------------------------------------- /model_trainer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luoyadan/SF-PGL/HEAD/model_trainer.py -------------------------------------------------------------------------------- /model_trainer_new.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luoyadan/SF-PGL/HEAD/model_trainer_new.py -------------------------------------------------------------------------------- /models/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luoyadan/SF-PGL/HEAD/models/__init__.py -------------------------------------------------------------------------------- /models/__pycache__/__init__.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luoyadan/SF-PGL/HEAD/models/__pycache__/__init__.cpython-36.pyc -------------------------------------------------------------------------------- /models/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luoyadan/SF-PGL/HEAD/models/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /models/__pycache__/component.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luoyadan/SF-PGL/HEAD/models/__pycache__/component.cpython-36.pyc -------------------------------------------------------------------------------- /models/__pycache__/component.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luoyadan/SF-PGL/HEAD/models/__pycache__/component.cpython-37.pyc -------------------------------------------------------------------------------- /models/__pycache__/graphbase.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luoyadan/SF-PGL/HEAD/models/__pycache__/graphbase.cpython-36.pyc -------------------------------------------------------------------------------- /models/__pycache__/graphbase.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luoyadan/SF-PGL/HEAD/models/__pycache__/graphbase.cpython-37.pyc -------------------------------------------------------------------------------- /models/__pycache__/resbase.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luoyadan/SF-PGL/HEAD/models/__pycache__/resbase.cpython-36.pyc -------------------------------------------------------------------------------- /models/__pycache__/resbase.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luoyadan/SF-PGL/HEAD/models/__pycache__/resbase.cpython-37.pyc -------------------------------------------------------------------------------- /models/__pycache__/vggbase.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luoyadan/SF-PGL/HEAD/models/__pycache__/vggbase.cpython-36.pyc -------------------------------------------------------------------------------- /models/__pycache__/vggbase.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luoyadan/SF-PGL/HEAD/models/__pycache__/vggbase.cpython-37.pyc -------------------------------------------------------------------------------- /models/component.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luoyadan/SF-PGL/HEAD/models/component.py -------------------------------------------------------------------------------- /models/graphbase.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luoyadan/SF-PGL/HEAD/models/graphbase.py -------------------------------------------------------------------------------- /models/res152base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luoyadan/SF-PGL/HEAD/models/res152base.py -------------------------------------------------------------------------------- /models/resbase.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luoyadan/SF-PGL/HEAD/models/resbase.py -------------------------------------------------------------------------------- /models/vggbase.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luoyadan/SF-PGL/HEAD/models/vggbase.py -------------------------------------------------------------------------------- /run_slurm_PGL.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luoyadan/SF-PGL/HEAD/run_slurm_PGL.sh -------------------------------------------------------------------------------- /run_slurm_PGL_eta0.001.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luoyadan/SF-PGL/HEAD/run_slurm_PGL_eta0.001.sh -------------------------------------------------------------------------------- /run_slurm_PGL_eta0.005.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luoyadan/SF-PGL/HEAD/run_slurm_PGL_eta0.005.sh -------------------------------------------------------------------------------- /run_slurm_PGL_eta0.01.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luoyadan/SF-PGL/HEAD/run_slurm_PGL_eta0.01.sh -------------------------------------------------------------------------------- /run_slurm_PGL_eta0.02.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luoyadan/SF-PGL/HEAD/run_slurm_PGL_eta0.02.sh -------------------------------------------------------------------------------- /run_slurm_PGL_eta0.03.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luoyadan/SF-PGL/HEAD/run_slurm_PGL_eta0.03.sh -------------------------------------------------------------------------------- /run_slurm_PGL_eta0.3.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luoyadan/SF-PGL/HEAD/run_slurm_PGL_eta0.3.sh -------------------------------------------------------------------------------- /run_slurm_PGL_eta0.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luoyadan/SF-PGL/HEAD/run_slurm_PGL_eta0.sh -------------------------------------------------------------------------------- /run_slurm_PGL_eta2.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luoyadan/SF-PGL/HEAD/run_slurm_PGL_eta2.sh -------------------------------------------------------------------------------- /run_slurm_PGL_eta3.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luoyadan/SF-PGL/HEAD/run_slurm_PGL_eta3.sh -------------------------------------------------------------------------------- /run_slurm_PGL_focal.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luoyadan/SF-PGL/HEAD/run_slurm_PGL_focal.sh -------------------------------------------------------------------------------- /src_model_trainer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luoyadan/SF-PGL/HEAD/src_model_trainer.py -------------------------------------------------------------------------------- /src_model_trainer_new.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luoyadan/SF-PGL/HEAD/src_model_trainer_new.py -------------------------------------------------------------------------------- /utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /utils/__pycache__/__init__.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luoyadan/SF-PGL/HEAD/utils/__pycache__/__init__.cpython-36.pyc -------------------------------------------------------------------------------- /utils/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luoyadan/SF-PGL/HEAD/utils/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /utils/__pycache__/logger.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luoyadan/SF-PGL/HEAD/utils/__pycache__/logger.cpython-36.pyc -------------------------------------------------------------------------------- /utils/__pycache__/logger.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luoyadan/SF-PGL/HEAD/utils/__pycache__/logger.cpython-37.pyc -------------------------------------------------------------------------------- /utils/__pycache__/loss.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luoyadan/SF-PGL/HEAD/utils/__pycache__/loss.cpython-36.pyc -------------------------------------------------------------------------------- /utils/__pycache__/loss.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luoyadan/SF-PGL/HEAD/utils/__pycache__/loss.cpython-37.pyc -------------------------------------------------------------------------------- /utils/__pycache__/visualization.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luoyadan/SF-PGL/HEAD/utils/__pycache__/visualization.cpython-36.pyc -------------------------------------------------------------------------------- /utils/__pycache__/visualization.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luoyadan/SF-PGL/HEAD/utils/__pycache__/visualization.cpython-37.pyc -------------------------------------------------------------------------------- /utils/list_visda.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luoyadan/SF-PGL/HEAD/utils/list_visda.py -------------------------------------------------------------------------------- /utils/logger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luoyadan/SF-PGL/HEAD/utils/logger.py -------------------------------------------------------------------------------- /utils/loss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luoyadan/SF-PGL/HEAD/utils/loss.py -------------------------------------------------------------------------------- /utils/node_tsne.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luoyadan/SF-PGL/HEAD/utils/node_tsne.pdf -------------------------------------------------------------------------------- /utils/node_tsne.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luoyadan/SF-PGL/HEAD/utils/node_tsne.png -------------------------------------------------------------------------------- /utils/source_list.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luoyadan/SF-PGL/HEAD/utils/source_list.txt -------------------------------------------------------------------------------- /utils/target_list.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luoyadan/SF-PGL/HEAD/utils/target_list.txt -------------------------------------------------------------------------------- /utils/visualization.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luoyadan/SF-PGL/HEAD/utils/visualization.py -------------------------------------------------------------------------------- /visda18_train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luoyadan/SF-PGL/HEAD/visda18_train.py -------------------------------------------------------------------------------- /visda_train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luoyadan/SF-PGL/HEAD/visda_train.py --------------------------------------------------------------------------------