@json_yim@HannesStaerk Looks cool! Is it as flexible as RFdiffusion in the sense of being able to do motif scaffolding, fold conditioning, and binder design?
This is why I decided to create a little wrapper around the emblematic Python list that allows calling {filter, map, reduce, flatmap} on the list element itself. It's definitely a WIP, but my lists are now unencumbered and my code (more) readable!
What's the probability that you are infected with COVID-19 given that your RT-PCR test came back positive? 🤔
Hint: it's lower than you think!
Let's find out using Bayes' Theorem👇
For the sake of the calculation, let us assume a 95% true-positive and a 2.3% false-positive rate based on the paper below (UK).
Let us use the current infection rate in the UK: 273 per 100k residents (7-day rolling average) means P(C) = 0.00273 👇
https://t.co/uvxk1AhlP0
People are not getting tested randomly! Most people who get swabbed have a reason, they might display symptoms, recent contact, etc. This increases the probability of getting tested, AND of being infected!
Lesson learned: never forget confounders! 🕵️♂️
P(C | T) = 0.95 / (0.95 * 0.00273 + 0.023 * 0.99727) * 0.00273
P(C | T) = 0.1015 or 10.15%
Putting all of this together, we find that the probability you are infected given a positive test result is only 10.15%!
Wait, is this true? How can this be? 👇
@kareem_carr I think an (the most) important part that’s left out is the causality models humans use to make sense of the data, link them to domain expertise and define the ML tasks and relevant statistics.