Neo4j data science algorithms1 Flashcards

1
Q

Graph Projection

A

The process of creating a new graph from an existing one by focusing on certain types of nodes and relationships. For example, projecting a bipartite graph into a unipartite graph by considering only nodes of one type and their interconnections.

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

Graph Embeddings

A

Techniques used to represent nodes, edges, or entire graphs as vectors in a continuous vector space, facilitating machine learning applications. For example, embeddings can be used to predict missing relationships in a graph.

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

Weakly Connected Components

A

Subgraphs in which any two nodes are connected by a path, but there is no requirement for the direction of the edges to be followed. For example, in a directed graph, a weakly connected component ignores the direction of edges.

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

Strongly Connected Components

A

Subgraphs in which every node is reachable from every other node, respecting the direction of edges. For example, a strongly connected component in a directed graph requires a path in both directions between any two nodes.

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

K-Nearest Neighbors (KNN)

A

An algorithm used to classify nodes based on the majority class of their neighbors. For example, in a graph of customer purchases, KNN can be used to predict a customer’s interest in a new product based on similar customers’ behaviors.

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

Graph Neural Networks (GNNs)

A

A class of neural networks designed to operate on graph-structured data, learning representations that capture the structure and properties of graphs. For example, GNNs can be used for node classification or link prediction tasks.

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

Node

A

A fundamental unit of a graph representing entities or objects, such as a person, place, or thing. For example, in a social network graph, each user is represented as a node.

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

Edge

A

A connection between two nodes in a graph, representing a relationship or interaction between them. For example, an edge could represent a friendship between two users in a social network graph.

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

Pathfinding

A

Algorithms used to find the shortest or most efficient path between nodes in a graph. For example, Dijkstra’s algorithm is used to determine the shortest path between two nodes.

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

Centrality

A

Measures used to identify the most important or influential nodes in a graph. For example, Betweenness Centrality measures the number of times a node acts as a bridge along the shortest path between two other nodes.

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

Community Detection

A

Algorithms used to identify groups of nodes that are more densely connected to each other than to the rest of the graph. For example, the Louvain method is used to detect communities within a network.

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

Clustering Coefficient

A

A measure of the degree to which nodes in a graph tend to cluster together. For example, a high clustering coefficient indicates that a graph has a high tendency to form clusters or tightly knit groups.

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

PageRank

A

An algorithm used to rank nodes in a graph based on their importance, initially developed for ranking web pages. For example, nodes with higher PageRank are considered more important or influential within the graph.

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

Node Similarity

A

Algorithms that measure the similarity between nodes based on their properties or relationships. For example, the Jaccard similarity coefficient is used to determine how similar two nodes are based on their shared neighbors.

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