You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Why did I choose this paper?
This paper is directly related to the graph embedding layer of SEERa. They propose an algorithm that learn the changes in the nodes and edges of a graph over time and they claim their algorithm can be used for prediction tasks. Also, the code of this framework is also available.
Main problem:
Using temporal information from a graph to generate more comprehensive node embedding representations that preserves both network structure and dynamics.
Applications:
Social Network Analysis, Recommendation Systems, and Fraud Detection.
Existing work:
Deep Learning for representation learning in temporal prediction problems where the input is a graph. Minimizes the loss of representation
Deep Learning for temporal prediction problems where the input is a graph. Directly minimizes the loss function for a downstream prediction task
Feature learning
Gaps:
prediction task must be specified
high training time
fail to scale well across multiple time-stamps
discover characteristics only of snapshots of a graph (and not dynamics)
Inputs:
A temporal graph, which is a graph where the edges and/or nodes have timestamps associated with them.
Outputs:
A vector representation (embedding) of each node in the graph.
Method:
This paper presents an extension to the current method for learning features in graph data, by taking into account the temporal aspects of the graph. Other studies have attempted to improve static node embeddings by considering historical information, but this work aims to use both node and edge dynamics to create more informative embeddings for use in temporal prediction tasks. The proposed approach is unique in that it offers an end-to-end system that can be optimized for a specific task, and its evaluation demonstrates its effectiveness on various datasets for both temporal link prediction and node classification tasks when compared to other methods. The feature learning framework of this work can be described as below: goal: finding a feature vector for each node at time t. tasks: two major prediction tasks are considered, Node Classification (categorical cross-entropy loss) and Link Prediction (binary classification loss) optimizer: Adam
Steps:
Initialization: The embeddings of nodes in the temporal graph are initialized using pre-trained embeddings of the same nodes from a static version of the graph. This can help the model converge faster and improve the overall performance of the temporal embedding.
Temporal Embedding: The temporal embeddings are learned by incorporating temporal information into the embeddings during the training process. This is done by using a temporal convolutional neural network (TCN) or temporal graph convolutional network (TGCN) to capture the temporal dependencies between the nodes and edges.
Joint Optimization: An end-to-end architecture is provided that can be jointly optimized to a given task. This allows the embeddings to be fine-tuned by incorporating task-specific information during the training process.
Evaluation: The approach is evaluated on various datasets for both temporal link prediction and node classification tasks, and compared to other methods. The results show that the proposed approach outperforms the relevant baselines, demonstrating its effectiveness in learning node embeddings in temporal graphs.
Experimental Setup:
Datasets:
Links are available in the paper.
arXiv hep-ph: research publication graph
Facebook friendships: graph of the Facebook social network. Who is a friend of whom?
Facebook wall posts: graph of the Facebook social network. Who posts on another user's wall?
CollegeMsg: online social network
PPI: protein-protein interactions
Slashdot: social news website
Cora: research publication graph
DBLP: bibliographic network of computer science publications
Node embedding of the last time step is considered as the final embedding (similar to SEERa)
Results:
The authors use several tasks such as link prediction, classification, and clustering to evaluate the quality of the embeddings generated by the method.
temporal link prediction: Results outperform other baselines on all datasets. However, the difference between the best model so far and tNodeEmbed is around 0.001 for some datasets. Metric: AUC. Datasets: all. multi-label node classification: With a good superiority, tNodeEmbed outperforms other baselines for this task. Datasets: Cora and DBLP. Metrics: Micro-F1, Macro-F1, AUC
Why did I choose this paper?
This paper is directly related to the graph embedding layer of SEERa. They propose an algorithm that learn the changes in the nodes and edges of a graph over time and they claim their algorithm can be used for prediction tasks. Also, the code of this framework is also available.
Main problem:
Using temporal information from a graph to generate more comprehensive node embedding representations that preserves both network structure and dynamics.
Applications:
Social Network Analysis, Recommendation Systems, and Fraud Detection.
Existing work:
Gaps:
Inputs:
A temporal graph, which is a graph where the edges and/or nodes have timestamps associated with them.
Outputs:
A vector representation (embedding) of each node in the graph.
Method:
This paper presents an extension to the current method for learning features in graph data, by taking into account the temporal aspects of the graph. Other studies have attempted to improve static node embeddings by considering historical information, but this work aims to use both node and edge dynamics to create more informative embeddings for use in temporal prediction tasks. The proposed approach is unique in that it offers an end-to-end system that can be optimized for a specific task, and its evaluation demonstrates its effectiveness on various datasets for both temporal link prediction and node classification tasks when compared to other methods. The feature learning framework of this work can be described as below:
goal: finding a feature vector for each node at time t.
tasks: two major prediction tasks are considered, Node Classification (categorical cross-entropy loss) and Link Prediction (binary classification loss)
optimizer: Adam
Steps:
Experimental Setup:
Datasets:
Links are available in the paper.
Metrics:
Baselines:
Node embedding of the last time step is considered as the final embedding (similar to SEERa)
Results:
The authors use several tasks such as link prediction, classification, and clustering to evaluate the quality of the embeddings generated by the method.
temporal link prediction: Results outperform other baselines on all datasets. However, the difference between the best model so far and tNodeEmbed is around 0.001 for some datasets. Metric: AUC. Datasets: all.
multi-label node classification: With a good superiority, tNodeEmbed outperforms other baselines for this task. Datasets: Cora and DBLP. Metrics: Micro-F1, Macro-F1, AUC
Code:
The code of this paper is available on: Code
Medium:
The medium page of this paper is available on: Medium
The text was updated successfully, but these errors were encountered: