├── README.md ├── auxil.py ├── best_checkpoints └── .gitignore ├── classification_map └── .gitignore ├── current_checkpoints └── .gitignore ├── data └── .gitignore ├── dataset.py ├── figs ├── .gitignore ├── fig1.png ├── fig2.png ├── fig3.png ├── fig4.png ├── fig5.png ├── framework.png ├── table1.png ├── table2.png ├── table3.png ├── table4.png └── table5.png ├── models ├── .gitignore └── models.py ├── requirements.txt ├── results └── .gitignore └── train.py /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BBreakWord/CL-MGNet/HEAD/README.md -------------------------------------------------------------------------------- /auxil.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BBreakWord/CL-MGNet/HEAD/auxil.py -------------------------------------------------------------------------------- /best_checkpoints/.gitignore: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /classification_map/.gitignore: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /current_checkpoints/.gitignore: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /data/.gitignore: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BBreakWord/CL-MGNet/HEAD/dataset.py -------------------------------------------------------------------------------- /figs/.gitignore: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /figs/fig1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BBreakWord/CL-MGNet/HEAD/figs/fig1.png -------------------------------------------------------------------------------- /figs/fig2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BBreakWord/CL-MGNet/HEAD/figs/fig2.png -------------------------------------------------------------------------------- /figs/fig3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BBreakWord/CL-MGNet/HEAD/figs/fig3.png -------------------------------------------------------------------------------- /figs/fig4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BBreakWord/CL-MGNet/HEAD/figs/fig4.png -------------------------------------------------------------------------------- /figs/fig5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BBreakWord/CL-MGNet/HEAD/figs/fig5.png -------------------------------------------------------------------------------- /figs/framework.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BBreakWord/CL-MGNet/HEAD/figs/framework.png -------------------------------------------------------------------------------- /figs/table1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BBreakWord/CL-MGNet/HEAD/figs/table1.png -------------------------------------------------------------------------------- /figs/table2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BBreakWord/CL-MGNet/HEAD/figs/table2.png -------------------------------------------------------------------------------- /figs/table3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BBreakWord/CL-MGNet/HEAD/figs/table3.png -------------------------------------------------------------------------------- /figs/table4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BBreakWord/CL-MGNet/HEAD/figs/table4.png -------------------------------------------------------------------------------- /figs/table5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BBreakWord/CL-MGNet/HEAD/figs/table5.png -------------------------------------------------------------------------------- /models/.gitignore: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /models/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BBreakWord/CL-MGNet/HEAD/models/models.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BBreakWord/CL-MGNet/HEAD/requirements.txt -------------------------------------------------------------------------------- /results/.gitignore: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BBreakWord/CL-MGNet/HEAD/train.py --------------------------------------------------------------------------------