Technical overview of the ratings system: Difference between revisions
From Information Rating System Wiki
More actions
Content deleted Content added
Created page with "Let's take a very simple situation. You want to know whether it is going to rain tomorrow. You don't know so you ask two knowledgeable sources this question. One of them believes it will rain with a probability of 60%. The other believes it will rain with a probability of 80%. We can sketch this situation as follows: You combine these probabilities using some aggregation technique. One such technique is Bayes' equation: Pcomb = 0.6*0.8/(0.6*0.8 + 0.4*0.2) = 0.857 An..." |
No edit summary |
||
Line 1: | Line 1: | ||
Let's take a very simple situation. You want to know whether it is going to rain tomorrow. You don't know so you ask two knowledgeable sources this question. One of them believes it will rain with a probability of 60%. The other believes it will rain with a probability of 80%. We can sketch this situation as follows: |
Let's take a very simple situation. You want to know whether it is going to rain tomorrow. You don't know so you ask two knowledgeable sources this question. One of them believes it will rain with a probability of 60%. The other believes it will rain with a probability of 80%. We can sketch this situation as follows: |
||
<kroki lang="graphviz"> |
|||
digraph G { |
|||
fontname="Helvetica,Arial,sans-serif" |
|||
node [fontname="Helvetica,Arial,sans-serif"] |
|||
edge [fontname="Helvetica,Arial,sans-serif"] |
|||
layout=dot |
|||
0 [label="0, P=50%"] |
|||
1 [label="1, P=90%"] |
|||
2 [label="2, P=90%"] |
|||
3 [label="3, P=90%"] |
|||
4 [label="4, P=90%"] |
|||
0 -> 1 [label="T=0.0",dir="both"]; |
|||
0 -> 2 [label="T=0.0",dir="both"]; |
|||
0 -> 3 [label="T=0.0",dir="both"]; |
|||
0 -> 4 [label="T=1.0",dir="both"]; |
|||
} |
|||
</kroki> |
|||
Revision as of 20:54, 26 August 2024
Let's take a very simple situation. You want to know whether it is going to rain tomorrow. You don't know so you ask two knowledgeable sources this question. One of them believes it will rain with a probability of 60%. The other believes it will rain with a probability of 80%. We can sketch this situation as follows:
You combine these probabilities using some aggregation technique. One such technique is Bayes' equation:
Pcomb = 0.6*0.8/(0.6*0.8 + 0.4*0.2) = 0.857
Another technique is a straight average of the two answers:
Pcomb = (0.6 + 0.8) / 2 = 0.7