Lyuba Dimitrova, Nadia Arslan, Nicolas Weber, Utaemon Toyota
# PROJECT
Softwareprojekt WS2018/19
Betreuerin: Prof. Dr. Anette Frank
Graph Embedding Propagation
# Cora Node Classification
To evaluate the trained graph and the embeddings the task of node classification will be executed. First, the data of cora will be imported into a networkX graph, which will be saved in a pickle file to use it for the training of the embeddings with our EP-SP algorithm. Afterwards the trained embeddings will be evaluated with LibLinear L2-Logistic Regression provided from sklearn over a transductive setting with 1000 random nodes for validation, 1000 random nodes for testing and 20 random nodes per class for training. For each iteration where the sets are newly splitted the random seed is set to to the iteration number.
Graph building is provided on cora.py, the evaluation on node_classification.py.
# Required Data
- Cora Graph saved in data/cora/graph/
- Embeddings for node classification data/cora/embeddings/
# Dependencies
-pickle
-numpy
-sklearn for evaluation
-random for getting random test, trainings and validation sets
-sys
-argparse
-heapq for getting a heatmap from confusion matrix