Toggle menu
122
332
11
3.4K
Information Rating System Wiki
Toggle personal menu
Not logged in
Your IP address will be publicly visible if you make any edits.

Technical overview of the ratings system: Difference between revisions

From Information Rating System Wiki
Content deleted Content added
Pete (talk | contribs)
No edit summary
Pete (talk | contribs)
No edit summary
Line 8: Line 8:
layout=dot
layout=dot
0 [label="0, P=50%"]
0 [label="0, P=50%"]
1 [label="1, P=90%"]
1 [label="1, P=60%"]
2 [label="2, P=90%"]
2 [label="2, P=80%"]
3 [label="3, P=90%"]
0 -> 1 [label="T=1.0",dir="both"];
4 [label="4, P=90%"]
0 -> 2 [label="T=1.0",dir="both"];
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>
</kroki>

Revision as of 20:56, 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