Changes between Version 1 and Version 2 of ExpertRecommender


Ignore:
Timestamp:
09/04/08 15:03:54 (16 years ago)
Author:
fmittag
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • ExpertRecommender

    v1 v2  
    1717 * hierarchical feature space 
    1818 * subclass-of relation has no well-defined semantic 
     19 
     20== Examples == 
    1921 
    2022Example 1: 
     
    7375 * a feature with sub-features is for grouping purpose only and it would have no meaning to state something about this feature 
    7476 * the sub-features of a feature are specialized cases of the super-feature, so the super-feature should have at least the maximum appliance value of all of its sub-features 
     77 
     78== Suggestion == 
     79 
     80Define a similarity metric that compares two features x and y of the same (direct) type. Until now, the value of a feature is only the applicability value of the feature. 
     81{{{ 
     82sim(x,y) = 1 - dist(x,y)/2 
     83}}} 
     84The distance between two features x and y is defined as follows: 
     85{{{ 
     86dist(x,y) = |x-y| 
     87}}} 
     88This means, that two features with the same applicability have the distance 0 and thus the similary 1 - 0/2 = 1. Two features with applicability -1 and 1 would have the distance 2 and the similarity 1 - 2/2 = 0. (TODO: prove the properties of a metric) 
     89