├── .DS_Store ├── .gitignore ├── DIMC-semi.py ├── DIMC-sup.py ├── LICENSE ├── README.md ├── data └── corel5k │ ├── corel5k_six_view.mat │ └── corel5k_six_view_MaskRatios_0.5_LabelMaskRatio_0.5_TraindataRatio_0.7.mat ├── loss.py ├── measure.py ├── model.py ├── test_sup.py └── train_sup.py /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justsmart/DIMC/HEAD/.DS_Store -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | 2 | 3 | .idea/ 4 | __pycache__/ -------------------------------------------------------------------------------- /DIMC-semi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justsmart/DIMC/HEAD/DIMC-semi.py -------------------------------------------------------------------------------- /DIMC-sup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justsmart/DIMC/HEAD/DIMC-sup.py -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justsmart/DIMC/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justsmart/DIMC/HEAD/README.md -------------------------------------------------------------------------------- /data/corel5k/corel5k_six_view.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justsmart/DIMC/HEAD/data/corel5k/corel5k_six_view.mat -------------------------------------------------------------------------------- /data/corel5k/corel5k_six_view_MaskRatios_0.5_LabelMaskRatio_0.5_TraindataRatio_0.7.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justsmart/DIMC/HEAD/data/corel5k/corel5k_six_view_MaskRatios_0.5_LabelMaskRatio_0.5_TraindataRatio_0.7.mat -------------------------------------------------------------------------------- /loss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justsmart/DIMC/HEAD/loss.py -------------------------------------------------------------------------------- /measure.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justsmart/DIMC/HEAD/measure.py -------------------------------------------------------------------------------- /model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justsmart/DIMC/HEAD/model.py -------------------------------------------------------------------------------- /test_sup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justsmart/DIMC/HEAD/test_sup.py -------------------------------------------------------------------------------- /train_sup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justsmart/DIMC/HEAD/train_sup.py --------------------------------------------------------------------------------