Bipartitní grafy a doporučovací systémy

Intermediate Network Analysis in Python

Eric Ma

Data Carpentry instructor and author of nxviz package

Doporučovací systémy

  • Dříve: doporučování uživatelů k vzájemnému propojení
  • Graf: „unipartitní" (pouze uživatelé)
  • Nyní: „bipartitní" verze (repozitáře a uživatelé)
  • Doporučování repozitářů uživatelům
Intermediate Network Analysis in Python

Doporučovací systémy

ch1-3.007.png

Intermediate Network Analysis in Python

Doporučovací systémy

ch1-3.008.png

Intermediate Network Analysis in Python

Doporučovací systémy

ch1-3.009.png

Intermediate Network Analysis in Python

Kód: Množiny uzlů

list(G.nodes(data=True))
[('repo3', {'bipartite': 'repositories'}),
 ('repo1', {'bipartite': 'repositories'}),
 ('user1', {'bipartite': 'users'}),
 ('user2', {'bipartite': 'users'}),
 ('repo2', {'bipartite': 'repositories'}),
 ('user3', {'bipartite': 'users'})]
list(G.edges())
[('repo1', 'user3'),
 ('user1', 'repo2'),
 ('user2', 'repo2'),
 ('repo2', 'user3')]
Intermediate Network Analysis in Python

Kód: Množiny uzlů

user1_nbrs = G.neighbors('user1')

user1_nbrs
['repo2']
user3_nbrs = G.neighbors('user3')
user3_nbrs
['repo2', 'repo1']
Intermediate Network Analysis in Python

Kód: Množiny uzlů

set(user1_nbrs).intersection(user3_nbrs)
{'repo2'}
set(user3_nbrs).difference(user1_nbrs)
{'repo1'}
Intermediate Network Analysis in Python

Pojďme si procvičit!

Intermediate Network Analysis in Python

Preparing Video For Download...