Random Projection

This notebook illustrates the embedding of a graph through random projection.

[1]:
from IPython.display import SVG
[2]:
import numpy as np
[3]:
from sknetwork.data import karate_club, painters, movie_actor
from sknetwork.embedding import RandomProjection
from sknetwork.visualization import visualize_graph, visualize_bigraph

Graphs

[4]:
graph = karate_club(metadata=True)
adjacency = graph.adjacency
labels = graph.labels
[5]:
projection = RandomProjection(2)
embedding = projection.fit_transform(adjacency)
[6]:
image = visualize_graph(adjacency, position=embedding, labels=labels)
SVG(image)
[6]:
../../_images/tutorials_embedding_random_projection_8_0.svg

Directed graphs

[7]:
graph = painters(metadata=True)
adjacency = graph.adjacency
position = graph.position
names = graph.names
[8]:
projection = RandomProjection(2)
embedding = projection.fit_transform(adjacency)
[9]:
image = visualize_graph(adjacency, position=embedding, names=names)
SVG(image)
[9]:
../../_images/tutorials_embedding_random_projection_12_0.svg

Bipartite graphs

[10]:
graph = movie_actor(metadata=True)
biadjacency = graph.biadjacency
names_row = graph.names_row
names_col = graph.names_col
[11]:
projection = RandomProjection(2, normalized=False)
projection.fit(biadjacency)
[11]:
RandomProjection(n_components=2, alpha=0.5, n_iter=3, random_walk=False, regularization=-1, normalized=False)
[12]:
embedding_row = projection.embedding_row_
embedding_col = projection.embedding_col_
[13]:
image = visualize_bigraph(biadjacency, names_row, names_col,
                    position_row=embedding_row, position_col=embedding_col,
                    color_row='blue', color_col='red')
SVG(image)
[13]:
../../_images/tutorials_embedding_random_projection_17_0.svg