首页
网站开发
桌面应用
管理软件
微信开发
App开发
嵌入式软件
工具软件
数据采集与分析
其他
首页
>
> 详细
讲解CS 506编程语言、辅导Python程序设计、program程序调试 解析Haskell程序|讲解R语言编程
项目预算:
开发周期:
发布时间:
要求地区:
CS 506 - HW3
Social Networks and Recommendation Systems
Due date: December 7, 2020
1 Background
In this homework, you will try to recommend new collaborations to researchers
of the Machine Learning community. Our approach will follow the guidelines of
collaborative filtering: “If your past behavior/preferences were similar to some
other user’s, your future behavior may be as well”. As an example, imagine you
like Rolling Stones, Beatles and Jimmy Hendrix. It turns out that most people
that like the aforementioned artists, are also fans of Eric Clapton. Then, it is
very likely that if you listen to Eric Clapton’s music, you will like it as well.
In this assignment you will implement a collaborative filtering recommendation
system for suggesting new collaborations to Machine Learning researchers.
A network as a graph: A graph or network represents relationships among
different entities (users of a social network, researchers, products, etc.). Those
entities are represented as nodes and the relationships between them (friends
on Facebook, co-authors of a research paper, products purchased together) as
edges. When there is an edge between two nodes, x and y, we say that y is a
neighbor (or friend) of x (and also - as the graphs we consider are undirected -
x is also a neighbor of y).
Representing a graph in Python: A widely used library in Python, for
representing graphs is NetworkX. You can read the documentation for more
information on how to use this library.
2 Recommend new collaborations - The ML Community
case
In order to provide new collaborations and test the efficiency of the methods
used, you are given two files (you can find them on piazza):
1
• ”old edges.txt”: In this file, every line contains the names of two researchers
that have co-authored a paper in one of the top Machine Learning
conferences (NeurIPS, ICLR, ICML) between 2010 and 2016.
• ”new edges.txt”: In this file, every line contains the names of two researchers
(from those existing in the above file) that formed a new (nonexisting
before) collaboration, in either 2017 and 2018.
With the first file in hand, you will answer the following question:
”For author X, list some non-collaborators in order, starting with the best collaborator
recommendation and ending with the worst”. A non-friend is a user
who is not X and is not a collaborator of X. Depending on the recommendation
algorithm you are going to choose, the list may include all non-collaborators or
some of them.
Then, using the second file, with actual new collaborations formed in the
next 3 years, you will test the efficiency of these algorithms.
3 Tasks
a) [3 pts.] Write a function that reads the file “old edges.txt” and create a
graph using NetworkX.
b) [3 pts.] Write a function that reads the file “new edges.txt” and for each
author, keeps track of the new collaborations this user formed during
2017-2018.
In 2017 and 2018, there were 1,757 new edges formed between existing authors.
For the next tasks, pick (and recommend new collaborations for) those
authors that formed at least 10 new connections between 2017-2018. In the
remaining, when we talk about author X, we refer to one of those authors.
c) [5 pts.] Recommend by number of common friends
if non-friend Y is your friend’s friend, then maybe Y should be your friend
too. If person Y is the friend of many of your friends, then Y is an even
better recommendation.
Write a function common friends number(G, X) that given G and an author
X, returns a list of recommendations for X. The authors in this list are sorted
by the number of common neighbors they have with X (and are not of course
already friends with X). If there are ties, you can break them arbitrarily.
2
d) [5 pts.] Make recommendations using Jaccard’s Index
If Γ(X) is the set of neighbors of X, then the metric we used in part (c),
assigns to a non-friend y, the following recommendation score (with respect
to X): score(y) = |Γ(X)∩Γ(y)|. Jaccard’s Index scales this score by
taking into account the union of X and Y ’s neighbors. Intuitively, X and
Y are more similar, if what they have in common is as close as possible to
what they have together.
Write a function jaccard index(G, X) that given G and an author X, returns a
list of recommendations for X. The authors in this list are sorted by the number
of their Jaccard Index with respect to X (and are not of course already friends
with X). If there are ties, you can break them arbitrarily.
Jaccard Index = |Γ(X)∩Γ(y)|
|Γ(X)∪Γ(y)|
e) [5 pts.] Make recommendations using Adamic/Adar Index
For part (c), we made recommendations using common neighbors. However,
when assigning a score to Y , instead of just taking a count of the
number of common neighbors, we take a weighted sum of them, where the
weight of each common neighbor of X and Y , call her Z, is the inverse of
the logarithm of the number of Z’s neighbors. In that way, we value more
common neighbors that are more selective.
Write a function adamic adar index(G, X) that given G and an author X,
returns a list of recommendations for X. The authors in this list are sorted
by the number of their Adamic/Adar Index with respect to X (and are not of
course already friends with X). If there are ties, you can break them arbitrarily.
Adamic/Adar Index (y)= P
Z∈Γ(X)∩Γ(y)
1
log|Γ(Z)|
f) [4 pts.] How good are the recommendations we make?
Previously, you implemented 3 functions, that given a user X provide
recommendations for this user. In this task, you will check how good
these recommendations are using the actual new connections formed during
2017-2018.
You will use two different ways, to calculate the efficiency of every approach:
– For each user X, take the 10 first recommendations for this user,
and calculate the number of them that were actually formed during
2017-2018. You should report the average among users X.
– For each newly formed collaboration of user X, calculate the rank
of this collaboration (the index where this new node Y appears in
the recommendations list for X). Report the average among newly
formed edges.
e) [Bonus Question] [2 pts.]
Doing some literature search, suggest your own algorithm for recommend-
3
ing new links to a user X. Argue about the choice you make, why it makes
sense to suggest users that way? How is the efficiency of this algorithm,
compared to the ones you implemented in parts (c), (d) and (e)?
4
软件开发、广告设计客服
QQ:99515681
邮箱:99515681@qq.com
工作时间:8:00-23:00
微信:codinghelp
热点项目
更多
代做ceng0013 design of a pro...
2024-11-13
代做mech4880 refrigeration a...
2024-11-13
代做mcd1350: media studies a...
2024-11-13
代写fint b338f (autumn 2024)...
2024-11-13
代做engd3000 design of tunab...
2024-11-13
代做n1611 financial economet...
2024-11-13
代做econ 2331: economic and ...
2024-11-13
代做cs770/870 assignment 8代...
2024-11-13
代写amath 481/581 autumn qua...
2024-11-13
代做ccc8013 the process of s...
2024-11-13
代写csit040 – modern comput...
2024-11-13
代写econ 2070: introduc2on t...
2024-11-13
代写cct260, project 2 person...
2024-11-13
热点标签
mktg2509
csci 2600
38170
lng302
csse3010
phas3226
77938
arch1162
engn4536/engn6536
acx5903
comp151101
phl245
cse12
comp9312
stat3016/6016
phas0038
comp2140
6qqmb312
xjco3011
rest0005
ematm0051
5qqmn219
lubs5062m
eee8155
cege0100
eap033
artd1109
mat246
etc3430
ecmm462
mis102
inft6800
ddes9903
comp6521
comp9517
comp3331/9331
comp4337
comp6008
comp9414
bu.231.790.81
man00150m
csb352h
math1041
eengm4100
isys1002
08
6057cem
mktg3504
mthm036
mtrx1701
mth3241
eeee3086
cmp-7038b
cmp-7000a
ints4010
econ2151
infs5710
fins5516
fin3309
fins5510
gsoe9340
math2007
math2036
soee5010
mark3088
infs3605
elec9714
comp2271
ma214
comp2211
infs3604
600426
sit254
acct3091
bbt405
msin0116
com107/com113
mark5826
sit120
comp9021
eco2101
eeen40700
cs253
ece3114
ecmm447
chns3000
math377
itd102
comp9444
comp(2041|9044)
econ0060
econ7230
mgt001371
ecs-323
cs6250
mgdi60012
mdia2012
comm221001
comm5000
ma1008
engl642
econ241
com333
math367
mis201
nbs-7041x
meek16104
econ2003
comm1190
mbas902
comp-1027
dpst1091
comp7315
eppd1033
m06
ee3025
msci231
bb113/bbs1063
fc709
comp3425
comp9417
econ42915
cb9101
math1102e
chme0017
fc307
mkt60104
5522usst
litr1-uc6201.200
ee1102
cosc2803
math39512
omp9727
int2067/int5051
bsb151
mgt253
fc021
babs2202
mis2002s
phya21
18-213
cege0012
mdia1002
math38032
mech5125
07
cisc102
mgx3110
cs240
11175
fin3020s
eco3420
ictten622
comp9727
cpt111
de114102d
mgm320h5s
bafi1019
math21112
efim20036
mn-3503
fins5568
110.807
bcpm000028
info6030
bma0092
bcpm0054
math20212
ce335
cs365
cenv6141
ftec5580
math2010
ec3450
comm1170
ecmt1010
csci-ua.0480-003
econ12-200
ib3960
ectb60h3f
cs247—assignment
tk3163
ics3u
ib3j80
comp20008
comp9334
eppd1063
acct2343
cct109
isys1055/3412
math350-real
math2014
eec180
stat141b
econ2101
msinm014/msing014/msing014b
fit2004
comp643
bu1002
cm2030
联系我们
- QQ: 9951568
© 2021
www.rj363.com
软件定制开发网!