├── .DS_Store ├── .gitattributes ├── Code └── .DS_Store ├── MEgo2vec-cikm'18.pdf ├── README.md ├── checkpoints └── .DS_Store ├── code ├── DatasetProcessor.py ├── Mego2vec.py ├── Utils.py ├── main.py └── text_cnn.py └── data ├── .DS_Store ├── char-voca_new.p ├── network_A.p ├── network_A.txt ├── new_pairs.p ├── new_pairs.txt ├── simplified_feature.p ├── simplified_feature.txt ├── test_network.p ├── train_network.p └── vocabulary.p /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allanchen95/MEgo2Vec-Embedding-Matched-Ego-Networks-for-User-Alignment-Across-Social-Networks/HEAD/.DS_Store -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allanchen95/MEgo2Vec-Embedding-Matched-Ego-Networks-for-User-Alignment-Across-Social-Networks/HEAD/.gitattributes -------------------------------------------------------------------------------- /Code/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allanchen95/MEgo2Vec-Embedding-Matched-Ego-Networks-for-User-Alignment-Across-Social-Networks/HEAD/Code/.DS_Store -------------------------------------------------------------------------------- /MEgo2vec-cikm'18.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allanchen95/MEgo2Vec-Embedding-Matched-Ego-Networks-for-User-Alignment-Across-Social-Networks/HEAD/MEgo2vec-cikm'18.pdf -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allanchen95/MEgo2Vec-Embedding-Matched-Ego-Networks-for-User-Alignment-Across-Social-Networks/HEAD/README.md -------------------------------------------------------------------------------- /checkpoints/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allanchen95/MEgo2Vec-Embedding-Matched-Ego-Networks-for-User-Alignment-Across-Social-Networks/HEAD/checkpoints/.DS_Store -------------------------------------------------------------------------------- /code/DatasetProcessor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allanchen95/MEgo2Vec-Embedding-Matched-Ego-Networks-for-User-Alignment-Across-Social-Networks/HEAD/code/DatasetProcessor.py -------------------------------------------------------------------------------- /code/Mego2vec.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allanchen95/MEgo2Vec-Embedding-Matched-Ego-Networks-for-User-Alignment-Across-Social-Networks/HEAD/code/Mego2vec.py -------------------------------------------------------------------------------- /code/Utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allanchen95/MEgo2Vec-Embedding-Matched-Ego-Networks-for-User-Alignment-Across-Social-Networks/HEAD/code/Utils.py -------------------------------------------------------------------------------- /code/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allanchen95/MEgo2Vec-Embedding-Matched-Ego-Networks-for-User-Alignment-Across-Social-Networks/HEAD/code/main.py -------------------------------------------------------------------------------- /code/text_cnn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allanchen95/MEgo2Vec-Embedding-Matched-Ego-Networks-for-User-Alignment-Across-Social-Networks/HEAD/code/text_cnn.py -------------------------------------------------------------------------------- /data/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allanchen95/MEgo2Vec-Embedding-Matched-Ego-Networks-for-User-Alignment-Across-Social-Networks/HEAD/data/.DS_Store -------------------------------------------------------------------------------- /data/char-voca_new.p: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allanchen95/MEgo2Vec-Embedding-Matched-Ego-Networks-for-User-Alignment-Across-Social-Networks/HEAD/data/char-voca_new.p -------------------------------------------------------------------------------- /data/network_A.p: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allanchen95/MEgo2Vec-Embedding-Matched-Ego-Networks-for-User-Alignment-Across-Social-Networks/HEAD/data/network_A.p -------------------------------------------------------------------------------- /data/network_A.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allanchen95/MEgo2Vec-Embedding-Matched-Ego-Networks-for-User-Alignment-Across-Social-Networks/HEAD/data/network_A.txt -------------------------------------------------------------------------------- /data/new_pairs.p: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allanchen95/MEgo2Vec-Embedding-Matched-Ego-Networks-for-User-Alignment-Across-Social-Networks/HEAD/data/new_pairs.p -------------------------------------------------------------------------------- /data/new_pairs.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allanchen95/MEgo2Vec-Embedding-Matched-Ego-Networks-for-User-Alignment-Across-Social-Networks/HEAD/data/new_pairs.txt -------------------------------------------------------------------------------- /data/simplified_feature.p: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allanchen95/MEgo2Vec-Embedding-Matched-Ego-Networks-for-User-Alignment-Across-Social-Networks/HEAD/data/simplified_feature.p -------------------------------------------------------------------------------- /data/simplified_feature.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allanchen95/MEgo2Vec-Embedding-Matched-Ego-Networks-for-User-Alignment-Across-Social-Networks/HEAD/data/simplified_feature.txt -------------------------------------------------------------------------------- /data/test_network.p: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allanchen95/MEgo2Vec-Embedding-Matched-Ego-Networks-for-User-Alignment-Across-Social-Networks/HEAD/data/test_network.p -------------------------------------------------------------------------------- /data/train_network.p: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allanchen95/MEgo2Vec-Embedding-Matched-Ego-Networks-for-User-Alignment-Across-Social-Networks/HEAD/data/train_network.p -------------------------------------------------------------------------------- /data/vocabulary.p: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allanchen95/MEgo2Vec-Embedding-Matched-Ego-Networks-for-User-Alignment-Across-Social-Networks/HEAD/data/vocabulary.p --------------------------------------------------------------------------------