├── .gitattributes ├── .gitignore ├── .idea ├── A-Survey-of-Multi-view-Clustering-Approaches.iml ├── deployment.xml ├── inspectionProfiles │ ├── Project_Default.xml │ └── profiles_settings.xml ├── misc.xml ├── modules.xml ├── vcs.xml └── workspace.xml ├── .vs ├── A-Survey-of-Multi-view-Clustering-Approaches │ └── v16 │ │ └── .suo ├── ProjectSettings.json ├── VSWorkspaceState.json └── slnx.sqlite ├── Database └── 3sources │ ├── View1.txt │ ├── View2.txt │ ├── View3.txt │ └── group.txt ├── Dataset ├── __init__.py ├── __pycache__ │ ├── __init__.cpython-36.pyc │ ├── __init__.cpython-37.pyc │ ├── dataset.cpython-36.pyc │ └── dataset.cpython-37.pyc └── dataset.py ├── Paper └── A Survey and an Empirical Evaluation of Multi-view Clustering Approaches.pdf ├── README.md ├── configMain.yaml ├── dataset2paper.md ├── demo.py ├── img ├── cc_MVC.png ├── clustering.png ├── data.png └── imvcdata.png ├── recent papers.md └── utils ├── __init__.py ├── process.py └── utils.py /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dugzzuli/A-Survey-of-Multi-view-Clustering-Approaches/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dugzzuli/A-Survey-of-Multi-view-Clustering-Approaches/HEAD/.gitignore -------------------------------------------------------------------------------- /.idea/A-Survey-of-Multi-view-Clustering-Approaches.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dugzzuli/A-Survey-of-Multi-view-Clustering-Approaches/HEAD/.idea/A-Survey-of-Multi-view-Clustering-Approaches.iml -------------------------------------------------------------------------------- /.idea/deployment.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dugzzuli/A-Survey-of-Multi-view-Clustering-Approaches/HEAD/.idea/deployment.xml -------------------------------------------------------------------------------- /.idea/inspectionProfiles/Project_Default.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dugzzuli/A-Survey-of-Multi-view-Clustering-Approaches/HEAD/.idea/inspectionProfiles/Project_Default.xml -------------------------------------------------------------------------------- /.idea/inspectionProfiles/profiles_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dugzzuli/A-Survey-of-Multi-view-Clustering-Approaches/HEAD/.idea/inspectionProfiles/profiles_settings.xml -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dugzzuli/A-Survey-of-Multi-view-Clustering-Approaches/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dugzzuli/A-Survey-of-Multi-view-Clustering-Approaches/HEAD/.idea/modules.xml -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dugzzuli/A-Survey-of-Multi-view-Clustering-Approaches/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /.idea/workspace.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dugzzuli/A-Survey-of-Multi-view-Clustering-Approaches/HEAD/.idea/workspace.xml -------------------------------------------------------------------------------- /.vs/A-Survey-of-Multi-view-Clustering-Approaches/v16/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dugzzuli/A-Survey-of-Multi-view-Clustering-Approaches/HEAD/.vs/A-Survey-of-Multi-view-Clustering-Approaches/v16/.suo -------------------------------------------------------------------------------- /.vs/ProjectSettings.json: -------------------------------------------------------------------------------- 1 | { 2 | "CurrentProjectSetting": null 3 | } -------------------------------------------------------------------------------- /.vs/VSWorkspaceState.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dugzzuli/A-Survey-of-Multi-view-Clustering-Approaches/HEAD/.vs/VSWorkspaceState.json -------------------------------------------------------------------------------- /.vs/slnx.sqlite: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dugzzuli/A-Survey-of-Multi-view-Clustering-Approaches/HEAD/.vs/slnx.sqlite -------------------------------------------------------------------------------- /Database/3sources/View1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dugzzuli/A-Survey-of-Multi-view-Clustering-Approaches/HEAD/Database/3sources/View1.txt -------------------------------------------------------------------------------- /Database/3sources/View2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dugzzuli/A-Survey-of-Multi-view-Clustering-Approaches/HEAD/Database/3sources/View2.txt -------------------------------------------------------------------------------- /Database/3sources/View3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dugzzuli/A-Survey-of-Multi-view-Clustering-Approaches/HEAD/Database/3sources/View3.txt -------------------------------------------------------------------------------- /Database/3sources/group.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dugzzuli/A-Survey-of-Multi-view-Clustering-Approaches/HEAD/Database/3sources/group.txt -------------------------------------------------------------------------------- /Dataset/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Dataset/__pycache__/__init__.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dugzzuli/A-Survey-of-Multi-view-Clustering-Approaches/HEAD/Dataset/__pycache__/__init__.cpython-36.pyc -------------------------------------------------------------------------------- /Dataset/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dugzzuli/A-Survey-of-Multi-view-Clustering-Approaches/HEAD/Dataset/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /Dataset/__pycache__/dataset.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dugzzuli/A-Survey-of-Multi-view-Clustering-Approaches/HEAD/Dataset/__pycache__/dataset.cpython-36.pyc -------------------------------------------------------------------------------- /Dataset/__pycache__/dataset.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dugzzuli/A-Survey-of-Multi-view-Clustering-Approaches/HEAD/Dataset/__pycache__/dataset.cpython-37.pyc -------------------------------------------------------------------------------- /Dataset/dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dugzzuli/A-Survey-of-Multi-view-Clustering-Approaches/HEAD/Dataset/dataset.py -------------------------------------------------------------------------------- /Paper/A Survey and an Empirical Evaluation of Multi-view Clustering Approaches.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dugzzuli/A-Survey-of-Multi-view-Clustering-Approaches/HEAD/Paper/A Survey and an Empirical Evaluation of Multi-view Clustering Approaches.pdf -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dugzzuli/A-Survey-of-Multi-view-Clustering-Approaches/HEAD/README.md -------------------------------------------------------------------------------- /configMain.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dugzzuli/A-Survey-of-Multi-view-Clustering-Approaches/HEAD/configMain.yaml -------------------------------------------------------------------------------- /dataset2paper.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dugzzuli/A-Survey-of-Multi-view-Clustering-Approaches/HEAD/dataset2paper.md -------------------------------------------------------------------------------- /demo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dugzzuli/A-Survey-of-Multi-view-Clustering-Approaches/HEAD/demo.py -------------------------------------------------------------------------------- /img/cc_MVC.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dugzzuli/A-Survey-of-Multi-view-Clustering-Approaches/HEAD/img/cc_MVC.png -------------------------------------------------------------------------------- /img/clustering.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dugzzuli/A-Survey-of-Multi-view-Clustering-Approaches/HEAD/img/clustering.png -------------------------------------------------------------------------------- /img/data.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dugzzuli/A-Survey-of-Multi-view-Clustering-Approaches/HEAD/img/data.png -------------------------------------------------------------------------------- /img/imvcdata.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dugzzuli/A-Survey-of-Multi-view-Clustering-Approaches/HEAD/img/imvcdata.png -------------------------------------------------------------------------------- /recent papers.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dugzzuli/A-Survey-of-Multi-view-Clustering-Approaches/HEAD/recent papers.md -------------------------------------------------------------------------------- /utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /utils/process.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dugzzuli/A-Survey-of-Multi-view-Clustering-Approaches/HEAD/utils/process.py -------------------------------------------------------------------------------- /utils/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dugzzuli/A-Survey-of-Multi-view-Clustering-Approaches/HEAD/utils/utils.py --------------------------------------------------------------------------------