├── AE.py ├── DFCN.py ├── Deep Fusion Clustering Network.pdf ├── IGAE.py ├── LICENSE ├── README.md ├── data ├── dblp.txt └── dblp_label.txt ├── figure ├── 1.jpg ├── 2.jpg └── DFCN_Poster.pdf ├── graph ├── acm_graph.txt ├── cite_graph.txt ├── dblp_graph.txt ├── hhar5_graph.txt ├── reut5_graph.txt └── usps5_graph.txt ├── load_data.py ├── main.py ├── model ├── model_final │ ├── acm_final.pkl │ ├── cite_final.pkl │ ├── dblp_final.pkl │ ├── hhar_final.pkl │ ├── reut_final.pkl │ └── usps_final.pkl └── model_pretrain │ ├── acm_pretrain.pkl │ ├── cite_pretrain.pkl │ ├── dblp_pretrain.pkl │ ├── hhar_pretrain.pkl │ ├── reut_pretrain.pkl │ └── usps_pretrain.pkl ├── opt.py ├── train.py └── utils.py /AE.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WxTu/DFCN/HEAD/AE.py -------------------------------------------------------------------------------- /DFCN.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WxTu/DFCN/HEAD/DFCN.py -------------------------------------------------------------------------------- /Deep Fusion Clustering Network.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WxTu/DFCN/HEAD/Deep Fusion Clustering Network.pdf -------------------------------------------------------------------------------- /IGAE.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WxTu/DFCN/HEAD/IGAE.py -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WxTu/DFCN/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WxTu/DFCN/HEAD/README.md -------------------------------------------------------------------------------- /data/dblp.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WxTu/DFCN/HEAD/data/dblp.txt -------------------------------------------------------------------------------- /data/dblp_label.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WxTu/DFCN/HEAD/data/dblp_label.txt -------------------------------------------------------------------------------- /figure/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WxTu/DFCN/HEAD/figure/1.jpg -------------------------------------------------------------------------------- /figure/2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WxTu/DFCN/HEAD/figure/2.jpg -------------------------------------------------------------------------------- /figure/DFCN_Poster.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WxTu/DFCN/HEAD/figure/DFCN_Poster.pdf -------------------------------------------------------------------------------- /graph/acm_graph.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WxTu/DFCN/HEAD/graph/acm_graph.txt -------------------------------------------------------------------------------- /graph/cite_graph.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WxTu/DFCN/HEAD/graph/cite_graph.txt -------------------------------------------------------------------------------- /graph/dblp_graph.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WxTu/DFCN/HEAD/graph/dblp_graph.txt -------------------------------------------------------------------------------- /graph/hhar5_graph.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WxTu/DFCN/HEAD/graph/hhar5_graph.txt -------------------------------------------------------------------------------- /graph/reut5_graph.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WxTu/DFCN/HEAD/graph/reut5_graph.txt -------------------------------------------------------------------------------- /graph/usps5_graph.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WxTu/DFCN/HEAD/graph/usps5_graph.txt -------------------------------------------------------------------------------- /load_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WxTu/DFCN/HEAD/load_data.py -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WxTu/DFCN/HEAD/main.py -------------------------------------------------------------------------------- /model/model_final/acm_final.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WxTu/DFCN/HEAD/model/model_final/acm_final.pkl -------------------------------------------------------------------------------- /model/model_final/cite_final.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WxTu/DFCN/HEAD/model/model_final/cite_final.pkl -------------------------------------------------------------------------------- /model/model_final/dblp_final.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WxTu/DFCN/HEAD/model/model_final/dblp_final.pkl -------------------------------------------------------------------------------- /model/model_final/hhar_final.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WxTu/DFCN/HEAD/model/model_final/hhar_final.pkl -------------------------------------------------------------------------------- /model/model_final/reut_final.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WxTu/DFCN/HEAD/model/model_final/reut_final.pkl -------------------------------------------------------------------------------- /model/model_final/usps_final.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WxTu/DFCN/HEAD/model/model_final/usps_final.pkl -------------------------------------------------------------------------------- /model/model_pretrain/acm_pretrain.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WxTu/DFCN/HEAD/model/model_pretrain/acm_pretrain.pkl -------------------------------------------------------------------------------- /model/model_pretrain/cite_pretrain.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WxTu/DFCN/HEAD/model/model_pretrain/cite_pretrain.pkl -------------------------------------------------------------------------------- /model/model_pretrain/dblp_pretrain.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WxTu/DFCN/HEAD/model/model_pretrain/dblp_pretrain.pkl -------------------------------------------------------------------------------- /model/model_pretrain/hhar_pretrain.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WxTu/DFCN/HEAD/model/model_pretrain/hhar_pretrain.pkl -------------------------------------------------------------------------------- /model/model_pretrain/reut_pretrain.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WxTu/DFCN/HEAD/model/model_pretrain/reut_pretrain.pkl -------------------------------------------------------------------------------- /model/model_pretrain/usps_pretrain.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WxTu/DFCN/HEAD/model/model_pretrain/usps_pretrain.pkl -------------------------------------------------------------------------------- /opt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WxTu/DFCN/HEAD/opt.py -------------------------------------------------------------------------------- /train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WxTu/DFCN/HEAD/train.py -------------------------------------------------------------------------------- /utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WxTu/DFCN/HEAD/utils.py --------------------------------------------------------------------------------