In my code I turn counters for predictions into probabilities (%s), but do it for EACH order/context used. Is that wrong? The 2nd calculation below doesn't seem to work little own well and it's resulting set of predictions doesn't exactly match really. Any idea to make it work so it is less computations?
2, 6 <<< counters 0.25%, 0.75% <<< probabilities *0.25% <<< weight for this order 0.0625, 0.1875 <<< result + 3, 6 0.33%, 0.66% *0.75% 0.2499999999975, 0.499999999995 0.3124999999975, 0.687499999995 <<< both results added together VERSUS cheaper way below: 2, 6 *0.25 <<< doesn't do probabilities, only at last step, 1 time 0.5, 1.5 + 3, 6 *0.75 2.25, 4.5 2.75, 6 0.3142857142857143, 0.685714286 <<< probabilities ------------------------------------------ Artificial General Intelligence List: AGI Permalink: https://agi.topicbox.com/groups/agi/T4ae6b3d15d72b22e-Mdb156a30561bb93cef36c4d7 Delivery options: https://agi.topicbox.com/groups/agi/subscription
