week 8 Flashcards

1
Q

distance

A

length of shortest path

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

eccentricity

A

maximum distance to any other vertex

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

radius

A

minimum eccentricity of any vertex

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

diameter

A

maximum eccentricity of any vertex

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

effective diameter

A

smallest number greater than the maximum eccentricity of any vertex of a large fraction of the graph

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

small world property of a graph

A

average path length scales logarithmically

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

scale free property of a graph

A

the degree distribution of the graph follows a power law
zooming in on any part of the degree distribution yields the same power law

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

centrality

A

degree centrality
eccentricity centrality = least eccentric vertex is the most central one, minimize maximum distance
closeness centrality = minimize average distance

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

betweenness centrality

A

number of shortest paths that travel through x
edges with high betweenness are called weak ties
how to compute:
0.BFS
1.each label gets assigned how many parents it has
2.each leaf gets a credit of 1
3.each non-leaf gets credit of 1 + credit of each child / nr of parents computed in 1st step
4.repeat this for each node (each node gets to be parent)
5.divide final credits by 2
6.highest credits = weak links

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

spectral clustering

A

laplacian matrix = degree matrix - adjacency matrix
compute eigenvectors/values of laplacian matrix, split into clusters based on highest eigenvalue
if more than 1 cluster => recursive (above) / cluster multiple eigenvectors

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
11
Q
A
How well did you know this?
1
Not at all
2
3
4
5
Perfectly