08 Graph Based Machine Learning Flashcards
1
Q
what are the types of graph data
A
networks and graphs
2
Q
what are the graph based ML tasks
A
- node classification
- predict property - edge prediction
- predict missing link between nodes - graph classification
- categorise different graphs - clustering
- discover communities - graph generation
- generate new graph structure
3
Q
A
raw data -> feature engineering AND graph data -> learning algorithm -> model
4
Q
what are the node features
A
- node degree
- v = node
- k(v) = edges that v has - node centrality
- eg. closeness - clustering coefficient
- how connected node V’s neighborhood of nodes are - graphlets
- graphlet degree vector counts the number of graphlet that a node participates in
5
Q
what are the edge features
A
- distance based
- measure distance between nodes - local neighborhood overlap
- measure the degree of neighborhood overlaps locally - global neighborhood overlap
- measure the degree of neighborhood overlaps globally
6
Q
what is the kernel method
A
- design kernels instead of feature vectors
- measures similarity between data points
7
Q
what is graph based machine learning
A
focus on developing algorithms for analysing data that can be represented as graphs or networks. data is represented as nodes connected by edges. relies on structural information present in graphs to make predictions, perform clustering, classification…
key concepts
1. first step is to represent data as a graph. Nodes represent entities, edges represent relationships
- node embedding aims to map each node in the graph to a low dimensional vector representation
- graph convolutional networks (GCN) extend the concept of convolutional neural networks to graph structured data. applies convolutional operations to nodes in the graph
- graph clustering aims to partition nodes in graph into groups of clusters based on their similarities or connections.
- link prediction predicts missing/ future connection between nodes
- graph neural networks are deep learning modesl designed to operate on graph structured data. combination of node embedding and graph convolutional layers
- graph based recommender systems provide personalised recommendations by modeling user-item interactions
8
Q
why use node embedding
A