├── LICENSE ├── README.md ├── data ├── aminer_data │ └── __init__.py ├── github_data │ └── __init__.py ├── instagram_data │ └── __ └── yelp_data │ └── __init__.py ├── finetune.py ├── finetune ├── aminer_data │ └── finetune_feature.txt ├── github_data │ └── __init__.py ├── instagram_data │ └── __init__.py └── yelp_data │ └── __init__.py ├── main_graph_image_gcl.py ├── main_graph_text_gcl.py ├── pretrain └── aminer.pt ├── requirements.txt ├── scripts ├── CMCL.py ├── modules_layer.py ├── modules_model.py └── moodules_graph.py └── utils ├── __init__.py ├── focalloss.py ├── getdata.py ├── params.py └── util.py /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphprojects/CM-GCL/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphprojects/CM-GCL/HEAD/README.md -------------------------------------------------------------------------------- /data/aminer_data/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /data/github_data/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /data/instagram_data/__: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /data/yelp_data/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /finetune.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphprojects/CM-GCL/HEAD/finetune.py -------------------------------------------------------------------------------- /finetune/aminer_data/finetune_feature.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /finetune/github_data/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /finetune/instagram_data/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /finetune/yelp_data/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /main_graph_image_gcl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphprojects/CM-GCL/HEAD/main_graph_image_gcl.py -------------------------------------------------------------------------------- /main_graph_text_gcl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphprojects/CM-GCL/HEAD/main_graph_text_gcl.py -------------------------------------------------------------------------------- /pretrain/aminer.pt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphprojects/CM-GCL/HEAD/requirements.txt -------------------------------------------------------------------------------- /scripts/CMCL.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphprojects/CM-GCL/HEAD/scripts/CMCL.py -------------------------------------------------------------------------------- /scripts/modules_layer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphprojects/CM-GCL/HEAD/scripts/modules_layer.py -------------------------------------------------------------------------------- /scripts/modules_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphprojects/CM-GCL/HEAD/scripts/modules_model.py -------------------------------------------------------------------------------- /scripts/moodules_graph.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphprojects/CM-GCL/HEAD/scripts/moodules_graph.py -------------------------------------------------------------------------------- /utils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphprojects/CM-GCL/HEAD/utils/__init__.py -------------------------------------------------------------------------------- /utils/focalloss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphprojects/CM-GCL/HEAD/utils/focalloss.py -------------------------------------------------------------------------------- /utils/getdata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphprojects/CM-GCL/HEAD/utils/getdata.py -------------------------------------------------------------------------------- /utils/params.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphprojects/CM-GCL/HEAD/utils/params.py -------------------------------------------------------------------------------- /utils/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphprojects/CM-GCL/HEAD/utils/util.py --------------------------------------------------------------------------------