lolamontes69

Ch9 Ex4- Programming Collective Intelligence

Sep 14th, 2013
62
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 1.89 KB | None | 0 0
  1. """ Chapter 9 Exercise 4: Hierarchy of interests.
  2.  
  3.    "Design a simple hierarchy of interests, along with a data structure to represent it.
  4.    Alter the matchcount function to use the hierarchy to give partial points for matches."
  5.  
  6.    I implemented a scoring system based upon the activeness levels of the interests.
  7.    A higher score means that people share the same activity levels.
  8.    * see end for more methods of personality based scoring of interests
  9. """
  10.  
  11. def matchcount(interest1,interest2):
  12.     activeness_scale = {'fashion': 0.3,'art': 0.4, 'scrabble': 0.2, 'skiing': 1.0, 'shopping': 0.6, 'camping': 0.7, 'dancing': 0.8, 'tv': 0.0, 'travel': 0.7, 'cooking': 0.3, 'writing': 0.1, 'reading': 0.1, 'knitting': 0.1, 'photography': 0.4, 'football': 1.0, 'running': 1.0, 'soccer': 1.0, 'animals': 0.9, 'opera': 0.2, 'computers': 0.0, 'movies': 0.3, 'snowboarding': 1.0}
  13.     l1=interest1.split(':')
  14.     l2=interest2.split(':')
  15.     x, y = 0, 0
  16.     for v in l1:
  17.         if v in activeness_scale: x+=activeness_scale[v]
  18.         else: x+=0.5
  19.     for v in l2:
  20.         if v in activeness_scale: y+=activeness_scale[v]
  21.         else: y+=0.5
  22.     x1 = float(x)/len(l1)
  23.     y1 = float(y)/len(l2)
  24.     if x1>y1: return 1-float(x1-y1)
  25.     elif y1>x1: return 1-float(y1-x1)
  26.     else: return 1
  27.  
  28. """
  29. Here are some ideas for personality based scoring of interests based upon the Hexaco personality inventory.
  30.  
  31. Unconventionality scale
  32. Altruism (versus Antagonism) scale
  33. Creativity scale
  34. Inquisitiveness scale
  35. Aesthetic Appreciation scale
  36. Prudence scale
  37. Perfectionism scale
  38. Diligence scale
  39. Organization scale
  40. Patience scale
  41. Flexibility scale
  42. Gentleness scale
  43. Forgivingness scale
  44. Liveliness scale
  45. Social Boldness scale
  46. Social Self-Esteem scale
  47. Sincerity scale
  48. Fairness scale
  49. Greed Avoidance scale
  50. Modesty scale
  51. Fearfulness scale
  52. Anxiety scale
  53. Dependence scale
  54. Sentimentality scale
  55.  
  56. """
Advertisement
Add Comment
Please, Sign In to add comment