Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.
#-----------------------------------
graphs = [nx.newman_watts_strogatz_graph(50, 5, 0.3) for _ in range(100)]
model = GL2Vec()
model.fit(graphs)
model.get_embedding()
#-----------------------------------
# FGSD example
#-----------------------------------
graphs = [nx.newman_watts_strogatz_graph(50, 5, 0.3) for _ in range(100)]
model = FGSD()
model.fit(graphs)
model.get_embedding()
#-----------------------------------
# NetMF example
#-----------------------------------
g = nx.newman_watts_strogatz_graph(100, 20, 0.05)
model = NetMF()
model.fit(g)
model.get_embedding()
#-----------------------------------
#-----------------
graphs = [nx.newman_watts_strogatz_graph(50, 5, 0.3) for _ in range(100)]
model = GL2Vec()
model.fit(graphs)
model.get_embedding()
#--------------
# FGSD example
#--------------
graphs = [nx.newman_watts_strogatz_graph(50, 5, 0.3) for _ in range(100)]
model = FGSD()
model.fit(graphs)
model.get_embedding()
#---------------
# NetMF example
#---------------
g = nx.newman_watts_strogatz_graph(100, 20, 0.05)
model = NetMF()
model.fit(g)
model.get_embedding()
#-------------------------