Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- def PECOTA(eventA, priorA):
- divisorA = float(eventA * priorA)
- eventB = 1 - eventA
- priorB = 1 - priorA
- divisorB = float(eventB * priorB)
- divide = float(divisorA) + float(divisorB)
- result = float(divisorA / divide)
- return result * 100,
Advertisement
Add Comment
Please, Sign In to add comment