码迷,mamicode.com
首页 > 其他好文 > 详细

Finding Similar Users-Euclidean Distance Score

时间:2017-06-05 21:04:29      阅读:194      评论:0      收藏:0      [点我收藏+]

标签:solution   3.0   dup   nbsp   euc   returns   pci   mil   pre   

Purpose: Finding Similar Users

Method:  Euclidean Distance Score

ex2.py

critics={‘Lisa Rose‘: {‘Lady in the Water‘: 2.5, ‘Snakes on a Plane‘: 3.5,
‘Just My Luck‘: 3.0, ‘Superman Returns‘: 3.5, ‘You, Me and Dupree‘: 2.5,
‘The Night Listener‘: 3.0},
‘Gene Seymour‘: {‘Lady in the Water‘: 3.0, ‘Snakes on a Plane‘: 3.5,
‘Just My Luck‘: 1.5, ‘Superman Returns‘: 5.0, ‘The Night Listener‘: 3.0,
‘You, Me and Dupree‘: 3.5},
‘Michael Phillips‘: {‘Lady in the Water‘: 2.5, ‘Snakes on a Plane‘: 3.0,
‘Superman Returns‘: 3.5, ‘The Night Listener‘: 4.0},
‘Claudia Puig‘: {‘Snakes on a Plane‘: 3.5, ‘Just My Luck‘: 3.0,
‘The Night Listener‘: 4.5, ‘Superman Returns‘: 4.0,
‘You, Me and Dupree‘: 2.5},
‘Mick LaSalle‘: {‘Lady in the Water‘: 3.0, ‘Snakes on a Plane‘: 4.0,
‘Just My Luck‘: 2.0, ‘Superman Returns‘: 3.0, ‘The Night Listener‘: 3.0,
‘You, Me and Dupree‘: 2.0},
‘Jack Matthews‘: {‘Lady in the Water‘: 3.0, ‘Snakes on a Plane‘: 4.0,
‘The Night Listener‘: 3.0, ‘Superman Returns‘: 5.0, ‘You, Me and Dupree‘: 3.5},
‘Toby‘: {‘Snakes on a Plane‘:4.5,‘You, Me and Dupree‘:1.0,‘Superman Returns‘:4.0}}

from math import sqrt

# Returns a distance-based similarity score for person1 and person2
def sim_distance(prefs,person1,person2):
# Get the list of shared_items
si={}
for item in prefs[person1]:
if item in prefs[person2]: si[item]=1

# if they have no ratings in common, return 0
if len(si)==0: return 0

# Add up the squares of all the differences
sum_of_squares=sum([pow(prefs[person1][item]-prefs[person2][item],2)
for item in prefs[person1] if item in prefs[person2]])

return 1/(1+sqrt(sum_of_squares))

 

 

test

>>> import imp
>>> import ex2
>>> imp.reload(ex2)
<module ‘ex2‘ from ‘/home/qiu/桌面/collective programming/code/PCI_Code Folder/chapter2/ex2.py‘>
>>> ex2.sim_distance(ex2.critics,‘Lisa Rose‘,‘Gene Seymour‘)
0.29429805508554946

problems in the test

 

1.>>> reload(ex2)

NameError: name ‘reload‘ is not defined

solution: For python 3.6

>>> import imp
>>> import ex2
>>> imp.reload(ex2)

 

Finding Similar Users-Euclidean Distance Score

标签:solution   3.0   dup   nbsp   euc   returns   pci   mil   pre   

原文地址:http://www.cnblogs.com/qlqiu/p/6946903.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!