E.g. one might want to say "whale" is a "child" of animal but "whale" is more like "dolphin" than "dog". "whale", "dolphin", "dog" are all children of animal in this case but "whale" and "dolphin" clearly have a relationship.
I AM NOT interested in simply defining more sub-classes (for example "sea animals", "land animals") the above example is just for illustration...assume we can't "define" our way out of the problem.
Does one simply just define a weighted part-acyclic graph with the knowledge that some subset of that graph is really a tree (not necessarily spanning)?
EDIT: A number of people have asked for more clarification. I'll use the same example but probably go into more detail
Say we have the following categories:
Animals, Place, Object.
The following sub categories: [land animals, sea animals], [country, state],
[heavy object, light object]
And we have the following entries: Whale, Dolphin, Dog, Cat, Hawaii, Japan,
London, Stone, Rock, Leaf, Car.
I have an isLike(entry x) function that I can call on any of the entries.
for example say whale.isLike(dolphin) = 0.7, whale.isLike(dog) = 0.2 and
a table like the following one stores all the values for the isLike() function
Whale dolphin dog cat hawaii japan london stone
whale 1 0.7 0.2 0.2 0.01 0.01 0.01 0.008
dolphin 0.7 1 0.2 0.2 0.01 0.01 0.01 0.008
dog etc
cat etc
hawaii etc
japan etc
london etc
stone etc
What is the best way to represent this data?
I am most concerned about how to keep the hierarchical information (tree) as well as the relationship information in isLike() (weighted graph)
so just asking if the standard thing to do is to use a directed graph (for the tree) + weighted undirected graph (for relations) type of structure? Is this standard or is there a more standard way?
